From 760e00254350e828aed5a627b4821c90997f1ad6 Mon Sep 17 00:00:00 2001
From: Cameron Book <43379611+ulmononian@users.noreply.github.com>
Date: Fri, 9 Feb 2024 21:27:17 -0800
Subject: [PATCH 01/33] Updates for Gaea C5 & F2/F5 Transition + Fix out of
bound errors in block_atmos_copy routines in fv3atm #2124 (#2115)
- Gaea C5 modulefile & DISKNM update: closes issues Gaea F2 to F5 file system migration #2101
- Bring in the global-workflow detect_machine.sh to keep consistent between projects. (Closes Bring in detect_machine.sh
from global workflow for consistency across the community. #2096 )
- Fix out of bound errors in block_atmos_copy routines in fv3atm
---
FV3 | 2 +-
...intel.cmake => configure_gaea.intel.cmake} | 0
...s_gaea-c5.intel.lua => ufs_gaea.intel.lua} | 4 +-
tests/ci/Dockerfile | 2 +-
tests/compile.sh | 4 +-
tests/default_vars.sh | 2 +-
tests/detect_machine.sh | 166 +-
...slurm.IN_gaea-c5 => compile_slurm.IN_gaea} | 0
...fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaea} | 0
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 1132 +++----
tests/logs/RegressionTests_derecho.log | 1598 +++++-----
...s_gaea-c5.log => RegressionTests_gaea.log} | 2718 ++++++++++-------
tests/logs/RegressionTests_hera.log | 1610 +++++-----
tests/logs/RegressionTests_hercules.log | 1626 +++++-----
tests/logs/RegressionTests_jet.log | 1225 ++++----
tests/logs/RegressionTests_orion.log | 1391 ++++-----
tests/logs/RegressionTests_wcoss2.log | 1014 +++---
tests/module-setup.sh | 6 +-
tests/opnReqTest | 2 +-
tests/rt.conf | 6 +-
tests/rt.sh | 20 +-
tests/rt_utils.sh | 8 +-
tests/run_test.sh | 7 +-
tests/tests/regional_atmaq | 2 -
tests/tests/regional_atmaq_debug | 2 +-
tests/tests/regional_atmaq_faster | 2 +-
29 files changed, 6342 insertions(+), 6303 deletions(-)
rename cmake/{configure_gaea-c5.intel.cmake => configure_gaea.intel.cmake} (100%)
rename modulefiles/{ufs_gaea-c5.intel.lua => ufs_gaea.intel.lua} (78%)
rename tests/fv3_conf/{compile_slurm.IN_gaea-c5 => compile_slurm.IN_gaea} (100%)
rename tests/fv3_conf/{fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaea} (100%)
rename tests/logs/{RegressionTests_gaea-c5.log => RegressionTests_gaea.log} (70%)
diff --git a/FV3 b/FV3
index 9dec0faa6e..28bfc365eb 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 9dec0faa6eafefc4b01f3cd117231619fb0670f4
+Subproject commit 28bfc365eb65364f1b4972a870837640cb7331a3
diff --git a/cmake/configure_gaea-c5.intel.cmake b/cmake/configure_gaea.intel.cmake
similarity index 100%
rename from cmake/configure_gaea-c5.intel.cmake
rename to cmake/configure_gaea.intel.cmake
diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaea.intel.lua
similarity index 78%
rename from modulefiles/ufs_gaea-c5.intel.lua
rename to modulefiles/ufs_gaea.intel.lua
index 0162442940..746bbef471 100644
--- a/modulefiles/ufs_gaea-c5.intel.lua
+++ b/modulefiles/ufs_gaea.intel.lua
@@ -10,8 +10,8 @@ load("intel-classic/2023.1.0")
load("cray-mpich/8.1.25")
load("python/3.9.12")
-prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
-prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles")
+prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
+prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/modulefiles")
stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0"
load(pathJoin("stack-intel", stack_intel_ver))
diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile
index 6b8f76d2a3..966b94aa3b 100644
--- a/tests/ci/Dockerfile
+++ b/tests/ci/Dockerfile
@@ -13,7 +13,7 @@ ENV test_name=$test_name
ENV run_case=$run_case
ENV CI_TEST=true
ENV RT_COMPILER=gnu
-ENV RT_MACHINE=linux
+ENV MACHINE=linux
ENV MACHINE_ID=linux
# ACCNR CAN BE ANYTHING; DOCKER DOES NOT NEED THIS
ENV ACCNR=nems
diff --git a/tests/compile.sh b/tests/compile.sh
index 567c80c756..284fb51cc0 100755
--- a/tests/compile.sh
+++ b/tests/compile.sh
@@ -58,8 +58,8 @@ if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then
source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}
else
# Activate lua environment for gaea c5
- if [[ $MACHINE_ID == gaea-c5 ]]; then
- source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh
+ if [[ $MACHINE_ID == gaea ]]; then
+ module reset
fi
# Load fv3 module
module use $PATHTR/modulefiles
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index 570b6e9cae..01b67e2731 100755
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -216,7 +216,7 @@ elif [[ $MACHINE_ID = s4 ]]; then
ICE_tasks_cpl_bmrk=48
WAV_tasks_cpl_bmrk=80
-elif [[ $MACHINE_ID = gaea-c5 ]]; then
+elif [[ $MACHINE_ID = gaea ]]; then
TPN=128
diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh
index 09607c46ba..98839e2c70 100755
--- a/tests/detect_machine.sh
+++ b/tests/detect_machine.sh
@@ -1,73 +1,41 @@
#!/bin/bash
-# Do not set ACCNR here or it will break the per-system defaults in rt.sh.
-
+# The authoritative copy of this script lives in the ufs-weather-model at:
+# https://github.com/ufs-community/ufs-weather-model/blob/develop/tests/detect_machine.sh
+# If any local modifications are made or new platform support added,
+# please consider opening an issue and a PR to the ufs-weather-model
+# so that this copy remains in sync with its authoritative source
+#
+# Thank you for your contribution
+
+# If the MACHINE_ID variable is set, skip this script.
+[[ -n ${MACHINE_ID:-} ]] && return
+
+# First detect w/ hostname
case $(hostname -f) in
- clogin01.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin02.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin03.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin04.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin05.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin06.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin07.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin08.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
- clogin09.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus
-
- dlogin01.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin02.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin03.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin04.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin05.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin06.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin07.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin08.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
- dlogin09.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood
-
- alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
- alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
- alogin03.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
-
- gaea51.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51
- gaea52.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea52
- gaea53.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea53
- gaea54.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea54
- gaea55.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea55
- gaea56.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea56
- gaea57.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea57
- gaea58.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea58
-
- hfe01) MACHINE_ID=hera ;; ### hera01
- hfe02) MACHINE_ID=hera ;; ### hera02
- hfe03) MACHINE_ID=hera ;; ### hera03
- hfe04) MACHINE_ID=hera ;; ### hera04
- hfe05) MACHINE_ID=hera ;; ### hera05
- hfe06) MACHINE_ID=hera ;; ### hera06
- hfe07) MACHINE_ID=hera ;; ### hera07
- hfe08) MACHINE_ID=hera ;; ### hera08
- hfe09) MACHINE_ID=hera ;; ### hera09
- hfe10) MACHINE_ID=hera ;; ### hera10
- hfe11) MACHINE_ID=hera ;; ### hera11
- hfe12) MACHINE_ID=hera ;; ### hera12
- hecflow01) MACHINE_ID=hera ;; ### heraecflow01
+ adecflow0[12].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
+ alogin0[123].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn
+ clogin0[1-9].cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus01-9
+ clogin10.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus10
+ dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9
+ dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10
+
+ gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58
+ gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58
+
+ hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09
+ hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12
+ hecflow01) MACHINE_ID=hera ;; ### heraecflow01
s4-submit.ssec.wisc.edu) MACHINE_ID=s4 ;; ### s4
- fe1) MACHINE_ID=jet ;; ### jet01
- fe2) MACHINE_ID=jet ;; ### jet02
- fe3) MACHINE_ID=jet ;; ### jet03
- fe4) MACHINE_ID=jet ;; ### jet04
- fe5) MACHINE_ID=jet ;; ### jet05
- fe6) MACHINE_ID=jet ;; ### jet06
- fe7) MACHINE_ID=jet ;; ### jet07
- fe8) MACHINE_ID=jet ;; ### jet08
- tfe1) MACHINE_ID=jet ;; ### jet09
- tfe2) MACHINE_ID=jet ;; ### jet10
-
- Orion-login-1.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1
- Orion-login-2.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion2
- Orion-login-3.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion3
- Orion-login-4.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion4
+ fe[1-8]) MACHINE_ID=jet ;; ### jet01-8
+ tfe[12]) MACHINE_ID=jet ;; ### tjet1-2
+
+ Orion-login-[1-4].HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1-4
+
+ [Hh]ercules-login-[1-4].[Hh][Pp][Cc].[Mm]s[Ss]tate.[Ee]du) MACHINE_ID=hercules ;; ### hercules1-4
derecho1.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho1
derecho2.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho2
@@ -77,31 +45,57 @@ case $(hostname -f) in
derecho6.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho6
derecho7.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho7
derecho8.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho8
-
- Hercules-login-1.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules1
- Hercules-login-2.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules2
- Hercules-login-3.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules3
- Hercules-login-4.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules4
-
- login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1
- login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2
- login3.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede3
- login4.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede4
-
-
- login01.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1
- login02.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse2
-esac
+ login[1-4].stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1-4
-case $(echo ${PW_CSP:-nono}) in
+ login0[1-2].expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1-2
- aws) MACHINE_ID=aws ;; ### parallelworks aws
- google) MACHINE_ID=gcp ;; ### parallelworks gcp
- azure) MACHINE_ID=azure ;; ### parallelworks azure
-
+ discover3[1-5].prv.cube) MACHINE_ID=discover ;; ### discover31-35
+ *) MACHINE_ID=UNKNOWN ;; # Unknown platform
esac
-[[ ${MACHINE_ID} =~ "aws" || ${MACHINE_ID} =~ "gcp" || ${MACHINE_ID} =~ "azure" ]] && MACHINE_ID=noaacloud
-# Overwrite auto-detect with RT_MACHINE if set
-MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}}
+if [[ ${MACHINE_ID} == "UNKNOWN" ]]; then
+ case ${PW_CSP:-} in
+ "aws" | "google" | "azure") MACHINE_ID=noaacloud ;;
+ *) PW_CSP="UNKNOWN"
+ esac
+fi
+
+# Overwrite auto-detect with MACHINE if set
+MACHINE_ID=${MACHINE:-${MACHINE_ID}}
+
+# If MACHINE_ID is no longer UNKNNOWN, return it
+if [[ "${MACHINE_ID}" != "UNKNOWN" ]]; then
+ return
+fi
+
+# Try searching based on paths since hostname may not match on compute nodes
+if [[ -d /lfs/h3 ]]; then
+ # We are on NOAA Cactus or Dogwood
+ MACHINE_ID=wcoss2
+elif [[ -d /lfs/h1 && ! -d /lfs/h3 ]]; then
+ # We are on NOAA TDS Acorn
+ MACHINE_ID=acorn
+elif [[ -d /mnt/lfs1 ]]; then
+ # We are on NOAA Jet
+ MACHINE_ID=jet
+elif [[ -d /scratch1 ]]; then
+ # We are on NOAA Hera
+ MACHINE_ID=hera
+elif [[ -d /work ]]; then
+ # We are on MSU Orion or Hercules
+ if [[ -d /apps/other ]]; then
+ # We are on Hercules
+ MACHINE_ID=hercules
+ else
+ MACHINE_ID=orion
+ fi
+elif [[ -d /gpfs && -d /ncrc ]]; then
+ # We are on GAEA.
+ MACHINE_ID=gaea
+elif [[ -d /data/prod ]]; then
+ # We are on SSEC's S4
+ MACHINE_ID=s4
+else
+ echo WARNING: UNKNOWN PLATFORM 1>&2
+fi
diff --git a/tests/fv3_conf/compile_slurm.IN_gaea-c5 b/tests/fv3_conf/compile_slurm.IN_gaea
similarity index 100%
rename from tests/fv3_conf/compile_slurm.IN_gaea-c5
rename to tests/fv3_conf/compile_slurm.IN_gaea
diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea-c5 b/tests/fv3_conf/fv3_slurm.IN_gaea
similarity index 100%
rename from tests/fv3_conf/fv3_slurm.IN_gaea-c5
rename to tests/fv3_conf/fv3_slurm.IN_gaea
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 50c3840ea4..1c213bde54 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Feb 8 14:00:04 UTC 2024
+Fri Feb 9 14:39:17 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_bit_base
Checking test bit_base control_p8_gnu results ....
Moving baseline bit_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 277.080729
- 0: The maximum resident set size (KB) = 1311728
+ 0: The total amount of wall time = 282.839267
+ 0: The maximum resident set size (KB) = 1304660
Test bit_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dbg_base
Checking test dbg_base control_p8_gnu results ....
Moving baseline dbg_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 903.668548
- 0: The maximum resident set size (KB) = 1287728
+ 0: The total amount of wall time = 892.021338
+ 0: The maximum resident set size (KB) = 1288444
Test dbg_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dcp
Checking test dcp control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.952287
- 0: The maximum resident set size (KB) = 1281684
+ 0: The total amount of wall time = 249.299884
+ 0: The maximum resident set size (KB) = 1281236
Test dcp control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_mpi
Checking test mpi control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 251.057241
- 0: The maximum resident set size (KB) = 1283180
+ 0: The total amount of wall time = 247.586878
+ 0: The maximum resident set size (KB) = 1284604
Test mpi control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_rst
Checking test rst control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.649190
- 0: The maximum resident set size (KB) = 1283604
+ 0: The total amount of wall time = 247.664516
+ 0: The maximum resident set size (KB) = 1283488
Test rst control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_std_base
Checking test std_base control_p8_gnu results ....
Moving baseline std_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.317862
- 0: The maximum resident set size (KB) = 1286884
+ 0: The total amount of wall time = 249.494655
+ 0: The maximum resident set size (KB) = 1281868
Test std_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_thr
Checking test thr control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.513148
- 0: The maximum resident set size (KB) = 1282944
+ 0: The total amount of wall time = 249.472280
+ 0: The maximum resident set size (KB) = 1283528
Test thr control_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Feb 8 15:16:58 UTC 2024
-Elapsed time: 01h:16m:54s. Have a nice day!
+Fri Feb 9 17:11:49 UTC 2024
+Elapsed time: 02h:32m:32s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 440c27b5ec..50fc402047 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Feb 8 16:09:31 UTC 2024
+Fri Feb 9 18:43:44 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_dbg_base
Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1240.052369
- 0: The maximum resident set size (KB) = 1416160
+ 0: The total amount of wall time = 1225.252760
+ 0: The maximum resident set size (KB) = 1412400
Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_rst
Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 377.256407
- 0: The maximum resident set size (KB) = 1404068
+ 0: The total amount of wall time = 372.797074
+ 0: The maximum resident set size (KB) = 1405444
Test rst cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_std_base
Checking test std_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 379.461864
- 0: The maximum resident set size (KB) = 1402872
+ 0: The total amount of wall time = 377.466475
+ 0: The maximum resident set size (KB) = 1404384
Test std_base cpld_control_nowave_noaero_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Feb 8 19:05:11 UTC 2024
-Elapsed time: 02h:55m:44s. Have a nice day!
+Fri Feb 9 19:48:46 UTC 2024
+Elapsed time: 01h:05m:02s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 1cd548a1e2..25755a6eac 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Thu Feb 8 15:19:18 UTC 2024
+Fri Feb 9 18:00:49 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_dcp
Checking test dcp regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 517.095038
- 0: The maximum resident set size (KB) = 600236
+ 0: The total amount of wall time = 521.814442
+ 0: The maximum resident set size (KB) = 592736
Test dcp regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_std_base
Checking test std_base regional_control_gnu results ....
Moving baseline std_base regional_control_gnu files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 520.741238
- 0: The maximum resident set size (KB) = 598704
+ 0: The total amount of wall time = 512.876185
+ 0: The maximum resident set size (KB) = 591908
Test std_base regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_thr
Checking test thr regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 520.308317
- 0: The maximum resident set size (KB) = 592456
+ 0: The total amount of wall time = 505.653831
+ 0: The maximum resident set size (KB) = 596020
Test thr regional_control_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Feb 8 15:59:45 UTC 2024
-Elapsed time: 00h:40m:27s. Have a nice day!
+Fri Feb 9 18:39:56 UTC 2024
+Elapsed time: 00h:39m:08s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 4a1a537e4f..14cb612062 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,60 +1,60 @@
-Thu Feb 8 12:11:33 UTC 2024
+Fri Feb 9 17:34:04 UTC 2024
Start Regression test
-Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184
+Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 511 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaero_intel elapsed time 519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
Compile atm_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 556 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 516 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_faster_intel elapsed time 550 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 536 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 531 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 561 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 572 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 562 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile ifi_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 617 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 525 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_faster_intel elapsed time 460 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 555 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 627 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile rrfs_dyn32_phy32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 983 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 899 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 619 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 610 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1033 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 857 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 630 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 318.611772
-The maximum resident set size (KB) = 2976096
+The total amount of wall time = 325.069319
+The maximum resident set size (KB) = 2977512
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 902.811006
-The maximum resident set size (KB) = 1593072
+The total amount of wall time = 901.574297
+The maximum resident set size (KB) = 1588856
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 970.179773
-The maximum resident set size (KB) = 1719444
+The total amount of wall time = 970.585781
+The maximum resident set size (KB) = 1714640
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 450.513848
-The maximum resident set size (KB) = 849240
+The total amount of wall time = 449.948426
+The maximum resident set size (KB) = 849864
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1057.532561
-The maximum resident set size (KB) = 1580320
+The total amount of wall time = 1057.877826
+The maximum resident set size (KB) = 1570648
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1403.718457
-The maximum resident set size (KB) = 1607576
+The total amount of wall time = 1443.576316
+The maximum resident set size (KB) = 1610604
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 363.818493
-The maximum resident set size (KB) = 3005040
+The total amount of wall time = 364.281607
+The maximum resident set size (KB) = 3003988
Test 007 cpld_control_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 362.272785
-The maximum resident set size (KB) = 3002316
+The total amount of wall time = 364.047392
+The maximum resident set size (KB) = 3000400
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 213.283078
-The maximum resident set size (KB) = 3058252
+The total amount of wall time = 213.604123
+The maximum resident set size (KB) = 3058484
Test 009 cpld_restart_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_qr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 365.896427
-The maximum resident set size (KB) = 3026668
+The total amount of wall time = 365.416961
+The maximum resident set size (KB) = 3028140
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_qr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 217.069512
-The maximum resident set size (KB) = 3079264
+The total amount of wall time = 217.152233
+The maximum resident set size (KB) = 3080048
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_2threads_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 323.289607
-The maximum resident set size (KB) = 3313068
+The total amount of wall time = 326.244114
+The maximum resident set size (KB) = 3316092
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_decomp_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 357.730839
-The maximum resident set size (KB) = 2995164
+The total amount of wall time = 357.785847
+The maximum resident set size (KB) = 2996540
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 300.218678
-The maximum resident set size (KB) = 2925712
+The total amount of wall time = 305.227913
+The maximum resident set size (KB) = 2924320
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.462067
-The maximum resident set size (KB) = 3000584
+The total amount of wall time = 368.575371
+The maximum resident set size (KB) = 3000544
Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_s2sa_p8_intel
Checking test 016 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 342.692238
-The maximum resident set size (KB) = 2966420
+The total amount of wall time = 342.253295
+The maximum resident set size (KB) = 2971624
Test 016 cpld_s2sa_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_intel
Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 269.362524
-The maximum resident set size (KB) = 1588368
+The total amount of wall time = 270.201647
+The maximum resident set size (KB) = 1589376
Test 017 cpld_control_noaero_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_nowave_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_nowave_noaero_p8_intel
Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 273.708208
-The maximum resident set size (KB) = 1639808
+The total amount of wall time = 280.223593
+The maximum resident set size (KB) = 1637552
Test 018 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_agrid_intel
Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 276.517542
-The maximum resident set size (KB) = 1635132
+The total amount of wall time = 280.548146
+The maximum resident set size (KB) = 1634332
Test 019 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_c48_intel
Checking test 020 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 406.771645
-The maximum resident set size (KB) = 2660260
+The total amount of wall time = 405.385811
+The maximum resident set size (KB) = 2661420
Test 020 cpld_control_c48_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_faster_intel
Checking test 021 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 355.478873
-The maximum resident set size (KB) = 3001988
+The total amount of wall time = 357.379114
+The maximum resident set size (KB) = 3002160
Test 021 cpld_control_p8_faster_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_pdlib_p8_intel
Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 919.139744
-The maximum resident set size (KB) = 1609776
+The total amount of wall time = 918.070525
+The maximum resident set size (KB) = 1614120
Test 022 cpld_control_pdlib_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_pdlib_p8_intel
Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 455.281404
-The maximum resident set size (KB) = 908976
+The total amount of wall time = 457.209050
+The maximum resident set size (KB) = 910796
Test 023 cpld_restart_pdlib_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_pdlib_p8_intel
Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1064.929281
-The maximum resident set size (KB) = 1593800
+The total amount of wall time = 1066.151181
+The maximum resident set size (KB) = 1584748
Test 024 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_pdlib_p8_intel
Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1499.100932
-The maximum resident set size (KB) = 1610892
+The total amount of wall time = 1489.432463
+The maximum resident set size (KB) = 1606768
Test 025 cpld_debug_pdlib_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_flake_intel
Checking test 026 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 212.378864
-The maximum resident set size (KB) = 580296
+The total amount of wall time = 213.088566
+The maximum resident set size (KB) = 579084
Test 026 control_flake_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_intel
Checking test 027 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 130.453285
-The maximum resident set size (KB) = 530040
+The total amount of wall time = 131.253300
+The maximum resident set size (KB) = 530832
Test 027 control_CubedSphereGrid_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_parallel_intel
Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 137.220507
-The maximum resident set size (KB) = 535736
+The total amount of wall time = 137.026135
+The maximum resident set size (KB) = 533936
Test 028 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_latlon_intel
Checking test 029 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 132.066392
-The maximum resident set size (KB) = 529512
+The total amount of wall time = 132.242121
+The maximum resident set size (KB) = 527860
Test 029 control_latlon_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_intel
Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.859422
-The maximum resident set size (KB) = 530496
+The total amount of wall time = 134.346506
+The maximum resident set size (KB) = 531484
Test 030 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48_intel
Checking test 031 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 330.440419
-The maximum resident set size (KB) = 721588
+The total amount of wall time = 326.434173
+The maximum resident set size (KB) = 723676
Test 031 control_c48_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48.v2.sfc_intel
Checking test 032 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 328.756213
-The maximum resident set size (KB) = 721768
+The total amount of wall time = 327.095293
+The maximum resident set size (KB) = 721836
Test 032 control_c48.v2.sfc_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c192_intel
Checking test 033 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 525.577716
-The maximum resident set size (KB) = 644504
+The total amount of wall time = 527.061586
+The maximum resident set size (KB) = 646348
Test 033 control_c192_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384_intel
Checking test 034 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 580.108798
-The maximum resident set size (KB) = 959496
+The total amount of wall time = 585.491892
+The maximum resident set size (KB) = 966528
Test 034 control_c384_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384gdas_intel
Checking test 035 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 511.625560
-The maximum resident set size (KB) = 1097996
+The total amount of wall time = 511.985063
+The maximum resident set size (KB) = 1098576
Test 035 control_c384gdas_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_intel
Checking test 036 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 88.399486
-The maximum resident set size (KB) = 534596
+The total amount of wall time = 88.729331
+The maximum resident set size (KB) = 538960
Test 036 control_stochy_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_restart_intel
Checking test 037 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 49.297610
-The maximum resident set size (KB) = 338920
+The total amount of wall time = 49.140012
+The maximum resident set size (KB) = 338988
Test 037 control_stochy_restart_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_intel
Checking test 038 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 84.662009
-The maximum resident set size (KB) = 535128
+The total amount of wall time = 83.444075
+The maximum resident set size (KB) = 536084
Test 038 control_lndp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr4_intel
Checking test 039 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 131.910171
-The maximum resident set size (KB) = 529464
+The total amount of wall time = 133.544964
+The maximum resident set size (KB) = 528820
Test 039 control_iovr4_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr5_intel
Checking test 040 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 132.771433
-The maximum resident set size (KB) = 530092
+The total amount of wall time = 133.469248
+The maximum resident set size (KB) = 530248
Test 040 control_iovr5_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_intel
Checking test 041 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 163.127863
-The maximum resident set size (KB) = 1513748
+The total amount of wall time = 162.594535
+The maximum resident set size (KB) = 1505512
Test 041 control_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8.v2.sfc_intel
Checking test 042 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 161.411420
-The maximum resident set size (KB) = 1509616
+The total amount of wall time = 163.170161
+The maximum resident set size (KB) = 1505916
Test 042 control_p8.v2.sfc_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_ugwpv1_intel
Checking test 043 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.523179
-The maximum resident set size (KB) = 1513580
+The total amount of wall time = 159.630728
+The maximum resident set size (KB) = 1517440
Test 043 control_p8_ugwpv1_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_intel
Checking test 044 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 89.174390
-The maximum resident set size (KB) = 700544
+The total amount of wall time = 89.739651
+The maximum resident set size (KB) = 697064
Test 044 control_restart_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_noqr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_noqr_p8_intel
Checking test 045 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 163.123791
-The maximum resident set size (KB) = 1500584
+The total amount of wall time = 162.679467
+The maximum resident set size (KB) = 1497164
Test 045 control_noqr_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_noqr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_noqr_p8_intel
Checking test 046 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 89.273198
-The maximum resident set size (KB) = 703852
+The total amount of wall time = 87.179377
+The maximum resident set size (KB) = 702536
Test 046 control_restart_noqr_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_decomp_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_decomp_p8_intel
Checking test 047 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 167.638993
-The maximum resident set size (KB) = 1504216
+The total amount of wall time = 165.867667
+The maximum resident set size (KB) = 1506852
Test 047 control_decomp_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_2threads_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_2threads_p8_intel
Checking test 048 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 143.361942
-The maximum resident set size (KB) = 1600508
+The total amount of wall time = 143.236548
+The maximum resident set size (KB) = 1592596
Test 048 control_2threads_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_lndp_intel
Checking test 049 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 292.116016
-The maximum resident set size (KB) = 1507376
+The total amount of wall time = 292.399085
+The maximum resident set size (KB) = 1510340
Test 049 control_p8_lndp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_rrtmgp_intel
Checking test 050 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 217.670222
-The maximum resident set size (KB) = 1570332
+The total amount of wall time = 218.193873
+The maximum resident set size (KB) = 1569140
Test 050 control_p8_rrtmgp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_mynn_intel
Checking test 051 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 164.860094
-The maximum resident set size (KB) = 1515880
+The total amount of wall time = 165.738776
+The maximum resident set size (KB) = 1514804
Test 051 control_p8_mynn_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/merra2_thompson_intel
Checking test 052 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 196.736246
-The maximum resident set size (KB) = 1515464
+The total amount of wall time = 197.007516
+The maximum resident set size (KB) = 1520040
Test 052 merra2_thompson_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_intel
Checking test 053 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 284.618520
-The maximum resident set size (KB) = 615952
+The total amount of wall time = 283.095339
+The maximum resident set size (KB) = 611600
Test 053 regional_control_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_restart_intel
Checking test 054 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 152.919739
-The maximum resident set size (KB) = 786260
+The total amount of wall time = 154.086833
+The maximum resident set size (KB) = 786908
Test 054 regional_restart_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_decomp_intel
Checking test 055 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 297.844147
-The maximum resident set size (KB) = 612216
+The total amount of wall time = 298.627065
+The maximum resident set size (KB) = 612448
Test 055 regional_decomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2threads_intel
Checking test 056 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 169.237858
-The maximum resident set size (KB) = 666624
+The total amount of wall time = 171.233296
+The maximum resident set size (KB) = 670288
Test 056 regional_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 279.879265
-The maximum resident set size (KB) = 1146092
+The total amount of wall time = 277.230072
+The maximum resident set size (KB) = 1156628
Test 057 regional_noquilt_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2dwrtdecomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2dwrtdecomp_intel
Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 283.735880
-The maximum resident set size (KB) = 616188
+The total amount of wall time = 282.338410
+The maximum resident set size (KB) = 614520
Test 058 regional_2dwrtdecomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_wofs_intel
Checking test 059 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 367.222732
-The maximum resident set size (KB) = 1586860
+The total amount of wall time = 366.623529
+The maximum resident set size (KB) = 1590696
Test 059 regional_wofs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_control_intel
Checking test 060 regional_ifi_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 313.897341
-The maximum resident set size (KB) = 611380
+The total amount of wall time = 314.701823
+The maximum resident set size (KB) = 611676
Test 060 regional_ifi_control_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_decomp_intel
Checking test 061 regional_ifi_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 329.597396
-The maximum resident set size (KB) = 610164
+The total amount of wall time = 331.175442
+The maximum resident set size (KB) = 610184
Test 061 regional_ifi_decomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_2threads_intel
Checking test 062 regional_ifi_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 189.873742
-The maximum resident set size (KB) = 665628
+The total amount of wall time = 190.343883
+The maximum resident set size (KB) = 665508
Test 062 regional_ifi_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 405.151485
-The maximum resident set size (KB) = 915444
+The total amount of wall time = 405.005427
+The maximum resident set size (KB) = 913724
Test 063 rap_control_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 237.229443
-The maximum resident set size (KB) = 1102636
+The total amount of wall time = 237.962552
+The maximum resident set size (KB) = 1100812
Test 064 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 418.716547
-The maximum resident set size (KB) = 917800
+The total amount of wall time = 418.604997
+The maximum resident set size (KB) = 913096
Test 065 rap_decomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 368.284763
-The maximum resident set size (KB) = 1003168
+The total amount of wall time = 371.410385
+The maximum resident set size (KB) = 996636
Test 066 rap_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 207.013809
-The maximum resident set size (KB) = 788596
+The total amount of wall time = 208.044395
+The maximum resident set size (KB) = 786800
Test 067 rap_restart_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 403.998872
-The maximum resident set size (KB) = 914680
+The total amount of wall time = 403.858451
+The maximum resident set size (KB) = 909660
Test 068 rap_sfcdiff_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 420.999979
-The maximum resident set size (KB) = 912288
+The total amount of wall time = 419.720523
+The maximum resident set size (KB) = 910392
Test 069 rap_sfcdiff_decomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 302.149392
-The maximum resident set size (KB) = 784768
+The total amount of wall time = 304.973740
+The maximum resident set size (KB) = 790356
Test 070 rap_sfcdiff_restart_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 205.964835
-The maximum resident set size (KB) = 908472
+The total amount of wall time = 207.951558
+The maximum resident set size (KB) = 908336
Test 071 hrrr_control_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 212.426246
-The maximum resident set size (KB) = 912084
+The total amount of wall time = 211.409873
+The maximum resident set size (KB) = 907676
Test 072 hrrr_control_decomp_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 185.434840
-The maximum resident set size (KB) = 990576
+The total amount of wall time = 185.758241
+The maximum resident set size (KB) = 985612
Test 073 hrrr_control_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 108.946088
-The maximum resident set size (KB) = 740732
+The total amount of wall time = 108.813453
+The maximum resident set size (KB) = 744520
Test 074 hrrr_control_restart_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 395.551368
-The maximum resident set size (KB) = 910124
+The total amount of wall time = 396.825195
+The maximum resident set size (KB) = 910400
Test 075 rrfs_v1beta_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 483.321182
-The maximum resident set size (KB) = 1871576
+The total amount of wall time = 483.383052
+The maximum resident set size (KB) = 1872612
Test 076 rrfs_v1nssl_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 467.602453
-The maximum resident set size (KB) = 1859568
+The total amount of wall time = 469.391748
+The maximum resident set size (KB) = 1859888
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 334.594469
-The maximum resident set size (KB) = 602656
+The total amount of wall time = 337.101706
+The maximum resident set size (KB) = 606352
Test 078 control_csawmg_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 333.460693
-The maximum resident set size (KB) = 600960
+The total amount of wall time = 332.555390
+The maximum resident set size (KB) = 598396
Test 079 control_csawmgt_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_intel
Checking test 080 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 118.642945
-The maximum resident set size (KB) = 276388
+The total amount of wall time = 119.385910
+The maximum resident set size (KB) = 276576
Test 080 control_wam_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_faster_intel
Checking test 081 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 157.687504
-The maximum resident set size (KB) = 1503432
+The total amount of wall time = 157.748353
+The maximum resident set size (KB) = 1500744
Test 081 control_p8_faster_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_faster_intel
Checking test 082 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 269.069375
-The maximum resident set size (KB) = 608996
+The total amount of wall time = 270.645322
+The maximum resident set size (KB) = 605820
Test 082 regional_control_faster_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_debug_intel
Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 159.302618
-The maximum resident set size (KB) = 685036
+The total amount of wall time = 159.966216
+The maximum resident set size (KB) = 686040
Test 083 control_CubedSphereGrid_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 157.786515
-The maximum resident set size (KB) = 690556
+The total amount of wall time = 158.911460
+The maximum resident set size (KB) = 688080
Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_debug_intel
Checking test 085 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 179.174032
-The maximum resident set size (KB) = 688196
+The total amount of wall time = 179.193481
+The maximum resident set size (KB) = 690436
Test 085 control_stochy_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_debug_intel
Checking test 086 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.817218
-The maximum resident set size (KB) = 690072
+The total amount of wall time = 160.838063
+The maximum resident set size (KB) = 692140
Test 086 control_lndp_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_debug_intel
Checking test 087 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 251.849095
-The maximum resident set size (KB) = 730176
+The total amount of wall time = 249.590459
+The maximum resident set size (KB) = 727932
Test 087 control_csawmg_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_debug_intel
Checking test 088 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 248.289400
-The maximum resident set size (KB) = 728100
+The total amount of wall time = 246.113797
+The maximum resident set size (KB) = 731936
Test 088 control_csawmgt_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_ras_debug_intel
Checking test 089 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 162.459170
-The maximum resident set size (KB) = 701080
+The total amount of wall time = 164.143203
+The maximum resident set size (KB) = 702056
Test 089 control_ras_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_diag_debug_intel
Checking test 090 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 163.029933
-The maximum resident set size (KB) = 748684
+The total amount of wall time = 163.968208
+The maximum resident set size (KB) = 747192
Test 090 control_diag_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_debug_p8_intel
Checking test 091 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 166.543819
-The maximum resident set size (KB) = 1518276
+The total amount of wall time = 168.845102
+The maximum resident set size (KB) = 1518356
Test 091 control_debug_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_debug_intel
Checking test 092 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1045.877702
-The maximum resident set size (KB) = 628504
+The total amount of wall time = 1047.368932
+The maximum resident set size (KB) = 629320
Test 092 regional_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_intel
Checking test 093 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.385685
-The maximum resident set size (KB) = 1073504
+The total amount of wall time = 298.885194
+The maximum resident set size (KB) = 1072696
Test 093 rap_control_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_intel
Checking test 094 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 291.164904
-The maximum resident set size (KB) = 1069160
+The total amount of wall time = 291.667503
+The maximum resident set size (KB) = 1065048
Test 094 hrrr_control_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_gf_debug_intel
Checking test 095 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.009429
-The maximum resident set size (KB) = 1075828
+The total amount of wall time = 298.438010
+The maximum resident set size (KB) = 1071048
Test 095 hrrr_gf_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_c3_debug_intel
Checking test 096 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.810459
-The maximum resident set size (KB) = 1076872
+The total amount of wall time = 298.459178
+The maximum resident set size (KB) = 1077248
Test 096 hrrr_c3_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_drag_suite_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_drag_suite_debug_intel
Checking test 097 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.461430
-The maximum resident set size (KB) = 1075804
+The total amount of wall time = 298.352337
+The maximum resident set size (KB) = 1073256
Test 097 rap_unified_drag_suite_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_diag_debug_intel
Checking test 098 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 309.369655
-The maximum resident set size (KB) = 1158724
+The total amount of wall time = 309.559939
+The maximum resident set size (KB) = 1156952
Test 098 rap_diag_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_cires_ugwp_debug_intel
Checking test 099 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.187340
-The maximum resident set size (KB) = 1074300
+The total amount of wall time = 305.581865
+The maximum resident set size (KB) = 1076260
Test 099 rap_cires_ugwp_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_ugwp_debug_intel
Checking test 100 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 306.506140
-The maximum resident set size (KB) = 1072284
+The total amount of wall time = 305.053733
+The maximum resident set size (KB) = 1074768
Test 100 rap_unified_ugwp_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_lndp_debug_intel
Checking test 101 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.396932
-The maximum resident set size (KB) = 1076452
+The total amount of wall time = 301.599292
+The maximum resident set size (KB) = 1075068
Test 101 rap_lndp_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_progcld_thompson_debug_intel
Checking test 102 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 300.069111
-The maximum resident set size (KB) = 1075048
+The total amount of wall time = 299.156143
+The maximum resident set size (KB) = 1075180
Test 102 rap_progcld_thompson_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_debug_intel
Checking test 103 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 292.773366
-The maximum resident set size (KB) = 1076524
+The total amount of wall time = 291.984446
+The maximum resident set size (KB) = 1073072
Test 103 rap_noah_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_debug_intel
Checking test 104 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.191676
-The maximum resident set size (KB) = 1070628
+The total amount of wall time = 298.922273
+The maximum resident set size (KB) = 1074364
Test 104 rap_sfcdiff_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 489.469552
-The maximum resident set size (KB) = 1073948
+The total amount of wall time = 489.841587
+The maximum resident set size (KB) = 1073724
Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_debug_intel
Checking test 106 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 294.456047
-The maximum resident set size (KB) = 1069328
+The total amount of wall time = 299.631434
+The maximum resident set size (KB) = 1064756
Test 106 rrfs_v1beta_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_clm_lake_debug_intel
Checking test 107 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 348.935150
-The maximum resident set size (KB) = 1074940
+The total amount of wall time = 348.835644
+The maximum resident set size (KB) = 1073756
Test 107 rap_clm_lake_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_flake_debug_intel
Checking test 108 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.459310
-The maximum resident set size (KB) = 1074844
+The total amount of wall time = 299.148473
+The maximum resident set size (KB) = 1073584
Test 108 rap_flake_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_c96_no_nest_debug_intel
Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 522.581705
-The maximum resident set size (KB) = 1080220
+The total amount of wall time = 521.256417
+The maximum resident set size (KB) = 1079824
Test 109 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_debug_intel
Checking test 110 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 297.055782
-The maximum resident set size (KB) = 298720
+The total amount of wall time = 297.373066
+The maximum resident set size (KB) = 299136
Test 110 control_wam_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 226.625120
-The maximum resident set size (KB) = 960224
+The total amount of wall time = 228.732005
+The maximum resident set size (KB) = 960160
Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn32_phy32_intel
Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 334.270880
-The maximum resident set size (KB) = 795488
+The total amount of wall time = 333.378945
+The maximum resident set size (KB) = 794880
Test 112 rap_control_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_dyn32_phy32_intel
Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 175.175636
-The maximum resident set size (KB) = 788112
+The total amount of wall time = 175.792607
+The maximum resident set size (KB) = 793124
Test 113 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_dyn32_phy32_intel
Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 306.550756
-The maximum resident set size (KB) = 856392
+The total amount of wall time = 305.521690
+The maximum resident set size (KB) = 860124
Test 114 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_dyn32_phy32_intel
Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.688862
-The maximum resident set size (KB) = 844952
+The total amount of wall time = 159.462393
+The maximum resident set size (KB) = 842856
Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_dyn32_phy32_intel
Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 181.850283
-The maximum resident set size (KB) = 791632
+The total amount of wall time = 183.999423
+The maximum resident set size (KB) = 790656
Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_dyn32_phy32_intel
Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 249.939585
-The maximum resident set size (KB) = 690980
+The total amount of wall time = 250.983474
+The maximum resident set size (KB) = 690988
Test 117 rap_restart_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_dyn32_phy32_intel
Checking test 118 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 93.299960
-The maximum resident set size (KB) = 673660
+The total amount of wall time = 93.245514
+The maximum resident set size (KB) = 672380
Test 118 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_control_intel
Checking test 119 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 115.789816
-The maximum resident set size (KB) = 1006692
+The total amount of wall time = 116.682896
+The maximum resident set size (KB) = 1004720
Test 119 conus13km_control_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_2threads_intel
Checking test 120 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 57.663096
-The maximum resident set size (KB) = 1005620
+The total amount of wall time = 60.302281
+The maximum resident set size (KB) = 1008360
Test 120 conus13km_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_restart_mismatch_intel
Checking test 121 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 69.157185
-The maximum resident set size (KB) = 884248
+The total amount of wall time = 70.742648
+The maximum resident set size (KB) = 884664
Test 121 conus13km_restart_mismatch_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_intel
Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 227.808235
-The maximum resident set size (KB) = 819796
+The total amount of wall time = 228.293293
+The maximum resident set size (KB) = 816148
Test 122 rap_control_dyn64_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_dyn32_phy32_intel
Checking test 123 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 292.424539
-The maximum resident set size (KB) = 956660
+The total amount of wall time = 295.066175
+The maximum resident set size (KB) = 954740
Test 123 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_dyn32_phy32_intel
Checking test 124 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 285.346478
-The maximum resident set size (KB) = 955928
+The total amount of wall time = 286.418924
+The maximum resident set size (KB) = 950464
Test 124 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_intel
Checking test 125 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 897.018552
-The maximum resident set size (KB) = 1041768
+The total amount of wall time = 893.354675
+The maximum resident set size (KB) = 1037660
Test 125 conus13km_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_qr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_qr_intel
Checking test 126 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 900.985766
-The maximum resident set size (KB) = 711008
+The total amount of wall time = 900.523350
+The maximum resident set size (KB) = 708992
Test 126 conus13km_debug_qr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_2threads_intel
Checking test 127 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 516.673198
-The maximum resident set size (KB) = 1036988
+The total amount of wall time = 513.846417
+The maximum resident set size (KB) = 1037804
Test 127 conus13km_debug_2threads_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_radar_tten_debug_intel
Checking test 128 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 917.107301
-The maximum resident set size (KB) = 1105408
+The total amount of wall time = 893.948066
+The maximum resident set size (KB) = 1108164
Test 128 conus13km_radar_tten_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_debug_intel
Checking test 129 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 297.236134
-The maximum resident set size (KB) = 976468
+The total amount of wall time = 299.152457
+The maximum resident set size (KB) = 974948
Test 129 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_intel
Checking test 130 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 342.169924
-The maximum resident set size (KB) = 621792
+The total amount of wall time = 345.541689
+The maximum resident set size (KB) = 620640
Test 130 hafs_regional_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 310.508806
-The maximum resident set size (KB) = 971316
+The total amount of wall time = 310.406403
+The maximum resident set size (KB) = 968032
Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_intel
Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 422.470786
-The maximum resident set size (KB) = 662404
+The total amount of wall time = 425.847427
+The maximum resident set size (KB) = 662292
Test 132 hafs_regional_atm_ocn_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_wav_intel
Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 746.388468
-The maximum resident set size (KB) = 694776
+The total amount of wall time = 751.546546
+The maximum resident set size (KB) = 693516
Test 133 hafs_regional_atm_wav_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_wav_intel
Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 941.019260
-The maximum resident set size (KB) = 707884
+The total amount of wall time = 934.494992
+The maximum resident set size (KB) = 705504
Test 134 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_1nest_atm_intel
Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 314.978649
-The maximum resident set size (KB) = 399148
+The total amount of wall time = 317.605218
+The maximum resident set size (KB) = 391460
Test 135 hafs_regional_1nest_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_telescopic_2nests_atm_intel
Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 405.384902
-The maximum resident set size (KB) = 408316
+The total amount of wall time = 403.518609
+The maximum resident set size (KB) = 412724
Test 136 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_1nest_atm_intel
Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 170.278883
-The maximum resident set size (KB) = 283368
+The total amount of wall time = 170.808951
+The maximum resident set size (KB) = 283520
Test 137 hafs_global_1nest_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_multiple_4nests_atm_intel
Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 486.522391
-The maximum resident set size (KB) = 372988
+The total amount of wall time = 486.950302
+The maximum resident set size (KB) = 374216
Test 138 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_specified_moving_1nest_atm_intel
Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 218.374333
-The maximum resident set size (KB) = 414296
+The total amount of wall time = 219.519626
+The maximum resident set size (KB) = 420804
Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 204.980896
-The maximum resident set size (KB) = 420636
+The total amount of wall time = 206.019923
+The maximum resident set size (KB) = 422012
Test 140 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 264.191649
-The maximum resident set size (KB) = 494456
+The total amount of wall time = 262.971430
+The maximum resident set size (KB) = 491188
Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_storm_following_1nest_atm_intel
Checking test 142 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 91.972821
-The maximum resident set size (KB) = 323192
+The total amount of wall time = 92.909982
+The maximum resident set size (KB) = 315116
Test 142 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_nested_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_nested_intel
Checking test 143 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 237.804547
-The maximum resident set size (KB) = 682784
+The total amount of wall time = 238.952555
+The maximum resident set size (KB) = 677024
Test 143 gnv1_nested_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 815.386804
-The maximum resident set size (KB) = 502400
+The total amount of wall time = 815.677537
+The maximum resident set size (KB) = 507680
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 514.789611
-The maximum resident set size (KB) = 535896
+The total amount of wall time = 516.764418
+The maximum resident set size (KB) = 530996
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 522.046143
-The maximum resident set size (KB) = 712016
+The total amount of wall time = 523.005603
+The maximum resident set size (KB) = 711684
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 385.255191
-The maximum resident set size (KB) = 706472
+The total amount of wall time = 386.878211
+The maximum resident set size (KB) = 710628
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 393.007385
-The maximum resident set size (KB) = 658632
+The total amount of wall time = 391.858057
+The maximum resident set size (KB) = 656576
Test 148 hafs_regional_docn_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 398.036164
-The maximum resident set size (KB) = 638520
+The total amount of wall time = 399.051624
+The maximum resident set size (KB) = 638204
Test 149 hafs_regional_docn_oisst_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 946.882696
-The maximum resident set size (KB) = 884056
+The total amount of wall time = 945.104264
+The maximum resident set size (KB) = 884252
Test 150 hafs_regional_datm_cdeps_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_intel
Checking test 151 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.558777
-The maximum resident set size (KB) = 750872
+The total amount of wall time = 142.743454
+The maximum resident set size (KB) = 749448
Test 151 datm_cdeps_control_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_restart_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_restart_cfsr_intel
Checking test 152 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 85.527016
-The maximum resident set size (KB) = 738112
+The total amount of wall time = 86.123321
+The maximum resident set size (KB) = 738424
Test 152 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_gefs_intel
Checking test 153 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.387022
-The maximum resident set size (KB) = 628924
+The total amount of wall time = 133.800434
+The maximum resident set size (KB) = 630120
Test 153 datm_cdeps_control_gefs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_iau_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_iau_gefs_intel
Checking test 154 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 136.437657
-The maximum resident set size (KB) = 627908
+The total amount of wall time = 136.625069
+The maximum resident set size (KB) = 629184
Test 154 datm_cdeps_iau_gefs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_stochy_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_stochy_gefs_intel
Checking test 155 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 138.735326
-The maximum resident set size (KB) = 629404
+The total amount of wall time = 137.621567
+The maximum resident set size (KB) = 635340
Test 155 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_ciceC_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_ciceC_cfsr_intel
Checking test 156 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.760720
-The maximum resident set size (KB) = 748616
+The total amount of wall time = 142.699376
+The maximum resident set size (KB) = 748376
Test 156 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_cfsr_intel
Checking test 157 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.978655
-The maximum resident set size (KB) = 748420
+The total amount of wall time = 142.935817
+The maximum resident set size (KB) = 747108
Test 157 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_gefs_intel
Checking test 158 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.008922
-The maximum resident set size (KB) = 637940
+The total amount of wall time = 133.823516
+The maximum resident set size (KB) = 627992
Test 158 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_cfsr_intel
Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 338.258668
-The maximum resident set size (KB) = 597356
+The total amount of wall time = 340.971185
+The maximum resident set size (KB) = 596184
Test 159 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_gefs_intel
Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 337.139239
-The maximum resident set size (KB) = 575816
+The total amount of wall time = 336.704980
+The maximum resident set size (KB) = 576776
Test 160 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_multiple_files_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_multiple_files_cfsr_intel
Checking test 161 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.020984
-The maximum resident set size (KB) = 747652
+The total amount of wall time = 142.802480
+The maximum resident set size (KB) = 747548
Test 161 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_3072x1536_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_3072x1536_cfsr_intel
Checking test 162 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 261.128389
-The maximum resident set size (KB) = 2006244
+The total amount of wall time = 261.008363
+The maximum resident set size (KB) = 2008308
Test 162 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_gfs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_gfs_intel
Checking test 163 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 261.154855
-The maximum resident set size (KB) = 2009212
+The total amount of wall time = 261.373898
+The maximum resident set size (KB) = 2004796
Test 163 datm_cdeps_gfs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_faster_intel
Checking test 164 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.598568
-The maximum resident set size (KB) = 747464
+The total amount of wall time = 142.413445
+The maximum resident set size (KB) = 750572
Test 164 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_gswp3_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_gswp3_intel
Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 58.115373
-The maximum resident set size (KB) = 226600
+The total amount of wall time = 57.234886
+The maximum resident set size (KB) = 218580
Test 165 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_intel
Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 57.782992
-The maximum resident set size (KB) = 372344
+The total amount of wall time = 58.410388
+The maximum resident set size (KB) = 365616
Test 166 datm_cdeps_lnd_era5_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_rst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_rst_intel
Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 41.738809
-The maximum resident set size (KB) = 369036
+The total amount of wall time = 42.190902
+The maximum resident set size (KB) = 369756
Test 167 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_sbs_intel
Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 273.901339
-The maximum resident set size (KB) = 1552676
+The total amount of wall time = 274.975496
+The maximum resident set size (KB) = 1546104
Test 168 control_p8_atmlnd_sbs_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_intel
Checking test 169 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 274.958810
-The maximum resident set size (KB) = 1551708
+The total amount of wall time = 274.189530
+The maximum resident set size (KB) = 1548268
Test 169 control_p8_atmlnd_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_atmlnd_intel
Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 153.485020
-The maximum resident set size (KB) = 743256
+The total amount of wall time = 153.971567
+The maximum resident set size (KB) = 739256
Test 170 control_restart_p8_atmlnd_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmwav_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmwav_control_noaero_p8_intel
Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 98.407449
-The maximum resident set size (KB) = 1545788
+The total amount of wall time = 100.416904
+The maximum resident set size (KB) = 1548012
Test 171 atmwav_control_noaero_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_atmwav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_atmwav_intel
Checking test 172 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 90.125650
-The maximum resident set size (KB) = 545940
+The total amount of wall time = 91.242314
+The maximum resident set size (KB) = 543824
Test 172 control_atmwav_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_intel
Checking test 173 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 235.843111
-The maximum resident set size (KB) = 2849320
+The total amount of wall time = 237.901667
+The maximum resident set size (KB) = 2852976
Test 173 atmaero_control_p8_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_intel
Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 275.571678
-The maximum resident set size (KB) = 2912816
+The total amount of wall time = 274.289914
+The maximum resident set size (KB) = 2910532
Test 174 atmaero_control_p8_rad_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_micro_intel
Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 290.166390
-The maximum resident set size (KB) = 2925388
+The total amount of wall time = 291.077525
+The maximum resident set size (KB) = 2924636
Test 175 atmaero_control_p8_rad_micro_intel PASS
baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_atmaq_debug_intel
Checking test 176 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5840,10 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1314.456259
-The maximum resident set size (KB) = 4443464
+The total amount of wall time = 1320.749454
+The maximum resident set size (KB) = 4429316
Test 176 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
+Fri Feb 9 19:28:48 UTC 2024
+Elapsed time: 01h:54m:45s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 98143b4f48..52cd1218aa 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,60 +1,60 @@
-Thu 08 Feb 2024 07:32:54 AM MST
+Thu 08 Feb 2024 07:35:51 PM MST
Start Regression test
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
+Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_intel elapsed time 608 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 456 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 717 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 721 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 132 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 934 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 397 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1105 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 692 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 301 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 519 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1203 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 518 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1120 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 489 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1081 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 481 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1132 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_intel elapsed time 648 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 495 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 762 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 755 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 470 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 146 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 841 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 987 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 435 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 1153 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 928 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 723 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 874 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 865 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 1185 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1263 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 1159 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 1136 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_mixedmode_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 278.366598
-The maximum resident set size (KB) = 3070908
+The total amount of wall time = 283.116339
+The maximum resident set size (KB) = 3072688
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 812.161067
-The maximum resident set size (KB) = 1692396
+The total amount of wall time = 813.943705
+The maximum resident set size (KB) = 1681460
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_iau_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 892.401037
-The maximum resident set size (KB) = 1822596
+The total amount of wall time = 897.250202
+The maximum resident set size (KB) = 1817348
-Test 003 cpld_control_gfsv17_iau_intel PASS
+Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_gfsv17_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 414.569333
-The maximum resident set size (KB) = 952340
+The total amount of wall time = 422.482839
+The maximum resident set size (KB) = 955876
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_gfsv17_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 932.838490
-The maximum resident set size (KB) = 1655000
+The total amount of wall time = 929.949945
+The maximum resident set size (KB) = 1653052
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_gfsv17_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1278.731443
-The maximum resident set size (KB) = 1703504
+The total amount of wall time = 1278.854488
+The maximum resident set size (KB) = 1694924
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,86 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 322.209132
-The maximum resident set size (KB) = 3090856
+The total amount of wall time = 325.480126
+The maximum resident set size (KB) = 3092824
Test 007 cpld_control_p8_intel PASS
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8.v2.sfc_intel
+Checking test 008 cpld_control_p8.v2.sfc_intel results ....
+ Comparing sfcf021.tile1.nc .........OK
+ Comparing sfcf021.tile2.nc .........OK
+ Comparing sfcf021.tile3.nc .........OK
+ Comparing sfcf021.tile4.nc .........OK
+ Comparing sfcf021.tile5.nc .........OK
+ Comparing sfcf021.tile6.nc .........OK
+ Comparing atmf021.tile1.nc .........OK
+ Comparing atmf021.tile2.nc .........OK
+ Comparing atmf021.tile3.nc .........OK
+ Comparing atmf021.tile4.nc .........OK
+ Comparing atmf021.tile5.nc .........OK
+ Comparing atmf021.tile6.nc .........OK
+ Comparing sfcf024.tile1.nc .........OK
+ Comparing sfcf024.tile2.nc .........OK
+ Comparing sfcf024.tile3.nc .........OK
+ Comparing sfcf024.tile4.nc .........OK
+ Comparing sfcf024.tile5.nc .........OK
+ Comparing sfcf024.tile6.nc .........OK
+ Comparing atmf024.tile1.nc .........OK
+ Comparing atmf024.tile2.nc .........OK
+ Comparing atmf024.tile3.nc .........OK
+ Comparing atmf024.tile4.nc .........OK
+ Comparing atmf024.tile5.nc .........OK
+ Comparing atmf024.tile6.nc .........OK
+ Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.MOM.res.nc .........OK
+ Comparing RESTART/iced.2021-03-23-21600.nc .........OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+ Comparing 20210323.060000.out_pnt.ww3 .........OK
+ Comparing 20210323.060000.out_grd.ww3 .........OK
+
+The total amount of wall time = 329.186547
+The maximum resident set size (KB) = 3096724
+
+Test 008 cpld_control_p8.v2.sfc_intel PASS
+
+
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -565,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 183.315130
-The maximum resident set size (KB) = 3151580
+The total amount of wall time = 187.927131
+The maximum resident set size (KB) = 3150752
Test 009 cpld_restart_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_qr_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -637,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 320.562085
-The maximum resident set size (KB) = 3122900
+The total amount of wall time = 324.802251
+The maximum resident set size (KB) = 3129004
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_qr_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -697,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 188.743688
-The maximum resident set size (KB) = 3177556
+The total amount of wall time = 188.573617
+The maximum resident set size (KB) = 3177364
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_decomp_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_decomp_p8_intel
Checking test 012 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -757,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 318.577685
-The maximum resident set size (KB) = 3092328
+The total amount of wall time = 323.111015
+The maximum resident set size (KB) = 3092532
Test 012 cpld_decomp_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_p8_intel
Checking test 013 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -817,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 258.651912
-The maximum resident set size (KB) = 3389572
+The total amount of wall time = 262.378434
+The maximum resident set size (KB) = 3387196
Test 013 cpld_mpi_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_ciceC_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_ciceC_p8_intel
Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -889,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 318.652095
-The maximum resident set size (KB) = 3103484
+The total amount of wall time = 324.817171
+The maximum resident set size (KB) = 3101008
Test 014 cpld_control_ciceC_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c192_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c192_p8_intel
Checking test 015 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -949,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 503.585906
-The maximum resident set size (KB) = 3631448
+The total amount of wall time = 514.049625
+The maximum resident set size (KB) = 3638412
Test 015 cpld_control_c192_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_c192_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_c192_p8_intel
Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1009,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 333.550015
-The maximum resident set size (KB) = 3613968
+The total amount of wall time = 336.915721
+The maximum resident set size (KB) = 3614852
Test 016 cpld_restart_c192_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_s2sa_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_s2sa_p8_intel
Checking test 017 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1067,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 300.748876
-The maximum resident set size (KB) = 3064124
+The total amount of wall time = 302.029895
+The maximum resident set size (KB) = 3070504
Test 017 cpld_s2sa_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_intel
Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1138,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 238.556213
-The maximum resident set size (KB) = 1676416
+The total amount of wall time = 241.657851
+The maximum resident set size (KB) = 1681732
Test 018 cpld_control_noaero_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_nowave_noaero_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_nowave_noaero_p8_intel
Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1207,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 239.205767
-The maximum resident set size (KB) = 1726472
+The total amount of wall time = 245.482355
+The maximum resident set size (KB) = 1723964
Test 019 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_p8_intel
Checking test 020 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1267,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 453.785653
-The maximum resident set size (KB) = 3148728
+The total amount of wall time = 452.200683
+The maximum resident set size (KB) = 3151076
Test 020 cpld_debug_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_noaero_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_noaero_p8_intel
Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1326,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 299.481234
-The maximum resident set size (KB) = 1703380
+The total amount of wall time = 301.799048
+The maximum resident set size (KB) = 1701056
Test 021 cpld_debug_noaero_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_agrid_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_agrid_intel
Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1395,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 239.891101
-The maximum resident set size (KB) = 1723916
+The total amount of wall time = 243.747092
+The maximum resident set size (KB) = 1731124
Test 022 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c48_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c48_intel
Checking test 023 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1452,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 384.804620
-The maximum resident set size (KB) = 2668804
+The total amount of wall time = 386.919764
+The maximum resident set size (KB) = 2673324
Test 023 cpld_control_c48_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1523,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 824.997661
-The maximum resident set size (KB) = 1698456
+The total amount of wall time = 827.704808
+The maximum resident set size (KB) = 1698132
Test 024 cpld_control_pdlib_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_pdlib_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1582,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 417.852563
-The maximum resident set size (KB) = 1013404
+The total amount of wall time = 427.614309
+The maximum resident set size (KB) = 1016316
Test 025 cpld_restart_pdlib_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_pdlib_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 948.169577
-The maximum resident set size (KB) = 1659464
+The total amount of wall time = 947.559386
+The maximum resident set size (KB) = 1670052
Test 026 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_pdlib_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1712,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1343.694853
-The maximum resident set size (KB) = 1717028
+The total amount of wall time = 1346.192107
+The maximum resident set size (KB) = 1711564
-Test 027 cpld_debug_pdlib_p8_intel PASS
+Test 027 cpld_debug_pdlib_p8_intel PASS Tries: 2
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_flake_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1730,14 +1802,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 192.680202
-The maximum resident set size (KB) = 663692
+The total amount of wall time = 195.138807
+The maximum resident set size (KB) = 667604
Test 028 control_flake_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1764,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 116.418466
-The maximum resident set size (KB) = 614652
+The total amount of wall time = 114.646694
+The maximum resident set size (KB) = 617372
Test 029 control_CubedSphereGrid_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_parallel_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1786,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 117.118307
-The maximum resident set size (KB) = 624156
+The total amount of wall time = 120.851852
+The maximum resident set size (KB) = 622264
Test 030 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_latlon_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1804,14 +1876,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 113.600428
-The maximum resident set size (KB) = 617984
+The total amount of wall time = 115.032899
+The maximum resident set size (KB) = 620848
Test 031 control_latlon_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1822,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 115.524999
-The maximum resident set size (KB) = 619636
+The total amount of wall time = 116.134178
+The maximum resident set size (KB) = 617140
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c48_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1868,14 +1940,60 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 305.900594
-The maximum resident set size (KB) = 727444
+The total amount of wall time = 309.345123
+The maximum resident set size (KB) = 729544
Test 033 control_c48_intel PASS
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48.v2.sfc_intel
+Checking test 034 control_c48.v2.sfc_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+The total amount of wall time = 310.068806
+The maximum resident set size (KB) = 729312
+
+Test 034 control_c48.v2.sfc_intel PASS
+
+
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c192_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1886,14 +2004,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 456.111312
-The maximum resident set size (KB) = 738920
+The total amount of wall time = 459.944531
+The maximum resident set size (KB) = 734336
-Test 035 control_c192_intel PASS
+Test 035 control_c192_intel PASS Tries: 2
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1904,14 +2022,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 470.244557
-The maximum resident set size (KB) = 1057112
+The total amount of wall time = 477.700454
+The maximum resident set size (KB) = 1062916
-Test 036 control_c384_intel PASS
+Test 036 control_c384_intel PASS Tries: 2
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384gdas_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -1954,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 414.407890
-The maximum resident set size (KB) = 1195352
+The total amount of wall time = 424.307740
+The maximum resident set size (KB) = 1199572
Test 037 control_c384gdas_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1972,28 +2090,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 73.996396
-The maximum resident set size (KB) = 623912
+The total amount of wall time = 75.804766
+The maximum resident set size (KB) = 623532
Test 038 control_stochy_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_restart_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 40.816951
-The maximum resident set size (KB) = 434408
+The total amount of wall time = 41.742004
+The maximum resident set size (KB) = 436716
Test 039 control_stochy_restart_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2004,14 +2122,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 69.830315
-The maximum resident set size (KB) = 622096
+The total amount of wall time = 71.450324
+The maximum resident set size (KB) = 620356
Test 040 control_lndp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr4_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2026,14 +2144,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 114.432772
-The maximum resident set size (KB) = 616400
+The total amount of wall time = 115.173531
+The maximum resident set size (KB) = 618900
-Test 041 control_iovr4_intel PASS
+Test 041 control_iovr4_intel PASS Tries: 2
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr5_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2048,14 +2166,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 113.969616
-The maximum resident set size (KB) = 619144
+The total amount of wall time = 115.437444
+The maximum resident set size (KB) = 617796
Test 042 control_iovr5_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2102,14 +2220,68 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 136.727108
-The maximum resident set size (KB) = 1599680
+The total amount of wall time = 139.985306
+The maximum resident set size (KB) = 1599704
Test 043 control_p8_intel PASS
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8.v2.sfc_intel
+Checking test 044 control_p8.v2.sfc_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf021.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf021.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF21 .........OK
+ Comparing GFSFLX.GrbF24 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF21 .........OK
+ Comparing GFSPRS.GrbF24 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+The total amount of wall time = 140.002842
+The maximum resident set size (KB) = 1599864
+
+Test 044 control_p8.v2.sfc_intel PASS
+
+
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_ugwpv1_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2156,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 136.055116
-The maximum resident set size (KB) = 1596572
+The total amount of wall time = 139.353776
+The maximum resident set size (KB) = 1597044
Test 045 control_p8_ugwpv1_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2202,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 73.440874
-The maximum resident set size (KB) = 792524
+The total amount of wall time = 75.146615
+The maximum resident set size (KB) = 791972
Test 046 control_restart_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_noqr_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2256,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 136.717509
-The maximum resident set size (KB) = 1581588
+The total amount of wall time = 139.945671
+The maximum resident set size (KB) = 1576984
Test 047 control_noqr_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_noqr_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2302,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 72.097229
-The maximum resident set size (KB) = 799652
+The total amount of wall time = 73.537670
+The maximum resident set size (KB) = 799724
Test 048 control_restart_noqr_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_decomp_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2352,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 142.562033
-The maximum resident set size (KB) = 1590672
+The total amount of wall time = 144.155448
+The maximum resident set size (KB) = 1593868
Test 049 control_decomp_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_lndp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_lndp_intel
Checking test 050 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2378,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 249.046392
-The maximum resident set size (KB) = 1590092
+The total amount of wall time = 252.377982
+The maximum resident set size (KB) = 1600412
Test 050 control_p8_lndp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_rrtmgp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_rrtmgp_intel
Checking test 051 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2432,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 184.234551
-The maximum resident set size (KB) = 1655480
+The total amount of wall time = 189.306214
+The maximum resident set size (KB) = 1655904
Test 051 control_p8_rrtmgp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_mynn_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_mynn_intel
Checking test 052 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2486,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 139.573285
-The maximum resident set size (KB) = 1605860
+The total amount of wall time = 141.528162
+The maximum resident set size (KB) = 1600840
Test 052 control_p8_mynn_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/merra2_thompson_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/merra2_thompson_intel
Checking test 053 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2540,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 167.084197
-The maximum resident set size (KB) = 1604192
+The total amount of wall time = 169.983004
+The maximum resident set size (KB) = 1598496
Test 053 merra2_thompson_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_intel
Checking test 054 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2558,28 +2730,28 @@ Checking test 054 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 255.017284
-The maximum resident set size (KB) = 627864
+The total amount of wall time = 261.109765
+The maximum resident set size (KB) = 626132
Test 054 regional_control_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_restart_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_restart_intel
Checking test 055 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 138.422732
-The maximum resident set size (KB) = 793580
+The total amount of wall time = 140.810195
+The maximum resident set size (KB) = 795928
Test 055 regional_restart_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_decomp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_decomp_intel
Checking test 056 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2590,14 +2762,14 @@ Checking test 056 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 269.373816
-The maximum resident set size (KB) = 623816
+The total amount of wall time = 273.113666
+The maximum resident set size (KB) = 625916
Test 056 regional_decomp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_noquilt_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2605,28 +2777,28 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 252.605680
-The maximum resident set size (KB) = 1155664
+The total amount of wall time = 254.863225
+The maximum resident set size (KB) = 1157048
Test 057 regional_noquilt_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_netcdf_parallel_intel
Checking test 058 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 255.481331
-The maximum resident set size (KB) = 624212
+The total amount of wall time = 256.349682
+The maximum resident set size (KB) = 622116
Test 058 regional_netcdf_parallel_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_2dwrtdecomp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_2dwrtdecomp_intel
Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2637,32 +2809,32 @@ Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 256.814605
-The maximum resident set size (KB) = 627784
+The total amount of wall time = 262.120628
+The maximum resident set size (KB) = 627004
Test 059 regional_2dwrtdecomp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_wofs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_wofs_intel
Checking test 060 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........NOT OK
- Comparing PRSLEV.GrbF06 .........NOT OK
- Comparing NATLEV.GrbF00 .........NOT OK
- Comparing NATLEV.GrbF06 .........NOT OK
+ Comparing PRSLEV.GrbF00 .........OK
+ Comparing PRSLEV.GrbF06 .........OK
+ Comparing NATLEV.GrbF00 .........OK
+ Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 323.639131
-The maximum resident set size (KB) = 1598256
+The total amount of wall time = 322.736964
+The maximum resident set size (KB) = 1597032
-Test 060 regional_wofs_intel FAIL Tries: 2
+Test 060 regional_wofs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_intel
Checking test 061 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2709,14 +2881,14 @@ Checking test 061 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 357.655730
-The maximum resident set size (KB) = 1005116
+The total amount of wall time = 355.672496
+The maximum resident set size (KB) = 1008760
Test 061 rap_control_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_intel
Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2727,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 200.662783
-The maximum resident set size (KB) = 1190900
+The total amount of wall time = 206.335463
+The maximum resident set size (KB) = 1193964
Test 062 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_decomp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_decomp_intel
Checking test 063 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2781,14 +2953,14 @@ Checking test 063 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 369.631655
-The maximum resident set size (KB) = 1008936
+The total amount of wall time = 369.997382
+The maximum resident set size (KB) = 1007820
Test 063 rap_decomp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_intel
Checking test 064 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2827,14 +2999,14 @@ Checking test 064 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 181.231939
-The maximum resident set size (KB) = 881996
+The total amount of wall time = 182.773442
+The maximum resident set size (KB) = 881852
Test 064 rap_restart_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_intel
Checking test 065 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -2881,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 353.426030
-The maximum resident set size (KB) = 1004284
+The total amount of wall time = 356.264052
+The maximum resident set size (KB) = 1005568
Test 065 rap_sfcdiff_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_decomp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_decomp_intel
Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -2935,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 372.255662
-The maximum resident set size (KB) = 1005860
+The total amount of wall time = 371.098443
+The maximum resident set size (KB) = 1008792
Test 066 rap_sfcdiff_decomp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_restart_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_restart_intel
Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -2981,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 262.345994
-The maximum resident set size (KB) = 882136
+The total amount of wall time = 265.527425
+The maximum resident set size (KB) = 884084
Test 067 rap_sfcdiff_restart_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_intel
Checking test 068 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3035,14 +3207,14 @@ Checking test 068 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 181.136332
-The maximum resident set size (KB) = 1003648
+The total amount of wall time = 183.260712
+The maximum resident set size (KB) = 1001448
Test 068 hrrr_control_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_intel
Checking test 069 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3089,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 185.676223
-The maximum resident set size (KB) = 999848
+The total amount of wall time = 186.244718
+The maximum resident set size (KB) = 1004132
Test 069 hrrr_control_decomp_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_2threads_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_2threads_intel
Checking test 070 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3143,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 157.169098
-The maximum resident set size (KB) = 1092608
+The total amount of wall time = 161.179313
+The maximum resident set size (KB) = 1087204
Test 070 hrrr_control_2threads_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_intel
Checking test 071 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 94.536448
-The maximum resident set size (KB) = 833652
+The total amount of wall time = 95.552484
+The maximum resident set size (KB) = 837104
Test 071 hrrr_control_restart_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_intel
Checking test 072 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3211,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 345.509210
-The maximum resident set size (KB) = 1002336
+The total amount of wall time = 347.136479
+The maximum resident set size (KB) = 1003412
Test 072 rrfs_v1beta_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_intel
Checking test 073 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3229,18 +3401,18 @@ Checking test 073 rrfs_v1nssl_intel results ....
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF09 .........OK
Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........NOT OK
- Comparing GFSPRS.GrbF09 .........NOT OK
- Comparing GFSPRS.GrbF12 .........NOT OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF09 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 426.953722
-The maximum resident set size (KB) = 1960256
+The total amount of wall time = 431.703119
+The maximum resident set size (KB) = 1960876
-Test 073 rrfs_v1nssl_intel FAIL Tries: 2
+Test 073 rrfs_v1nssl_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_nohailnoccn_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_nohailnoccn_intel
Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3251,18 +3423,18 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF09 .........OK
Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........NOT OK
- Comparing GFSPRS.GrbF09 .........NOT OK
- Comparing GFSPRS.GrbF12 .........NOT OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF09 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 416.436146
-The maximum resident set size (KB) = 1949036
+The total amount of wall time = 413.903843
+The maximum resident set size (KB) = 1950852
-Test 074 rrfs_v1nssl_nohailnoccn_intel FAIL Tries: 2
+Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_intel
Checking test 075 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3273,14 +3445,14 @@ Checking test 075 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 297.800708
-The maximum resident set size (KB) = 689912
+The total amount of wall time = 300.668152
+The maximum resident set size (KB) = 690452
Test 075 control_csawmg_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_intel
Checking test 076 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3291,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 294.489031
-The maximum resident set size (KB) = 693652
+The total amount of wall time = 298.459430
+The maximum resident set size (KB) = 692876
Test 076 control_csawmgt_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_intel
Checking test 077 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3309,26 +3481,26 @@ Checking test 077 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 160.475751
-The maximum resident set size (KB) = 655200
+The total amount of wall time = 162.560573
+The maximum resident set size (KB) = 654488
Test 077 control_ras_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_intel
Checking test 078 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 102.797114
-The maximum resident set size (KB) = 381776
+The total amount of wall time = 105.149311
+The maximum resident set size (KB) = 383768
Test 078 control_wam_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_faster_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_faster_intel
Checking test 079 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3375,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 130.577917
-The maximum resident set size (KB) = 1599428
+The total amount of wall time = 132.858699
+The maximum resident set size (KB) = 1594508
Test 079 control_p8_faster_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_faster_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_faster_intel
Checking test 080 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3393,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 240.224735
-The maximum resident set size (KB) = 628276
+The total amount of wall time = 246.277595
+The maximum resident set size (KB) = 624140
Test 080 regional_control_faster_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_debug_intel
Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3427,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 140.181543
-The maximum resident set size (KB) = 794708
+The total amount of wall time = 143.051336
+The maximum resident set size (KB) = 792764
Test 081 control_CubedSphereGrid_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 140.208381
-The maximum resident set size (KB) = 791964
+The total amount of wall time = 141.115260
+The maximum resident set size (KB) = 791528
Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_debug_intel
Checking test 083 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 158.140731
-The maximum resident set size (KB) = 802024
+The total amount of wall time = 160.055984
+The maximum resident set size (KB) = 801540
Test 083 control_stochy_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_debug_intel
Checking test 084 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 142.818359
-The maximum resident set size (KB) = 800912
+The total amount of wall time = 147.219860
+The maximum resident set size (KB) = 796288
Test 084 control_lndp_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_debug_intel
Checking test 085 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 221.834189
-The maximum resident set size (KB) = 838420
+The total amount of wall time = 224.749099
+The maximum resident set size (KB) = 833248
Test 085 control_csawmg_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_debug_intel
Checking test 086 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 223.714100
-The maximum resident set size (KB) = 840472
+The total amount of wall time = 220.319064
+The maximum resident set size (KB) = 835732
Test 086 control_csawmgt_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_debug_intel
Checking test 087 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 149.017760
-The maximum resident set size (KB) = 806552
+The total amount of wall time = 145.920210
+The maximum resident set size (KB) = 803944
Test 087 control_ras_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_diag_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_diag_debug_intel
Checking test 088 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 146.370147
-The maximum resident set size (KB) = 856024
+The total amount of wall time = 148.018536
+The maximum resident set size (KB) = 852472
Test 088 control_diag_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_debug_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_debug_p8_intel
Checking test 089 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 145.172424
-The maximum resident set size (KB) = 1625676
+The total amount of wall time = 150.318865
+The maximum resident set size (KB) = 1629036
Test 089 control_debug_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_debug_intel
Checking test 090 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 942.293655
-The maximum resident set size (KB) = 661120
+The total amount of wall time = 945.852804
+The maximum resident set size (KB) = 661600
Test 090 regional_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_intel
Checking test 091 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 264.938931
-The maximum resident set size (KB) = 1183176
+The total amount of wall time = 267.242571
+The maximum resident set size (KB) = 1179124
Test 091 rap_control_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_intel
Checking test 092 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 259.852783
-The maximum resident set size (KB) = 1177280
+The total amount of wall time = 268.562304
+The maximum resident set size (KB) = 1174500
Test 092 hrrr_control_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_gf_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_gf_debug_intel
Checking test 093 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 269.191342
-The maximum resident set size (KB) = 1179872
+The total amount of wall time = 271.039593
+The maximum resident set size (KB) = 1176192
Test 093 hrrr_gf_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_c3_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_c3_debug_intel
Checking test 094 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 266.860812
-The maximum resident set size (KB) = 1179364
+The total amount of wall time = 269.103612
+The maximum resident set size (KB) = 1181928
Test 094 hrrr_c3_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_drag_suite_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_drag_suite_debug_intel
Checking test 095 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 266.940251
-The maximum resident set size (KB) = 1183372
+The total amount of wall time = 268.926176
+The maximum resident set size (KB) = 1180024
Test 095 rap_unified_drag_suite_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_diag_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_diag_debug_intel
Checking test 096 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 278.533816
-The maximum resident set size (KB) = 1263668
+The total amount of wall time = 285.393634
+The maximum resident set size (KB) = 1262036
Test 096 rap_diag_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_cires_ugwp_debug_intel
Checking test 097 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 273.419175
-The maximum resident set size (KB) = 1183368
+The total amount of wall time = 273.169079
+The maximum resident set size (KB) = 1179424
Test 097 rap_cires_ugwp_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_ugwp_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_ugwp_debug_intel
Checking test 098 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 272.991136
-The maximum resident set size (KB) = 1179820
+The total amount of wall time = 281.839362
+The maximum resident set size (KB) = 1181140
Test 098 rap_unified_ugwp_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_lndp_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_lndp_debug_intel
Checking test 099 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 273.860152
-The maximum resident set size (KB) = 1181468
+The total amount of wall time = 269.484551
+The maximum resident set size (KB) = 1180268
Test 099 rap_lndp_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_progcld_thompson_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_progcld_thompson_debug_intel
Checking test 100 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 265.754282
-The maximum resident set size (KB) = 1180272
+The total amount of wall time = 269.486570
+The maximum resident set size (KB) = 1179744
Test 100 rap_progcld_thompson_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_debug_intel
Checking test 101 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 262.830742
-The maximum resident set size (KB) = 1176432
+The total amount of wall time = 261.635725
+The maximum resident set size (KB) = 1177000
Test 101 rap_noah_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_debug_intel
Checking test 102 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 265.491923
-The maximum resident set size (KB) = 1180180
+The total amount of wall time = 268.662886
+The maximum resident set size (KB) = 1178260
Test 102 rap_sfcdiff_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 443.299079
-The maximum resident set size (KB) = 1178912
+The total amount of wall time = 440.230638
+The maximum resident set size (KB) = 1175020
Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_debug_intel
Checking test 104 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 263.014271
-The maximum resident set size (KB) = 1172380
+The total amount of wall time = 264.357214
+The maximum resident set size (KB) = 1175180
Test 104 rrfs_v1beta_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_clm_lake_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_clm_lake_debug_intel
Checking test 105 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 338.422860
-The maximum resident set size (KB) = 1182060
+The total amount of wall time = 335.581738
+The maximum resident set size (KB) = 1183080
Test 105 rap_clm_lake_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_flake_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_flake_debug_intel
Checking test 106 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 266.972494
-The maximum resident set size (KB) = 1178700
+The total amount of wall time = 274.315894
+The maximum resident set size (KB) = 1178156
Test 106 rap_flake_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_c96_no_nest_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_c96_no_nest_debug_intel
Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -3825,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 464.560260
-The maximum resident set size (KB) = 1182200
+The total amount of wall time = 479.027383
+The maximum resident set size (KB) = 1179752
Test 107 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_debug_intel
Checking test 108 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 266.207365
-The maximum resident set size (KB) = 422156
+The total amount of wall time = 277.006958
+The maximum resident set size (KB) = 417856
Test 108 control_wam_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3855,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 191.193573
-The maximum resident set size (KB) = 1057420
+The total amount of wall time = 193.741344
+The maximum resident set size (KB) = 1058576
Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn32_phy32_intel
Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3909,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 297.020916
-The maximum resident set size (KB) = 887212
+The total amount of wall time = 298.409683
+The maximum resident set size (KB) = 883064
Test 110 rap_control_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_dyn32_phy32_intel
Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3963,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 154.682859
-The maximum resident set size (KB) = 879220
+The total amount of wall time = 156.130259
+The maximum resident set size (KB) = 879588
Test 111 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_dyn32_phy32_intel
Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4017,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 162.270432
-The maximum resident set size (KB) = 879500
+The total amount of wall time = 165.224962
+The maximum resident set size (KB) = 880760
Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_dyn32_phy32_intel
Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4063,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 220.369546
-The maximum resident set size (KB) = 794964
+The total amount of wall time = 222.610543
+The maximum resident set size (KB) = 795532
Test 113 rap_restart_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_dyn32_phy32_intel
Checking test 114 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 80.974194
-The maximum resident set size (KB) = 774724
+The total amount of wall time = 83.400520
+The maximum resident set size (KB) = 776720
Test 114 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_control_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_control_intel
Checking test 115 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4100,40 +4272,40 @@ Checking test 115 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 100.582549
-The maximum resident set size (KB) = 1085352
+The total amount of wall time = 102.604974
+The maximum resident set size (KB) = 1084384
Test 115 conus13km_control_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_2threads_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_2threads_intel
Checking test 116 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 43.458268
-The maximum resident set size (KB) = 1085384
+The total amount of wall time = 45.782977
+The maximum resident set size (KB) = 1085228
Test 116 conus13km_2threads_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_restart_mismatch_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_restart_mismatch_intel
Checking test 117 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 56.588260
-The maximum resident set size (KB) = 974996
+The total amount of wall time = 59.109964
+The maximum resident set size (KB) = 977056
Test 117 conus13km_restart_mismatch_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_intel
Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4180,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 205.612481
-The maximum resident set size (KB) = 908012
+The total amount of wall time = 210.999676
+The maximum resident set size (KB) = 907660
Test 118 rap_control_dyn64_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_dyn32_phy32_intel
Checking test 119 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 262.497922
-The maximum resident set size (KB) = 1052816
+The total amount of wall time = 259.602129
+The maximum resident set size (KB) = 1054716
Test 119 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_dyn32_phy32_intel
Checking test 120 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 254.117279
-The maximum resident set size (KB) = 1049252
+The total amount of wall time = 260.765049
+The maximum resident set size (KB) = 1050544
Test 120 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_debug_intel
Checking test 121 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4229,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 789.399290
-The maximum resident set size (KB) = 1130588
+The total amount of wall time = 790.038482
+The maximum resident set size (KB) = 1129896
Test 121 conus13km_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_radar_tten_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_radar_tten_debug_intel
Checking test 122 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 805.799878
-The maximum resident set size (KB) = 1198136
+The total amount of wall time = 791.513741
+The maximum resident set size (KB) = 1197900
Test 122 conus13km_radar_tten_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_debug_intel
Checking test 123 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 261.720831
-The maximum resident set size (KB) = 1080236
+The total amount of wall time = 263.106216
+The maximum resident set size (KB) = 1080332
Test 123 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_intel
Checking test 124 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 252.293928
-The maximum resident set size (KB) = 719000
+The total amount of wall time = 259.304606
+The maximum resident set size (KB) = 720072
Test 124 hafs_regional_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 283.868066
-The maximum resident set size (KB) = 1067332
+The total amount of wall time = 292.917706
+The maximum resident set size (KB) = 1065116
Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_intel
Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4298,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 365.753352
-The maximum resident set size (KB) = 780064
+The total amount of wall time = 373.049608
+The maximum resident set size (KB) = 775664
Test 126 hafs_regional_atm_ocn_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_wav_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_wav_intel
Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4314,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 634.560729
-The maximum resident set size (KB) = 790668
+The total amount of wall time = 644.261762
+The maximum resident set size (KB) = 790424
Test 127 hafs_regional_atm_wav_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_wav_intel
Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4332,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 702.697655
-The maximum resident set size (KB) = 812604
+The total amount of wall time = 709.546700
+The maximum resident set size (KB) = 810576
Test 128 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_1nest_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_1nest_atm_intel
Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4361,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 261.029962
-The maximum resident set size (KB) = 475788
+The total amount of wall time = 261.969825
+The maximum resident set size (KB) = 478496
Test 129 hafs_regional_1nest_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_telescopic_2nests_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_telescopic_2nests_atm_intel
Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4377,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 324.062906
-The maximum resident set size (KB) = 495740
+The total amount of wall time = 332.239233
+The maximum resident set size (KB) = 494656
Test 130 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_1nest_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_1nest_atm_intel
Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4431,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 122.667599
-The maximum resident set size (KB) = 391148
+The total amount of wall time = 127.034352
+The maximum resident set size (KB) = 392964
Test 131 hafs_global_1nest_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_multiple_4nests_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_multiple_4nests_atm_intel
Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4520,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 354.359356
-The maximum resident set size (KB) = 457820
+The total amount of wall time = 364.922319
+The maximum resident set size (KB) = 458960
Test 132 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_specified_moving_1nest_atm_intel
Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4536,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 179.337579
-The maximum resident set size (KB) = 511092
+The total amount of wall time = 182.517862
+The maximum resident set size (KB) = 512004
Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_intel
Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4565,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 166.506589
-The maximum resident set size (KB) = 509624
+The total amount of wall time = 170.141584
+The maximum resident set size (KB) = 512536
Test 134 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4581,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 209.652701
-The maximum resident set size (KB) = 589708
+The total amount of wall time = 213.809751
+The maximum resident set size (KB) = 591644
Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_storm_following_1nest_atm_intel
Checking test 136 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 58.585001
-The maximum resident set size (KB) = 425668
+The total amount of wall time = 62.314111
+The maximum resident set size (KB) = 422892
Test 136 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_nested_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_nested_intel
Checking test 137 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4649,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 184.972509
-The maximum resident set size (KB) = 788256
+The total amount of wall time = 188.533083
+The maximum resident set size (KB) = 789572
Test 137 gnv1_nested_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 698.609102
-The maximum resident set size (KB) = 609400
+The total amount of wall time = 704.003045
+The maximum resident set size (KB) = 607608
Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4681,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 411.816066
-The maximum resident set size (KB) = 626012
+The total amount of wall time = 412.863336
+The maximum resident set size (KB) = 627584
Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4699,31 +4871,31 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 416.240632
-The maximum resident set size (KB) = 679900
+The total amount of wall time = 422.899779
+The maximum resident set size (KB) = 682664
Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc ............ALT CHECK......NOT OK
- Comparing sfcf003.nc ............ALT CHECK......NOT OK
- Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK
- Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK
- Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK
- Comparing 20200825.150000.out_grd.ww3 .........NOT OK
- Comparing 20200825.150000.out_pnt.ww3 .........NOT OK
+ Comparing atmf003.nc .........OK
+ Comparing sfcf003.nc .........OK
+ Comparing atm.nest02.f003.nc .........OK
+ Comparing sfc.nest02.f003.nc .........OK
+ Comparing ocn_2020_08_25_15.nc .........OK
+ Comparing 20200825.150000.out_grd.ww3 .........OK
+ Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 300.456709
-The maximum resident set size (KB) = 673444
+The total amount of wall time = 304.944588
+The maximum resident set size (KB) = 673216
-Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2
+Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_intel
Checking test 142 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4731,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 315.182157
-The maximum resident set size (KB) = 746968
+The total amount of wall time = 319.054045
+The maximum resident set size (KB) = 748412
Test 142 hafs_regional_docn_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_oisst_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_oisst_intel
Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4746,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 315.081624
-The maximum resident set size (KB) = 730200
+The total amount of wall time = 322.042774
+The maximum resident set size (KB) = 733540
Test 143 hafs_regional_docn_oisst_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_datm_cdeps_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_datm_cdeps_intel
Checking test 144 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 956.504239
-The maximum resident set size (KB) = 894200
+The total amount of wall time = 958.298657
+The maximum resident set size (KB) = 892616
Test 144 hafs_regional_datm_cdeps_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_intel
Checking test 145 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 139.453860
-The maximum resident set size (KB) = 760584
+The total amount of wall time = 140.831670
+The maximum resident set size (KB) = 762300
Test 145 datm_cdeps_control_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_restart_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_restart_cfsr_intel
Checking test 146 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 83.767578
-The maximum resident set size (KB) = 736892
+The total amount of wall time = 85.601070
+The maximum resident set size (KB) = 747924
Test 146 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_gefs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_gefs_intel
Checking test 147 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 131.698148
-The maximum resident set size (KB) = 642456
+The total amount of wall time = 133.957403
+The maximum resident set size (KB) = 640304
Test 147 datm_cdeps_control_gefs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_iau_gefs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_iau_gefs_intel
Checking test 148 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.176013
-The maximum resident set size (KB) = 641732
+The total amount of wall time = 136.465227
+The maximum resident set size (KB) = 644380
Test 148 datm_cdeps_iau_gefs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_stochy_gefs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_stochy_gefs_intel
Checking test 149 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.400324
-The maximum resident set size (KB) = 640108
+The total amount of wall time = 135.448355
+The maximum resident set size (KB) = 640180
Test 149 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_ciceC_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_ciceC_cfsr_intel
Checking test 150 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 139.664004
-The maximum resident set size (KB) = 748848
+The total amount of wall time = 142.260860
+The maximum resident set size (KB) = 762244
Test 150 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_cfsr_intel
Checking test 151 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 140.098541
-The maximum resident set size (KB) = 760320
+The total amount of wall time = 142.080187
+The maximum resident set size (KB) = 761716
Test 151 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_gefs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_gefs_intel
Checking test 152 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 131.269257
-The maximum resident set size (KB) = 637840
+The total amount of wall time = 132.791236
+The maximum resident set size (KB) = 641664
Test 152 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_cfsr_intel
Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4879,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 320.895152
-The maximum resident set size (KB) = 687232
+The total amount of wall time = 329.380629
+The maximum resident set size (KB) = 692224
Test 153 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_gefs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_gefs_intel
Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4895,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 319.738173
-The maximum resident set size (KB) = 670892
+The total amount of wall time = 325.150991
+The maximum resident set size (KB) = 672096
Test 154 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_multiple_files_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_multiple_files_cfsr_intel
Checking test 155 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 139.132394
-The maximum resident set size (KB) = 761052
+The total amount of wall time = 141.004904
+The maximum resident set size (KB) = 761272
Test 155 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_3072x1536_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_3072x1536_cfsr_intel
Checking test 156 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 223.715620
-The maximum resident set size (KB) = 2019800
+The total amount of wall time = 228.438023
+The maximum resident set size (KB) = 2023728
Test 156 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_gfs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_gfs_intel
Checking test 157 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 224.526638
-The maximum resident set size (KB) = 2020888
+The total amount of wall time = 226.771550
+The maximum resident set size (KB) = 2022364
Test 157 datm_cdeps_gfs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_debug_cfsr_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_debug_cfsr_intel
Checking test 158 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-The total amount of wall time = 295.283572
-The maximum resident set size (KB) = 747944
+The total amount of wall time = 299.324383
+The maximum resident set size (KB) = 746840
Test 158 datm_cdeps_debug_cfsr_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_faster_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_faster_intel
Checking test 159 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 140.101650
-The maximum resident set size (KB) = 761196
+The total amount of wall time = 142.292989
+The maximum resident set size (KB) = 761924
Test 159 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_gswp3_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_gswp3_intel
Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -4974,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 52.572138
-The maximum resident set size (KB) = 301168
+The total amount of wall time = 61.219151
+The maximum resident set size (KB) = 308664
Test 160 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_intel
Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -4990,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 47.488110
-The maximum resident set size (KB) = 450572
+The total amount of wall time = 57.142021
+The maximum resident set size (KB) = 449852
Test 161 datm_cdeps_lnd_era5_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_rst_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_rst_intel
Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5006,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 28.915730
-The maximum resident set size (KB) = 450996
+The total amount of wall time = 32.165049
+The maximum resident set size (KB) = 450856
Test 162 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_sbs_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_sbs_intel
Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5102,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 343.794718
-The maximum resident set size (KB) = 1628028
+The total amount of wall time = 399.287537
+The maximum resident set size (KB) = 1634536
Test 163 control_p8_atmlnd_sbs_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_intel
Checking test 164 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5198,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 338.549950
-The maximum resident set size (KB) = 1631404
+The total amount of wall time = 418.763604
+The maximum resident set size (KB) = 1628584
Test 164 control_p8_atmlnd_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_atmlnd_intel
Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5226,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 182.205331
-The maximum resident set size (KB) = 847036
+The total amount of wall time = 219.850821
+The maximum resident set size (KB) = 848576
Test 165 control_restart_p8_atmlnd_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmwav_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmwav_control_noaero_p8_intel
Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5276,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 80.686994
-The maximum resident set size (KB) = 1635336
+The total amount of wall time = 82.974003
+The maximum resident set size (KB) = 1631516
Test 166 atmwav_control_noaero_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_atmwav_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_atmwav_intel
Checking test 167 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5327,14 +5499,14 @@ Checking test 167 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 75.790449
-The maximum resident set size (KB) = 633800
+The total amount of wall time = 78.676602
+The maximum resident set size (KB) = 637188
Test 167 control_atmwav_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_intel
Checking test 168 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5378,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 202.807153
-The maximum resident set size (KB) = 2947520
+The total amount of wall time = 206.295568
+The maximum resident set size (KB) = 2946840
Test 168 atmaero_control_p8_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_intel
Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5429,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 242.950049
-The maximum resident set size (KB) = 3002804
+The total amount of wall time = 244.930632
+The maximum resident set size (KB) = 3000868
Test 169 atmaero_control_p8_rad_intel PASS
baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_micro_intel
+working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_micro_intel
Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5480,300 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 255.668557
-The maximum resident set size (KB) = 3016548
+The total amount of wall time = 258.692191
+The maximum resident set size (KB) = 3012148
Test 170 atmaero_control_p8_rad_micro_intel PASS
-FAILED TESTS:
-cpld_control_p8.v2.sfc_intel 008 failed in run_test
-control_c48.v2.sfc_intel 034 failed in run_test
-control_p8.v2.sfc_intel 044 failed in run_test
-060 regional_wofs_intel failed in check_result
-regional_wofs_intel 060 failed in run_test
-073 rrfs_v1nssl_intel failed in check_result
-rrfs_v1nssl_intel 073 failed in run_test
-074 rrfs_v1nssl_nohailnoccn_intel failed in check_result
-rrfs_v1nssl_nohailnoccn_intel 074 failed in run_test
-141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result
-hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 141 failed in run_test
-
-REGRESSION TEST FAILED
-Thu 08 Feb 2024 08:40:23 AM MST
-Elapsed time: 01h:07m:30s. Have a nice day!
-Thu 08 Feb 2024 10:15:15 AM MST
-Start Regression test
-
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 943 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2swa_intel elapsed time 1115 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/cpld_control_p8.v2.sfc_intel
-Checking test 001 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 322.970294
-The maximum resident set size (KB) = 3092864
-
-Test 001 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_c48.v2.sfc_intel
-Checking test 002 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 309.003916
-The maximum resident set size (KB) = 730856
-
-Test 002 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_p8.v2.sfc_intel
-Checking test 003 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 136.798327
-The maximum resident set size (KB) = 1597336
-
-Test 003 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/regional_wofs_intel
-Checking test 004 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 322.715670
-The maximum resident set size (KB) = 1595336
-
-Test 004 regional_wofs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_intel
-Checking test 005 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 430.075443
-The maximum resident set size (KB) = 1962016
-
-Test 005 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_nohailnoccn_intel
-Checking test 006 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 413.542868
-The maximum resident set size (KB) = 1953020
-
-Test 006 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 299.761206
-The maximum resident set size (KB) = 675980
-
-Test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
REGRESSION TEST WAS SUCCESSFUL
-Thu 08 Feb 2024 10:47:37 AM MST
-Elapsed time: 00h:32m:23s. Have a nice day!
+Thu 08 Feb 2024 09:43:05 PM MST
+Elapsed time: 02h:07m:14s. Have a nice day!
diff --git a/tests/logs/RegressionTests_gaea-c5.log b/tests/logs/RegressionTests_gaea.log
similarity index 70%
rename from tests/logs/RegressionTests_gaea-c5.log
rename to tests/logs/RegressionTests_gaea.log
index 9cfb0497d2..869ba39db4 100644
--- a/tests/logs/RegressionTests_gaea-c5.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,62 +1,62 @@
-Tue 16 Jan 2024 05:43:42 PM EST
+Thu 08 Feb 2024 09:14:00 PM EST
Start Regression test
-Testing UFSWM Hash: a3fd48cfc36e8487b8d5ce1225849a124527de8a
+Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-2301-gf8f7ba7)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 93375088f277aeed2178d25745afd4b5d86e2a0b FV3 (remotes/origin/hailcast-k)
++c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9875-g60c397b91)
- 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354)
- 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 604 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_faster_intel elapsed time 797 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_intel elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 459 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 621 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 633 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 359 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 632 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 615 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 150 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 688 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 415 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 851 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 731 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 725 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 729 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 869 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 539 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1079 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 879 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 511 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 469 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1158 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 390 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 712 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 333 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 583 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 660 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 696 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 877 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 667 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1147 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 773 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 727 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 417 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1125 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 309.693898
- 0: The maximum resident set size (KB) = 3046576
+ 0: The total amount of wall time = 299.420878
+ 0: The maximum resident set size (KB) = 3073108
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,30 +192,67 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 791.715872
- 0: The maximum resident set size (KB) = 1667604
+ 0: The total amount of wall time = 783.101264
+ 0: The maximum resident set size (KB) = 1695132
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_gfsv17_iau_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing 20210323.000000.out_pnt.ww3 .........OK
- Comparing 20210323.000000.out_grd.ww3 .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing GFSFLX.GrbF24 .........OK
+ Comparing GFSPRS.GrbF24 .........OK
+ Comparing RESTART/20210323.120000.coupler.res .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/20210323.120000.MOM.res.nc .........OK
+ Comparing RESTART/iced.2021-03-23-43200.nc .........OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
+ Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
+ Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
+ Comparing 20210323.120000.out_pnt.ww3 .........OK
+ Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 541.881266
- 0: The maximum resident set size (KB) = 946268
+ 0: The total amount of wall time = 835.953830
+ 0: The maximum resident set size (KB) = 1807968
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -268,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 399.935290
- 0: The maximum resident set size (KB) = 934752
+ 0: The total amount of wall time = 380.125975
+ 0: The maximum resident set size (KB) = 941948
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -339,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 861.217840
- 0: The maximum resident set size (KB) = 1655816
+ 0: The total amount of wall time = 856.224449
+ 0: The maximum resident set size (KB) = 1668764
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -398,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1264.912641
- 0: The maximum resident set size (KB) = 1662092
+ 0: The total amount of wall time = 1463.391416
+ 0: The maximum resident set size (KB) = 1699088
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -470,15 +507,27 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 353.473305
- 0: The maximum resident set size (KB) = 3082156
+ 0: The total amount of wall time = 344.691260
+ 0: The maximum resident set size (KB) = 3099192
Test 007 cpld_control_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_p8_intel
-Checking test 008 cpld_restart_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8.v2.sfc_intel
+Checking test 008 cpld_control_p8.v2.sfc_intel results ....
+ Comparing sfcf021.tile1.nc .........OK
+ Comparing sfcf021.tile2.nc .........OK
+ Comparing sfcf021.tile3.nc .........OK
+ Comparing sfcf021.tile4.nc .........OK
+ Comparing sfcf021.tile5.nc .........OK
+ Comparing sfcf021.tile6.nc .........OK
+ Comparing atmf021.tile1.nc .........OK
+ Comparing atmf021.tile2.nc .........OK
+ Comparing atmf021.tile3.nc .........OK
+ Comparing atmf021.tile4.nc .........OK
+ Comparing atmf021.tile5.nc .........OK
+ Comparing atmf021.tile6.nc .........OK
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -530,15 +579,75 @@ Checking test 008 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 211.050119
- 0: The maximum resident set size (KB) = 3141828
+ 0: The total amount of wall time = 347.397426
+ 0: The maximum resident set size (KB) = 3098852
-Test 008 cpld_restart_p8_intel PASS
+Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_qr_p8_intel
-Checking test 009 cpld_control_qr_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_p8_intel
+Checking test 009 cpld_restart_p8_intel results ....
+ Comparing sfcf024.tile1.nc .........OK
+ Comparing sfcf024.tile2.nc .........OK
+ Comparing sfcf024.tile3.nc .........OK
+ Comparing sfcf024.tile4.nc .........OK
+ Comparing sfcf024.tile5.nc .........OK
+ Comparing sfcf024.tile6.nc .........OK
+ Comparing atmf024.tile1.nc .........OK
+ Comparing atmf024.tile2.nc .........OK
+ Comparing atmf024.tile3.nc .........OK
+ Comparing atmf024.tile4.nc .........OK
+ Comparing atmf024.tile5.nc .........OK
+ Comparing atmf024.tile6.nc .........OK
+ Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.MOM.res.nc .........OK
+ Comparing RESTART/iced.2021-03-23-21600.nc .........OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+ Comparing 20210323.060000.out_pnt.ww3 .........OK
+ Comparing 20210323.060000.out_grd.ww3 .........OK
+
+ 0: The total amount of wall time = 201.369035
+ 0: The maximum resident set size (KB) = 3157080
+
+Test 009 cpld_restart_p8_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_qr_p8_intel
+Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -602,15 +711,15 @@ Checking test 009 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 354.006837
- 0: The maximum resident set size (KB) = 3102608
+ 0: The total amount of wall time = 350.074732
+ 0: The maximum resident set size (KB) = 3122940
-Test 009 cpld_control_qr_p8_intel PASS
+Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_qr_p8_intel
-Checking test 010 cpld_restart_qr_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_qr_p8_intel
+Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -662,15 +771,15 @@ Checking test 010 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 215.732089
- 0: The maximum resident set size (KB) = 3160064
+ 0: The total amount of wall time = 205.956550
+ 0: The maximum resident set size (KB) = 3177660
-Test 010 cpld_restart_qr_p8_intel PASS
+Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_2threads_p8_intel
-Checking test 011 cpld_2threads_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_2threads_p8_intel
+Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -722,15 +831,15 @@ Checking test 011 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 321.106361
- 0: The maximum resident set size (KB) = 3395900
+ 0: The total amount of wall time = 313.384977
+ 0: The maximum resident set size (KB) = 3410384
-Test 011 cpld_2threads_p8_intel PASS
+Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_decomp_p8_intel
-Checking test 012 cpld_decomp_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_decomp_p8_intel
+Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -782,15 +891,15 @@ Checking test 012 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 347.187815
- 0: The maximum resident set size (KB) = 3077112
+ 0: The total amount of wall time = 339.131555
+ 0: The maximum resident set size (KB) = 3098536
-Test 012 cpld_decomp_p8_intel PASS
+Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_p8_intel
-Checking test 013 cpld_mpi_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_p8_intel
+Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -842,15 +951,15 @@ Checking test 013 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 295.877139
- 0: The maximum resident set size (KB) = 3015824
+ 0: The total amount of wall time = 290.045166
+ 0: The maximum resident set size (KB) = 3021892
-Test 013 cpld_mpi_p8_intel PASS
+Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_ciceC_p8_intel
-Checking test 014 cpld_control_ciceC_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_ciceC_p8_intel
+Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -914,15 +1023,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 354.219175
- 0: The maximum resident set size (KB) = 3083540
+ 0: The total amount of wall time = 348.186106
+ 0: The maximum resident set size (KB) = 3099424
-Test 014 cpld_control_ciceC_p8_intel PASS
+Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_c192_p8_intel
-Checking test 015 cpld_control_c192_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c192_p8_intel
+Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
Comparing sfcf030.tile3.nc .........OK
@@ -974,15 +1083,15 @@ Checking test 015 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 634.667006
- 0: The maximum resident set size (KB) = 3255856
+ 0: The total amount of wall time = 574.739062
+ 0: The maximum resident set size (KB) = 3283436
-Test 015 cpld_control_c192_p8_intel PASS
+Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_c192_p8_intel
-Checking test 016 cpld_restart_c192_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_c192_p8_intel
+Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
Comparing sfcf030.tile3.nc .........OK
@@ -1034,15 +1143,15 @@ Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 414.922893
- 0: The maximum resident set size (KB) = 3597560
+ 0: The total amount of wall time = 392.269931
+ 0: The maximum resident set size (KB) = 3608872
-Test 016 cpld_restart_c192_p8_intel PASS
+Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_bmark_p8_intel
-Checking test 017 cpld_bmark_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_bmark_p8_intel
+Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
Comparing GFSFLX.GrbF06 .........OK
@@ -1089,15 +1198,15 @@ Checking test 017 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 778.687893
- 0: The maximum resident set size (KB) = 4024020
+ 0: The total amount of wall time = 714.544209
+ 0: The maximum resident set size (KB) = 4037728
-Test 017 cpld_bmark_p8_intel PASS
+Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_bmark_p8_intel
-Checking test 018 cpld_restart_bmark_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_bmark_p8_intel
+Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
Comparing GFSFLX.GrbF06 .........OK
@@ -1144,15 +1253,15 @@ Checking test 018 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 580.130304
- 0: The maximum resident set size (KB) = 4332988
+ 0: The total amount of wall time = 500.305230
+ 0: The maximum resident set size (KB) = 4341392
-Test 018 cpld_restart_bmark_p8_intel PASS
+Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_s2sa_p8_intel
-Checking test 019 cpld_s2sa_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_s2sa_p8_intel
+Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1202,15 +1311,15 @@ Checking test 019 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 336.862677
- 0: The maximum resident set size (KB) = 3039880
+ 0: The total amount of wall time = 328.882216
+ 0: The maximum resident set size (KB) = 3068308
-Test 019 cpld_s2sa_p8_intel PASS
+Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_noaero_p8_intel
-Checking test 020 cpld_control_noaero_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_intel
+Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1273,15 +1382,15 @@ Checking test 020 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 263.519738
- 0: The maximum resident set size (KB) = 1675624
+ 0: The total amount of wall time = 252.442767
+ 0: The maximum resident set size (KB) = 1688036
-Test 020 cpld_control_noaero_p8_intel PASS
+Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_nowave_noaero_p8_intel
-Checking test 021 cpld_control_nowave_noaero_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_nowave_noaero_p8_intel
+Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1342,15 +1451,15 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 269.574441
- 0: The maximum resident set size (KB) = 1718088
+ 0: The total amount of wall time = 262.879555
+ 0: The maximum resident set size (KB) = 1731972
-Test 021 cpld_control_nowave_noaero_p8_intel PASS
+Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_p8_intel
-Checking test 022 cpld_debug_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_p8_intel
+Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1402,15 +1511,15 @@ Checking test 022 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 482.697999
- 0: The maximum resident set size (KB) = 3095796
+ 0: The total amount of wall time = 479.130562
+ 0: The maximum resident set size (KB) = 3131512
-Test 022 cpld_debug_p8_intel PASS
+Test 023 cpld_debug_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_noaero_p8_intel
-Checking test 023 cpld_debug_noaero_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_noaero_p8_intel
+Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1461,15 +1570,15 @@ Checking test 023 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 328.444437
- 0: The maximum resident set size (KB) = 1661188
+ 0: The total amount of wall time = 326.382644
+ 0: The maximum resident set size (KB) = 1698208
-Test 023 cpld_debug_noaero_p8_intel PASS
+Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_noaero_p8_agrid_intel
-Checking test 024 cpld_control_noaero_p8_agrid_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_agrid_intel
+Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1530,15 +1639,15 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 272.243156
- 0: The maximum resident set size (KB) = 1706648
+ 0: The total amount of wall time = 262.402236
+ 0: The maximum resident set size (KB) = 1730948
-Test 024 cpld_control_noaero_p8_agrid_intel PASS
+Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_c48_intel
-Checking test 025 cpld_control_c48_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c48_intel
+Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1587,15 +1696,15 @@ Checking test 025 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 417.436822
- 0: The maximum resident set size (KB) = 2635252
+ 0: The total amount of wall time = 406.098808
+ 0: The maximum resident set size (KB) = 2663032
-Test 025 cpld_control_c48_intel PASS
+Test 026 cpld_control_c48_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_faster_intel
-Checking test 026 cpld_control_p8_faster_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_faster_intel
+Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1659,15 +1768,15 @@ Checking test 026 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 373.586327
- 0: The maximum resident set size (KB) = 3081772
+ 0: The total amount of wall time = 336.737801
+ 0: The maximum resident set size (KB) = 3101712
-Test 026 cpld_control_p8_faster_intel PASS
+Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_pdlib_p8_intel
-Checking test 027 cpld_control_pdlib_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_pdlib_p8_intel
+Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1730,15 +1839,15 @@ Checking test 027 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 888.987257
- 0: The maximum resident set size (KB) = 1699152
+ 0: The total amount of wall time = 846.566459
+ 0: The maximum resident set size (KB) = 1702980
-Test 027 cpld_control_pdlib_p8_intel PASS
+Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_pdlib_p8_intel
-Checking test 028 cpld_restart_pdlib_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_pdlib_p8_intel
+Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1789,15 +1898,15 @@ Checking test 028 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 433.760089
- 0: The maximum resident set size (KB) = 994264
+ 0: The total amount of wall time = 409.132882
+ 0: The maximum resident set size (KB) = 1001232
-Test 028 cpld_restart_pdlib_p8_intel PASS
+Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_pdlib_p8_intel
-Checking test 029 cpld_mpi_pdlib_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_pdlib_p8_intel
+Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1860,15 +1969,15 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 991.583940
- 0: The maximum resident set size (KB) = 1662968
+ 0: The total amount of wall time = 1005.789462
+ 0: The maximum resident set size (KB) = 1682652
-Test 029 cpld_mpi_pdlib_p8_intel PASS
+Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_pdlib_p8_intel
-Checking test 030 cpld_debug_pdlib_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_pdlib_p8_intel
+Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1919,15 +2028,15 @@ Checking test 030 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1566.307181
- 0: The maximum resident set size (KB) = 1677460
+ 0: The total amount of wall time = 1560.548722
+ 0: The maximum resident set size (KB) = 1711056
-Test 030 cpld_debug_pdlib_p8_intel PASS
+Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_flake_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_flake_intel
-Checking test 031 control_flake_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_flake_intel
+Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1937,15 +2046,15 @@ Checking test 031 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 199.081926
- 0: The maximum resident set size (KB) = 648620
+ 0: The total amount of wall time = 198.028888
+ 0: The maximum resident set size (KB) = 672092
-Test 031 control_flake_intel PASS
+Test 032 control_flake_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_intel
-Checking test 032 control_CubedSphereGrid_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_intel
+Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -1971,20 +2080,20 @@ Checking test 032 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 129.603819
- 0: The maximum resident set size (KB) = 596076
+ 0: The total amount of wall time = 122.566159
+ 0: The maximum resident set size (KB) = 617136
-Test 032 control_CubedSphereGrid_intel PASS
+Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_parallel_intel
-Checking test 033 control_CubedSphereGrid_parallel_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_parallel_intel
+Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
+ Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
Comparing cubed_sphere_grid_atmf000.nc .........OK
Comparing cubed_sphere_grid_atmf024.nc .........OK
@@ -1993,15 +2102,15 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 139.329267
- 0: The maximum resident set size (KB) = 610156
+ 0: The total amount of wall time = 126.766859
+ 0: The maximum resident set size (KB) = 625984
-Test 033 control_CubedSphereGrid_parallel_intel PASS
+Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_latlon_intel
-Checking test 034 control_latlon_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_latlon_intel
+Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2011,15 +2120,15 @@ Checking test 034 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 127.631876
- 0: The maximum resident set size (KB) = 600416
+ 0: The total amount of wall time = 123.162572
+ 0: The maximum resident set size (KB) = 620548
-Test 034 control_latlon_intel PASS
+Test 035 control_latlon_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wrtGauss_netcdf_parallel_intel
-Checking test 035 control_wrtGauss_netcdf_parallel_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_intel
+Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2029,15 +2138,15 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 134.971337
- 0: The maximum resident set size (KB) = 597276
+ 0: The total amount of wall time = 127.879693
+ 0: The maximum resident set size (KB) = 620564
-Test 035 control_wrtGauss_netcdf_parallel_intel PASS
+Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c48_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c48_intel
-Checking test 036 control_c48_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48_intel
+Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2075,15 +2184,61 @@ Checking test 036 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 336.104403
-0: The maximum resident set size (KB) = 716424
+0: The total amount of wall time = 330.717033
+0: The maximum resident set size (KB) = 720884
-Test 036 control_c48_intel PASS
+Test 037 control_c48_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c192_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c192_intel
-Checking test 037 control_c192_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48.v2.sfc_intel
+Checking test 038 control_c48.v2.sfc_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+0: The total amount of wall time = 334.720334
+0: The maximum resident set size (KB) = 727156
+
+Test 038 control_c48.v2.sfc_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c192_intel
+Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2093,15 +2248,15 @@ Checking test 037 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 503.132647
- 0: The maximum resident set size (KB) = 723704
+ 0: The total amount of wall time = 501.071043
+ 0: The maximum resident set size (KB) = 738020
-Test 037 control_c192_intel PASS
+Test 039 control_c192_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c384_intel
-Checking test 038 control_c384_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384_intel
+Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -2111,15 +2266,15 @@ Checking test 038 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 1008.895305
- 0: The maximum resident set size (KB) = 1023096
+ 0: The total amount of wall time = 954.853910
+ 0: The maximum resident set size (KB) = 1039848
-Test 038 control_c384_intel PASS
+Test 040 control_c384_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c384gdas_intel
-Checking test 039 control_c384gdas_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384gdas_intel
+Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atmf000.nc .........OK
@@ -2161,15 +2316,15 @@ Checking test 039 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 857.695164
- 0: The maximum resident set size (KB) = 1165944
+ 0: The total amount of wall time = 819.668504
+ 0: The maximum resident set size (KB) = 1182096
-Test 039 control_c384gdas_intel PASS
+Test 041 control_c384gdas_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_intel
-Checking test 040 control_stochy_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_intel
+Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -2179,29 +2334,29 @@ Checking test 040 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 84.480149
- 0: The maximum resident set size (KB) = 610708
+ 0: The total amount of wall time = 83.154593
+ 0: The maximum resident set size (KB) = 624540
-Test 040 control_stochy_intel PASS
+Test 042 control_stochy_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_restart_intel
-Checking test 041 control_stochy_restart_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_restart_intel
+Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 46.921563
- 0: The maximum resident set size (KB) = 418004
+ 0: The total amount of wall time = 45.030959
+ 0: The maximum resident set size (KB) = 428676
-Test 041 control_stochy_restart_intel PASS
+Test 043 control_stochy_restart_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_lndp_intel
-Checking test 042 control_lndp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_intel
+Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -2211,15 +2366,37 @@ Checking test 042 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 78.670539
- 0: The maximum resident set size (KB) = 607896
+ 0: The total amount of wall time = 79.511936
+ 0: The maximum resident set size (KB) = 626012
+
+Test 044 control_lndp_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr4_intel
+Checking test 045 control_iovr4_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf021.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf021.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF21 .........OK
+ Comparing GFSFLX.GrbF24 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF21 .........OK
+ Comparing GFSPRS.GrbF24 .........OK
+
+ 0: The total amount of wall time = 126.438402
+ 0: The maximum resident set size (KB) = 620524
-Test 042 control_lndp_intel PASS
+Test 045 control_iovr4_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_iovr4_intel
-Checking test 043 control_iovr4_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr5_intel
+Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2233,15 +2410,15 @@ Checking test 043 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 124.553412
- 0: The maximum resident set size (KB) = 601008
+ 0: The total amount of wall time = 125.584737
+ 0: The maximum resident set size (KB) = 620392
-Test 043 control_iovr4_intel PASS
+Test 046 control_iovr5_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_iovr5_intel
-Checking test 044 control_iovr5_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_intel
+Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2254,16 +2431,48 @@ Checking test 044 control_iovr5_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 124.791637
- 0: The maximum resident set size (KB) = 597620
+ 0: The total amount of wall time = 153.223911
+ 0: The maximum resident set size (KB) = 1607692
-Test 044 control_iovr5_intel PASS
+Test 047 control_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_intel
-Checking test 045 control_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8.v2.sfc_intel
+Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2309,15 +2518,15 @@ Checking test 045 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 151.143198
- 0: The maximum resident set size (KB) = 1582188
+ 0: The total amount of wall time = 154.482026
+ 0: The maximum resident set size (KB) = 1608784
-Test 045 control_p8_intel PASS
+Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_ugwpv1_intel
-Checking test 046 control_p8_ugwpv1_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_ugwpv1_intel
+Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2363,15 +2572,15 @@ Checking test 046 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 149.453185
- 0: The maximum resident set size (KB) = 1589256
+ 0: The total amount of wall time = 145.699561
+ 0: The maximum resident set size (KB) = 1611024
-Test 046 control_p8_ugwpv1_intel PASS
+Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_restart_p8_intel
-Checking test 047 control_restart_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_intel
+Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF24 .........OK
@@ -2409,15 +2618,15 @@ Checking test 047 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 84.679556
- 0: The maximum resident set size (KB) = 776104
+ 0: The total amount of wall time = 81.549425
+ 0: The maximum resident set size (KB) = 791664
-Test 047 control_restart_p8_intel PASS
+Test 050 control_restart_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_noqr_p8_intel
-Checking test 048 control_noqr_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_noqr_p8_intel
+Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2463,15 +2672,15 @@ Checking test 048 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 152.419694
- 0: The maximum resident set size (KB) = 1579632
+ 0: The total amount of wall time = 147.605183
+ 0: The maximum resident set size (KB) = 1596700
-Test 048 control_noqr_p8_intel PASS
+Test 051 control_noqr_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_restart_noqr_p8_intel
-Checking test 049 control_restart_noqr_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_noqr_p8_intel
+Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF24 .........OK
@@ -2509,15 +2718,15 @@ Checking test 049 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 80.953108
- 0: The maximum resident set size (KB) = 778924
+ 0: The total amount of wall time = 79.539949
+ 0: The maximum resident set size (KB) = 793888
-Test 049 control_restart_noqr_p8_intel PASS
+Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_decomp_p8_intel
-Checking test 050 control_decomp_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_decomp_p8_intel
+Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2559,15 +2768,15 @@ Checking test 050 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 153.916878
- 0: The maximum resident set size (KB) = 1575900
+ 0: The total amount of wall time = 154.443978
+ 0: The maximum resident set size (KB) = 1596264
-Test 050 control_decomp_p8_intel PASS
+Test 053 control_decomp_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_2threads_p8_intel
-Checking test 051 control_2threads_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_2threads_p8_intel
+Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -2609,15 +2818,15 @@ Checking test 051 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 133.521403
- 0: The maximum resident set size (KB) = 1668016
+ 0: The total amount of wall time = 130.109612
+ 0: The maximum resident set size (KB) = 1686360
-Test 051 control_2threads_p8_intel PASS
+Test 054 control_2threads_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_lndp_intel
-Checking test 052 control_p8_lndp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_lndp_intel
+Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2635,15 +2844,15 @@ Checking test 052 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 273.787145
- 0: The maximum resident set size (KB) = 1574156
+ 0: The total amount of wall time = 270.809116
+ 0: The maximum resident set size (KB) = 1607180
-Test 052 control_p8_lndp_intel PASS
+Test 055 control_p8_lndp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_rrtmgp_intel
-Checking test 053 control_p8_rrtmgp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_rrtmgp_intel
+Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2689,15 +2898,15 @@ Checking test 053 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 206.890485
- 0: The maximum resident set size (KB) = 1639780
+ 0: The total amount of wall time = 200.278306
+ 0: The maximum resident set size (KB) = 1658604
-Test 053 control_p8_rrtmgp_intel PASS
+Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_mynn_intel
-Checking test 054 control_p8_mynn_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_mynn_intel
+Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2743,15 +2952,15 @@ Checking test 054 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 156.984850
- 0: The maximum resident set size (KB) = 1590252
+ 0: The total amount of wall time = 153.822891
+ 0: The maximum resident set size (KB) = 1614636
-Test 054 control_p8_mynn_intel PASS
+Test 057 control_p8_mynn_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/merra2_thompson_intel
-Checking test 055 merra2_thompson_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/merra2_thompson_intel
+Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2797,15 +3006,15 @@ Checking test 055 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 185.702357
- 0: The maximum resident set size (KB) = 1590976
+ 0: The total amount of wall time = 180.024807
+ 0: The maximum resident set size (KB) = 1615548
-Test 055 merra2_thompson_intel PASS
+Test 058 merra2_thompson_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_control_intel
-Checking test 056 regional_control_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_intel
+Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2815,29 +3024,29 @@ Checking test 056 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 286.165776
- 0: The maximum resident set size (KB) = 602288
+ 0: The total amount of wall time = 266.776185
+ 0: The maximum resident set size (KB) = 616704
-Test 056 regional_control_intel PASS
+Test 059 regional_control_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_restart_intel
-Checking test 057 regional_restart_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_restart_intel
+Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 153.954454
- 0: The maximum resident set size (KB) = 775012
+ 0: The total amount of wall time = 142.430140
+ 0: The maximum resident set size (KB) = 790308
-Test 057 regional_restart_intel PASS
+Test 060 regional_restart_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_decomp_intel
-Checking test 058 regional_decomp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_decomp_intel
+Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2847,15 +3056,15 @@ Checking test 058 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 290.645549
- 0: The maximum resident set size (KB) = 608428
+ 0: The total amount of wall time = 275.985134
+ 0: The maximum resident set size (KB) = 615772
-Test 058 regional_decomp_intel PASS
+Test 061 regional_decomp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_2threads_intel
-Checking test 059 regional_2threads_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2threads_intel
+Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2865,44 +3074,44 @@ Checking test 059 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 174.817837
- 0: The maximum resident set size (KB) = 742348
+ 0: The total amount of wall time = 156.979689
+ 0: The maximum resident set size (KB) = 761560
-Test 059 regional_2threads_intel PASS
+Test 062 regional_2threads_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_noquilt_intel
-Checking test 060 regional_noquilt_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_noquilt_intel
+Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
Comparing fv3_history.nc .........OK
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 265.077864
- 0: The maximum resident set size (KB) = 1144208
+ 0: The total amount of wall time = 264.382413
+ 0: The maximum resident set size (KB) = 1154836
-Test 060 regional_noquilt_intel PASS
+Test 063 regional_noquilt_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_netcdf_parallel_intel
-Checking test 061 regional_netcdf_parallel_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_netcdf_parallel_intel
+Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 285.231612
- 0: The maximum resident set size (KB) = 603528
+ 0: The total amount of wall time = 268.557387
+ 0: The maximum resident set size (KB) = 616500
-Test 061 regional_netcdf_parallel_intel PASS
+Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_2dwrtdecomp_intel
-Checking test 062 regional_2dwrtdecomp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2dwrtdecomp_intel
+Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2912,15 +3121,15 @@ Checking test 062 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 286.023296
- 0: The maximum resident set size (KB) = 603252
+ 0: The total amount of wall time = 265.501802
+ 0: The maximum resident set size (KB) = 617424
-Test 062 regional_2dwrtdecomp_intel PASS
+Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_wofs_intel
-Checking test 063 regional_wofs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_wofs_intel
+Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2930,15 +3139,15 @@ Checking test 063 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 356.877585
- 0: The maximum resident set size (KB) = 1577304
+ 0: The total amount of wall time = 345.536210
+ 0: The maximum resident set size (KB) = 1591424
-Test 063 regional_wofs_intel PASS
+Test 066 regional_wofs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_intel
-Checking test 064 rap_control_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_intel
+Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2984,15 +3193,15 @@ Checking test 064 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 376.625016
- 0: The maximum resident set size (KB) = 992092
+ 0: The total amount of wall time = 372.406298
+ 0: The maximum resident set size (KB) = 1010184
-Test 064 rap_control_intel PASS
+Test 067 rap_control_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_spp_sppt_shum_skeb_intel
-Checking test 065 regional_spp_sppt_shum_skeb_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_intel
+Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
@@ -3002,15 +3211,15 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 228.963392
- 0: The maximum resident set size (KB) = 1172044
+ 0: The total amount of wall time = 219.383124
+ 0: The maximum resident set size (KB) = 1188660
-Test 065 regional_spp_sppt_shum_skeb_intel PASS
+Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_decomp_intel
-Checking test 066 rap_decomp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_decomp_intel
+Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3056,15 +3265,15 @@ Checking test 066 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 385.734844
- 0: The maximum resident set size (KB) = 993720
+ 0: The total amount of wall time = 389.463204
+ 0: The maximum resident set size (KB) = 1009072
-Test 066 rap_decomp_intel PASS
+Test 069 rap_decomp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_2threads_intel
-Checking test 067 rap_2threads_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_intel
+Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3110,15 +3319,15 @@ Checking test 067 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 352.396445
- 0: The maximum resident set size (KB) = 1083052
+ 0: The total amount of wall time = 339.732048
+ 0: The maximum resident set size (KB) = 1096936
-Test 067 rap_2threads_intel PASS
+Test 070 rap_2threads_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_restart_intel
-Checking test 068 rap_restart_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_intel
+Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF24 .........OK
@@ -3156,15 +3365,15 @@ Checking test 068 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 195.550425
- 0: The maximum resident set size (KB) = 862812
+ 0: The total amount of wall time = 192.513711
+ 0: The maximum resident set size (KB) = 879100
-Test 068 rap_restart_intel PASS
+Test 071 rap_restart_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_intel
-Checking test 069 rap_sfcdiff_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_intel
+Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3210,15 +3419,15 @@ Checking test 069 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 372.999521
- 0: The maximum resident set size (KB) = 990040
+ 0: The total amount of wall time = 375.928959
+ 0: The maximum resident set size (KB) = 1007044
-Test 069 rap_sfcdiff_intel PASS
+Test 072 rap_sfcdiff_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_decomp_intel
-Checking test 070 rap_sfcdiff_decomp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_decomp_intel
+Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3264,15 +3473,15 @@ Checking test 070 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 403.367645
- 0: The maximum resident set size (KB) = 989256
+ 0: The total amount of wall time = 391.662635
+ 0: The maximum resident set size (KB) = 1005480
-Test 070 rap_sfcdiff_decomp_intel PASS
+Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_restart_intel
-Checking test 071 rap_sfcdiff_restart_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_restart_intel
+Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -3310,15 +3519,15 @@ Checking test 071 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 275.662362
- 0: The maximum resident set size (KB) = 863400
+ 0: The total amount of wall time = 277.114967
+ 0: The maximum resident set size (KB) = 878172
-Test 071 rap_sfcdiff_restart_intel PASS
+Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_intel
-Checking test 072 hrrr_control_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_intel
+Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3364,15 +3573,15 @@ Checking test 072 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.730878
- 0: The maximum resident set size (KB) = 979012
+ 0: The total amount of wall time = 196.493005
+ 0: The maximum resident set size (KB) = 1004980
-Test 072 hrrr_control_intel PASS
+Test 075 hrrr_control_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_decomp_intel
-Checking test 073 hrrr_control_decomp_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_intel
+Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3418,15 +3627,15 @@ Checking test 073 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 200.034466
- 0: The maximum resident set size (KB) = 984728
+ 0: The total amount of wall time = 196.037519
+ 0: The maximum resident set size (KB) = 1006700
-Test 073 hrrr_control_decomp_intel PASS
+Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_2threads_intel
-Checking test 074 hrrr_control_2threads_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_intel
+Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3472,29 +3681,29 @@ Checking test 074 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 177.498265
- 0: The maximum resident set size (KB) = 1072352
+ 0: The total amount of wall time = 172.179545
+ 0: The maximum resident set size (KB) = 1087388
-Test 074 hrrr_control_2threads_intel PASS
+Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_restart_intel
-Checking test 075 hrrr_control_restart_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_intel
+Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 100.088272
- 0: The maximum resident set size (KB) = 819512
+ 0: The total amount of wall time = 101.183578
+ 0: The maximum resident set size (KB) = 836076
-Test 075 hrrr_control_restart_intel PASS
+Test 078 hrrr_control_restart_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1beta_intel
-Checking test 076 rrfs_v1beta_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_intel
+Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3540,15 +3749,15 @@ Checking test 076 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 377.033517
- 0: The maximum resident set size (KB) = 988468
+ 0: The total amount of wall time = 367.784492
+ 0: The maximum resident set size (KB) = 1001432
-Test 076 rrfs_v1beta_intel PASS
+Test 079 rrfs_v1beta_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1nssl_intel
-Checking test 077 rrfs_v1nssl_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_intel
+Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3562,15 +3771,15 @@ Checking test 077 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 453.658481
- 0: The maximum resident set size (KB) = 1941460
+ 0: The total amount of wall time = 448.168986
+ 0: The maximum resident set size (KB) = 1964892
-Test 077 rrfs_v1nssl_intel PASS
+Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1nssl_nohailnoccn_intel
-Checking test 078 rrfs_v1nssl_nohailnoccn_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_nohailnoccn_intel
+Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3584,15 +3793,15 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 447.251510
- 0: The maximum resident set size (KB) = 1939508
+ 0: The total amount of wall time = 446.473435
+ 0: The maximum resident set size (KB) = 1951820
-Test 078 rrfs_v1nssl_nohailnoccn_intel PASS
+Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmg_intel
-Checking test 079 control_csawmg_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_intel
+Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3602,15 +3811,15 @@ Checking test 079 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 315.319376
- 0: The maximum resident set size (KB) = 681292
+ 0: The total amount of wall time = 320.662659
+ 0: The maximum resident set size (KB) = 696108
-Test 079 control_csawmg_intel PASS
+Test 082 control_csawmg_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmgt_intel
-Checking test 080 control_csawmgt_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_intel
+Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3620,15 +3829,15 @@ Checking test 080 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 317.569931
- 0: The maximum resident set size (KB) = 680756
+ 0: The total amount of wall time = 315.316370
+ 0: The maximum resident set size (KB) = 693920
-Test 080 control_csawmgt_intel PASS
+Test 083 control_csawmgt_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_ras_intel
-Checking test 081 control_ras_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_intel
+Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3638,27 +3847,27 @@ Checking test 081 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 175.319921
- 0: The maximum resident set size (KB) = 644664
+ 0: The total amount of wall time = 176.143298
+ 0: The maximum resident set size (KB) = 656308
-Test 081 control_ras_intel PASS
+Test 084 control_ras_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wam_intel
-Checking test 082 control_wam_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_intel
+Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 116.362685
- 0: The maximum resident set size (KB) = 360060
+ 0: The total amount of wall time = 113.955734
+ 0: The maximum resident set size (KB) = 370060
-Test 082 control_wam_intel PASS
+Test 085 control_wam_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_faster_intel
-Checking test 083 control_p8_faster_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_faster_intel
+Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3704,15 +3913,15 @@ Checking test 083 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 148.147276
- 0: The maximum resident set size (KB) = 1570880
+ 0: The total amount of wall time = 143.548278
+ 0: The maximum resident set size (KB) = 1606792
-Test 083 control_p8_faster_intel PASS
+Test 086 control_p8_faster_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_control_faster_intel
-Checking test 084 regional_control_faster_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_faster_intel
+Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -3722,15 +3931,15 @@ Checking test 084 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 272.298521
- 0: The maximum resident set size (KB) = 596036
+ 0: The total amount of wall time = 253.726037
+ 0: The maximum resident set size (KB) = 612972
-Test 084 regional_control_faster_intel PASS
+Test 087 regional_control_faster_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_debug_intel
-Checking test 085 control_CubedSphereGrid_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_debug_intel
+Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -3756,365 +3965,365 @@ Checking test 085 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 148.323951
- 0: The maximum resident set size (KB) = 758316
+ 0: The total amount of wall time = 150.242981
+ 0: The maximum resident set size (KB) = 779028
-Test 085 control_CubedSphereGrid_debug_intel PASS
+Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_debug_intel
+Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
+ Comparing sfcf000.nc ............ALT CHECK......OK
+ Comparing sfcf001.nc ............ALT CHECK......OK
Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
+ Comparing atmf001.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 148.851244
- 0: The maximum resident set size (KB) = 757840
+ 0: The total amount of wall time = 146.197231
+ 0: The maximum resident set size (KB) = 782544
-Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS
+Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_debug_intel
-Checking test 087 control_stochy_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_debug_intel
+Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 166.901861
- 0: The maximum resident set size (KB) = 764196
+ 0: The total amount of wall time = 164.661988
+ 0: The maximum resident set size (KB) = 783072
-Test 087 control_stochy_debug_intel PASS
+Test 090 control_stochy_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_lndp_debug_intel
-Checking test 088 control_lndp_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_debug_intel
+Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 151.055818
- 0: The maximum resident set size (KB) = 765528
+ 0: The total amount of wall time = 149.988033
+ 0: The maximum resident set size (KB) = 789344
-Test 088 control_lndp_debug_intel PASS
+Test 091 control_lndp_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmg_debug_intel
-Checking test 089 control_csawmg_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_debug_intel
+Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.250633
- 0: The maximum resident set size (KB) = 803924
+ 0: The total amount of wall time = 233.814321
+ 0: The maximum resident set size (KB) = 825524
-Test 089 control_csawmg_debug_intel PASS
+Test 092 control_csawmg_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmgt_debug_intel
-Checking test 090 control_csawmgt_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_debug_intel
+Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.657800
- 0: The maximum resident set size (KB) = 802516
+ 0: The total amount of wall time = 229.677652
+ 0: The maximum resident set size (KB) = 825732
-Test 090 control_csawmgt_debug_intel PASS
+Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_ras_debug_intel
-Checking test 091 control_ras_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_debug_intel
+Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 151.658604
- 0: The maximum resident set size (KB) = 776528
+ 0: The total amount of wall time = 153.217828
+ 0: The maximum resident set size (KB) = 795992
-Test 091 control_ras_debug_intel PASS
+Test 094 control_ras_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_diag_debug_intel
-Checking test 092 control_diag_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_diag_debug_intel
+Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 155.951183
- 0: The maximum resident set size (KB) = 804896
+ 0: The total amount of wall time = 150.326038
+ 0: The maximum resident set size (KB) = 843788
-Test 092 control_diag_debug_intel PASS
+Test 095 control_diag_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_debug_p8_intel
-Checking test 093 control_debug_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_debug_p8_intel
+Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.318055
- 0: The maximum resident set size (KB) = 1581212
+ 0: The total amount of wall time = 153.807346
+ 0: The maximum resident set size (KB) = 1622056
-Test 093 control_debug_p8_intel PASS
+Test 096 control_debug_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_debug_intel
-Checking test 094 regional_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_debug_intel
+Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 975.624483
- 0: The maximum resident set size (KB) = 615716
+ 0: The total amount of wall time = 951.440755
+ 0: The maximum resident set size (KB) = 635348
-Test 094 regional_debug_intel PASS
+Test 097 regional_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_debug_intel
-Checking test 095 rap_control_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_intel
+Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.741940
- 0: The maximum resident set size (KB) = 1140644
+ 0: The total amount of wall time = 275.574703
+ 0: The maximum resident set size (KB) = 1167644
-Test 095 rap_control_debug_intel PASS
+Test 098 rap_control_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_debug_intel
-Checking test 096 hrrr_control_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_intel
+Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 267.699302
- 0: The maximum resident set size (KB) = 1140584
+ 0: The total amount of wall time = 270.563931
+ 0: The maximum resident set size (KB) = 1165580
-Test 096 hrrr_control_debug_intel PASS
+Test 099 hrrr_control_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_gf_debug_intel
-Checking test 097 hrrr_gf_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_gf_debug_intel
+Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.068401
- 0: The maximum resident set size (KB) = 1141952
+ 0: The total amount of wall time = 274.622625
+ 0: The maximum resident set size (KB) = 1167872
-Test 097 hrrr_gf_debug_intel PASS
+Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_c3_debug_intel
-Checking test 098 hrrr_c3_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_c3_debug_intel
+Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.290088
- 0: The maximum resident set size (KB) = 1127960
+ 0: The total amount of wall time = 274.497264
+ 0: The maximum resident set size (KB) = 1167488
-Test 098 hrrr_c3_debug_intel PASS
+Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_unified_drag_suite_debug_intel
-Checking test 099 rap_unified_drag_suite_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_drag_suite_debug_intel
+Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 281.108971
- 0: The maximum resident set size (KB) = 1129588
+ 0: The total amount of wall time = 279.744497
+ 0: The maximum resident set size (KB) = 1167272
-Test 099 rap_unified_drag_suite_debug_intel PASS
+Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_diag_debug_intel
-Checking test 100 rap_diag_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_diag_debug_intel
+Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 287.170634
- 0: The maximum resident set size (KB) = 1225692
+ 0: The total amount of wall time = 284.761696
+ 0: The maximum resident set size (KB) = 1251864
-Test 100 rap_diag_debug_intel PASS
+Test 103 rap_diag_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_cires_ugwp_debug_intel
-Checking test 101 rap_cires_ugwp_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_cires_ugwp_debug_intel
+Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.810088
- 0: The maximum resident set size (KB) = 1143532
+ 0: The total amount of wall time = 282.799806
+ 0: The maximum resident set size (KB) = 1167008
-Test 101 rap_cires_ugwp_debug_intel PASS
+Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_unified_ugwp_debug_intel
-Checking test 102 rap_unified_ugwp_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_ugwp_debug_intel
+Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 286.111548
- 0: The maximum resident set size (KB) = 1143644
+ 0: The total amount of wall time = 280.032090
+ 0: The maximum resident set size (KB) = 1168560
-Test 102 rap_unified_ugwp_debug_intel PASS
+Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_lndp_debug_intel
-Checking test 103 rap_lndp_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_lndp_debug_intel
+Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.435499
- 0: The maximum resident set size (KB) = 1143704
+ 0: The total amount of wall time = 279.498006
+ 0: The maximum resident set size (KB) = 1168716
-Test 103 rap_lndp_debug_intel PASS
+Test 106 rap_lndp_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_progcld_thompson_debug_intel
-Checking test 104 rap_progcld_thompson_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_progcld_thompson_debug_intel
+Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 282.071319
- 0: The maximum resident set size (KB) = 1145480
+ 0: The total amount of wall time = 275.161299
+ 0: The maximum resident set size (KB) = 1166716
-Test 104 rap_progcld_thompson_debug_intel PASS
+Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_noah_debug_intel
-Checking test 105 rap_noah_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_debug_intel
+Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.470748
- 0: The maximum resident set size (KB) = 1144548
+ 0: The total amount of wall time = 275.169096
+ 0: The maximum resident set size (KB) = 1167368
-Test 105 rap_noah_debug_intel PASS
+Test 108 rap_noah_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_debug_intel
-Checking test 106 rap_sfcdiff_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_debug_intel
+Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.710906
- 0: The maximum resident set size (KB) = 1129072
+ 0: The total amount of wall time = 278.852343
+ 0: The maximum resident set size (KB) = 1165956
-Test 106 rap_sfcdiff_debug_intel PASS
+Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_sfcdiff_cires_ugwp_debug_intel
+Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 459.012989
- 0: The maximum resident set size (KB) = 1141632
+ 0: The total amount of wall time = 446.909084
+ 0: The maximum resident set size (KB) = 1167168
-Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
+Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1beta_debug_intel
-Checking test 108 rrfs_v1beta_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_debug_intel
+Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.678279
- 0: The maximum resident set size (KB) = 1144196
+ 0: The total amount of wall time = 273.997854
+ 0: The maximum resident set size (KB) = 1163820
-Test 108 rrfs_v1beta_debug_intel PASS
+Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_clm_lake_debug_intel
-Checking test 109 rap_clm_lake_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_clm_lake_debug_intel
+Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 323.722512
- 0: The maximum resident set size (KB) = 1130332
+ 0: The total amount of wall time = 342.124919
+ 0: The maximum resident set size (KB) = 1168832
-Test 109 rap_clm_lake_debug_intel PASS
+Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_flake_debug_intel
-Checking test 110 rap_flake_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_flake_debug_intel
+Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.767834
- 0: The maximum resident set size (KB) = 1143940
+ 0: The total amount of wall time = 280.492839
+ 0: The maximum resident set size (KB) = 1167024
-Test 110 rap_flake_debug_intel PASS
+Test 113 rap_flake_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/gnv1_c96_no_nest_debug_intel
-Checking test 111 gnv1_c96_no_nest_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_c96_no_nest_debug_intel
+Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -4154,27 +4363,27 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 481.300630
- 0: The maximum resident set size (KB) = 1150040
+ 0: The total amount of wall time = 488.367076
+ 0: The maximum resident set size (KB) = 1172696
-Test 111 gnv1_c96_no_nest_debug_intel PASS
+Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wam_debug_intel
-Checking test 112 control_wam_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_debug_intel
+Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 276.633284
- 0: The maximum resident set size (KB) = 375776
+ 0: The total amount of wall time = 280.877440
+ 0: The maximum resident set size (KB) = 393268
-Test 112 control_wam_debug_intel PASS
+Test 115 control_wam_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
@@ -4184,15 +4393,15 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 214.039755
- 0: The maximum resident set size (KB) = 1040080
+ 0: The total amount of wall time = 209.916176
+ 0: The maximum resident set size (KB) = 1053440
-Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
+Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn32_phy32_intel
-Checking test 114 rap_control_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn32_phy32_intel
+Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4238,15 +4447,15 @@ Checking test 114 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 307.131229
- 0: The maximum resident set size (KB) = 876216
+ 0: The total amount of wall time = 310.580027
+ 0: The maximum resident set size (KB) = 889532
-Test 114 rap_control_dyn32_phy32_intel PASS
+Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_dyn32_phy32_intel
-Checking test 115 hrrr_control_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_dyn32_phy32_intel
+Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4292,15 +4501,15 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 162.999332
- 0: The maximum resident set size (KB) = 872160
+ 0: The total amount of wall time = 164.184994
+ 0: The maximum resident set size (KB) = 886288
-Test 115 hrrr_control_dyn32_phy32_intel PASS
+Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_2threads_dyn32_phy32_intel
-Checking test 116 rap_2threads_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_dyn32_phy32_intel
+Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4346,15 +4555,15 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 285.368875
- 0: The maximum resident set size (KB) = 939044
+ 0: The total amount of wall time = 287.063893
+ 0: The maximum resident set size (KB) = 946400
-Test 116 rap_2threads_dyn32_phy32_intel PASS
+Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_dyn32_phy32_intel
+Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4400,15 +4609,15 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 150.450706
- 0: The maximum resident set size (KB) = 931488
+ 0: The total amount of wall time = 147.654036
+ 0: The maximum resident set size (KB) = 937980
-Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS
+Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_dyn32_phy32_intel
+Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4454,15 +4663,15 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 171.402501
- 0: The maximum resident set size (KB) = 872248
+ 0: The total amount of wall time = 168.520872
+ 0: The maximum resident set size (KB) = 888012
-Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS
+Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_restart_dyn32_phy32_intel
-Checking test 119 rap_restart_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_dyn32_phy32_intel
+Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -4500,29 +4709,29 @@ Checking test 119 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.146482
- 0: The maximum resident set size (KB) = 775264
+ 0: The total amount of wall time = 229.390693
+ 0: The maximum resident set size (KB) = 785580
-Test 119 rap_restart_dyn32_phy32_intel PASS
+Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_restart_dyn32_phy32_intel
-Checking test 120 hrrr_control_restart_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_dyn32_phy32_intel
+Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 86.803546
- 0: The maximum resident set size (KB) = 756504
+ 0: The total amount of wall time = 85.278739
+ 0: The maximum resident set size (KB) = 767948
-Test 120 hrrr_control_restart_dyn32_phy32_intel PASS
+Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_control_intel
-Checking test 121 conus13km_control_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_control_intel
+Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -4537,41 +4746,41 @@ Checking test 121 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 105.496149
- 0: The maximum resident set size (KB) = 1136096
+ 0: The total amount of wall time = 104.558333
+ 0: The maximum resident set size (KB) = 1094604
-Test 121 conus13km_control_intel PASS
+Test 124 conus13km_control_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_2threads_intel
-Checking test 122 conus13km_2threads_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_2threads_intel
+Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 62.778290
- 0: The maximum resident set size (KB) = 1113892
+ 0: The total amount of wall time = 49.790323
+ 0: The maximum resident set size (KB) = 1074404
-Test 122 conus13km_2threads_intel PASS
+Test 125 conus13km_2threads_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_restart_mismatch_intel
-Checking test 123 conus13km_restart_mismatch_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_restart_mismatch_intel
+Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 71.025432
- 0: The maximum resident set size (KB) = 1039620
+ 0: The total amount of wall time = 60.742555
+ 0: The maximum resident set size (KB) = 974488
-Test 123 conus13km_restart_mismatch_intel PASS
+Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn64_phy32_intel
-Checking test 124 rap_control_dyn64_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_intel
+Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4617,43 +4826,43 @@ Checking test 124 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 219.778185
- 0: The maximum resident set size (KB) = 897216
+ 0: The total amount of wall time = 218.180156
+ 0: The maximum resident set size (KB) = 907760
-Test 124 rap_control_dyn64_phy32_intel PASS
+Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_debug_dyn32_phy32_intel
-Checking test 125 rap_control_debug_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_dyn32_phy32_intel
+Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 272.944176
- 0: The maximum resident set size (KB) = 1023876
+ 0: The total amount of wall time = 268.968198
+ 0: The maximum resident set size (KB) = 1048848
-Test 125 rap_control_debug_dyn32_phy32_intel PASS
+Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_debug_dyn32_phy32_intel
-Checking test 126 hrrr_control_debug_dyn32_phy32_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_dyn32_phy32_intel
+Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 258.928533
- 0: The maximum resident set size (KB) = 1003452
+ 0: The total amount of wall time = 268.556898
+ 0: The maximum resident set size (KB) = 1046904
-Test 126 hrrr_control_debug_dyn32_phy32_intel PASS
+Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_intel
-Checking test 127 conus13km_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_intel
+Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -4666,15 +4875,15 @@ Checking test 127 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 811.919684
- 0: The maximum resident set size (KB) = 1118872
+ 0: The total amount of wall time = 808.962561
+ 0: The maximum resident set size (KB) = 1127572
-Test 127 conus13km_debug_intel PASS
+Test 130 conus13km_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_qr_intel
-Checking test 128 conus13km_debug_qr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_qr_intel
+Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -4687,82 +4896,82 @@ Checking test 128 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 824.509492
- 0: The maximum resident set size (KB) = 785104
+ 0: The total amount of wall time = 815.556756
+ 0: The maximum resident set size (KB) = 801448
-Test 128 conus13km_debug_qr_intel PASS
+Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_2threads_intel
-Checking test 129 conus13km_debug_2threads_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_2threads_intel
+Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 470.905682
- 0: The maximum resident set size (KB) = 1136088
+ 0: The total amount of wall time = 469.559045
+ 0: The maximum resident set size (KB) = 1107132
-Test 129 conus13km_debug_2threads_intel PASS
+Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_radar_tten_debug_intel
-Checking test 130 conus13km_radar_tten_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_radar_tten_debug_intel
+Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 803.509507
- 0: The maximum resident set size (KB) = 1224516
+ 0: The total amount of wall time = 808.327050
+ 0: The maximum resident set size (KB) = 1193728
-Test 130 conus13km_radar_tten_debug_intel PASS
+Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn64_phy32_debug_intel
-Checking test 131 rap_control_dyn64_phy32_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_debug_intel
+Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 269.527941
- 0: The maximum resident set size (KB) = 1035648
+ 0: The total amount of wall time = 273.652687
+ 0: The maximum resident set size (KB) = 1067304
-Test 131 rap_control_dyn64_phy32_debug_intel PASS
+Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_intel
-Checking test 132 hafs_regional_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_intel
+Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 344.913301
- 0: The maximum resident set size (KB) = 699732
+ 0: The total amount of wall time = 299.240879
+ 0: The maximum resident set size (KB) = 710420
-Test 132 hafs_regional_atm_intel PASS
+Test 135 hafs_regional_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_thompson_gfdlsf_intel
+Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 356.951916
- 0: The maximum resident set size (KB) = 1052728
+ 0: The total amount of wall time = 251.197498
+ 0: The maximum resident set size (KB) = 1059192
-Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS
+Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_ocn_intel
-Checking test 134 hafs_regional_atm_ocn_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_intel
+Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing archv.2019_241_06.a .........OK
@@ -4770,15 +4979,15 @@ Checking test 134 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 450.242276
- 0: The maximum resident set size (KB) = 736552
+ 0: The total amount of wall time = 383.144873
+ 0: The maximum resident set size (KB) = 754252
-Test 134 hafs_regional_atm_ocn_intel PASS
+Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_wav_intel
-Checking test 135 hafs_regional_atm_wav_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_wav_intel
+Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing 20190829.060000.out_grd.ww3 .........OK
@@ -4786,15 +4995,15 @@ Checking test 135 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 722.218636
- 0: The maximum resident set size (KB) = 768268
+ 0: The total amount of wall time = 686.033772
+ 0: The maximum resident set size (KB) = 782132
-Test 135 hafs_regional_atm_wav_intel PASS
+Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_ocn_wav_intel
-Checking test 136 hafs_regional_atm_ocn_wav_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_wav_intel
+Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing archv.2019_241_06.a .........OK
@@ -4804,15 +5013,15 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 773.544660
- 0: The maximum resident set size (KB) = 783328
+ 0: The total amount of wall time = 757.235429
+ 0: The maximum resident set size (KB) = 799300
-Test 136 hafs_regional_atm_ocn_wav_intel PASS
+Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_1nest_atm_intel
-Checking test 137 hafs_regional_1nest_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_1nest_atm_intel
+Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -4821,7 +5030,7 @@ Checking test 137 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
@@ -4833,15 +5042,15 @@ Checking test 137 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 319.122365
- 0: The maximum resident set size (KB) = 469412
+ 0: The total amount of wall time = 300.344040
+ 0: The maximum resident set size (KB) = 477124
-Test 137 hafs_regional_1nest_atm_intel PASS
+Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_telescopic_2nests_atm_intel
-Checking test 138 hafs_regional_telescopic_2nests_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_telescopic_2nests_atm_intel
+Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -4849,15 +5058,15 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 421.586071
- 0: The maximum resident set size (KB) = 490492
+ 0: The total amount of wall time = 388.337235
+ 0: The maximum resident set size (KB) = 503016
-Test 138 hafs_regional_telescopic_2nests_atm_intel PASS
+Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_1nest_atm_intel
-Checking test 139 hafs_global_1nest_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_1nest_atm_intel
+Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -4874,9 +5083,9 @@ Checking test 139 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -4885,33 +5094,33 @@ Checking test 139 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 189.640169
- 0: The maximum resident set size (KB) = 362224
+ 0: The total amount of wall time = 160.372348
+ 0: The maximum resident set size (KB) = 374924
-Test 139 hafs_global_1nest_atm_intel PASS
+Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_multiple_4nests_atm_intel
-Checking test 140 hafs_global_multiple_4nests_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_multiple_4nests_atm_intel
+Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -4937,7 +5146,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
@@ -4992,15 +5201,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 531.283341
- 0: The maximum resident set size (KB) = 425424
+ 0: The total amount of wall time = 458.954643
+ 0: The maximum resident set size (KB) = 437152
-Test 140 hafs_global_multiple_4nests_atm_intel PASS
+Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_specified_moving_1nest_atm_intel
+Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5008,15 +5217,15 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 232.811959
- 0: The maximum resident set size (KB) = 501776
+ 0: The total amount of wall time = 207.888221
+ 0: The maximum resident set size (KB) = 513216
-Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS
+Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_intel
-Checking test 142 hafs_regional_storm_following_1nest_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_intel
+Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5025,7 +5234,7 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
@@ -5037,15 +5246,15 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 222.745888
- 0: The maximum resident set size (KB) = 500244
+ 0: The total amount of wall time = 194.455733
+ 0: The maximum resident set size (KB) = 511860
-Test 142 hafs_regional_storm_following_1nest_atm_intel PASS
+Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_intel
+Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5053,29 +5262,29 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 297.896001
- 0: The maximum resident set size (KB) = 553196
+ 0: The total amount of wall time = 250.292158
+ 0: The maximum resident set size (KB) = 577804
-Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
+Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_storm_following_1nest_atm_intel
-Checking test 144 hafs_global_storm_following_1nest_atm_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_storm_following_1nest_atm_intel
+Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 150.417214
- 0: The maximum resident set size (KB) = 394528
+ 0: The total amount of wall time = 86.949307
+ 0: The maximum resident set size (KB) = 405568
-Test 144 hafs_global_storm_following_1nest_atm_intel PASS
+Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/gnv1_nested_intel
-Checking test 145 gnv1_nested_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_nested_intel
+Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5084,7 +5293,7 @@ Checking test 145 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
@@ -5092,58 +5301,76 @@ Checking test 145 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 295.874050
- 0: The maximum resident set size (KB) = 759464
+ 0: The total amount of wall time = 219.436933
+ 0: The maximum resident set size (KB) = 768080
-Test 145 gnv1_nested_intel PASS
+Test 148 gnv1_nested_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 791.827544
- 0: The maximum resident set size (KB) = 555648
+ 0: The total amount of wall time = 754.148677
+ 0: The maximum resident set size (KB) = 581656
+
+Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
+ Comparing atmf006.nc .........OK
+ Comparing sfcf006.nc .........OK
+ Comparing atm.nest02.f006.nc .........OK
+ Comparing sfc.nest02.f006.nc .........OK
+ Comparing archv.2020_238_18.a .........OK
+ Comparing archs.2020_238_18.a .........OK
+ Comparing 20200825.180000.out_grd.ww3 .........OK
+ Comparing 20200825.180000.out_pnt.ww3 .........OK
+
+ 0: The total amount of wall time = 443.090277
+ 0: The maximum resident set size (KB) = 613564
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
+Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5153,162 +5380,179 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 474.891476
- 0: The maximum resident set size (KB) = 600268
+ 0: The total amount of wall time = 449.097950
+ 0: The maximum resident set size (KB) = 785348
+
+Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
+
-Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
+ Comparing atmf003.nc .........OK
+ Comparing sfcf003.nc .........OK
+ Comparing atm.nest02.f003.nc .........OK
+ Comparing sfc.nest02.f003.nc .........OK
+ Comparing ocn_2020_08_25_15.nc .........OK
+ Comparing 20200825.150000.out_grd.ww3 .........OK
+ Comparing 20200825.150000.out_pnt.ww3 .........OK
+
+ 0: The total amount of wall time = 343.858111
+ 0: The maximum resident set size (KB) = 785988
+Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_docn_intel
-Checking test 148 hafs_regional_docn_intel results ....
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_intel
+Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 369.697554
- 0: The maximum resident set size (KB) = 731052
+ 0: The total amount of wall time = 347.181244
+ 0: The maximum resident set size (KB) = 742232
-Test 148 hafs_regional_docn_intel PASS
+Test 153 hafs_regional_docn_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_docn_oisst_intel
-Checking test 149 hafs_regional_docn_oisst_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_oisst_intel
+Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 363.315561
- 0: The maximum resident set size (KB) = 717780
+ 0: The total amount of wall time = 347.690358
+ 0: The maximum resident set size (KB) = 726632
-Test 149 hafs_regional_docn_oisst_intel PASS
+Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_datm_cdeps_intel
-Checking test 150 hafs_regional_datm_cdeps_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_datm_cdeps_intel
+Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 1203.876829
- 0: The maximum resident set size (KB) = 881536
+ 0: The total amount of wall time = 958.575212
+ 0: The maximum resident set size (KB) = 893512
-Test 150 hafs_regional_datm_cdeps_intel PASS
+Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_cfsr_intel
-Checking test 151 datm_cdeps_control_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_intel
+Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 152.721521
- 0: The maximum resident set size (KB) = 744400
+ 0: The total amount of wall time = 143.014780
+ 0: The maximum resident set size (KB) = 756412
-Test 151 datm_cdeps_control_cfsr_intel PASS
+Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_restart_cfsr_intel
-Checking test 152 datm_cdeps_restart_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_restart_cfsr_intel
+Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 89.241455
- 0: The maximum resident set size (KB) = 719896
+ 0: The total amount of wall time = 84.172594
+ 0: The maximum resident set size (KB) = 745116
-Test 152 datm_cdeps_restart_cfsr_intel PASS
+Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_gefs_intel
-Checking test 153 datm_cdeps_control_gefs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_gefs_intel
+Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 143.319656
- 0: The maximum resident set size (KB) = 625412
+ 0: The total amount of wall time = 133.281913
+ 0: The maximum resident set size (KB) = 639272
-Test 153 datm_cdeps_control_gefs_intel PASS
+Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_iau_gefs_intel
-Checking test 154 datm_cdeps_iau_gefs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_iau_gefs_intel
+Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.177665
- 0: The maximum resident set size (KB) = 625636
+ 0: The total amount of wall time = 133.351209
+ 0: The maximum resident set size (KB) = 637524
-Test 154 datm_cdeps_iau_gefs_intel PASS
+Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_stochy_gefs_intel
-Checking test 155 datm_cdeps_stochy_gefs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_stochy_gefs_intel
+Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 146.000397
- 0: The maximum resident set size (KB) = 623368
+ 0: The total amount of wall time = 135.043758
+ 0: The maximum resident set size (KB) = 639188
-Test 155 datm_cdeps_stochy_gefs_intel PASS
+Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_ciceC_cfsr_intel
-Checking test 156 datm_cdeps_ciceC_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_ciceC_cfsr_intel
+Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 153.057042
- 0: The maximum resident set size (KB) = 743860
+ 0: The total amount of wall time = 140.864315
+ 0: The maximum resident set size (KB) = 756268
-Test 156 datm_cdeps_ciceC_cfsr_intel PASS
+Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_bulk_cfsr_intel
-Checking test 157 datm_cdeps_bulk_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_cfsr_intel
+Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 153.397309
- 0: The maximum resident set size (KB) = 744084
+ 0: The total amount of wall time = 141.235915
+ 0: The maximum resident set size (KB) = 744788
-Test 157 datm_cdeps_bulk_cfsr_intel PASS
+Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_bulk_gefs_intel
-Checking test 158 datm_cdeps_bulk_gefs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_gefs_intel
+Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 142.429766
- 0: The maximum resident set size (KB) = 623572
+ 0: The total amount of wall time = 132.056283
+ 0: The maximum resident set size (KB) = 638292
-Test 158 datm_cdeps_bulk_gefs_intel PASS
+Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_mx025_cfsr_intel
-Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_cfsr_intel
+Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -5316,15 +5560,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 349.370421
- 0: The maximum resident set size (KB) = 683572
+ 0: The total amount of wall time = 335.666161
+ 0: The maximum resident set size (KB) = 693008
-Test 159 datm_cdeps_mx025_cfsr_intel PASS
+Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_mx025_gefs_intel
-Checking test 160 datm_cdeps_mx025_gefs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_gefs_intel
+Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -5332,78 +5576,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 357.632522
- 0: The maximum resident set size (KB) = 665536
+ 0: The total amount of wall time = 332.681732
+ 0: The maximum resident set size (KB) = 672552
-Test 160 datm_cdeps_mx025_gefs_intel PASS
+Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_multiple_files_cfsr_intel
-Checking test 161 datm_cdeps_multiple_files_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_multiple_files_cfsr_intel
+Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 152.972935
- 0: The maximum resident set size (KB) = 742784
+ 0: The total amount of wall time = 141.363037
+ 0: The maximum resident set size (KB) = 756144
-Test 161 datm_cdeps_multiple_files_cfsr_intel PASS
+Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_3072x1536_cfsr_intel
-Checking test 162 datm_cdeps_3072x1536_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_3072x1536_cfsr_intel
+Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 279.901398
- 0: The maximum resident set size (KB) = 1987212
+ 0: The total amount of wall time = 270.238896
+ 0: The maximum resident set size (KB) = 2013488
-Test 162 datm_cdeps_3072x1536_cfsr_intel PASS
+Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_gfs_intel
-Checking test 163 datm_cdeps_gfs_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_gfs_intel
+Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 282.047210
- 0: The maximum resident set size (KB) = 1982784
+ 0: The total amount of wall time = 270.815947
+ 0: The maximum resident set size (KB) = 2014160
-Test 163 datm_cdeps_gfs_intel PASS
+Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_debug_cfsr_intel
-Checking test 164 datm_cdeps_debug_cfsr_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_debug_cfsr_intel
+Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 310.953500
- 0: The maximum resident set size (KB) = 731504
+ 0: The total amount of wall time = 315.896359
+ 0: The maximum resident set size (KB) = 730188
-Test 164 datm_cdeps_debug_cfsr_intel PASS
+Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_cfsr_faster_intel
-Checking test 165 datm_cdeps_control_cfsr_faster_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_faster_intel
+Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.991257
- 0: The maximum resident set size (KB) = 744444
+ 0: The total amount of wall time = 140.958446
+ 0: The maximum resident set size (KB) = 756584
-Test 165 datm_cdeps_control_cfsr_faster_intel PASS
+Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_lnd_gswp3_intel
-Checking test 166 datm_cdeps_lnd_gswp3_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_gswp3_intel
+Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
@@ -5411,43 +5655,59 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 24.027295
- 0: The maximum resident set size (KB) = 312892
+ 0: The total amount of wall time = 63.252211
+ 0: The maximum resident set size (KB) = 318676
-Test 166 datm_cdeps_lnd_gswp3_intel PASS
+Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_lnd_gswp3_rst_intel
-Checking test 167 datm_cdeps_lnd_gswp3_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_intel
+Checking test 172 datm_cdeps_lnd_era5_intel results ....
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
+
+ 0: The total amount of wall time = 53.747354
+ 0: The maximum resident set size (KB) = 456596
+
+Test 172 datm_cdeps_lnd_era5_intel PASS
- 0: The total amount of wall time = 27.789230
- 0: The maximum resident set size (KB) = 313064
-Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_rst_intel
+Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
+ 0: The total amount of wall time = 38.592699
+ 0: The maximum resident set size (KB) = 456492
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_atmlnd_sbs_intel
-Checking test 168 control_p8_atmlnd_sbs_intel results ....
+Test 173 datm_cdeps_lnd_era5_rst_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_sbs_intel
+Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
Comparing sfcf000.tile4.nc .........OK
Comparing sfcf000.tile5.nc .........OK
Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
+ Comparing sfcf012.tile1.nc .........OK
+ Comparing sfcf012.tile2.nc .........OK
+ Comparing sfcf012.tile3.nc .........OK
+ Comparing sfcf012.tile4.nc .........OK
+ Comparing sfcf012.tile5.nc .........OK
+ Comparing sfcf012.tile6.nc .........OK
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -5460,18 +5720,24 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing atmf000.tile4.nc .........OK
Comparing atmf000.tile5.nc .........OK
Comparing atmf000.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
+ Comparing atmf012.tile1.nc .........OK
+ Comparing atmf012.tile2.nc .........OK
+ Comparing atmf012.tile3.nc .........OK
+ Comparing atmf012.tile4.nc .........OK
+ Comparing atmf012.tile5.nc .........OK
+ Comparing atmf012.tile6.nc .........OK
Comparing atmf024.tile1.nc .........OK
Comparing atmf024.tile2.nc .........OK
Comparing atmf024.tile3.nc .........OK
Comparing atmf024.tile4.nc .........OK
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
Comparing RESTART/20210323.060000.coupler.res .........OK
Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
@@ -5504,14 +5770,12 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK
- Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
@@ -5519,15 +5783,139 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 205.894228
- 0: The maximum resident set size (KB) = 1634568
+ 0: The total amount of wall time = 368.978372
+ 0: The maximum resident set size (KB) = 1640348
-Test 168 control_p8_atmlnd_sbs_intel PASS
+Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmwav_control_noaero_p8_intel
-Checking test 169 atmwav_control_noaero_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_intel
+Checking test 175 control_p8_atmlnd_intel results ....
+ Comparing sfcf000.tile1.nc .........OK
+ Comparing sfcf000.tile2.nc .........OK
+ Comparing sfcf000.tile3.nc .........OK
+ Comparing sfcf000.tile4.nc .........OK
+ Comparing sfcf000.tile5.nc .........OK
+ Comparing sfcf000.tile6.nc .........OK
+ Comparing sfcf012.tile1.nc .........OK
+ Comparing sfcf012.tile2.nc .........OK
+ Comparing sfcf012.tile3.nc .........OK
+ Comparing sfcf012.tile4.nc .........OK
+ Comparing sfcf012.tile5.nc .........OK
+ Comparing sfcf012.tile6.nc .........OK
+ Comparing sfcf024.tile1.nc .........OK
+ Comparing sfcf024.tile2.nc .........OK
+ Comparing sfcf024.tile3.nc .........OK
+ Comparing sfcf024.tile4.nc .........OK
+ Comparing sfcf024.tile5.nc .........OK
+ Comparing sfcf024.tile6.nc .........OK
+ Comparing atmf000.tile1.nc .........OK
+ Comparing atmf000.tile2.nc .........OK
+ Comparing atmf000.tile3.nc .........OK
+ Comparing atmf000.tile4.nc .........OK
+ Comparing atmf000.tile5.nc .........OK
+ Comparing atmf000.tile6.nc .........OK
+ Comparing atmf012.tile1.nc .........OK
+ Comparing atmf012.tile2.nc .........OK
+ Comparing atmf012.tile3.nc .........OK
+ Comparing atmf012.tile4.nc .........OK
+ Comparing atmf012.tile5.nc .........OK
+ Comparing atmf012.tile6.nc .........OK
+ Comparing atmf024.tile1.nc .........OK
+ Comparing atmf024.tile2.nc .........OK
+ Comparing atmf024.tile3.nc .........OK
+ Comparing atmf024.tile4.nc .........OK
+ Comparing atmf024.tile5.nc .........OK
+ Comparing atmf024.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
+
+ 0: The total amount of wall time = 364.924589
+ 0: The maximum resident set size (KB) = 1642732
+
+Test 175 control_p8_atmlnd_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_atmlnd_intel
+Checking test 176 control_restart_p8_atmlnd_intel results ....
+ Comparing sfcf024.tile1.nc .........OK
+ Comparing sfcf024.tile2.nc .........OK
+ Comparing sfcf024.tile3.nc .........OK
+ Comparing sfcf024.tile4.nc .........OK
+ Comparing sfcf024.tile5.nc .........OK
+ Comparing sfcf024.tile6.nc .........OK
+ Comparing atmf024.tile1.nc .........OK
+ Comparing atmf024.tile2.nc .........OK
+ Comparing atmf024.tile3.nc .........OK
+ Comparing atmf024.tile4.nc .........OK
+ Comparing atmf024.tile5.nc .........OK
+ Comparing atmf024.tile6.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
+ Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
+
+ 0: The total amount of wall time = 198.400630
+ 0: The maximum resident set size (KB) = 837104
+
+Test 176 control_restart_p8_atmlnd_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmwav_control_noaero_p8_intel
+Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -5569,15 +5957,15 @@ Checking test 169 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 93.430413
- 0: The maximum resident set size (KB) = 1622328
+ 0: The total amount of wall time = 89.198779
+ 0: The maximum resident set size (KB) = 1651972
-Test 169 atmwav_control_noaero_p8_intel PASS
+Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_atmwav_intel
-Checking test 170 control_atmwav_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_atmwav_intel
+Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -5620,15 +6008,15 @@ Checking test 170 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 85.160990
- 0: The maximum resident set size (KB) = 621844
+ 0: The total amount of wall time = 84.060129
+ 0: The maximum resident set size (KB) = 639468
-Test 170 control_atmwav_intel PASS
+Test 178 control_atmwav_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_intel
-Checking test 171 atmaero_control_p8_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_intel
+Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5671,15 +6059,15 @@ Checking test 171 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.735983
- 0: The maximum resident set size (KB) = 2925972
+ 0: The total amount of wall time = 240.935096
+ 0: The maximum resident set size (KB) = 2942552
-Test 171 atmaero_control_p8_intel PASS
+Test 179 atmaero_control_p8_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_rad_intel
-Checking test 172 atmaero_control_p8_rad_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_intel
+Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5722,15 +6110,15 @@ Checking test 172 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 269.179501
- 0: The maximum resident set size (KB) = 2982788
+ 0: The total amount of wall time = 277.325749
+ 0: The maximum resident set size (KB) = 3011440
-Test 172 atmaero_control_p8_rad_intel PASS
+Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_rad_micro_intel
-Checking test 173 atmaero_control_p8_rad_micro_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_micro_intel
+Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5773,38 +6161,15 @@ Checking test 173 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 282.055730
- 0: The maximum resident set size (KB) = 2994980
+ 0: The total amount of wall time = 288.052789
+ 0: The maximum resident set size (KB) = 3017704
-Test 173 atmaero_control_p8_rad_micro_intel PASS
+Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_intel
-Checking test 174 regional_atmaq_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf003.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing RESTART/20190801.180000.coupler.res .........OK
- Comparing RESTART/20190801.180000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.phy_data.nc .........OK
- Comparing RESTART/20190801.180000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 637.059641
- 0: The maximum resident set size (KB) = 5016996
-
-Test 174 regional_atmaq_intel PASS
-
-
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_debug_intel
-Checking test 175 regional_atmaq_debug_intel results ....
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
+working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_atmaq_debug_intel
+Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -5812,40 +6177,17 @@ Checking test 175 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.coupler.res .........OK
Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1184.007802
- 0: The maximum resident set size (KB) = 4420124
-
-Test 175 regional_atmaq_debug_intel PASS
-
-
-baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel
-working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_faster_intel
-Checking test 176 regional_atmaq_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf003.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing RESTART/20190801.180000.coupler.res .........OK
- Comparing RESTART/20190801.180000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.180000.phy_data.nc .........OK
- Comparing RESTART/20190801.180000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 1103.694963
- 0: The maximum resident set size (KB) = 5018356
+ 0: The total amount of wall time = 1082.597175
+ 0: The maximum resident set size (KB) = 4478292
-Test 176 regional_atmaq_faster_intel PASS
+Test 182 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Tue 16 Jan 2024 07:46:56 PM EST
-Elapsed time: 02h:03m:19s. Have a nice day!
+Thu 08 Feb 2024 10:37:11 PM EST
+Elapsed time: 01h:23m:16s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 0e2aae60b1..e7d6b31803 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,76 +1,76 @@
-Thu Feb 8 15:08:27 UTC 2024
+Fri Feb 9 02:42:39 UTC 2024
Start Regression test
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
+Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 591 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 568 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 191 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 296 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 651 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 602 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 622 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 379 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 821 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 620 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 655 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 210 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 656 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 690 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 804 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 642 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 718 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 929 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 133 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 955 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 661 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 602 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 368 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 356 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 623 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 654 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 217 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 659 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 641 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 687 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 635 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 821 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile s2sw_debug_intel elapsed time 234 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 670 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 832 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2sw_intel elapsed time 680 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_gnu elapsed time 821 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 906 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 707 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 928 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 136 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 822 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 725 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_mixedmode_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 308.482528
- 0: The maximum resident set size (KB) = 3154924
+ 0: The total amount of wall time = 304.512951
+ 0: The maximum resident set size (KB) = 3166336
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 953.737109
- 0: The maximum resident set size (KB) = 1732348
+ 0: The total amount of wall time = 952.929058
+ 0: The maximum resident set size (KB) = 1731100
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_iau_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 988.246507
- 0: The maximum resident set size (KB) = 2013484
+ 0: The total amount of wall time = 998.082067
+ 0: The maximum resident set size (KB) = 2016556
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 444.800160
- 0: The maximum resident set size (KB) = 1105804
+ 0: The total amount of wall time = 443.715119
+ 0: The maximum resident set size (KB) = 1119636
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1077.520300
- 0: The maximum resident set size (KB) = 1630248
+ 0: The total amount of wall time = 1076.863952
+ 0: The maximum resident set size (KB) = 1640568
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1329.014829
- 0: The maximum resident set size (KB) = 1674412
+ 0: The total amount of wall time = 1334.215786
+ 0: The maximum resident set size (KB) = 1669992
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 342.135533
- 0: The maximum resident set size (KB) = 3143544
+ 0: The total amount of wall time = 332.843461
+ 0: The maximum resident set size (KB) = 3180748
Test 007 cpld_control_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 324.853600
- 0: The maximum resident set size (KB) = 3187320
+ 0: The total amount of wall time = 324.862727
+ 0: The maximum resident set size (KB) = 3205428
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 186.245053
- 0: The maximum resident set size (KB) = 3240480
+ 0: The total amount of wall time = 186.389417
+ 0: The maximum resident set size (KB) = 3247468
Test 009 cpld_restart_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_qr_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 343.227809
- 0: The maximum resident set size (KB) = 3168068
+ 0: The total amount of wall time = 329.110115
+ 0: The maximum resident set size (KB) = 3208992
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_qr_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 190.114373
- 0: The maximum resident set size (KB) = 3255520
+ 0: The total amount of wall time = 188.799647
+ 0: The maximum resident set size (KB) = 3257416
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_2threads_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 348.120739
- 0: The maximum resident set size (KB) = 3502932
+ 0: The total amount of wall time = 311.066150
+ 0: The maximum resident set size (KB) = 3544328
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_decomp_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 350.183167
- 0: The maximum resident set size (KB) = 3135388
+ 0: The total amount of wall time = 328.592107
+ 0: The maximum resident set size (KB) = 3156256
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 287.799593
- 0: The maximum resident set size (KB) = 3005896
+ 0: The total amount of wall time = 276.062640
+ 0: The maximum resident set size (KB) = 3049448
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_ciceC_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 324.660500
- 0: The maximum resident set size (KB) = 3201048
+ 0: The total amount of wall time = 330.358697
+ 0: The maximum resident set size (KB) = 3182120
Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 575.633328
- 0: The maximum resident set size (KB) = 3315924
+ 0: The total amount of wall time = 567.777130
+ 0: The maximum resident set size (KB) = 3321080
Test 016 cpld_control_c192_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 343.493651
- 0: The maximum resident set size (KB) = 3604016
+ 0: The total amount of wall time = 347.288904
+ 0: The maximum resident set size (KB) = 3602060
Test 017 cpld_restart_c192_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 593.432368
- 0: The maximum resident set size (KB) = 4080820
+ 0: The total amount of wall time = 569.134478
+ 0: The maximum resident set size (KB) = 4095196
Test 018 cpld_bmark_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 377.890940
- 0: The maximum resident set size (KB) = 4322752
+ 0: The total amount of wall time = 361.177648
+ 0: The maximum resident set size (KB) = 4339540
Test 019 cpld_restart_bmark_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_s2sa_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 308.020513
- 0: The maximum resident set size (KB) = 3159568
+ 0: The total amount of wall time = 309.830184
+ 0: The maximum resident set size (KB) = 3163856
Test 020 cpld_s2sa_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 256.568370
- 0: The maximum resident set size (KB) = 1731240
+ 0: The total amount of wall time = 263.732118
+ 0: The maximum resident set size (KB) = 1677228
Test 021 cpld_control_noaero_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 257.953383
- 0: The maximum resident set size (KB) = 1701164
+ 0: The total amount of wall time = 255.238359
+ 0: The maximum resident set size (KB) = 1771760
Test 022 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 474.252789
- 0: The maximum resident set size (KB) = 3218088
+ 0: The total amount of wall time = 476.671975
+ 0: The maximum resident set size (KB) = 3238616
Test 023 cpld_debug_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 321.653963
- 0: The maximum resident set size (KB) = 1743916
+ 0: The total amount of wall time = 325.497696
+ 0: The maximum resident set size (KB) = 1710296
Test 024 cpld_debug_noaero_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_agrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 249.364379
- 0: The maximum resident set size (KB) = 1724644
+ 0: The total amount of wall time = 254.393887
+ 0: The maximum resident set size (KB) = 1763108
Test 025 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 553.236689
- 0: The maximum resident set size (KB) = 2838252
+ 0: The total amount of wall time = 556.160931
+ 0: The maximum resident set size (KB) = 2810648
Test 026 cpld_control_c48_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 306.498740
- 0: The maximum resident set size (KB) = 3183960
+ 0: The total amount of wall time = 310.820787
+ 0: The maximum resident set size (KB) = 3210152
Test 027 cpld_control_p8_faster_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 963.213310
- 0: The maximum resident set size (KB) = 1759224
+ 0: The total amount of wall time = 963.543557
+ 0: The maximum resident set size (KB) = 1758664
Test 028 cpld_control_pdlib_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 444.997803
- 0: The maximum resident set size (KB) = 1163292
+ 0: The total amount of wall time = 445.964303
+ 0: The maximum resident set size (KB) = 1167036
Test 029 cpld_restart_pdlib_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1105.923375
- 0: The maximum resident set size (KB) = 1651300
+ 0: The total amount of wall time = 1100.982335
+ 0: The maximum resident set size (KB) = 1669064
Test 030 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1473.104065
- 0: The maximum resident set size (KB) = 1707776
+ 0: The total amount of wall time = 1473.509921
+ 0: The maximum resident set size (KB) = 1705596
Test 031 cpld_debug_pdlib_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 210.709650
- 0: The maximum resident set size (KB) = 664288
+ 0: The total amount of wall time = 186.964136
+ 0: The maximum resident set size (KB) = 701272
Test 032 control_flake_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,36 +2094,36 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 131.579148
- 0: The maximum resident set size (KB) = 644976
+ 0: The total amount of wall time = 131.087320
+ 0: The maximum resident set size (KB) = 652008
Test 033 control_CubedSphereGrid_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
+ Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_atmf000.nc .........OK
Comparing cubed_sphere_grid_atmf024.nc .........OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 139.524667
- 0: The maximum resident set size (KB) = 631224
+ 0: The total amount of wall time = 138.827757
+ 0: The maximum resident set size (KB) = 653988
Test 034 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_latlon_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 134.712062
- 0: The maximum resident set size (KB) = 620428
+ 0: The total amount of wall time = 133.306776
+ 0: The maximum resident set size (KB) = 644756
Test 035 control_latlon_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 138.357162
- 0: The maximum resident set size (KB) = 618168
+ 0: The total amount of wall time = 135.065789
+ 0: The maximum resident set size (KB) = 645940
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 370.166127
-0: The maximum resident set size (KB) = 865892
+0: The total amount of wall time = 374.087642
+0: The maximum resident set size (KB) = 875684
Test 037 control_c48_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 370.304402
-0: The maximum resident set size (KB) = 859856
+0: The total amount of wall time = 369.784073
+0: The maximum resident set size (KB) = 872564
Test 038 control_c48.v2.sfc_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c192_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 529.723595
- 0: The maximum resident set size (KB) = 855268
+ 0: The total amount of wall time = 527.996221
+ 0: The maximum resident set size (KB) = 848128
Test 039 control_c192_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 532.615923
- 0: The maximum resident set size (KB) = 1261272
+ 0: The total amount of wall time = 522.296572
+ 0: The maximum resident set size (KB) = 1283096
Test 040 control_c384_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384gdas_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2300,7 +2300,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.coupler.res .........OK
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
@@ -2308,7 +2308,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
@@ -2318,7 +2318,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
@@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 466.065616
- 0: The maximum resident set size (KB) = 1393596
+ 0: The total amount of wall time = 456.938041
+ 0: The maximum resident set size (KB) = 1382916
Test 041 control_c384gdas_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 88.363915
- 0: The maximum resident set size (KB) = 653604
+ 0: The total amount of wall time = 87.325746
+ 0: The maximum resident set size (KB) = 621884
Test 042 control_stochy_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_restart_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 47.884478
- 0: The maximum resident set size (KB) = 507492
+ 0: The total amount of wall time = 47.983257
+ 0: The maximum resident set size (KB) = 506516
Test 043 control_stochy_restart_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 82.152981
- 0: The maximum resident set size (KB) = 653456
+ 0: The total amount of wall time = 82.630832
+ 0: The maximum resident set size (KB) = 648564
Test 044 control_lndp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr4_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.395905
- 0: The maximum resident set size (KB) = 649312
+ 0: The total amount of wall time = 133.816801
+ 0: The maximum resident set size (KB) = 649496
Test 045 control_iovr4_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.337259
- 0: The maximum resident set size (KB) = 648724
+ 0: The total amount of wall time = 134.809589
+ 0: The maximum resident set size (KB) = 641736
Test 046 control_iovr5_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.784488
- 0: The maximum resident set size (KB) = 1590784
+ 0: The total amount of wall time = 166.886411
+ 0: The maximum resident set size (KB) = 1585764
Test 047 control_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 165.513816
- 0: The maximum resident set size (KB) = 1621544
+ 0: The total amount of wall time = 165.322435
+ 0: The maximum resident set size (KB) = 1613244
Test 048 control_p8.v2.sfc_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 157.142625
- 0: The maximum resident set size (KB) = 1615064
+ 0: The total amount of wall time = 158.585781
+ 0: The maximum resident set size (KB) = 1619112
Test 049 control_p8_ugwpv1_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 85.907367
- 0: The maximum resident set size (KB) = 859784
+ 0: The total amount of wall time = 86.088350
+ 0: The maximum resident set size (KB) = 881124
Test 050 control_restart_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_noqr_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 168.195148
- 0: The maximum resident set size (KB) = 1559704
+ 0: The total amount of wall time = 160.906648
+ 0: The maximum resident set size (KB) = 1604684
Test 051 control_noqr_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_noqr_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 84.521588
- 0: The maximum resident set size (KB) = 915724
+ 0: The total amount of wall time = 84.096340
+ 0: The maximum resident set size (KB) = 902336
Test 052 control_restart_noqr_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_decomp_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 167.286281
- 0: The maximum resident set size (KB) = 1600912
+ 0: The total amount of wall time = 167.835644
+ 0: The maximum resident set size (KB) = 1603656
Test 053 control_decomp_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_2threads_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 151.290249
- 0: The maximum resident set size (KB) = 1702476
+ 0: The total amount of wall time = 154.033605
+ 0: The maximum resident set size (KB) = 1706080
Test 054 control_2threads_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 297.579657
- 0: The maximum resident set size (KB) = 1604256
+ 0: The total amount of wall time = 296.801899
+ 0: The maximum resident set size (KB) = 1609640
Test 055 control_p8_lndp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_rrtmgp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 217.021947
- 0: The maximum resident set size (KB) = 1677636
+ 0: The total amount of wall time = 217.532517
+ 0: The maximum resident set size (KB) = 1674888
Test 056 control_p8_rrtmgp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_mynn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.503320
- 0: The maximum resident set size (KB) = 1622600
+ 0: The total amount of wall time = 165.592187
+ 0: The maximum resident set size (KB) = 1607640
Test 057 control_p8_mynn_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/merra2_thompson_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 193.791505
- 0: The maximum resident set size (KB) = 1627612
+ 0: The total amount of wall time = 195.167623
+ 0: The maximum resident set size (KB) = 1610904
Test 058 merra2_thompson_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 293.314301
- 0: The maximum resident set size (KB) = 850052
+ 0: The total amount of wall time = 294.436146
+ 0: The maximum resident set size (KB) = 853740
Test 059 regional_control_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_restart_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 151.850471
- 0: The maximum resident set size (KB) = 989684
+ 0: The total amount of wall time = 154.069289
+ 0: The maximum resident set size (KB) = 1014072
Test 060 regional_restart_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_decomp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 312.509804
- 0: The maximum resident set size (KB) = 843328
+ 0: The total amount of wall time = 310.864483
+ 0: The maximum resident set size (KB) = 849644
Test 061 regional_decomp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2threads_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 180.266513
- 0: The maximum resident set size (KB) = 845260
+ 0: The total amount of wall time = 179.472044
+ 0: The maximum resident set size (KB) = 813984
Test 062 regional_2threads_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_noquilt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 292.569724
- 0: The maximum resident set size (KB) = 1361036
+ 0: The total amount of wall time = 294.253920
+ 0: The maximum resident set size (KB) = 1327104
Test 063 regional_noquilt_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 291.349207
- 0: The maximum resident set size (KB) = 845580
+ 0: The total amount of wall time = 292.926792
+ 0: The maximum resident set size (KB) = 852028
Test 064 regional_netcdf_parallel_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2dwrtdecomp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 293.482920
- 0: The maximum resident set size (KB) = 850384
+ 0: The total amount of wall time = 293.809348
+ 0: The maximum resident set size (KB) = 848108
Test 065 regional_2dwrtdecomp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_wofs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 383.607964
- 0: The maximum resident set size (KB) = 1917360
+ 0: The total amount of wall time = 380.831097
+ 0: The maximum resident set size (KB) = 1909572
Test 066 regional_wofs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 448.168093
- 0: The maximum resident set size (KB) = 1098992
+ 0: The total amount of wall time = 448.093181
+ 0: The maximum resident set size (KB) = 1103804
Test 067 rap_control_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 235.931166
- 0: The maximum resident set size (KB) = 1276012
+ 0: The total amount of wall time = 237.982413
+ 0: The maximum resident set size (KB) = 1289348
Test 068 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 471.009899
- 0: The maximum resident set size (KB) = 1007800
+ 0: The total amount of wall time = 469.086162
+ 0: The maximum resident set size (KB) = 1001332
Test 069 rap_decomp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 419.434334
- 0: The maximum resident set size (KB) = 1163568
+ 0: The total amount of wall time = 420.980809
+ 0: The maximum resident set size (KB) = 1182584
Test 070 rap_2threads_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.997067
- 0: The maximum resident set size (KB) = 1107008
+ 0: The total amount of wall time = 228.656988
+ 0: The maximum resident set size (KB) = 1082664
Test 071 rap_restart_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 445.413781
- 0: The maximum resident set size (KB) = 1102424
+ 0: The total amount of wall time = 447.514183
+ 0: The maximum resident set size (KB) = 1105416
Test 072 rap_sfcdiff_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 470.026565
- 0: The maximum resident set size (KB) = 1033808
+ 0: The total amount of wall time = 472.544337
+ 0: The maximum resident set size (KB) = 1035216
Test 073 rap_sfcdiff_decomp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 335.988955
- 0: The maximum resident set size (KB) = 1129108
+ 0: The total amount of wall time = 336.646295
+ 0: The maximum resident set size (KB) = 1122916
Test 074 rap_sfcdiff_restart_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.821286
- 0: The maximum resident set size (KB) = 1046068
+ 0: The total amount of wall time = 227.019135
+ 0: The maximum resident set size (KB) = 1044308
Test 075 hrrr_control_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.629703
- 0: The maximum resident set size (KB) = 1023112
+ 0: The total amount of wall time = 232.384019
+ 0: The maximum resident set size (KB) = 1017056
Test 076 hrrr_control_decomp_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.014405
- 0: The maximum resident set size (KB) = 1104824
+ 0: The total amount of wall time = 207.734882
+ 0: The maximum resident set size (KB) = 1107988
Test 077 hrrr_control_2threads_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 118.119239
- 0: The maximum resident set size (KB) = 993664
+ 0: The total amount of wall time = 118.626222
+ 0: The maximum resident set size (KB) = 1001748
Test 078 hrrr_control_restart_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 440.896499
- 0: The maximum resident set size (KB) = 1084516
+ 0: The total amount of wall time = 440.962499
+ 0: The maximum resident set size (KB) = 1099572
Test 079 rrfs_v1beta_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 540.362325
- 0: The maximum resident set size (KB) = 1977764
+ 0: The total amount of wall time = 532.209018
+ 0: The maximum resident set size (KB) = 1980720
Test 080 rrfs_v1nssl_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_nohailnoccn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 526.826438
- 0: The maximum resident set size (KB) = 2035232
+ 0: The total amount of wall time = 522.039560
+ 0: The maximum resident set size (KB) = 2025540
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 338.588878
- 0: The maximum resident set size (KB) = 740564
+ 0: The total amount of wall time = 339.768205
+ 0: The maximum resident set size (KB) = 747648
Test 082 control_csawmg_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 332.372974
- 0: The maximum resident set size (KB) = 742316
+ 0: The total amount of wall time = 336.280679
+ 0: The maximum resident set size (KB) = 746848
Test 083 control_csawmgt_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.814175
- 0: The maximum resident set size (KB) = 732676
+ 0: The total amount of wall time = 184.605268
+ 0: The maximum resident set size (KB) = 737416
Test 084 control_ras_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 111.289121
- 0: The maximum resident set size (KB) = 657500
+ 0: The total amount of wall time = 112.532138
+ 0: The maximum resident set size (KB) = 653352
Test 085 control_wam_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 144.288004
- 0: The maximum resident set size (KB) = 1620200
+ 0: The total amount of wall time = 146.297436
+ 0: The maximum resident set size (KB) = 1600432
Test 086 control_p8_faster_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 270.297014
- 0: The maximum resident set size (KB) = 819524
+ 0: The total amount of wall time = 266.690204
+ 0: The maximum resident set size (KB) = 853360
Test 087 regional_control_faster_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 147.121616
- 0: The maximum resident set size (KB) = 808752
+ 0: The total amount of wall time = 149.574969
+ 0: The maximum resident set size (KB) = 805484
Test 088 control_CubedSphereGrid_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
+ Comparing atmf000.nc ............ALT CHECK......OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 147.015880
- 0: The maximum resident set size (KB) = 812864
+ 0: The total amount of wall time = 146.885189
+ 0: The maximum resident set size (KB) = 810076
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 165.721805
- 0: The maximum resident set size (KB) = 818436
+ 0: The total amount of wall time = 165.728363
+ 0: The maximum resident set size (KB) = 789572
Test 090 control_stochy_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.378824
- 0: The maximum resident set size (KB) = 819920
+ 0: The total amount of wall time = 148.800299
+ 0: The maximum resident set size (KB) = 813456
Test 091 control_lndp_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 226.078308
- 0: The maximum resident set size (KB) = 862512
+ 0: The total amount of wall time = 228.186015
+ 0: The maximum resident set size (KB) = 863652
Test 092 control_csawmg_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 226.740961
- 0: The maximum resident set size (KB) = 855692
+ 0: The total amount of wall time = 219.018937
+ 0: The maximum resident set size (KB) = 862984
Test 093 control_csawmgt_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.562313
- 0: The maximum resident set size (KB) = 825652
+ 0: The total amount of wall time = 148.669722
+ 0: The maximum resident set size (KB) = 813432
Test 094 control_ras_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.848000
- 0: The maximum resident set size (KB) = 867432
+ 0: The total amount of wall time = 154.891525
+ 0: The maximum resident set size (KB) = 870772
Test 095 control_diag_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.435773
- 0: The maximum resident set size (KB) = 1632216
+ 0: The total amount of wall time = 157.349447
+ 0: The maximum resident set size (KB) = 1636064
Test 096 control_debug_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 958.876863
- 0: The maximum resident set size (KB) = 838604
+ 0: The total amount of wall time = 993.244043
+ 0: The maximum resident set size (KB) = 829480
Test 097 regional_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.880276
- 0: The maximum resident set size (KB) = 1193948
+ 0: The total amount of wall time = 272.939965
+ 0: The maximum resident set size (KB) = 1196080
Test 098 rap_control_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.149309
- 0: The maximum resident set size (KB) = 1201176
+ 0: The total amount of wall time = 264.184276
+ 0: The maximum resident set size (KB) = 1201444
Test 099 hrrr_control_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.689059
- 0: The maximum resident set size (KB) = 1201728
+ 0: The total amount of wall time = 274.298302
+ 0: The maximum resident set size (KB) = 1192044
Test 100 hrrr_gf_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 270.013251
- 0: The maximum resident set size (KB) = 1204432
+ 0: The total amount of wall time = 271.585663
+ 0: The maximum resident set size (KB) = 1170332
Test 101 hrrr_c3_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_drag_suite_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 267.997141
- 0: The maximum resident set size (KB) = 1207464
+ 0: The total amount of wall time = 278.892891
+ 0: The maximum resident set size (KB) = 1203184
Test 102 rap_unified_drag_suite_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 282.283111
- 0: The maximum resident set size (KB) = 1282944
+ 0: The total amount of wall time = 276.458237
+ 0: The maximum resident set size (KB) = 1285900
Test 103 rap_diag_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.284862
- 0: The maximum resident set size (KB) = 1202040
+ 0: The total amount of wall time = 272.382971
+ 0: The maximum resident set size (KB) = 1199752
Test 104 rap_cires_ugwp_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 277.044195
- 0: The maximum resident set size (KB) = 1201648
+ 0: The total amount of wall time = 279.569299
+ 0: The maximum resident set size (KB) = 1197360
Test 105 rap_unified_ugwp_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.870984
- 0: The maximum resident set size (KB) = 1193776
+ 0: The total amount of wall time = 274.372101
+ 0: The maximum resident set size (KB) = 1196256
Test 106 rap_lndp_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.906707
- 0: The maximum resident set size (KB) = 1191716
+ 0: The total amount of wall time = 271.979548
+ 0: The maximum resident set size (KB) = 1206376
Test 107 rap_progcld_thompson_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 270.729682
- 0: The maximum resident set size (KB) = 1196132
+ 0: The total amount of wall time = 268.013535
+ 0: The maximum resident set size (KB) = 1200588
Test 108 rap_noah_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.185789
- 0: The maximum resident set size (KB) = 1164884
+ 0: The total amount of wall time = 276.144950
+ 0: The maximum resident set size (KB) = 1173876
Test 109 rap_sfcdiff_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 438.612333
- 0: The maximum resident set size (KB) = 1192988
+ 0: The total amount of wall time = 444.242462
+ 0: The maximum resident set size (KB) = 1192956
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 266.136387
- 0: The maximum resident set size (KB) = 1196268
+ 0: The total amount of wall time = 266.133423
+ 0: The maximum resident set size (KB) = 1160672
Test 111 rrfs_v1beta_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 330.736515
- 0: The maximum resident set size (KB) = 1196780
+ 0: The total amount of wall time = 329.830037
+ 0: The maximum resident set size (KB) = 1195020
Test 112 rap_clm_lake_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 277.544200
- 0: The maximum resident set size (KB) = 1206344
+ 0: The total amount of wall time = 275.610092
+ 0: The maximum resident set size (KB) = 1203804
Test 113 rap_flake_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 476.857204
- 0: The maximum resident set size (KB) = 1196376
+ 0: The total amount of wall time = 474.797353
+ 0: The maximum resident set size (KB) = 1207704
Test 114 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 274.219321
- 0: The maximum resident set size (KB) = 480108
+ 0: The total amount of wall time = 277.834959
+ 0: The maximum resident set size (KB) = 509588
Test 115 control_wam_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 222.102732
- 0: The maximum resident set size (KB) = 1121988
+ 0: The total amount of wall time = 216.466826
+ 0: The maximum resident set size (KB) = 1150164
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 369.377136
- 0: The maximum resident set size (KB) = 1037496
+ 0: The total amount of wall time = 369.029832
+ 0: The maximum resident set size (KB) = 1052676
Test 117 rap_control_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 192.103901
- 0: The maximum resident set size (KB) = 978968
+ 0: The total amount of wall time = 190.140482
+ 0: The maximum resident set size (KB) = 963984
Test 118 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 348.367430
- 0: The maximum resident set size (KB) = 1078840
+ 0: The total amount of wall time = 348.481483
+ 0: The maximum resident set size (KB) = 1092100
Test 119 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 176.796165
- 0: The maximum resident set size (KB) = 961204
+ 0: The total amount of wall time = 177.686687
+ 0: The maximum resident set size (KB) = 958268
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 201.489600
- 0: The maximum resident set size (KB) = 917744
+ 0: The total amount of wall time = 204.075477
+ 0: The maximum resident set size (KB) = 903488
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 276.735808
- 0: The maximum resident set size (KB) = 1036056
+ 0: The total amount of wall time = 276.333974
+ 0: The maximum resident set size (KB) = 1035132
Test 122 rap_restart_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 100.460628
- 0: The maximum resident set size (KB) = 926544
+ 0: The total amount of wall time = 99.774300
+ 0: The maximum resident set size (KB) = 925324
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 109.867316
- 0: The maximum resident set size (KB) = 1181532
+ 0: The total amount of wall time = 111.576488
+ 0: The maximum resident set size (KB) = 1202272
Test 124 conus13km_control_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 43.454959
- 0: The maximum resident set size (KB) = 1114984
+ 0: The total amount of wall time = 42.983390
+ 0: The maximum resident set size (KB) = 1095808
Test 125 conus13km_2threads_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 63.485398
- 0: The maximum resident set size (KB) = 1105080
+ 0: The total amount of wall time = 61.778142
+ 0: The maximum resident set size (KB) = 1101396
Test 126 conus13km_restart_mismatch_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.340113
- 0: The maximum resident set size (KB) = 984388
+ 0: The total amount of wall time = 243.068761
+ 0: The maximum resident set size (KB) = 982284
Test 127 rap_control_dyn64_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 269.622936
- 0: The maximum resident set size (KB) = 1082972
+ 0: The total amount of wall time = 273.424007
+ 0: The maximum resident set size (KB) = 1080424
Test 128 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 266.892232
- 0: The maximum resident set size (KB) = 1038680
+ 0: The total amount of wall time = 263.006189
+ 0: The maximum resident set size (KB) = 1080240
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 827.271325
- 0: The maximum resident set size (KB) = 1222140
+ 0: The total amount of wall time = 811.195371
+ 0: The maximum resident set size (KB) = 1216144
Test 130 conus13km_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 828.850237
- 0: The maximum resident set size (KB) = 922196
+ 0: The total amount of wall time = 820.108485
+ 0: The maximum resident set size (KB) = 921656
Test 131 conus13km_debug_qr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 466.672947
- 0: The maximum resident set size (KB) = 1149084
+ 0: The total amount of wall time = 463.045155
+ 0: The maximum resident set size (KB) = 1150768
Test 132 conus13km_debug_2threads_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 815.780439
- 0: The maximum resident set size (KB) = 1298932
+ 0: The total amount of wall time = 835.709060
+ 0: The maximum resident set size (KB) = 1271496
Test 133 conus13km_radar_tten_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.675066
- 0: The maximum resident set size (KB) = 1108464
+ 0: The total amount of wall time = 273.238718
+ 0: The maximum resident set size (KB) = 1115652
Test 134 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 268.251409
- 0: The maximum resident set size (KB) = 732788
+ 0: The total amount of wall time = 269.591331
+ 0: The maximum resident set size (KB) = 732584
Test 135 hafs_regional_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 340.348863
- 0: The maximum resident set size (KB) = 1109796
+ 0: The total amount of wall time = 329.311193
+ 0: The maximum resident set size (KB) = 1115180
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 389.934656
- 0: The maximum resident set size (KB) = 825280
+ 0: The total amount of wall time = 393.141806
+ 0: The maximum resident set size (KB) = 830692
Test 137 hafs_regional_atm_ocn_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 762.025316
- 0: The maximum resident set size (KB) = 866276
+ 0: The total amount of wall time = 763.367385
+ 0: The maximum resident set size (KB) = 855152
Test 138 hafs_regional_atm_wav_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 873.687802
- 0: The maximum resident set size (KB) = 882912
+ 0: The total amount of wall time = 866.318467
+ 0: The maximum resident set size (KB) = 877336
Test 139 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 305.352891
- 0: The maximum resident set size (KB) = 497824
+ 0: The total amount of wall time = 302.505423
+ 0: The maximum resident set size (KB) = 505936
Test 140 hafs_regional_1nest_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_telescopic_2nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 369.952929
- 0: The maximum resident set size (KB) = 520876
+ 0: The total amount of wall time = 372.281162
+ 0: The maximum resident set size (KB) = 514792
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5091,12 +5091,12 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
@@ -5116,7 +5116,7 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
@@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 146.054216
- 0: The maximum resident set size (KB) = 373172
+ 0: The total amount of wall time = 144.728929
+ 0: The maximum resident set size (KB) = 376824
Test 142 hafs_global_1nest_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_multiple_4nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5161,8 +5161,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
@@ -5172,7 +5172,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
@@ -5198,7 +5198,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
@@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 404.238107
- 0: The maximum resident set size (KB) = 472672
+ 0: The total amount of wall time = 397.004363
+ 0: The maximum resident set size (KB) = 482756
Test 143 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 204.265690
- 0: The maximum resident set size (KB) = 533760
+ 0: The total amount of wall time = 204.311082
+ 0: The maximum resident set size (KB) = 531212
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5260,14 +5260,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 193.102125
- 0: The maximum resident set size (KB) = 531940
+ 0: The total amount of wall time = 192.788451
+ 0: The maximum resident set size (KB) = 528404
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 234.048993
- 0: The maximum resident set size (KB) = 582600
+ 0: The total amount of wall time = 233.026851
+ 0: The maximum resident set size (KB) = 580944
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 60.818529
- 0: The maximum resident set size (KB) = 408652
+ 0: The total amount of wall time = 64.936264
+ 0: The maximum resident set size (KB) = 399072
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_nested_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5307,19 +5307,19 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 228.870970
- 0: The maximum resident set size (KB) = 776912
+ 0: The total amount of wall time = 226.320282
+ 0: The maximum resident set size (KB) = 784844
Test 148 gnv1_nested_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 734.083215
- 0: The maximum resident set size (KB) = 569708
+ 0: The total amount of wall time = 712.907872
+ 0: The maximum resident set size (KB) = 624452
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 490.524840
- 0: The maximum resident set size (KB) = 668696
+ 0: The total amount of wall time = 492.970928
+ 0: The maximum resident set size (KB) = 660640
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 494.740532
- 0: The maximum resident set size (KB) = 739776
+ 0: The total amount of wall time = 508.612300
+ 0: The maximum resident set size (KB) = 698852
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 363.825025
- 0: The maximum resident set size (KB) = 681788
+ 0: The total amount of wall time = 363.479913
+ 0: The maximum resident set size (KB) = 688796
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 361.132313
- 0: The maximum resident set size (KB) = 828404
+ 0: The total amount of wall time = 361.856230
+ 0: The maximum resident set size (KB) = 823472
Test 153 hafs_regional_docn_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_oisst_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 364.396912
- 0: The maximum resident set size (KB) = 804148
+ 0: The total amount of wall time = 360.283526
+ 0: The maximum resident set size (KB) = 805924
Test 154 hafs_regional_docn_oisst_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_datm_cdeps_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 963.890476
- 0: The maximum resident set size (KB) = 1200992
+ 0: The total amount of wall time = 942.521065
+ 0: The maximum resident set size (KB) = 1212460
Test 155 hafs_regional_datm_cdeps_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.066139
- 0: The maximum resident set size (KB) = 1117592
+ 0: The total amount of wall time = 151.363887
+ 0: The maximum resident set size (KB) = 1135228
Test 156 datm_cdeps_control_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_restart_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 87.432283
- 0: The maximum resident set size (KB) = 1072412
+ 0: The total amount of wall time = 89.959781
+ 0: The maximum resident set size (KB) = 1078044
Test 157 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 143.574955
- 0: The maximum resident set size (KB) = 1016372
+ 0: The total amount of wall time = 145.635190
+ 0: The maximum resident set size (KB) = 1004284
Test 158 datm_cdeps_control_gefs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_iau_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.490575
- 0: The maximum resident set size (KB) = 1005600
+ 0: The total amount of wall time = 144.105170
+ 0: The maximum resident set size (KB) = 1005596
Test 159 datm_cdeps_iau_gefs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_stochy_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.432653
- 0: The maximum resident set size (KB) = 1008000
+ 0: The total amount of wall time = 148.721221
+ 0: The maximum resident set size (KB) = 1002800
Test 160 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_ciceC_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 154.926239
- 0: The maximum resident set size (KB) = 1120540
+ 0: The total amount of wall time = 148.452521
+ 0: The maximum resident set size (KB) = 1141212
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.534464
- 0: The maximum resident set size (KB) = 1131340
+ 0: The total amount of wall time = 150.787859
+ 0: The maximum resident set size (KB) = 1118308
Test 162 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.030058
- 0: The maximum resident set size (KB) = 998072
+ 0: The total amount of wall time = 144.303852
+ 0: The maximum resident set size (KB) = 1005720
Test 163 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 397.722987
- 0: The maximum resident set size (KB) = 1057220
+ 0: The total amount of wall time = 377.824234
+ 0: The maximum resident set size (KB) = 1050572
Test 164 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 390.037106
- 0: The maximum resident set size (KB) = 1035968
+ 0: The total amount of wall time = 386.459490
+ 0: The maximum resident set size (KB) = 1047540
Test 165 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_multiple_files_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.882192
- 0: The maximum resident set size (KB) = 1119668
+ 0: The total amount of wall time = 150.441484
+ 0: The maximum resident set size (KB) = 1127644
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_3072x1536_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 241.164374
- 0: The maximum resident set size (KB) = 2434792
+ 0: The total amount of wall time = 241.094129
+ 0: The maximum resident set size (KB) = 2431952
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_gfs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 227.810481
- 0: The maximum resident set size (KB) = 2421400
+ 0: The total amount of wall time = 226.580313
+ 0: The maximum resident set size (KB) = 2476300
Test 168 datm_cdeps_gfs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_debug_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 353.052557
- 0: The maximum resident set size (KB) = 1051916
+ 0: The total amount of wall time = 357.204948
+ 0: The maximum resident set size (KB) = 1046324
Test 169 datm_cdeps_debug_cfsr_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.774749
- 0: The maximum resident set size (KB) = 1125132
+ 0: The total amount of wall time = 148.476488
+ 0: The maximum resident set size (KB) = 1127896
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_gswp3_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 35.072780
- 0: The maximum resident set size (KB) = 252692
+ 0: The total amount of wall time = 36.001820
+ 0: The maximum resident set size (KB) = 254432
Test 171 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 36.877766
- 0: The maximum resident set size (KB) = 318020
+ 0: The total amount of wall time = 37.876324
+ 0: The maximum resident set size (KB) = 320484
Test 172 datm_cdeps_lnd_era5_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_rst_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 20.974372
- 0: The maximum resident set size (KB) = 315448
+ 0: The total amount of wall time = 21.762636
+ 0: The maximum resident set size (KB) = 315984
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_sbs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 242.007786
- 0: The maximum resident set size (KB) = 1586988
+ 0: The total amount of wall time = 266.601415
+ 0: The maximum resident set size (KB) = 1583840
Test 174 control_p8_atmlnd_sbs_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 239.376457
- 0: The maximum resident set size (KB) = 1587492
+ 0: The total amount of wall time = 265.692732
+ 0: The maximum resident set size (KB) = 1591404
Test 175 control_p8_atmlnd_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 126.241198
- 0: The maximum resident set size (KB) = 890364
+ 0: The total amount of wall time = 124.281916
+ 0: The maximum resident set size (KB) = 888112
Test 176 control_restart_p8_atmlnd_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmwav_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 94.029822
- 0: The maximum resident set size (KB) = 1648372
+ 0: The total amount of wall time = 99.894690
+ 0: The maximum resident set size (KB) = 1613184
Test 177 atmwav_control_noaero_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_atmwav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 87.313345
- 0: The maximum resident set size (KB) = 668144
+ 0: The total amount of wall time = 87.873404
+ 0: The maximum resident set size (KB) = 664332
Test 178 control_atmwav_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.427292
- 0: The maximum resident set size (KB) = 3019252
+ 0: The total amount of wall time = 237.354898
+ 0: The maximum resident set size (KB) = 3000484
Test 179 atmaero_control_p8_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 271.239249
- 0: The maximum resident set size (KB) = 3087240
+ 0: The total amount of wall time = 289.664148
+ 0: The maximum resident set size (KB) = 3067228
Test 180 atmaero_control_p8_rad_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_micro_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 289.311945
- 0: The maximum resident set size (KB) = 3075060
+ 0: The total amount of wall time = 301.433619
+ 0: The maximum resident set size (KB) = 3078804
Test 181 atmaero_control_p8_rad_micro_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_atmaq_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6196,14 +6196,14 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1152.403973
- 0: The maximum resident set size (KB) = 4508272
+ 0: The total amount of wall time = 1181.521694
+ 0: The maximum resident set size (KB) = 4504128
Test 182 regional_atmaq_debug_intel PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_gnu
Checking test 183 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 691.562076
-0: The maximum resident set size (KB) = 792572
+0: The total amount of wall time = 692.795800
+0: The maximum resident set size (KB) = 794260
Test 183 control_c48_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_gnu
Checking test 184 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 231.638077
- 0: The maximum resident set size (KB) = 554164
+ 0: The total amount of wall time = 223.895041
+ 0: The maximum resident set size (KB) = 551168
Test 184 control_stochy_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_gnu
Checking test 185 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 276.494916
- 0: The maximum resident set size (KB) = 560776
+ 0: The total amount of wall time = 291.940296
+ 0: The maximum resident set size (KB) = 559112
Test 185 control_ras_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_gnu
Checking test 186 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 281.525717
- 0: The maximum resident set size (KB) = 1310400
+ 0: The total amount of wall time = 282.015183
+ 0: The maximum resident set size (KB) = 1313376
Test 186 control_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_gnu
Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 265.446160
- 0: The maximum resident set size (KB) = 1311328
+ 0: The total amount of wall time = 267.617016
+ 0: The maximum resident set size (KB) = 1312300
Test 187 control_p8_ugwpv1_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_gnu
Checking test 188 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 339.142352
- 0: The maximum resident set size (KB) = 596000
+ 0: The total amount of wall time = 340.509143
+ 0: The maximum resident set size (KB) = 599100
Test 188 control_flake_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_gnu
Checking test 189 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 679.992419
- 0: The maximum resident set size (KB) = 899068
+ 0: The total amount of wall time = 679.829016
+ 0: The maximum resident set size (KB) = 896284
Test 189 rap_control_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_gnu
Checking test 190 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 687.074137
- 0: The maximum resident set size (KB) = 897532
+ 0: The total amount of wall time = 689.072968
+ 0: The maximum resident set size (KB) = 903596
Test 190 rap_decomp_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_gnu
Checking test 191 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 615.952800
- 0: The maximum resident set size (KB) = 978108
+ 0: The total amount of wall time = 616.918734
+ 0: The maximum resident set size (KB) = 977320
Test 191 rap_2threads_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_gnu
Checking test 192 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 348.016069
- 0: The maximum resident set size (KB) = 626008
+ 0: The total amount of wall time = 352.112529
+ 0: The maximum resident set size (KB) = 629296
Test 192 rap_restart_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_gnu
Checking test 193 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 685.363424
- 0: The maximum resident set size (KB) = 897336
+ 0: The total amount of wall time = 683.790792
+ 0: The maximum resident set size (KB) = 897200
Test 193 rap_sfcdiff_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_gnu
Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 691.610491
- 0: The maximum resident set size (KB) = 900452
+ 0: The total amount of wall time = 697.040564
+ 0: The maximum resident set size (KB) = 897280
Test 194 rap_sfcdiff_decomp_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_gnu
Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 517.319127
- 0: The maximum resident set size (KB) = 629892
+ 0: The total amount of wall time = 523.826402
+ 0: The maximum resident set size (KB) = 632020
Test 195 rap_sfcdiff_restart_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_gnu
Checking test 196 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 347.301036
- 0: The maximum resident set size (KB) = 891428
+ 0: The total amount of wall time = 355.096279
+ 0: The maximum resident set size (KB) = 893200
Test 196 hrrr_control_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_noqr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_noqr_gnu
Checking test 197 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 346.166806
- 0: The maximum resident set size (KB) = 881900
+ 0: The total amount of wall time = 343.772398
+ 0: The maximum resident set size (KB) = 879540
Test 197 hrrr_control_noqr_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_gnu
Checking test 198 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 302.411006
- 0: The maximum resident set size (KB) = 972480
+ 0: The total amount of wall time = 302.538771
+ 0: The maximum resident set size (KB) = 971500
Test 198 hrrr_control_2threads_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_gnu
Checking test 199 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 348.089624
- 0: The maximum resident set size (KB) = 890524
+ 0: The total amount of wall time = 348.550028
+ 0: The maximum resident set size (KB) = 894580
Test 199 hrrr_control_decomp_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_gnu
Checking test 200 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 184.342102
- 0: The maximum resident set size (KB) = 610328
+ 0: The total amount of wall time = 182.498345
+ 0: The maximum resident set size (KB) = 612224
Test 200 hrrr_control_restart_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_noqr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_noqr_gnu
Checking test 201 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 181.833962
- 0: The maximum resident set size (KB) = 705356
+ 0: The total amount of wall time = 179.413236
+ 0: The maximum resident set size (KB) = 705664
Test 201 hrrr_control_restart_noqr_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_gnu
Checking test 202 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 662.629191
- 0: The maximum resident set size (KB) = 893508
+ 0: The total amount of wall time = 673.387490
+ 0: The maximum resident set size (KB) = 897904
Test 202 rrfs_v1beta_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_gnu
Checking test 203 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 82.761051
- 0: The maximum resident set size (KB) = 595716
+ 0: The total amount of wall time = 84.392899
+ 0: The maximum resident set size (KB) = 592080
Test 203 control_diag_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_gnu
Checking test 204 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 446.316198
- 0: The maximum resident set size (KB) = 602772
+ 0: The total amount of wall time = 434.996273
+ 0: The maximum resident set size (KB) = 595888
Test 204 regional_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_gnu
Checking test 205 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.585373
- 0: The maximum resident set size (KB) = 911620
+ 0: The total amount of wall time = 141.824319
+ 0: The maximum resident set size (KB) = 911384
Test 205 rap_control_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_gnu
Checking test 206 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 136.391425
- 0: The maximum resident set size (KB) = 903900
+ 0: The total amount of wall time = 134.395503
+ 0: The maximum resident set size (KB) = 903880
Test 206 hrrr_control_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_gnu
Checking test 207 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 142.635656
- 0: The maximum resident set size (KB) = 909744
+ 0: The total amount of wall time = 138.979459
+ 0: The maximum resident set size (KB) = 908716
Test 207 hrrr_gf_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_gnu
Checking test 208 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 143.597582
- 0: The maximum resident set size (KB) = 912580
+ 0: The total amount of wall time = 140.555490
+ 0: The maximum resident set size (KB) = 914392
Test 208 hrrr_c3_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_gnu
Checking test 209 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 152.461141
- 0: The maximum resident set size (KB) = 995340
+ 0: The total amount of wall time = 151.580921
+ 0: The maximum resident set size (KB) = 999028
Test 209 rap_diag_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_gnu
Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 219.888780
- 0: The maximum resident set size (KB) = 916056
+ 0: The total amount of wall time = 220.550247
+ 0: The maximum resident set size (KB) = 909140
Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_gnu
Checking test 211 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 141.232857
- 0: The maximum resident set size (KB) = 911112
+ 0: The total amount of wall time = 140.941752
+ 0: The maximum resident set size (KB) = 916300
Test 211 rap_progcld_thompson_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_gnu
Checking test 212 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 138.914445
- 0: The maximum resident set size (KB) = 908812
+ 0: The total amount of wall time = 140.579622
+ 0: The maximum resident set size (KB) = 901792
Test 212 rrfs_v1beta_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_gnu
Checking test 213 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 82.240976
- 0: The maximum resident set size (KB) = 548552
+ 0: The total amount of wall time = 80.054783
+ 0: The maximum resident set size (KB) = 540512
Test 213 control_ras_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_gnu
Checking test 214 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 116.627962
- 0: The maximum resident set size (KB) = 544488
+ 0: The total amount of wall time = 121.470016
+ 0: The maximum resident set size (KB) = 538164
Test 214 control_stochy_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_gnu
Checking test 215 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 86.569495
- 0: The maximum resident set size (KB) = 1290728
+ 0: The total amount of wall time = 88.919673
+ 0: The maximum resident set size (KB) = 1292548
Test 215 control_debug_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_gnu
Checking test 216 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.710755
- 0: The maximum resident set size (KB) = 910576
+ 0: The total amount of wall time = 143.855554
+ 0: The maximum resident set size (KB) = 912372
Test 216 rap_flake_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_gnu
Checking test 217 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.281996
- 0: The maximum resident set size (KB) = 915948
+ 0: The total amount of wall time = 159.835207
+ 0: The maximum resident set size (KB) = 913792
Test 217 rap_clm_lake_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_gnu
Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.039888
- 0: The maximum resident set size (KB) = 915012
+ 0: The total amount of wall time = 240.077066
+ 0: The maximum resident set size (KB) = 910856
Test 218 gnv1_c96_no_nest_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_gnu
Checking test 219 control_wam_debug_gnu results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 135.846867
- 0: The maximum resident set size (KB) = 241652
+ 0: The total amount of wall time = 139.290323
+ 0: The maximum resident set size (KB) = 249200
Test 219 control_wam_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_gnu
Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 700.413500
- 0: The maximum resident set size (KB) = 750684
+ 0: The total amount of wall time = 697.275705
+ 0: The maximum resident set size (KB) = 752000
Test 220 rap_control_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_gnu
Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 358.390809
- 0: The maximum resident set size (KB) = 748732
+ 0: The total amount of wall time = 353.770014
+ 0: The maximum resident set size (KB) = 750444
Test 221 hrrr_control_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_gnu
Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 621.932147
- 0: The maximum resident set size (KB) = 808344
+ 0: The total amount of wall time = 631.534921
+ 0: The maximum resident set size (KB) = 803532
Test 222 rap_2threads_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_gnu
Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 309.290036
- 0: The maximum resident set size (KB) = 806824
+ 0: The total amount of wall time = 311.792468
+ 0: The maximum resident set size (KB) = 814684
Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_gnu
Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 355.590403
- 0: The maximum resident set size (KB) = 749944
+ 0: The total amount of wall time = 351.896889
+ 0: The maximum resident set size (KB) = 749348
Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_gnu
Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 523.943314
- 0: The maximum resident set size (KB) = 596404
+ 0: The total amount of wall time = 526.713416
+ 0: The maximum resident set size (KB) = 594756
Test 225 rap_restart_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_gnu
Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 185.822177
- 0: The maximum resident set size (KB) = 586884
+ 0: The total amount of wall time = 184.051875
+ 0: The maximum resident set size (KB) = 584392
Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_gnu
Checking test 227 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 240.706840
- 0: The maximum resident set size (KB) = 902216
+ 0: The total amount of wall time = 237.901392
+ 0: The maximum resident set size (KB) = 901060
Test 227 conus13km_control_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_gnu
Checking test 228 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 101.555596
- 0: The maximum resident set size (KB) = 935576
+ 0: The total amount of wall time = 100.776535
+ 0: The maximum resident set size (KB) = 937072
Test 228 conus13km_2threads_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_gnu
Checking test 229 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 128.036469
- 0: The maximum resident set size (KB) = 601000
+ 0: The total amount of wall time = 126.313436
+ 0: The maximum resident set size (KB) = 600832
Test 229 conus13km_restart_mismatch_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_gnu
Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 407.333721
- 0: The maximum resident set size (KB) = 784616
+ 0: The total amount of wall time = 405.947899
+ 0: The maximum resident set size (KB) = 782644
Test 230 rap_control_dyn64_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_gnu
Checking test 231 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 143.371318
- 0: The maximum resident set size (KB) = 767284
+ 0: The total amount of wall time = 139.632430
+ 0: The maximum resident set size (KB) = 762164
Test 231 rap_control_debug_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_gnu
Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.473434
- 0: The maximum resident set size (KB) = 761488
+ 0: The total amount of wall time = 135.820539
+ 0: The maximum resident set size (KB) = 762324
Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_gnu
Checking test 233 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 413.155023
- 0: The maximum resident set size (KB) = 918220
+ 0: The total amount of wall time = 415.827265
+ 0: The maximum resident set size (KB) = 920564
Test 233 conus13km_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_gnu
Checking test 234 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 416.594942
- 0: The maximum resident set size (KB) = 634240
+ 0: The total amount of wall time = 426.875680
+ 0: The maximum resident set size (KB) = 635624
Test 234 conus13km_debug_qr_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_gnu
Checking test 235 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 252.487438
- 0: The maximum resident set size (KB) = 954404
+ 0: The total amount of wall time = 251.480665
+ 0: The maximum resident set size (KB) = 956152
Test 235 conus13km_debug_2threads_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_gnu
Checking test 236 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 421.009362
- 0: The maximum resident set size (KB) = 985376
+ 0: The total amount of wall time = 411.098192
+ 0: The maximum resident set size (KB) = 986952
Test 236 conus13km_radar_tten_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_gnu
Checking test 237 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.924821
- 0: The maximum resident set size (KB) = 789568
+ 0: The total amount of wall time = 143.792686
+ 0: The maximum resident set size (KB) = 787444
Test 237 rap_control_dyn64_phy32_debug_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_gnu
Checking test 238 cpld_control_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 660.268049
- 0: The maximum resident set size (KB) = 1512120
+ 0: The total amount of wall time = 629.363051
+ 0: The maximum resident set size (KB) = 1511956
Test 238 cpld_control_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_gnu
Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 393.478932
- 0: The maximum resident set size (KB) = 1399772
+ 0: The total amount of wall time = 374.149647
+ 0: The maximum resident set size (KB) = 1406204
Test 239 cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_gnu
Checking test 240 cpld_debug_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 361.808593
- 0: The maximum resident set size (KB) = 1515152
+ 0: The total amount of wall time = 353.473349
+ 0: The maximum resident set size (KB) = 1519488
Test 240 cpld_debug_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_gnu
Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1317.468188
- 0: The maximum resident set size (KB) = 1374484
+ 0: The total amount of wall time = 1305.915616
+ 0: The maximum resident set size (KB) = 1378840
Test 241 cpld_control_pdlib_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_gnu
Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 752.117199
- 0: The maximum resident set size (KB) = 1384624
+ 0: The total amount of wall time = 749.003228
+ 0: The maximum resident set size (KB) = 1385740
Test 242 cpld_debug_pdlib_p8_gnu PASS
baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_gnu
Checking test 243 datm_cdeps_control_cfsr_gnu results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 188.120099
- 0: The maximum resident set size (KB) = 695308
+ 0: The total amount of wall time = 170.884111
+ 0: The maximum resident set size (KB) = 697716
Test 243 datm_cdeps_control_cfsr_gnu PASS
REGRESSION TEST WAS SUCCESSFUL
-Thu Feb 8 18:48:07 UTC 2024
-Elapsed time: 03h:39m:40s. Have a nice day!
+Fri Feb 9 04:43:44 UTC 2024
+Elapsed time: 02h:01m:05s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 9689358641..f23ba5ab87 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,76 +1,76 @@
-Thu Feb 8 08:54:53 AM CST 2024
+Thu Feb 8 17:53:11 CST 2024
Start Regression test
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
+Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
++c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 435 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 157 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 415 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 210 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 229 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 569 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 559 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 470 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 578 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 554 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 965 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 318 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 564 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 573 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 174 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 648 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 535 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 554 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 997 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 306 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1205 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 689 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 333 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 930 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 650 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 681 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 231 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 1013 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_debug_gnu elapsed time 220 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 370 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 249 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 414 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 393 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 383 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 568 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 221 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 900 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 43 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 574 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 164 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 639 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 529 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 883 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 337 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_gnu elapsed time 914 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 889 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 733 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 233 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 851 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_mixedmode_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 436.366248
- 0: The maximum resident set size (KB) = 1901836
+ 0: The total amount of wall time = 430.551336
+ 0: The maximum resident set size (KB) = 1890576
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 787.938449
- 0: The maximum resident set size (KB) = 1775384
+ 0: The total amount of wall time = 783.981906
+ 0: The maximum resident set size (KB) = 1785560
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_iau_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 832.336615
- 0: The maximum resident set size (KB) = 2166292
+ 0: The total amount of wall time = 829.172560
+ 0: The maximum resident set size (KB) = 2165104
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_gfsv17_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 375.289632
- 0: The maximum resident set size (KB) = 1174688
+ 0: The total amount of wall time = 370.372125
+ 0: The maximum resident set size (KB) = 1169496
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_gfsv17_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 897.161599
- 0: The maximum resident set size (KB) = 1691196
+ 0: The total amount of wall time = 894.098335
+ 0: The maximum resident set size (KB) = 1699572
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_gfsv17_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1210.531621
- 0: The maximum resident set size (KB) = 1722732
+ 0: The total amount of wall time = 1205.819574
+ 0: The maximum resident set size (KB) = 1731696
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 437.234685
- 0: The maximum resident set size (KB) = 2084012
+ 0: The total amount of wall time = 451.274498
+ 0: The maximum resident set size (KB) = 2063756
Test 007 cpld_control_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 436.592919
- 0: The maximum resident set size (KB) = 2090316
+ 0: The total amount of wall time = 443.285201
+ 0: The maximum resident set size (KB) = 2092632
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 243.954794
- 0: The maximum resident set size (KB) = 1960644
+ 0: The total amount of wall time = 242.086652
+ 0: The maximum resident set size (KB) = 1982236
Test 009 cpld_restart_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_qr_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 445.978276
- 0: The maximum resident set size (KB) = 1998264
+ 0: The total amount of wall time = 441.286202
+ 0: The maximum resident set size (KB) = 1983244
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_qr_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 251.910684
- 0: The maximum resident set size (KB) = 1735320
+ 0: The total amount of wall time = 241.976440
+ 0: The maximum resident set size (KB) = 1741020
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_2threads_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 524.472029
- 0: The maximum resident set size (KB) = 2488092
+ 0: The total amount of wall time = 540.920443
+ 0: The maximum resident set size (KB) = 2482208
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_decomp_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 436.193413
- 0: The maximum resident set size (KB) = 2067780
+ 0: The total amount of wall time = 440.830683
+ 0: The maximum resident set size (KB) = 2062560
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 373.842400
- 0: The maximum resident set size (KB) = 1902392
+ 0: The total amount of wall time = 370.215536
+ 0: The maximum resident set size (KB) = 1900140
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_ciceC_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 443.646170
- 0: The maximum resident set size (KB) = 2061136
+ 0: The total amount of wall time = 436.533744
+ 0: The maximum resident set size (KB) = 2092868
Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c192_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 907.558398
- 0: The maximum resident set size (KB) = 2809588
+ 0: The total amount of wall time = 941.018889
+ 0: The maximum resident set size (KB) = 2805860
Test 016 cpld_control_c192_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_c192_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 335.772025
- 0: The maximum resident set size (KB) = 2911472
+ 0: The total amount of wall time = 328.363025
+ 0: The maximum resident set size (KB) = 2927324
Test 017 cpld_restart_c192_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_bmark_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 486.923021
- 0: The maximum resident set size (KB) = 3621688
+ 0: The total amount of wall time = 482.035387
+ 0: The maximum resident set size (KB) = 3623532
Test 018 cpld_bmark_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_bmark_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 285.300940
- 0: The maximum resident set size (KB) = 3612240
+ 0: The total amount of wall time = 283.674077
+ 0: The maximum resident set size (KB) = 3622612
Test 019 cpld_restart_bmark_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_s2sa_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 282.556033
- 0: The maximum resident set size (KB) = 2032316
+ 0: The total amount of wall time = 283.122530
+ 0: The maximum resident set size (KB) = 2056368
Test 020 cpld_s2sa_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 407.455823
- 0: The maximum resident set size (KB) = 1781028
+ 0: The total amount of wall time = 400.368736
+ 0: The maximum resident set size (KB) = 1774836
Test 021 cpld_control_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_nowave_noaero_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 223.734946
- 0: The maximum resident set size (KB) = 1821168
+ 0: The total amount of wall time = 224.538006
+ 0: The maximum resident set size (KB) = 1823780
Test 022 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 398.955192
- 0: The maximum resident set size (KB) = 2050072
+ 0: The total amount of wall time = 396.792409
+ 0: The maximum resident set size (KB) = 2059020
Test 023 cpld_debug_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_noaero_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 270.380361
- 0: The maximum resident set size (KB) = 1798552
+ 0: The total amount of wall time = 268.191668
+ 0: The maximum resident set size (KB) = 1785568
Test 024 cpld_debug_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_agrid_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 227.647185
- 0: The maximum resident set size (KB) = 1828948
+ 0: The total amount of wall time = 225.810803
+ 0: The maximum resident set size (KB) = 1829460
Test 025 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c48_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 425.976897
- 0: The maximum resident set size (KB) = 2840244
+ 0: The total amount of wall time = 425.989730
+ 0: The maximum resident set size (KB) = 2836632
Test 026 cpld_control_c48_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_faster_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 417.714944
- 0: The maximum resident set size (KB) = 2076248
+ 0: The total amount of wall time = 420.378922
+ 0: The maximum resident set size (KB) = 2072848
Test 027 cpld_control_p8_faster_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 811.144177
- 0: The maximum resident set size (KB) = 1812128
+ 0: The total amount of wall time = 814.685799
+ 0: The maximum resident set size (KB) = 1810172
Test 028 cpld_control_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_pdlib_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 399.291103
- 0: The maximum resident set size (KB) = 1284096
+ 0: The total amount of wall time = 386.496348
+ 0: The maximum resident set size (KB) = 1303752
Test 029 cpld_restart_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_pdlib_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 905.018806
- 0: The maximum resident set size (KB) = 1733472
+ 0: The total amount of wall time = 903.394383
+ 0: The maximum resident set size (KB) = 1741320
Test 030 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_pdlib_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1282.544739
- 0: The maximum resident set size (KB) = 1773396
+ 0: The total amount of wall time = 1273.059948
+ 0: The maximum resident set size (KB) = 1789012
Test 031 cpld_debug_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 158.740006
- 0: The maximum resident set size (KB) = 714328
+ 0: The total amount of wall time = 159.943091
+ 0: The maximum resident set size (KB) = 711016
Test 032 control_flake_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,14 +2094,14 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 112.663494
- 0: The maximum resident set size (KB) = 660636
+ 0: The total amount of wall time = 114.260992
+ 0: The maximum resident set size (KB) = 670176
Test 033 control_CubedSphereGrid_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_parallel_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 118.253456
- 0: The maximum resident set size (KB) = 666840
+ 0: The total amount of wall time = 119.694421
+ 0: The maximum resident set size (KB) = 668660
Test 034 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_latlon_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 113.971404
- 0: The maximum resident set size (KB) = 660876
+ 0: The total amount of wall time = 116.581534
+ 0: The maximum resident set size (KB) = 675996
Test 035 control_latlon_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc .........OK
@@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 117.128644
- 0: The maximum resident set size (KB) = 661844
+ 0: The total amount of wall time = 122.289495
+ 0: The maximum resident set size (KB) = 670148
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 338.226235
-0: The maximum resident set size (KB) = 865908
+0: The total amount of wall time = 337.978757
+0: The maximum resident set size (KB) = 865740
Test 037 control_c48_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48.v2.sfc_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 338.300398
-0: The maximum resident set size (KB) = 857576
+0: The total amount of wall time = 338.723507
+0: The maximum resident set size (KB) = 861396
Test 038 control_c48.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c192_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 458.571667
- 0: The maximum resident set size (KB) = 963872
+ 0: The total amount of wall time = 449.395290
+ 0: The maximum resident set size (KB) = 961848
Test 039 control_c192_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 468.156698
- 0: The maximum resident set size (KB) = 1448852
+ 0: The total amount of wall time = 469.094595
+ 0: The maximum resident set size (KB) = 1445964
Test 040 control_c384_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384gdas_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 411.882142
- 0: The maximum resident set size (KB) = 1513644
+ 0: The total amount of wall time = 415.271984
+ 0: The maximum resident set size (KB) = 1527500
Test 041 control_c384gdas_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 74.807848
- 0: The maximum resident set size (KB) = 670720
+ 0: The total amount of wall time = 76.271868
+ 0: The maximum resident set size (KB) = 675804
Test 042 control_stochy_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_restart_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 42.808856
- 0: The maximum resident set size (KB) = 554276
+ 0: The total amount of wall time = 43.037293
+ 0: The maximum resident set size (KB) = 538436
Test 043 control_stochy_restart_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 71.337975
- 0: The maximum resident set size (KB) = 665436
+ 0: The total amount of wall time = 73.369905
+ 0: The maximum resident set size (KB) = 672884
Test 044 control_lndp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr4_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 113.841812
- 0: The maximum resident set size (KB) = 677604
+ 0: The total amount of wall time = 118.932850
+ 0: The maximum resident set size (KB) = 665692
Test 045 control_iovr4_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr5_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 114.861092
- 0: The maximum resident set size (KB) = 664624
+ 0: The total amount of wall time = 117.521707
+ 0: The maximum resident set size (KB) = 675384
Test 046 control_iovr5_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 143.626335
- 0: The maximum resident set size (KB) = 1635576
+ 0: The total amount of wall time = 143.899096
+ 0: The maximum resident set size (KB) = 1635572
Test 047 control_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 142.016756
- 0: The maximum resident set size (KB) = 1635284
+ 0: The total amount of wall time = 141.355960
+ 0: The maximum resident set size (KB) = 1637228
Test 048 control_p8.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 139.009402
- 0: The maximum resident set size (KB) = 1632160
+ 0: The total amount of wall time = 135.703376
+ 0: The maximum resident set size (KB) = 1641012
Test 049 control_p8_ugwpv1_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 77.982251
- 0: The maximum resident set size (KB) = 911376
+ 0: The total amount of wall time = 74.659397
+ 0: The maximum resident set size (KB) = 920884
Test 050 control_restart_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_noqr_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 140.976242
- 0: The maximum resident set size (KB) = 1628088
+ 0: The total amount of wall time = 137.530339
+ 0: The maximum resident set size (KB) = 1630116
Test 051 control_noqr_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_noqr_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 74.461731
- 0: The maximum resident set size (KB) = 986160
+ 0: The total amount of wall time = 72.759465
+ 0: The maximum resident set size (KB) = 974524
Test 052 control_restart_noqr_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_decomp_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 147.431966
- 0: The maximum resident set size (KB) = 1632204
+ 0: The total amount of wall time = 144.279497
+ 0: The maximum resident set size (KB) = 1635532
Test 053 control_decomp_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_2threads_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 129.752884
- 0: The maximum resident set size (KB) = 1725764
+ 0: The total amount of wall time = 129.798695
+ 0: The maximum resident set size (KB) = 1727108
Test 054 control_2threads_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_lndp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 251.738828
- 0: The maximum resident set size (KB) = 1638248
+ 0: The total amount of wall time = 254.924152
+ 0: The maximum resident set size (KB) = 1645332
Test 055 control_p8_lndp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_rrtmgp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.126002
- 0: The maximum resident set size (KB) = 1716156
+ 0: The total amount of wall time = 198.979787
+ 0: The maximum resident set size (KB) = 1729464
Test 056 control_p8_rrtmgp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_mynn_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 142.269808
- 0: The maximum resident set size (KB) = 1648204
+ 0: The total amount of wall time = 141.779806
+ 0: The maximum resident set size (KB) = 1650480
Test 057 control_p8_mynn_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/merra2_thompson_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.189147
- 0: The maximum resident set size (KB) = 1661536
+ 0: The total amount of wall time = 167.723689
+ 0: The maximum resident set size (KB) = 1650188
Test 058 merra2_thompson_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 259.617884
- 0: The maximum resident set size (KB) = 960848
+ 0: The total amount of wall time = 259.114558
+ 0: The maximum resident set size (KB) = 960056
Test 059 regional_control_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_restart_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 138.262359
- 0: The maximum resident set size (KB) = 1102196
+ 0: The total amount of wall time = 137.083464
+ 0: The maximum resident set size (KB) = 1104240
Test 060 regional_restart_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_decomp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 273.621278
- 0: The maximum resident set size (KB) = 948664
+ 0: The total amount of wall time = 271.999807
+ 0: The maximum resident set size (KB) = 948576
Test 061 regional_decomp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2threads_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 157.975186
- 0: The maximum resident set size (KB) = 922144
+ 0: The total amount of wall time = 157.324716
+ 0: The maximum resident set size (KB) = 917924
Test 062 regional_2threads_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_noquilt_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 249.880086
- 0: The maximum resident set size (KB) = 1493404
+ 0: The total amount of wall time = 248.820110
+ 0: The maximum resident set size (KB) = 1487488
Test 063 regional_noquilt_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 257.293060
- 0: The maximum resident set size (KB) = 962560
+ 0: The total amount of wall time = 254.792054
+ 0: The maximum resident set size (KB) = 963704
Test 064 regional_netcdf_parallel_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2dwrtdecomp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 262.760438
- 0: The maximum resident set size (KB) = 958960
+ 0: The total amount of wall time = 260.021290
+ 0: The maximum resident set size (KB) = 958696
Test 065 regional_2dwrtdecomp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_wofs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 320.776860
- 0: The maximum resident set size (KB) = 2083864
+ 0: The total amount of wall time = 320.187631
+ 0: The maximum resident set size (KB) = 2105652
Test 066 regional_wofs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 380.458360
- 0: The maximum resident set size (KB) = 1211820
+ 0: The total amount of wall time = 389.238343
+ 0: The maximum resident set size (KB) = 1205512
Test 067 rap_control_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 197.068588
- 0: The maximum resident set size (KB) = 1455196
+ 0: The total amount of wall time = 196.173734
+ 0: The maximum resident set size (KB) = 1411816
Test 068 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 394.696320
- 0: The maximum resident set size (KB) = 1139964
+ 0: The total amount of wall time = 399.083779
+ 0: The maximum resident set size (KB) = 1131372
Test 069 rap_decomp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 355.231732
- 0: The maximum resident set size (KB) = 1382700
+ 0: The total amount of wall time = 356.753366
+ 0: The maximum resident set size (KB) = 1356252
Test 070 rap_2threads_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 194.406129
- 0: The maximum resident set size (KB) = 1133396
+ 0: The total amount of wall time = 194.483670
+ 0: The maximum resident set size (KB) = 1161324
Test 071 rap_restart_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 378.008082
- 0: The maximum resident set size (KB) = 1203108
+ 0: The total amount of wall time = 387.129535
+ 0: The maximum resident set size (KB) = 1196708
Test 072 rap_sfcdiff_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 405.474771
- 0: The maximum resident set size (KB) = 1151496
+ 0: The total amount of wall time = 396.621999
+ 0: The maximum resident set size (KB) = 1126548
Test 073 rap_sfcdiff_decomp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 288.276229
- 0: The maximum resident set size (KB) = 1189612
+ 0: The total amount of wall time = 284.838209
+ 0: The maximum resident set size (KB) = 1188400
Test 074 rap_sfcdiff_restart_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 193.573133
- 0: The maximum resident set size (KB) = 1088884
+ 0: The total amount of wall time = 191.040405
+ 0: The maximum resident set size (KB) = 1075740
Test 075 hrrr_control_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.630749
- 0: The maximum resident set size (KB) = 1043232
+ 0: The total amount of wall time = 195.239536
+ 0: The maximum resident set size (KB) = 1049380
Test 076 hrrr_control_decomp_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 175.815686
- 0: The maximum resident set size (KB) = 1120352
+ 0: The total amount of wall time = 174.371282
+ 0: The maximum resident set size (KB) = 1119060
Test 077 hrrr_control_2threads_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 102.286500
- 0: The maximum resident set size (KB) = 1023844
+ 0: The total amount of wall time = 100.911859
+ 0: The maximum resident set size (KB) = 1036780
Test 078 hrrr_control_restart_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 364.812079
- 0: The maximum resident set size (KB) = 1183964
+ 0: The total amount of wall time = 365.743285
+ 0: The maximum resident set size (KB) = 1197472
Test 079 rrfs_v1beta_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 448.827158
- 0: The maximum resident set size (KB) = 2003984
+ 0: The total amount of wall time = 445.018269
+ 0: The maximum resident set size (KB) = 2006388
Test 080 rrfs_v1nssl_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 435.136295
- 0: The maximum resident set size (KB) = 2176944
+ 0: The total amount of wall time = 434.179462
+ 0: The maximum resident set size (KB) = 2176536
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 291.198798
- 0: The maximum resident set size (KB) = 826492
+ 0: The total amount of wall time = 293.795215
+ 0: The maximum resident set size (KB) = 814284
Test 082 control_csawmg_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 292.069197
- 0: The maximum resident set size (KB) = 825388
+ 0: The total amount of wall time = 291.487385
+ 0: The maximum resident set size (KB) = 827296
Test 083 control_csawmgt_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 158.804701
- 0: The maximum resident set size (KB) = 808336
+ 0: The total amount of wall time = 160.406571
+ 0: The maximum resident set size (KB) = 813000
Test 084 control_ras_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wam_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 99.734054
- 0: The maximum resident set size (KB) = 783524
+ 0: The total amount of wall time = 104.047968
+ 0: The maximum resident set size (KB) = 779400
Test 085 control_wam_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_faster_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 123.368677
- 0: The maximum resident set size (KB) = 1643036
+ 0: The total amount of wall time = 124.388469
+ 0: The maximum resident set size (KB) = 1635612
Test 086 control_p8_faster_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_faster_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 233.059931
- 0: The maximum resident set size (KB) = 955896
+ 0: The total amount of wall time = 230.542141
+ 0: The maximum resident set size (KB) = 959392
Test 087 regional_control_faster_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 122.974509
- 0: The maximum resident set size (KB) = 826360
+ 0: The total amount of wall time = 126.577079
+ 0: The maximum resident set size (KB) = 824628
Test 088 control_CubedSphereGrid_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc ............ALT CHECK......OK
Comparing atmf001.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 122.227349
- 0: The maximum resident set size (KB) = 825152
+ 0: The total amount of wall time = 122.709979
+ 0: The maximum resident set size (KB) = 832824
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.494289
- 0: The maximum resident set size (KB) = 832672
+ 0: The total amount of wall time = 139.036237
+ 0: The maximum resident set size (KB) = 826416
Test 090 control_stochy_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 124.904222
- 0: The maximum resident set size (KB) = 826896
+ 0: The total amount of wall time = 124.397013
+ 0: The maximum resident set size (KB) = 824372
Test 091 control_lndp_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 191.372957
- 0: The maximum resident set size (KB) = 885660
+ 0: The total amount of wall time = 193.215812
+ 0: The maximum resident set size (KB) = 885464
Test 092 control_csawmg_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 188.703729
- 0: The maximum resident set size (KB) = 882988
+ 0: The total amount of wall time = 187.642472
+ 0: The maximum resident set size (KB) = 878036
Test 093 control_csawmgt_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 126.645223
- 0: The maximum resident set size (KB) = 838264
+ 0: The total amount of wall time = 126.617555
+ 0: The maximum resident set size (KB) = 837184
Test 094 control_ras_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 126.389523
- 0: The maximum resident set size (KB) = 878748
+ 0: The total amount of wall time = 127.152381
+ 0: The maximum resident set size (KB) = 886324
Test 095 control_diag_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 130.934503
- 0: The maximum resident set size (KB) = 1664372
+ 0: The total amount of wall time = 132.830157
+ 0: The maximum resident set size (KB) = 1665044
Test 096 control_debug_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 835.216303
- 0: The maximum resident set size (KB) = 897244
+ 0: The total amount of wall time = 831.502402
+ 0: The maximum resident set size (KB) = 893832
Test 097 regional_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.649865
- 0: The maximum resident set size (KB) = 1224212
+ 0: The total amount of wall time = 232.610455
+ 0: The maximum resident set size (KB) = 1225900
Test 098 rap_control_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 226.990785
- 0: The maximum resident set size (KB) = 1223328
+ 0: The total amount of wall time = 223.198852
+ 0: The maximum resident set size (KB) = 1210908
Test 099 hrrr_control_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.918677
- 0: The maximum resident set size (KB) = 1217928
+ 0: The total amount of wall time = 227.146257
+ 0: The maximum resident set size (KB) = 1229700
Test 100 hrrr_gf_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.408920
- 0: The maximum resident set size (KB) = 1215212
+ 0: The total amount of wall time = 229.230965
+ 0: The maximum resident set size (KB) = 1224180
Test 101 hrrr_c3_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_drag_suite_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.516705
- 0: The maximum resident set size (KB) = 1227900
+ 0: The total amount of wall time = 230.715269
+ 0: The maximum resident set size (KB) = 1221896
Test 102 rap_unified_drag_suite_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 240.661738
- 0: The maximum resident set size (KB) = 1297872
+ 0: The total amount of wall time = 239.354062
+ 0: The maximum resident set size (KB) = 1311048
Test 103 rap_diag_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 234.396613
- 0: The maximum resident set size (KB) = 1213032
+ 0: The total amount of wall time = 233.381935
+ 0: The maximum resident set size (KB) = 1223132
Test 104 rap_cires_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_ugwp_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 236.306475
- 0: The maximum resident set size (KB) = 1221512
+ 0: The total amount of wall time = 232.262413
+ 0: The maximum resident set size (KB) = 1230052
Test 105 rap_unified_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_lndp_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 231.975775
- 0: The maximum resident set size (KB) = 1220888
+ 0: The total amount of wall time = 230.296686
+ 0: The maximum resident set size (KB) = 1221732
Test 106 rap_lndp_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 231.272994
- 0: The maximum resident set size (KB) = 1212348
+ 0: The total amount of wall time = 230.670011
+ 0: The maximum resident set size (KB) = 1221088
Test 107 rap_progcld_thompson_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 226.143189
- 0: The maximum resident set size (KB) = 1223736
+ 0: The total amount of wall time = 222.694099
+ 0: The maximum resident set size (KB) = 1218216
Test 108 rap_noah_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 228.930416
- 0: The maximum resident set size (KB) = 1218484
+ 0: The total amount of wall time = 228.642036
+ 0: The maximum resident set size (KB) = 1219408
Test 109 rap_sfcdiff_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 378.987128
- 0: The maximum resident set size (KB) = 1223688
+ 0: The total amount of wall time = 373.997451
+ 0: The maximum resident set size (KB) = 1222624
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 225.286377
- 0: The maximum resident set size (KB) = 1216848
+ 0: The total amount of wall time = 225.915838
+ 0: The maximum resident set size (KB) = 1217512
Test 111 rrfs_v1beta_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.092482
- 0: The maximum resident set size (KB) = 1218444
+ 0: The total amount of wall time = 281.114888
+ 0: The maximum resident set size (KB) = 1223320
Test 112 rap_clm_lake_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 228.996325
- 0: The maximum resident set size (KB) = 1223256
+ 0: The total amount of wall time = 229.954161
+ 0: The maximum resident set size (KB) = 1216368
Test 113 rap_flake_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 398.257121
- 0: The maximum resident set size (KB) = 1221240
+ 0: The total amount of wall time = 398.184483
+ 0: The maximum resident set size (KB) = 1227312
Test 114 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 185.481359
- 0: The maximum resident set size (KB) = 1317044
+ 0: The total amount of wall time = 183.619126
+ 0: The maximum resident set size (KB) = 1328728
Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_intel
Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 315.819038
- 0: The maximum resident set size (KB) = 1140000
+ 0: The total amount of wall time = 311.550287
+ 0: The maximum resident set size (KB) = 1149312
Test 116 rap_control_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_intel
Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 165.097371
- 0: The maximum resident set size (KB) = 1031388
+ 0: The total amount of wall time = 162.100803
+ 0: The maximum resident set size (KB) = 1037152
Test 117 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_intel
Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 296.302765
- 0: The maximum resident set size (KB) = 1278988
+ 0: The total amount of wall time = 293.638169
+ 0: The maximum resident set size (KB) = 1291208
Test 118 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_intel
Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 149.898641
- 0: The maximum resident set size (KB) = 1039424
+ 0: The total amount of wall time = 149.291909
+ 0: The maximum resident set size (KB) = 1050528
Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_intel
Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 171.855473
- 0: The maximum resident set size (KB) = 980400
+ 0: The total amount of wall time = 174.297567
+ 0: The maximum resident set size (KB) = 982244
Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_intel
Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.498563
- 0: The maximum resident set size (KB) = 1110704
+ 0: The total amount of wall time = 240.462005
+ 0: The maximum resident set size (KB) = 1102020
Test 121 rap_restart_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_intel
Checking test 122 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 86.072226
- 0: The maximum resident set size (KB) = 969836
+ 0: The total amount of wall time = 84.772033
+ 0: The maximum resident set size (KB) = 953852
Test 122 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_intel
Checking test 123 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 93.580959
- 0: The maximum resident set size (KB) = 1292348
+ 0: The total amount of wall time = 93.302324
+ 0: The maximum resident set size (KB) = 1307100
Test 123 conus13km_control_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_intel
Checking test 124 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 36.775532
- 0: The maximum resident set size (KB) = 1203980
+ 0: The total amount of wall time = 36.696331
+ 0: The maximum resident set size (KB) = 1205612
Test 124 conus13km_2threads_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_intel
Checking test 125 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 53.846253
- 0: The maximum resident set size (KB) = 1163568
+ 0: The total amount of wall time = 53.510029
+ 0: The maximum resident set size (KB) = 1153620
Test 125 conus13km_restart_mismatch_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_intel
Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 213.253160
- 0: The maximum resident set size (KB) = 1094228
+ 0: The total amount of wall time = 208.281048
+ 0: The maximum resident set size (KB) = 1095292
Test 126 rap_control_dyn64_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_intel
Checking test 127 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 223.235801
- 0: The maximum resident set size (KB) = 1091304
+ 0: The total amount of wall time = 226.905917
+ 0: The maximum resident set size (KB) = 1095928
Test 127 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_intel
Checking test 128 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 218.720509
- 0: The maximum resident set size (KB) = 1095532
+ 0: The total amount of wall time = 219.551667
+ 0: The maximum resident set size (KB) = 1097796
Test 128 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_intel
Checking test 129 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 693.215633
- 0: The maximum resident set size (KB) = 1327236
+ 0: The total amount of wall time = 695.001955
+ 0: The maximum resident set size (KB) = 1342144
Test 129 conus13km_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_intel
Checking test 130 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 705.235205
- 0: The maximum resident set size (KB) = 980808
+ 0: The total amount of wall time = 699.562751
+ 0: The maximum resident set size (KB) = 989116
Test 130 conus13km_debug_qr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_intel
Checking test 131 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 394.387278
- 0: The maximum resident set size (KB) = 1245656
+ 0: The total amount of wall time = 390.803202
+ 0: The maximum resident set size (KB) = 1238820
Test 131 conus13km_debug_2threads_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_intel
Checking test 132 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 694.468476
- 0: The maximum resident set size (KB) = 1402700
+ 0: The total amount of wall time = 689.266474
+ 0: The maximum resident set size (KB) = 1400400
Test 132 conus13km_radar_tten_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_intel
Checking test 133 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 228.896310
- 0: The maximum resident set size (KB) = 1147828
+ 0: The total amount of wall time = 232.235417
+ 0: The maximum resident set size (KB) = 1147672
Test 133 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_intel
Checking test 134 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 309.441222
- 0: The maximum resident set size (KB) = 873744
+ 0: The total amount of wall time = 305.359074
+ 0: The maximum resident set size (KB) = 872868
Test 134 hafs_regional_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 281.109796
- 0: The maximum resident set size (KB) = 1268792
+ 0: The total amount of wall time = 281.945532
+ 0: The maximum resident set size (KB) = 1278760
Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_intel
Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 367.738793
- 0: The maximum resident set size (KB) = 950108
+ 0: The total amount of wall time = 367.761185
+ 0: The maximum resident set size (KB) = 952228
Test 136 hafs_regional_atm_ocn_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_wav_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_wav_intel
Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 809.843023
- 0: The maximum resident set size (KB) = 992116
+ 0: The total amount of wall time = 811.240530
+ 0: The maximum resident set size (KB) = 986732
Test 137 hafs_regional_atm_wav_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_wav_intel
Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 900.907650
- 0: The maximum resident set size (KB) = 988800
+ 0: The total amount of wall time = 890.138569
+ 0: The maximum resident set size (KB) = 1005336
Test 138 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_1nest_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_1nest_atm_intel
Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5035,23 +5035,23 @@ Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 307.866771
- 0: The maximum resident set size (KB) = 608284
+ 0: The total amount of wall time = 311.983926
+ 0: The maximum resident set size (KB) = 606452
Test 139 hafs_regional_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_telescopic_2nests_atm_intel
Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 394.714449
- 0: The maximum resident set size (KB) = 614280
+ 0: The total amount of wall time = 396.035240
+ 0: The maximum resident set size (KB) = 619516
Test 140 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_1nest_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_1nest_atm_intel
Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 153.145842
- 0: The maximum resident set size (KB) = 433352
+ 0: The total amount of wall time = 153.453691
+ 0: The maximum resident set size (KB) = 436604
Test 141 hafs_global_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_multiple_4nests_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_multiple_4nests_atm_intel
Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5167,7 +5167,7 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
@@ -5177,19 +5177,19 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
@@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 438.036509
- 0: The maximum resident set size (KB) = 579408
+ 0: The total amount of wall time = 441.514735
+ 0: The maximum resident set size (KB) = 541824
Test 142 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_specified_moving_1nest_atm_intel
Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 219.583928
- 0: The maximum resident set size (KB) = 620348
+ 0: The total amount of wall time = 213.903087
+ 0: The maximum resident set size (KB) = 618724
Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5239,7 +5239,7 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
@@ -5248,14 +5248,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 207.701328
- 0: The maximum resident set size (KB) = 621436
+ 0: The total amount of wall time = 204.562187
+ 0: The maximum resident set size (KB) = 622252
Test 144 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5264,28 +5264,28 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 277.851381
- 0: The maximum resident set size (KB) = 683284
+ 0: The total amount of wall time = 275.803428
+ 0: The maximum resident set size (KB) = 671616
Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_storm_following_1nest_atm_intel
Checking test 146 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 70.281756
- 0: The maximum resident set size (KB) = 446072
+ 0: The total amount of wall time = 71.418089
+ 0: The maximum resident set size (KB) = 445600
Test 146 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_nested_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_nested_intel
Checking test 147 gnv1_nested_intel results ....
Comparing atmf006.nc ............ALT CHECK......NOT OK
Comparing sfcf006.nc ............ALT CHECK......NOT OK
@@ -5332,28 +5332,28 @@ Checking test 147 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK
Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK
- 0: The total amount of wall time = 235.900667
- 0: The maximum resident set size (KB) = 903724
+ 0: The total amount of wall time = 243.796081
+ 0: The maximum resident set size (KB) = 901624
Test 147 gnv1_nested_intel FAIL Tries: 2
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 657.246141
- 0: The maximum resident set size (KB) = 629784
+ 0: The total amount of wall time = 654.771092
+ 0: The maximum resident set size (KB) = 633120
Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5364,14 +5364,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 978.630017
- 0: The maximum resident set size (KB) = 746756
+ 0: The total amount of wall time = 986.917162
+ 0: The maximum resident set size (KB) = 747040
Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5382,14 +5382,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 933.120418
- 0: The maximum resident set size (KB) = 861412
+ 0: The total amount of wall time = 988.690132
+ 0: The maximum resident set size (KB) = 811176
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5399,14 +5399,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 625.417033
- 0: The maximum resident set size (KB) = 831136
+ 0: The total amount of wall time = 608.465934
+ 0: The maximum resident set size (KB) = 832012
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_intel
Checking test 152 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5414,14 +5414,14 @@ Checking test 152 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 310.548147
- 0: The maximum resident set size (KB) = 961196
+ 0: The total amount of wall time = 308.682139
+ 0: The maximum resident set size (KB) = 962392
Test 152 hafs_regional_docn_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_oisst_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_oisst_intel
Checking test 153 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5429,131 +5429,131 @@ Checking test 153 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 318.413827
- 0: The maximum resident set size (KB) = 913476
+ 0: The total amount of wall time = 309.584798
+ 0: The maximum resident set size (KB) = 931412
Test 153 hafs_regional_docn_oisst_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_datm_cdeps_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_datm_cdeps_intel
Checking test 154 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 974.211426
- 0: The maximum resident set size (KB) = 1341756
+ 0: The total amount of wall time = 970.774864
+ 0: The maximum resident set size (KB) = 1339792
Test 154 hafs_regional_datm_cdeps_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_intel
Checking test 155 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.645409
- 0: The maximum resident set size (KB) = 1129924
+ 0: The total amount of wall time = 121.385172
+ 0: The maximum resident set size (KB) = 1127364
Test 155 datm_cdeps_control_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_restart_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_restart_cfsr_intel
Checking test 156 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 72.928629
- 0: The maximum resident set size (KB) = 1107928
+ 0: The total amount of wall time = 72.371422
+ 0: The maximum resident set size (KB) = 1106520
Test 156 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_gefs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_gefs_intel
Checking test 157 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 118.111161
- 0: The maximum resident set size (KB) = 1006048
+ 0: The total amount of wall time = 116.316837
+ 0: The maximum resident set size (KB) = 1007612
Test 157 datm_cdeps_control_gefs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_iau_gefs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_iau_gefs_intel
Checking test 158 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 120.528837
- 0: The maximum resident set size (KB) = 1010776
+ 0: The total amount of wall time = 117.410368
+ 0: The maximum resident set size (KB) = 1012700
Test 158 datm_cdeps_iau_gefs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_stochy_gefs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_stochy_gefs_intel
Checking test 159 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 117.851743
- 0: The maximum resident set size (KB) = 1002364
+ 0: The total amount of wall time = 119.136809
+ 0: The maximum resident set size (KB) = 1013252
Test 159 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_ciceC_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_ciceC_cfsr_intel
Checking test 160 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.479421
- 0: The maximum resident set size (KB) = 1155304
+ 0: The total amount of wall time = 121.433967
+ 0: The maximum resident set size (KB) = 1150568
Test 160 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_cfsr_intel
Checking test 161 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 121.906181
- 0: The maximum resident set size (KB) = 1127584
+ 0: The total amount of wall time = 122.201909
+ 0: The maximum resident set size (KB) = 1142140
Test 161 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_gefs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_gefs_intel
Checking test 162 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 117.270880
- 0: The maximum resident set size (KB) = 1007748
+ 0: The total amount of wall time = 116.895143
+ 0: The maximum resident set size (KB) = 1012868
Test 162 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_cfsr_intel
Checking test 163 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5562,14 +5562,14 @@ Checking test 163 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 281.366470
- 0: The maximum resident set size (KB) = 1150460
+ 0: The total amount of wall time = 281.031125
+ 0: The maximum resident set size (KB) = 1169008
Test 163 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_gefs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_gefs_intel
Checking test 164 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5578,77 +5578,77 @@ Checking test 164 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 277.845044
- 0: The maximum resident set size (KB) = 1153004
+ 0: The total amount of wall time = 276.809644
+ 0: The maximum resident set size (KB) = 1151748
Test 164 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_multiple_files_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_multiple_files_cfsr_intel
Checking test 165 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.036429
- 0: The maximum resident set size (KB) = 1126076
+ 0: The total amount of wall time = 121.189175
+ 0: The maximum resident set size (KB) = 1147892
Test 165 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_3072x1536_cfsr_intel
Checking test 166 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 174.113271
- 0: The maximum resident set size (KB) = 2439256
+ 0: The total amount of wall time = 173.860347
+ 0: The maximum resident set size (KB) = 2386708
Test 166 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_gfs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_gfs_intel
Checking test 167 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 180.610353
- 0: The maximum resident set size (KB) = 2435908
+ 0: The total amount of wall time = 173.775039
+ 0: The maximum resident set size (KB) = 2441660
Test 167 datm_cdeps_gfs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_debug_cfsr_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_debug_cfsr_intel
Checking test 168 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 302.213548
- 0: The maximum resident set size (KB) = 1063692
+ 0: The total amount of wall time = 298.432820
+ 0: The maximum resident set size (KB) = 1077744
Test 168 datm_cdeps_debug_cfsr_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_faster_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_faster_intel
Checking test 169 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 119.546041
- 0: The maximum resident set size (KB) = 1142964
+ 0: The total amount of wall time = 121.920799
+ 0: The maximum resident set size (KB) = 1145184
Test 169 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_gswp3_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_gswp3_intel
Checking test 170 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5657,14 +5657,14 @@ Checking test 170 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 43.916551
- 0: The maximum resident set size (KB) = 340636
+ 0: The total amount of wall time = 43.721790
+ 0: The maximum resident set size (KB) = 328884
Test 170 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_intel
Checking test 171 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5673,14 +5673,14 @@ Checking test 171 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 40.266470
- 0: The maximum resident set size (KB) = 558872
+ 0: The total amount of wall time = 39.572909
+ 0: The maximum resident set size (KB) = 557740
Test 171 datm_cdeps_lnd_era5_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_rst_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_rst_intel
Checking test 172 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5689,14 +5689,14 @@ Checking test 172 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 24.844785
- 0: The maximum resident set size (KB) = 556428
+ 0: The total amount of wall time = 23.499585
+ 0: The maximum resident set size (KB) = 557872
Test 172 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_sbs_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_sbs_intel
Checking test 173 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5785,14 +5785,14 @@ Checking test 173 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 327.955030
- 0: The maximum resident set size (KB) = 1637420
+ 0: The total amount of wall time = 338.795293
+ 0: The maximum resident set size (KB) = 1649392
Test 173 control_p8_atmlnd_sbs_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_intel
Checking test 174 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5881,14 +5881,14 @@ Checking test 174 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 327.361237
- 0: The maximum resident set size (KB) = 1639172
+ 0: The total amount of wall time = 326.915840
+ 0: The maximum resident set size (KB) = 1642416
Test 174 control_p8_atmlnd_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_atmlnd_intel
Checking test 175 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5909,14 +5909,14 @@ Checking test 175 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 170.542369
- 0: The maximum resident set size (KB) = 942284
+ 0: The total amount of wall time = 173.458248
+ 0: The maximum resident set size (KB) = 945696
Test 175 control_restart_p8_atmlnd_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmwav_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmwav_control_noaero_p8_intel
Checking test 176 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5959,14 +5959,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 79.992699
- 0: The maximum resident set size (KB) = 1707356
+ 0: The total amount of wall time = 80.157693
+ 0: The maximum resident set size (KB) = 1699552
Test 176 atmwav_control_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_atmwav_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_atmwav_intel
Checking test 177 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6010,14 +6010,14 @@ Checking test 177 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 76.189888
- 0: The maximum resident set size (KB) = 696156
+ 0: The total amount of wall time = 76.513338
+ 0: The maximum resident set size (KB) = 696804
Test 177 control_atmwav_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_intel
Checking test 178 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6061,14 +6061,14 @@ Checking test 178 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 200.564861
- 0: The maximum resident set size (KB) = 1797340
+ 0: The total amount of wall time = 198.068527
+ 0: The maximum resident set size (KB) = 1790736
Test 178 atmaero_control_p8_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_intel
Checking test 179 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6112,14 +6112,14 @@ Checking test 179 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 243.134373
- 0: The maximum resident set size (KB) = 1815144
+ 0: The total amount of wall time = 244.939072
+ 0: The maximum resident set size (KB) = 1802620
Test 179 atmaero_control_p8_rad_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_micro_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_micro_intel
Checking test 180 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6163,14 +6163,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 257.570882
- 0: The maximum resident set size (KB) = 1831132
+ 0: The total amount of wall time = 259.830563
+ 0: The maximum resident set size (KB) = 1828312
Test 180 atmaero_control_p8_rad_micro_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_atmaq_debug_intel
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_atmaq_debug_intel
Checking test 181 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6184,14 +6184,14 @@ Checking test 181 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 971.352709
- 0: The maximum resident set size (KB) = 4566624
+ 0: The total amount of wall time = 953.457712
+ 0: The maximum resident set size (KB) = 4597748
Test 181 regional_atmaq_debug_intel PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_gnu
Checking test 182 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6230,14 +6230,14 @@ Checking test 182 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 561.801781
-0: The maximum resident set size (KB) = 860308
+0: The total amount of wall time = 561.978146
+0: The maximum resident set size (KB) = 860524
Test 182 control_c48_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_gnu
Checking test 183 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6248,14 +6248,14 @@ Checking test 183 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 123.888527
- 0: The maximum resident set size (KB) = 728132
+ 0: The total amount of wall time = 123.123349
+ 0: The maximum resident set size (KB) = 726696
Test 183 control_stochy_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_gnu
Checking test 184 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6266,14 +6266,14 @@ Checking test 184 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 212.158787
- 0: The maximum resident set size (KB) = 730800
+ 0: The total amount of wall time = 212.569943
+ 0: The maximum resident set size (KB) = 729044
Test 184 control_ras_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_gnu
Checking test 185 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6320,14 +6320,14 @@ Checking test 185 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 206.447966
- 0: The maximum resident set size (KB) = 1508876
+ 0: The total amount of wall time = 205.442414
+ 0: The maximum resident set size (KB) = 1507488
Test 185 control_p8_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_gnu
Checking test 186 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6374,14 +6374,14 @@ Checking test 186 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 201.997164
- 0: The maximum resident set size (KB) = 1511924
+ 0: The total amount of wall time = 200.813328
+ 0: The maximum resident set size (KB) = 1512828
Test 186 control_p8_ugwpv1_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_gnu
Checking test 187 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6392,14 +6392,14 @@ Checking test 187 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 252.499609
- 0: The maximum resident set size (KB) = 808196
+ 0: The total amount of wall time = 251.028430
+ 0: The maximum resident set size (KB) = 809992
Test 187 control_flake_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_gnu
Checking test 188 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6446,14 +6446,14 @@ Checking test 188 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 446.564193
- 0: The maximum resident set size (KB) = 1086128
+ 0: The total amount of wall time = 450.609031
+ 0: The maximum resident set size (KB) = 1086096
Test 188 rap_control_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_gnu
Checking test 189 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6500,14 +6500,14 @@ Checking test 189 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 454.081210
- 0: The maximum resident set size (KB) = 1084532
+ 0: The total amount of wall time = 458.488267
+ 0: The maximum resident set size (KB) = 1086220
Test 189 rap_decomp_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_gnu
Checking test 190 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6554,14 +6554,14 @@ Checking test 190 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 417.730501
- 0: The maximum resident set size (KB) = 1148104
+ 0: The total amount of wall time = 421.283563
+ 0: The maximum resident set size (KB) = 1129256
Test 190 rap_2threads_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_gnu
Checking test 191 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -6600,14 +6600,14 @@ Checking test 191 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 230.112825
- 0: The maximum resident set size (KB) = 884008
+ 0: The total amount of wall time = 227.808061
+ 0: The maximum resident set size (KB) = 884168
Test 191 rap_restart_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_gnu
Checking test 192 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6654,14 +6654,14 @@ Checking test 192 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 452.021282
- 0: The maximum resident set size (KB) = 1084124
+ 0: The total amount of wall time = 446.905865
+ 0: The maximum resident set size (KB) = 1087004
Test 192 rap_sfcdiff_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_gnu
Checking test 193 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6708,14 +6708,14 @@ Checking test 193 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 456.568989
- 0: The maximum resident set size (KB) = 1083960
+ 0: The total amount of wall time = 458.020921
+ 0: The maximum resident set size (KB) = 1086416
Test 193 rap_sfcdiff_decomp_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_gnu
Checking test 194 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -6754,14 +6754,14 @@ Checking test 194 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 332.922244
- 0: The maximum resident set size (KB) = 883532
+ 0: The total amount of wall time = 333.250180
+ 0: The maximum resident set size (KB) = 883156
Test 194 rap_sfcdiff_restart_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_gnu
Checking test 195 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6808,14 +6808,14 @@ Checking test 195 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.219739
- 0: The maximum resident set size (KB) = 1072036
+ 0: The total amount of wall time = 229.697489
+ 0: The maximum resident set size (KB) = 1074528
Test 195 hrrr_control_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_noqr_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_noqr_gnu
Checking test 196 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6862,14 +6862,14 @@ Checking test 196 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 230.316069
- 0: The maximum resident set size (KB) = 1135288
+ 0: The total amount of wall time = 230.255953
+ 0: The maximum resident set size (KB) = 1139336
Test 196 hrrr_control_noqr_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_gnu
Checking test 197 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6916,14 +6916,14 @@ Checking test 197 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.651400
- 0: The maximum resident set size (KB) = 1025636
+ 0: The total amount of wall time = 207.651039
+ 0: The maximum resident set size (KB) = 1043716
Test 197 hrrr_control_2threads_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_gnu
Checking test 198 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6970,42 +6970,42 @@ Checking test 198 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 230.261012
- 0: The maximum resident set size (KB) = 1071120
+ 0: The total amount of wall time = 227.287590
+ 0: The maximum resident set size (KB) = 1081896
Test 198 hrrr_control_decomp_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_gnu
Checking test 199 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 115.472680
- 0: The maximum resident set size (KB) = 881908
+ 0: The total amount of wall time = 115.516912
+ 0: The maximum resident set size (KB) = 882512
Test 199 hrrr_control_restart_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_noqr_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_noqr_gnu
Checking test 200 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 114.710069
- 0: The maximum resident set size (KB) = 931908
+ 0: The total amount of wall time = 113.521939
+ 0: The maximum resident set size (KB) = 934456
Test 200 hrrr_control_restart_noqr_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_gnu
Checking test 201 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7052,224 +7052,224 @@ Checking test 201 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 437.525741
- 0: The maximum resident set size (KB) = 1081304
+ 0: The total amount of wall time = 438.346028
+ 0: The maximum resident set size (KB) = 1085940
Test 201 rrfs_v1beta_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_gnu
Checking test 202 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 65.754808
- 0: The maximum resident set size (KB) = 771752
+ 0: The total amount of wall time = 64.560259
+ 0: The maximum resident set size (KB) = 774620
Test 202 control_diag_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_gnu
Checking test 203 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 368.099541
- 0: The maximum resident set size (KB) = 921468
+ 0: The total amount of wall time = 367.432213
+ 0: The maximum resident set size (KB) = 926380
Test 203 regional_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_gnu
Checking test 204 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 110.197920
- 0: The maximum resident set size (KB) = 1096476
+ 0: The total amount of wall time = 111.760079
+ 0: The maximum resident set size (KB) = 1098156
Test 204 rap_control_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_gnu
Checking test 205 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 106.118091
- 0: The maximum resident set size (KB) = 1089344
+ 0: The total amount of wall time = 108.101135
+ 0: The maximum resident set size (KB) = 1088160
Test 205 hrrr_control_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_gnu
Checking test 206 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.382121
- 0: The maximum resident set size (KB) = 1094152
+ 0: The total amount of wall time = 109.228348
+ 0: The maximum resident set size (KB) = 1095944
Test 206 hrrr_gf_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_gnu
Checking test 207 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 111.047710
- 0: The maximum resident set size (KB) = 1093744
+ 0: The total amount of wall time = 108.986261
+ 0: The maximum resident set size (KB) = 1092828
Test 207 hrrr_c3_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_gnu
Checking test 208 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 115.968799
- 0: The maximum resident set size (KB) = 1269748
+ 0: The total amount of wall time = 116.353311
+ 0: The maximum resident set size (KB) = 1269224
Test 208 rap_diag_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_gnu
Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 177.016118
- 0: The maximum resident set size (KB) = 1097820
+ 0: The total amount of wall time = 175.568800
+ 0: The maximum resident set size (KB) = 1094040
Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_gnu
Checking test 210 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 110.333784
- 0: The maximum resident set size (KB) = 1098696
+ 0: The total amount of wall time = 110.519735
+ 0: The maximum resident set size (KB) = 1096472
Test 210 rap_progcld_thompson_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_gnu
Checking test 211 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.219334
- 0: The maximum resident set size (KB) = 1094716
+ 0: The total amount of wall time = 109.664822
+ 0: The maximum resident set size (KB) = 1093560
Test 211 rrfs_v1beta_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_gnu
Checking test 212 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 63.126530
- 0: The maximum resident set size (KB) = 728648
+ 0: The total amount of wall time = 62.881807
+ 0: The maximum resident set size (KB) = 727592
Test 212 control_ras_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_gnu
Checking test 213 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 68.329098
- 0: The maximum resident set size (KB) = 719036
+ 0: The total amount of wall time = 69.700142
+ 0: The maximum resident set size (KB) = 719244
Test 213 control_stochy_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_gnu
Checking test 214 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 68.649005
- 0: The maximum resident set size (KB) = 1505620
+ 0: The total amount of wall time = 67.356416
+ 0: The maximum resident set size (KB) = 1504580
Test 214 control_debug_p8_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_gnu
Checking test 215 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.703333
- 0: The maximum resident set size (KB) = 1101072
+ 0: The total amount of wall time = 109.236425
+ 0: The maximum resident set size (KB) = 1096424
Test 215 rap_flake_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_gnu
Checking test 216 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 122.842551
- 0: The maximum resident set size (KB) = 1100304
+ 0: The total amount of wall time = 122.126095
+ 0: The maximum resident set size (KB) = 1098848
Test 216 rap_clm_lake_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_gnu
Checking test 217 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7310,14 +7310,14 @@ Checking test 217 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 187.259952
- 0: The maximum resident set size (KB) = 1102064
+ 0: The total amount of wall time = 189.964902
+ 0: The maximum resident set size (KB) = 1098112
Test 217 gnv1_c96_no_nest_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_gnu
Checking test 218 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7364,14 +7364,14 @@ Checking test 218 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 424.563139
- 0: The maximum resident set size (KB) = 963456
+ 0: The total amount of wall time = 424.026492
+ 0: The maximum resident set size (KB) = 964848
Test 218 rap_control_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_gnu
Checking test 219 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7418,14 +7418,14 @@ Checking test 219 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 216.844494
- 0: The maximum resident set size (KB) = 953124
+ 0: The total amount of wall time = 217.832194
+ 0: The maximum resident set size (KB) = 953684
Test 219 hrrr_control_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_gnu
Checking test 220 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7472,14 +7472,14 @@ Checking test 220 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 392.056259
- 0: The maximum resident set size (KB) = 968936
+ 0: The total amount of wall time = 391.667958
+ 0: The maximum resident set size (KB) = 997812
Test 220 rap_2threads_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_gnu
Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7526,14 +7526,14 @@ Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 198.976765
- 0: The maximum resident set size (KB) = 876092
+ 0: The total amount of wall time = 199.050604
+ 0: The maximum resident set size (KB) = 878708
Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_gnu
Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7580,14 +7580,14 @@ Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 220.161498
- 0: The maximum resident set size (KB) = 953140
+ 0: The total amount of wall time = 222.044644
+ 0: The maximum resident set size (KB) = 952888
Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_gnu
Checking test 223 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -7626,28 +7626,28 @@ Checking test 223 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 319.206471
- 0: The maximum resident set size (KB) = 858236
+ 0: The total amount of wall time = 317.090656
+ 0: The maximum resident set size (KB) = 858080
Test 223 rap_restart_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_gnu
Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 111.690552
- 0: The maximum resident set size (KB) = 862644
+ 0: The total amount of wall time = 110.685069
+ 0: The maximum resident set size (KB) = 856152
Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_gnu
Checking test 225 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7663,40 +7663,40 @@ Checking test 225 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 142.009333
- 0: The maximum resident set size (KB) = 1267916
+ 0: The total amount of wall time = 140.749904
+ 0: The maximum resident set size (KB) = 1267240
Test 225 conus13km_control_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_gnu
Checking test 226 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 56.926568
- 0: The maximum resident set size (KB) = 1172676
+ 0: The total amount of wall time = 55.463281
+ 0: The maximum resident set size (KB) = 1174488
Test 226 conus13km_2threads_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_gnu
Checking test 227 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 79.546495
- 0: The maximum resident set size (KB) = 943172
+ 0: The total amount of wall time = 78.317376
+ 0: The maximum resident set size (KB) = 929236
Test 227 conus13km_restart_mismatch_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_gnu
Checking test 228 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7743,42 +7743,42 @@ Checking test 228 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 257.156347
- 0: The maximum resident set size (KB) = 988684
+ 0: The total amount of wall time = 253.040512
+ 0: The maximum resident set size (KB) = 994068
Test 228 rap_control_dyn64_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_gnu
Checking test 229 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.230408
- 0: The maximum resident set size (KB) = 973256
+ 0: The total amount of wall time = 107.025441
+ 0: The maximum resident set size (KB) = 974008
Test 229 rap_control_debug_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_gnu
Checking test 230 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 106.034854
- 0: The maximum resident set size (KB) = 965252
+ 0: The total amount of wall time = 105.161131
+ 0: The maximum resident set size (KB) = 966456
Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_gnu
Checking test 231 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7792,14 +7792,14 @@ Checking test 231 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 312.554810
- 0: The maximum resident set size (KB) = 1280524
+ 0: The total amount of wall time = 315.742595
+ 0: The maximum resident set size (KB) = 1279968
Test 231 conus13km_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_gnu
Checking test 232 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7813,50 +7813,50 @@ Checking test 232 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 326.493219
- 0: The maximum resident set size (KB) = 954536
+ 0: The total amount of wall time = 326.074337
+ 0: The maximum resident set size (KB) = 966772
Test 232 conus13km_debug_qr_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_gnu
Checking test 233 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 187.583794
- 0: The maximum resident set size (KB) = 1188608
+ 0: The total amount of wall time = 184.887508
+ 0: The maximum resident set size (KB) = 1189540
Test 233 conus13km_debug_2threads_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_gnu
Checking test 234 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 320.089852
- 0: The maximum resident set size (KB) = 1349640
+ 0: The total amount of wall time = 316.370118
+ 0: The maximum resident set size (KB) = 1349260
Test 234 conus13km_radar_tten_debug_gnu PASS
baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_gnu
+working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_gnu
Checking test 235 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 110.143505
- 0: The maximum resident set size (KB) = 1001260
+ 0: The total amount of wall time = 108.466745
+ 0: The maximum resident set size (KB) = 1000468
Test 235 rap_control_dyn64_phy32_debug_gnu PASS
@@ -7865,81 +7865,5 @@ FAILED TESTS:
gnv1_nested_intel 147 failed in run_test
REGRESSION TEST FAILED
-Thu Feb 8 10:14:43 AM CST 2024
-Elapsed time: 01h:19m:51s. Have a nice day!
-Thu Feb 8 10:52:05 AM CST 2024
-Start Regression test
-
-Testing UFSWM Hash: aff1f15a908e7012f85a13fc101150df644731a6
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile hafsw_intel elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_493623/gnv1_nested_intel
-Checking test 001 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 236.187626
- 0: The maximum resident set size (KB) = 904672
-
-Test 001 gnv1_nested_intel PASS
-
-
-REGRESSION TEST WAS SUCCESSFUL
-Thu Feb 8 11:10:55 AM CST 2024
-Elapsed time: 00h:18m:51s. Have a nice day!
+Thu Feb 8 19:13:28 CST 2024
+Elapsed time: 01h:20m:18s. Have a nice day!
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index a676f307e6..d104ba27da 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,57 +1,40 @@
-Thu Feb 8 15:46:23 UTC 2024
-Start Regression test
-
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 377 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 2007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atm_faster_dyn32_intel elapsed time 1868 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmaero_intel elapsed time 1813 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atml_intel elapsed time 1963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmw_intel elapsed time 1824 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmwm_intel elapsed time 1829 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile csawmg_intel elapsed time 1861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 497 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafs_all_intel elapsed time 1872 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafsw_intel elapsed time 1967 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 2568 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_intel elapsed time 1842 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 1871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_intel elapsed time 1916 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile s2s_aoflux_intel elapsed time 1912 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1918 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 347 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 2084 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 2741 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 2142 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 3026 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 368 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 5518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 2186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atm_debug_dyn32_intel elapsed time 367 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 2021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atm_faster_dyn32_intel elapsed time 1839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmaero_intel elapsed time 1786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atml_intel elapsed time 1966 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmw_intel elapsed time 1872 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmwm_intel elapsed time 1822 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile csawmg_intel elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile datm_cdeps_debug_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 485 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafs_all_intel elapsed time 1845 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafsw_intel elapsed time 1964 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 2534 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile s2s_aoflux_intel elapsed time 1882 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 1870 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 2027 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 2723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 2279 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 2919 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 5475 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 2277 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_mixedmode_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -116,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 419.466187
- 0: The maximum resident set size (KB) = 1745660
+ 0: The total amount of wall time = 417.598625
+ 0: The maximum resident set size (KB) = 1746664
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -187,14 +170,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1272.387013
- 0: The maximum resident set size (KB) = 1634244
+ 0: The total amount of wall time = 1238.097157
+ 0: The maximum resident set size (KB) = 1644756
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_iau_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -240,14 +223,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1307.730015
- 0: The maximum resident set size (KB) = 1852588
+ 0: The total amount of wall time = 1330.746161
+ 0: The maximum resident set size (KB) = 1851840
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_gfsv17_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -300,14 +283,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 604.970267
- 0: The maximum resident set size (KB) = 974904
+ 0: The total amount of wall time = 590.575476
+ 0: The maximum resident set size (KB) = 967860
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_gfsv17_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -371,18 +354,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1408.458188
- 0: The maximum resident set size (KB) = 1604616
+ 0: The total amount of wall time = 1445.554274
+ 0: The maximum resident set size (KB) = 1607720
Test 005 cpld_mpi_gfsv17_intel PASS
-Test 006 cpld_debug_gfsv17_intel FAIL
-
-Test 006 cpld_debug_gfsv17_intel FAIL
-
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -447,14 +426,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 459.700155
- 0: The maximum resident set size (KB) = 1793904
+ 0: The total amount of wall time = 443.099353
+ 0: The maximum resident set size (KB) = 1800900
Test 007 cpld_control_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8.v2.sfc_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -519,14 +498,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 459.718647
- 0: The maximum resident set size (KB) = 1792104
+ 0: The total amount of wall time = 457.857445
+ 0: The maximum resident set size (KB) = 1810948
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -579,14 +558,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 269.361721
- 0: The maximum resident set size (KB) = 1711004
+ 0: The total amount of wall time = 330.397053
+ 0: The maximum resident set size (KB) = 1688380
Test 009 cpld_restart_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_qr_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -651,14 +630,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 463.136308
- 0: The maximum resident set size (KB) = 1823900
+ 0: The total amount of wall time = 466.190185
+ 0: The maximum resident set size (KB) = 1843488
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_qr_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -711,14 +690,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 275.405884
- 0: The maximum resident set size (KB) = 1716196
+ 0: The total amount of wall time = 277.020730
+ 0: The maximum resident set size (KB) = 1707008
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_2threads_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +750,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 439.189824
- 0: The maximum resident set size (KB) = 2204316
+ 0: The total amount of wall time = 449.399304
+ 0: The maximum resident set size (KB) = 2188248
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_decomp_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +810,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 475.023163
- 0: The maximum resident set size (KB) = 1772152
+ 0: The total amount of wall time = 462.329677
+ 0: The maximum resident set size (KB) = 1792224
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +870,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 396.042637
- 0: The maximum resident set size (KB) = 1752848
+ 0: The total amount of wall time = 382.894695
+ 0: The maximum resident set size (KB) = 1755624
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_ciceC_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -963,14 +942,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 449.503949
- 0: The maximum resident set size (KB) = 1815852
+ 0: The total amount of wall time = 475.656668
+ 0: The maximum resident set size (KB) = 1782680
-Test 015 cpld_control_ciceC_p8_intel PASS Tries: 2
+Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_s2sa_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_s2sa_p8_intel
Checking test 016 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1021,14 +1000,14 @@ Checking test 016 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 431.025455
- 0: The maximum resident set size (KB) = 1770700
+ 0: The total amount of wall time = 435.462329
+ 0: The maximum resident set size (KB) = 1774616
Test 016 cpld_s2sa_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_intel
Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1092,14 +1071,14 @@ Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 345.031740
- 0: The maximum resident set size (KB) = 1631016
+ 0: The total amount of wall time = 397.346400
+ 0: The maximum resident set size (KB) = 1637616
Test 017 cpld_control_noaero_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_nowave_noaero_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_nowave_noaero_p8_intel
Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1161,14 +1140,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 331.624914
- 0: The maximum resident set size (KB) = 1690588
+ 0: The total amount of wall time = 371.761917
+ 0: The maximum resident set size (KB) = 1700940
Test 018 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_p8_intel
Checking test 019 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1221,14 +1200,14 @@ Checking test 019 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 651.460873
- 0: The maximum resident set size (KB) = 1812068
+ 0: The total amount of wall time = 642.641170
+ 0: The maximum resident set size (KB) = 1812596
Test 019 cpld_debug_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_noaero_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_noaero_p8_intel
Checking test 020 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1280,14 +1259,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 420.133657
- 0: The maximum resident set size (KB) = 1657500
+ 0: The total amount of wall time = 440.187541
+ 0: The maximum resident set size (KB) = 1651300
Test 020 cpld_debug_noaero_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_agrid_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_agrid_intel
Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1349,14 +1328,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 342.802816
- 0: The maximum resident set size (KB) = 1698216
+ 0: The total amount of wall time = 371.197133
+ 0: The maximum resident set size (KB) = 1694912
Test 021 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_c48_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_c48_intel
Checking test 022 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1406,14 +1385,14 @@ Checking test 022 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 756.859279
- 0: The maximum resident set size (KB) = 2785576
+ 0: The total amount of wall time = 766.704053
+ 0: The maximum resident set size (KB) = 2783000
Test 022 cpld_control_c48_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_faster_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_faster_intel
Checking test 023 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1478,14 +1457,14 @@ Checking test 023 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 432.502441
- 0: The maximum resident set size (KB) = 1801392
+ 0: The total amount of wall time = 441.675255
+ 0: The maximum resident set size (KB) = 1810020
Test 023 cpld_control_p8_faster_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_pdlib_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1549,14 +1528,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1265.871220
- 0: The maximum resident set size (KB) = 1665544
+ 0: The total amount of wall time = 1240.111555
+ 0: The maximum resident set size (KB) = 1677944
Test 024 cpld_control_pdlib_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_pdlib_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1608,14 +1587,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 691.087439
- 0: The maximum resident set size (KB) = 1028600
+ 0: The total amount of wall time = 596.241255
+ 0: The maximum resident set size (KB) = 1020012
Test 025 cpld_restart_pdlib_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_pdlib_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1679,14 +1658,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1506.906020
- 0: The maximum resident set size (KB) = 1645664
+ 0: The total amount of wall time = 1442.768959
+ 0: The maximum resident set size (KB) = 1634632
Test 026 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_pdlib_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1738,14 +1717,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1918.104167
- 0: The maximum resident set size (KB) = 1669624
+ 0: The total amount of wall time = 1913.180413
+ 0: The maximum resident set size (KB) = 1679084
Test 027 cpld_debug_pdlib_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_flake_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1756,14 +1735,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 265.778131
- 0: The maximum resident set size (KB) = 642580
+ 0: The total amount of wall time = 285.289548
+ 0: The maximum resident set size (KB) = 642168
Test 028 control_flake_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1790,36 +1769,36 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 184.503756
- 0: The maximum resident set size (KB) = 598624
+ 0: The total amount of wall time = 201.700142
+ 0: The maximum resident set size (KB) = 598164
Test 029 control_CubedSphereGrid_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_parallel_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
+ Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc .........OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_atmf000.nc .........OK
Comparing cubed_sphere_grid_atmf024.nc .........OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 200.345540
- 0: The maximum resident set size (KB) = 597556
+ 0: The total amount of wall time = 206.658632
+ 0: The maximum resident set size (KB) = 598076
Test 030 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_latlon_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1830,14 +1809,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 190.033016
- 0: The maximum resident set size (KB) = 592924
+ 0: The total amount of wall time = 192.203586
+ 0: The maximum resident set size (KB) = 588164
Test 031 control_latlon_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1848,14 +1827,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 194.154400
- 0: The maximum resident set size (KB) = 595692
+ 0: The total amount of wall time = 202.682711
+ 0: The maximum resident set size (KB) = 592908
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1894,14 +1873,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 610.278536
-0: The maximum resident set size (KB) = 849920
+0: The total amount of wall time = 605.899308
+0: The maximum resident set size (KB) = 839620
Test 033 control_c48_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48.v2.sfc_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1940,14 +1919,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 612.944942
-0: The maximum resident set size (KB) = 848816
+0: The total amount of wall time = 604.762516
+0: The maximum resident set size (KB) = 845876
Test 034 control_c48.v2.sfc_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c192_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1958,14 +1937,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 739.191245
- 0: The maximum resident set size (KB) = 723972
+ 0: The total amount of wall time = 747.144683
+ 0: The maximum resident set size (KB) = 724176
Test 035 control_c192_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1976,14 +1955,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 1124.458725
- 0: The maximum resident set size (KB) = 897212
+ 0: The total amount of wall time = 1036.489847
+ 0: The maximum resident set size (KB) = 898244
Test 036 control_c384_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384gdas_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2006,34 +1985,34 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 974.317072
- 0: The maximum resident set size (KB) = 1019400
+ 0: The total amount of wall time = 863.081916
+ 0: The maximum resident set size (KB) = 1013596
Test 037 control_c384gdas_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2044,28 +2023,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 122.234726
- 0: The maximum resident set size (KB) = 596060
+ 0: The total amount of wall time = 126.430949
+ 0: The maximum resident set size (KB) = 596656
Test 038 control_stochy_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_restart_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 71.592905
- 0: The maximum resident set size (KB) = 438180
+ 0: The total amount of wall time = 70.047857
+ 0: The maximum resident set size (KB) = 432020
Test 039 control_stochy_restart_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2076,14 +2055,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 118.394264
- 0: The maximum resident set size (KB) = 598440
+ 0: The total amount of wall time = 121.136305
+ 0: The maximum resident set size (KB) = 602596
Test 040 control_lndp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr4_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2098,14 +2077,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 189.011441
- 0: The maximum resident set size (KB) = 595968
+ 0: The total amount of wall time = 1393.365752
+ 0: The maximum resident set size (KB) = 591436
Test 041 control_iovr4_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr5_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2120,14 +2099,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 191.872429
- 0: The maximum resident set size (KB) = 594136
+ 0: The total amount of wall time = 196.163161
+ 0: The maximum resident set size (KB) = 591840
Test 042 control_iovr5_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2174,14 +2153,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 232.327556
- 0: The maximum resident set size (KB) = 1574568
+ 0: The total amount of wall time = 228.613032
+ 0: The maximum resident set size (KB) = 1573544
Test 043 control_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8.v2.sfc_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2228,14 +2207,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.714326
- 0: The maximum resident set size (KB) = 1557132
+ 0: The total amount of wall time = 225.941040
+ 0: The maximum resident set size (KB) = 1574172
Test 044 control_p8.v2.sfc_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_ugwpv1_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2282,14 +2261,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.776778
- 0: The maximum resident set size (KB) = 1561856
+ 0: The total amount of wall time = 222.835795
+ 0: The maximum resident set size (KB) = 1569424
Test 045 control_p8_ugwpv1_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2328,14 +2307,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 136.613574
- 0: The maximum resident set size (KB) = 808164
+ 0: The total amount of wall time = 119.504831
+ 0: The maximum resident set size (KB) = 808512
Test 046 control_restart_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_noqr_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2382,14 +2361,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 229.711728
- 0: The maximum resident set size (KB) = 1557720
+ 0: The total amount of wall time = 221.939531
+ 0: The maximum resident set size (KB) = 1555528
Test 047 control_noqr_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_noqr_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2428,14 +2407,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 129.350110
- 0: The maximum resident set size (KB) = 834028
+ 0: The total amount of wall time = 118.207898
+ 0: The maximum resident set size (KB) = 833268
Test 048 control_restart_noqr_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_decomp_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2478,14 +2457,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 243.420009
- 0: The maximum resident set size (KB) = 1564152
+ 0: The total amount of wall time = 237.613789
+ 0: The maximum resident set size (KB) = 1564292
Test 049 control_decomp_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_2threads_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_2threads_p8_intel
Checking test 050 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2528,14 +2507,14 @@ Checking test 050 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 221.138597
- 0: The maximum resident set size (KB) = 1663480
+ 0: The total amount of wall time = 219.680945
+ 0: The maximum resident set size (KB) = 1658808
Test 050 control_2threads_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_lndp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_lndp_intel
Checking test 051 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2554,14 +2533,14 @@ Checking test 051 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 415.047075
- 0: The maximum resident set size (KB) = 1574788
+ 0: The total amount of wall time = 410.990355
+ 0: The maximum resident set size (KB) = 1568508
Test 051 control_p8_lndp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_rrtmgp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_rrtmgp_intel
Checking test 052 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2608,14 +2587,14 @@ Checking test 052 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 314.549451
- 0: The maximum resident set size (KB) = 1632420
+ 0: The total amount of wall time = 324.274315
+ 0: The maximum resident set size (KB) = 1618368
Test 052 control_p8_rrtmgp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_mynn_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_mynn_intel
Checking test 053 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2662,14 +2641,14 @@ Checking test 053 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.063943
- 0: The maximum resident set size (KB) = 1569704
+ 0: The total amount of wall time = 229.131373
+ 0: The maximum resident set size (KB) = 1561660
Test 053 control_p8_mynn_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/merra2_thompson_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/merra2_thompson_intel
Checking test 054 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2716,14 +2695,14 @@ Checking test 054 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 281.214696
- 0: The maximum resident set size (KB) = 1576940
+ 0: The total amount of wall time = 264.924860
+ 0: The maximum resident set size (KB) = 1564736
Test 054 merra2_thompson_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_intel
Checking test 055 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2734,28 +2713,28 @@ Checking test 055 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 457.406418
- 0: The maximum resident set size (KB) = 762032
+ 0: The total amount of wall time = 429.991218
+ 0: The maximum resident set size (KB) = 753972
Test 055 regional_control_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_restart_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_restart_intel
Checking test 056 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 257.595240
- 0: The maximum resident set size (KB) = 925836
+ 0: The total amount of wall time = 219.814728
+ 0: The maximum resident set size (KB) = 927712
Test 056 regional_restart_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_decomp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_decomp_intel
Checking test 057 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2766,14 +2745,14 @@ Checking test 057 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 467.123126
- 0: The maximum resident set size (KB) = 759500
+ 0: The total amount of wall time = 451.522213
+ 0: The maximum resident set size (KB) = 749776
Test 057 regional_decomp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2threads_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2threads_intel
Checking test 058 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2784,28 +2763,28 @@ Checking test 058 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 281.361968
- 0: The maximum resident set size (KB) = 746764
+ 0: The total amount of wall time = 266.918671
+ 0: The maximum resident set size (KB) = 747508
Test 058 regional_2threads_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_netcdf_parallel_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_netcdf_parallel_intel
Checking test 059 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 637.923117
- 0: The maximum resident set size (KB) = 751628
+ 0: The total amount of wall time = 419.753136
+ 0: The maximum resident set size (KB) = 757676
Test 059 regional_netcdf_parallel_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2dwrtdecomp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2dwrtdecomp_intel
Checking test 060 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2816,14 +2795,14 @@ Checking test 060 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 438.509411
- 0: The maximum resident set size (KB) = 758164
+ 0: The total amount of wall time = 423.971494
+ 0: The maximum resident set size (KB) = 755008
Test 060 regional_2dwrtdecomp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_intel
Checking test 061 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2870,14 +2849,14 @@ Checking test 061 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 610.097536
- 0: The maximum resident set size (KB) = 967444
+ 0: The total amount of wall time = 641.015804
+ 0: The maximum resident set size (KB) = 968076
Test 061 rap_control_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_intel
Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2888,14 +2867,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 359.540314
- 0: The maximum resident set size (KB) = 1214124
+ 0: The total amount of wall time = 334.033315
+ 0: The maximum resident set size (KB) = 1206652
Test 062 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_decomp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_decomp_intel
Checking test 063 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2942,14 +2921,14 @@ Checking test 063 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 647.847729
- 0: The maximum resident set size (KB) = 969040
+ 0: The total amount of wall time = 630.055127
+ 0: The maximum resident set size (KB) = 958116
Test 063 rap_decomp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_intel
Checking test 064 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2996,14 +2975,14 @@ Checking test 064 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 588.484777
- 0: The maximum resident set size (KB) = 1065544
+ 0: The total amount of wall time = 571.681731
+ 0: The maximum resident set size (KB) = 1064824
Test 064 rap_2threads_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_intel
Checking test 065 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3042,14 +3021,14 @@ Checking test 065 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 381.485505
- 0: The maximum resident set size (KB) = 986500
+ 0: The total amount of wall time = 308.813615
+ 0: The maximum resident set size (KB) = 984572
Test 065 rap_restart_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_intel
Checking test 066 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3096,14 +3075,14 @@ Checking test 066 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 612.818264
- 0: The maximum resident set size (KB) = 990296
+ 0: The total amount of wall time = 603.504721
+ 0: The maximum resident set size (KB) = 969532
Test 066 rap_sfcdiff_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_decomp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_decomp_intel
Checking test 067 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3150,14 +3129,14 @@ Checking test 067 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 647.905688
- 0: The maximum resident set size (KB) = 977920
+ 0: The total amount of wall time = 639.061808
+ 0: The maximum resident set size (KB) = 979304
Test 067 rap_sfcdiff_decomp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_restart_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_restart_intel
Checking test 068 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3196,14 +3175,14 @@ Checking test 068 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 564.712480
- 0: The maximum resident set size (KB) = 988620
+ 0: The total amount of wall time = 443.003018
+ 0: The maximum resident set size (KB) = 986380
Test 068 rap_sfcdiff_restart_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_intel
Checking test 069 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3250,14 +3229,14 @@ Checking test 069 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 316.412768
- 0: The maximum resident set size (KB) = 973680
+ 0: The total amount of wall time = 306.543021
+ 0: The maximum resident set size (KB) = 978476
Test 069 hrrr_control_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_intel
Checking test 070 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3304,14 +3283,14 @@ Checking test 070 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 325.610991
- 0: The maximum resident set size (KB) = 970508
+ 0: The total amount of wall time = 321.295290
+ 0: The maximum resident set size (KB) = 966180
Test 070 hrrr_control_decomp_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_intel
Checking test 071 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3358,28 +3337,28 @@ Checking test 071 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 291.740433
- 0: The maximum resident set size (KB) = 1050408
+ 0: The total amount of wall time = 284.108260
+ 0: The maximum resident set size (KB) = 1051444
Test 071 hrrr_control_2threads_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_intel
Checking test 072 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 187.194022
- 0: The maximum resident set size (KB) = 901532
+ 0: The total amount of wall time = 167.645004
+ 0: The maximum resident set size (KB) = 903024
Test 072 hrrr_control_restart_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_intel
Checking test 073 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3426,14 +3405,14 @@ Checking test 073 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 601.297435
- 0: The maximum resident set size (KB) = 979744
+ 0: The total amount of wall time = 587.432205
+ 0: The maximum resident set size (KB) = 979612
Test 073 rrfs_v1beta_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_intel
Checking test 074 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3448,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 760.745462
- 0: The maximum resident set size (KB) = 1929836
+ 0: The total amount of wall time = 718.128208
+ 0: The maximum resident set size (KB) = 1926676
Test 074 rrfs_v1nssl_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_nohailnoccn_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_nohailnoccn_intel
Checking test 075 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3470,14 +3449,14 @@ Checking test 075 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 716.876976
- 0: The maximum resident set size (KB) = 1921780
+ 0: The total amount of wall time = 723.775643
+ 0: The maximum resident set size (KB) = 1921892
Test 075 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_intel
Checking test 076 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3488,14 +3467,14 @@ Checking test 076 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 490.824048
- 0: The maximum resident set size (KB) = 686152
+ 0: The total amount of wall time = 499.872926
+ 0: The maximum resident set size (KB) = 682884
Test 076 control_csawmg_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_intel
Checking test 077 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3506,14 +3485,14 @@ Checking test 077 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 488.600418
- 0: The maximum resident set size (KB) = 685428
+ 0: The total amount of wall time = 492.512279
+ 0: The maximum resident set size (KB) = 685628
Test 077 control_csawmgt_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_intel
Checking test 078 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3524,26 +3503,26 @@ Checking test 078 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 266.781207
- 0: The maximum resident set size (KB) = 657044
+ 0: The total amount of wall time = 259.949395
+ 0: The maximum resident set size (KB) = 650968
Test 078 control_ras_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_intel
Checking test 079 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 241.981180
- 0: The maximum resident set size (KB) = 494292
+ 0: The total amount of wall time = 193.060547
+ 0: The maximum resident set size (KB) = 497092
Test 079 control_wam_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_faster_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_faster_intel
Checking test 080 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3590,14 +3569,14 @@ Checking test 080 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 208.248048
- 0: The maximum resident set size (KB) = 1562972
+ 0: The total amount of wall time = 207.283087
+ 0: The maximum resident set size (KB) = 1566732
Test 080 control_p8_faster_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_faster_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_faster_intel
Checking test 081 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3608,14 +3587,14 @@ Checking test 081 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 440.217469
- 0: The maximum resident set size (KB) = 752468
+ 0: The total amount of wall time = 391.178962
+ 0: The maximum resident set size (KB) = 756524
Test 081 regional_control_faster_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_debug_intel
Checking test 082 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3642,364 +3621,364 @@ Checking test 082 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 211.362755
- 0: The maximum resident set size (KB) = 751528
+ 0: The total amount of wall time = 197.758614
+ 0: The maximum resident set size (KB) = 750332
Test 082 control_CubedSphereGrid_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 197.313747
- 0: The maximum resident set size (KB) = 749740
+ 0: The total amount of wall time = 201.756653
+ 0: The maximum resident set size (KB) = 749352
Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_debug_intel
Checking test 084 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 227.711630
- 0: The maximum resident set size (KB) = 755748
+ 0: The total amount of wall time = 221.936950
+ 0: The maximum resident set size (KB) = 757704
Test 084 control_stochy_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_debug_intel
Checking test 085 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 223.485050
- 0: The maximum resident set size (KB) = 755428
+ 0: The total amount of wall time = 197.491477
+ 0: The maximum resident set size (KB) = 751528
Test 085 control_lndp_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_debug_intel
Checking test 086 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 338.432189
- 0: The maximum resident set size (KB) = 797380
+ 0: The total amount of wall time = 376.610104
+ 0: The maximum resident set size (KB) = 799636
Test 086 control_csawmg_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_debug_intel
Checking test 087 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 336.750128
- 0: The maximum resident set size (KB) = 797028
+ 0: The total amount of wall time = 307.314693
+ 0: The maximum resident set size (KB) = 800548
Test 087 control_csawmgt_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_debug_intel
Checking test 088 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 208.231344
- 0: The maximum resident set size (KB) = 762160
+ 0: The total amount of wall time = 280.164043
+ 0: The maximum resident set size (KB) = 759824
Test 088 control_ras_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_diag_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_diag_debug_intel
Checking test 089 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.950116
- 0: The maximum resident set size (KB) = 808072
+ 0: The total amount of wall time = 264.738466
+ 0: The maximum resident set size (KB) = 808968
Test 089 control_diag_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_debug_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_debug_p8_intel
Checking test 090 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 259.820649
- 0: The maximum resident set size (KB) = 1573912
+ 0: The total amount of wall time = 213.269743
+ 0: The maximum resident set size (KB) = 1574496
Test 090 control_debug_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_debug_intel
Checking test 091 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 1320.204556
- 0: The maximum resident set size (KB) = 771704
+ 0: The total amount of wall time = 1293.778089
+ 0: The maximum resident set size (KB) = 776296
Test 091 regional_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_intel
Checking test 092 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 412.394126
- 0: The maximum resident set size (KB) = 1139088
+ 0: The total amount of wall time = 361.838602
+ 0: The maximum resident set size (KB) = 1147756
Test 092 rap_control_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_intel
Checking test 093 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 368.971701
- 0: The maximum resident set size (KB) = 1141676
+ 0: The total amount of wall time = 352.105955
+ 0: The maximum resident set size (KB) = 1146008
Test 093 hrrr_control_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_gf_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_gf_debug_intel
Checking test 094 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 384.144308
- 0: The maximum resident set size (KB) = 1134896
+ 0: The total amount of wall time = 357.784158
+ 0: The maximum resident set size (KB) = 1131788
Test 094 hrrr_gf_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_c3_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_c3_debug_intel
Checking test 095 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 374.292742
- 0: The maximum resident set size (KB) = 1141004
+ 0: The total amount of wall time = 354.417002
+ 0: The maximum resident set size (KB) = 1152760
Test 095 hrrr_c3_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_drag_suite_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_drag_suite_debug_intel
Checking test 096 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 379.345896
- 0: The maximum resident set size (KB) = 1127784
+ 0: The total amount of wall time = 358.600282
+ 0: The maximum resident set size (KB) = 1141192
Test 096 rap_unified_drag_suite_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_diag_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_diag_debug_intel
Checking test 097 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 372.839704
- 0: The maximum resident set size (KB) = 1233016
+ 0: The total amount of wall time = 379.489750
+ 0: The maximum resident set size (KB) = 1226544
Test 097 rap_diag_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_cires_ugwp_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_cires_ugwp_debug_intel
Checking test 098 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 387.737180
- 0: The maximum resident set size (KB) = 1132164
+ 0: The total amount of wall time = 366.378069
+ 0: The maximum resident set size (KB) = 1148512
Test 098 rap_cires_ugwp_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_ugwp_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_ugwp_debug_intel
Checking test 099 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 387.158771
- 0: The maximum resident set size (KB) = 1148900
+ 0: The total amount of wall time = 364.869012
+ 0: The maximum resident set size (KB) = 1138680
Test 099 rap_unified_ugwp_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_lndp_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_lndp_debug_intel
Checking test 100 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 414.412666
- 0: The maximum resident set size (KB) = 1134836
+ 0: The total amount of wall time = 362.196931
+ 0: The maximum resident set size (KB) = 1146640
Test 100 rap_lndp_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_progcld_thompson_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_progcld_thompson_debug_intel
Checking test 101 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 402.580284
- 0: The maximum resident set size (KB) = 1140684
+ 0: The total amount of wall time = 362.841576
+ 0: The maximum resident set size (KB) = 1149568
Test 101 rap_progcld_thompson_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_debug_intel
Checking test 102 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 397.754075
- 0: The maximum resident set size (KB) = 1138404
+ 0: The total amount of wall time = 356.251145
+ 0: The maximum resident set size (KB) = 1148052
Test 102 rap_noah_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_debug_intel
Checking test 103 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 420.985075
- 0: The maximum resident set size (KB) = 1127668
+ 0: The total amount of wall time = 370.731212
+ 0: The maximum resident set size (KB) = 1137804
Test 103 rap_sfcdiff_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 622.675988
- 0: The maximum resident set size (KB) = 1135428
+ 0: The total amount of wall time = 595.297882
+ 0: The maximum resident set size (KB) = 1128252
Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_debug_intel
Checking test 105 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 365.983416
- 0: The maximum resident set size (KB) = 1132500
+ 0: The total amount of wall time = 355.407557
+ 0: The maximum resident set size (KB) = 1122084
Test 105 rrfs_v1beta_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_clm_lake_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_clm_lake_debug_intel
Checking test 106 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 500.533720
- 0: The maximum resident set size (KB) = 1147348
+ 0: The total amount of wall time = 433.994598
+ 0: The maximum resident set size (KB) = 1145636
Test 106 rap_clm_lake_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_flake_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_flake_debug_intel
Checking test 107 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 372.260984
- 0: The maximum resident set size (KB) = 1134312
+ 0: The total amount of wall time = 355.874789
+ 0: The maximum resident set size (KB) = 1142260
Test 107 rap_flake_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_c96_no_nest_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_c96_no_nest_debug_intel
Checking test 108 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4040,26 +4019,26 @@ Checking test 108 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 636.570167
- 0: The maximum resident set size (KB) = 1147328
+ 0: The total amount of wall time = 618.361430
+ 0: The maximum resident set size (KB) = 1147508
Test 108 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_debug_intel
Checking test 109 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 359.733480
- 0: The maximum resident set size (KB) = 431712
+ 0: The total amount of wall time = 362.721922
+ 0: The maximum resident set size (KB) = 431872
Test 109 control_wam_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4070,14 +4049,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 315.699958
- 0: The maximum resident set size (KB) = 1069572
+ 0: The total amount of wall time = 307.133271
+ 0: The maximum resident set size (KB) = 1080296
Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn32_phy32_intel
Checking test 111 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4124,14 +4103,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 492.326583
- 0: The maximum resident set size (KB) = 888276
+ 0: The total amount of wall time = 500.959708
+ 0: The maximum resident set size (KB) = 902444
Test 111 rap_control_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_dyn32_phy32_intel
Checking test 112 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4178,14 +4157,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 258.400150
- 0: The maximum resident set size (KB) = 860660
+ 0: The total amount of wall time = 265.466812
+ 0: The maximum resident set size (KB) = 868560
Test 112 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_dyn32_phy32_intel
Checking test 113 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4232,14 +4211,14 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 465.018652
- 0: The maximum resident set size (KB) = 946184
+ 0: The total amount of wall time = 484.145173
+ 0: The maximum resident set size (KB) = 935308
Test 113 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_dyn32_phy32_intel
Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4286,14 +4265,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.068344
- 0: The maximum resident set size (KB) = 908712
+ 0: The total amount of wall time = 235.668838
+ 0: The maximum resident set size (KB) = 903052
Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_dyn32_phy32_intel
Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4340,14 +4319,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 267.227455
- 0: The maximum resident set size (KB) = 841436
+ 0: The total amount of wall time = 274.473166
+ 0: The maximum resident set size (KB) = 851364
Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_dyn32_phy32_intel
Checking test 116 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4386,28 +4365,28 @@ Checking test 116 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 362.989915
- 0: The maximum resident set size (KB) = 895280
+ 0: The total amount of wall time = 382.073550
+ 0: The maximum resident set size (KB) = 898488
Test 116 rap_restart_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_dyn32_phy32_intel
Checking test 117 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 133.425572
- 0: The maximum resident set size (KB) = 839884
+ 0: The total amount of wall time = 142.832455
+ 0: The maximum resident set size (KB) = 844956
Test 117 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_control_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_control_intel
Checking test 118 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4423,40 +4402,40 @@ Checking test 118 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 157.001414
- 0: The maximum resident set size (KB) = 1091696
+ 0: The total amount of wall time = 165.856415
+ 0: The maximum resident set size (KB) = 1095036
Test 118 conus13km_control_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_2threads_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_2threads_intel
Checking test 119 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 68.047240
- 0: The maximum resident set size (KB) = 1041272
+ 0: The total amount of wall time = 75.806853
+ 0: The maximum resident set size (KB) = 1045708
Test 119 conus13km_2threads_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_restart_mismatch_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_restart_mismatch_intel
Checking test 120 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 84.616591
- 0: The maximum resident set size (KB) = 1011036
+ 0: The total amount of wall time = 92.105403
+ 0: The maximum resident set size (KB) = 1013256
Test 120 conus13km_restart_mismatch_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_intel
Checking test 121 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4503,42 +4482,42 @@ Checking test 121 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 323.723216
- 0: The maximum resident set size (KB) = 895060
+ 0: The total amount of wall time = 321.830459
+ 0: The maximum resident set size (KB) = 890804
Test 121 rap_control_dyn64_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_dyn32_phy32_intel
Checking test 122 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 353.162945
- 0: The maximum resident set size (KB) = 1017040
+ 0: The total amount of wall time = 355.354090
+ 0: The maximum resident set size (KB) = 1009812
Test 122 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_dyn32_phy32_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_dyn32_phy32_intel
Checking test 123 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 347.442231
- 0: The maximum resident set size (KB) = 1006316
+ 0: The total amount of wall time = 350.902322
+ 0: The maximum resident set size (KB) = 1006496
Test 123 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_intel
Checking test 124 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4552,14 +4531,14 @@ Checking test 124 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1092.506712
- 0: The maximum resident set size (KB) = 1128048
+ 0: The total amount of wall time = 1107.364253
+ 0: The maximum resident set size (KB) = 1129452
Test 124 conus13km_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_qr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_qr_intel
Checking test 125 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4573,81 +4552,81 @@ Checking test 125 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1094.715932
- 0: The maximum resident set size (KB) = 844840
+ 0: The total amount of wall time = 1110.480045
+ 0: The maximum resident set size (KB) = 866948
Test 125 conus13km_debug_qr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_2threads_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_2threads_intel
Checking test 126 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 632.574106
- 0: The maximum resident set size (KB) = 1076568
+ 0: The total amount of wall time = 637.560550
+ 0: The maximum resident set size (KB) = 1078496
Test 126 conus13km_debug_2threads_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_radar_tten_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_radar_tten_debug_intel
Checking test 127 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 1092.346453
- 0: The maximum resident set size (KB) = 1188812
+ 0: The total amount of wall time = 1099.356619
+ 0: The maximum resident set size (KB) = 1188200
Test 127 conus13km_radar_tten_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_debug_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_debug_intel
Checking test 128 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 353.299285
- 0: The maximum resident set size (KB) = 1063104
+ 0: The total amount of wall time = 360.325797
+ 0: The maximum resident set size (KB) = 1057176
Test 128 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_intel
Checking test 129 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 415.161700
- 0: The maximum resident set size (KB) = 710044
+ 0: The total amount of wall time = 448.402913
+ 0: The maximum resident set size (KB) = 713116
Test 129 hafs_regional_atm_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 396.476427
- 0: The maximum resident set size (KB) = 1082184
+ 0: The total amount of wall time = 419.088800
+ 0: The maximum resident set size (KB) = 1075140
Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_intel
Checking test 131 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4656,14 +4635,14 @@ Checking test 131 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 543.913780
- 0: The maximum resident set size (KB) = 760212
+ 0: The total amount of wall time = 575.033300
+ 0: The maximum resident set size (KB) = 770572
Test 131 hafs_regional_atm_ocn_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_wav_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_wav_intel
Checking test 132 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4672,14 +4651,14 @@ Checking test 132 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 948.970014
- 0: The maximum resident set size (KB) = 800416
+ 0: The total amount of wall time = 976.562276
+ 0: The maximum resident set size (KB) = 792536
Test 132 hafs_regional_atm_wav_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_wav_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_wav_intel
Checking test 133 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4690,14 +4669,14 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 1068.321048
- 0: The maximum resident set size (KB) = 815872
+ 0: The total amount of wall time = 1078.231692
+ 0: The maximum resident set size (KB) = 811952
Test 133 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_nested_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_nested_intel
Checking test 134 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4707,28 +4686,28 @@ Checking test 134 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
@@ -4744,14 +4723,14 @@ Checking test 134 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 365.957252
- 0: The maximum resident set size (KB) = 772940
+ 0: The total amount of wall time = 358.577272
+ 0: The maximum resident set size (KB) = 767144
Test 134 gnv1_nested_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_intel
Checking test 135 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4759,14 +4738,14 @@ Checking test 135 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 486.948595
- 0: The maximum resident set size (KB) = 762132
+ 0: The total amount of wall time = 517.975084
+ 0: The maximum resident set size (KB) = 764020
Test 135 hafs_regional_docn_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_oisst_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_oisst_intel
Checking test 136 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4774,118 +4753,118 @@ Checking test 136 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 519.498295
- 0: The maximum resident set size (KB) = 749208
+ 0: The total amount of wall time = 510.845201
+ 0: The maximum resident set size (KB) = 752572
Test 136 hafs_regional_docn_oisst_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_intel
Checking test 137 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 202.854371
- 0: The maximum resident set size (KB) = 1036812
+ 0: The total amount of wall time = 205.084611
+ 0: The maximum resident set size (KB) = 1038208
Test 137 datm_cdeps_control_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_restart_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_restart_cfsr_intel
Checking test 138 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 123.553902
- 0: The maximum resident set size (KB) = 1010096
+ 0: The total amount of wall time = 122.927646
+ 0: The maximum resident set size (KB) = 1008848
Test 138 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_gefs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_gefs_intel
Checking test 139 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 196.552702
- 0: The maximum resident set size (KB) = 911324
+ 0: The total amount of wall time = 204.348850
+ 0: The maximum resident set size (KB) = 907984
Test 139 datm_cdeps_control_gefs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_iau_gefs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_iau_gefs_intel
Checking test 140 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 200.814502
- 0: The maximum resident set size (KB) = 912628
+ 0: The total amount of wall time = 206.087845
+ 0: The maximum resident set size (KB) = 912576
Test 140 datm_cdeps_iau_gefs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_stochy_gefs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_stochy_gefs_intel
Checking test 141 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.959901
- 0: The maximum resident set size (KB) = 912120
+ 0: The total amount of wall time = 204.808442
+ 0: The maximum resident set size (KB) = 911044
Test 141 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_ciceC_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_ciceC_cfsr_intel
Checking test 142 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 205.511636
- 0: The maximum resident set size (KB) = 1040232
+ 0: The total amount of wall time = 206.940846
+ 0: The maximum resident set size (KB) = 1042756
Test 142 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_cfsr_intel
Checking test 143 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 205.511114
- 0: The maximum resident set size (KB) = 1042048
+ 0: The total amount of wall time = 208.690824
+ 0: The maximum resident set size (KB) = 1033488
Test 143 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_gefs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_gefs_intel
Checking test 144 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 186.200450
- 0: The maximum resident set size (KB) = 915604
+ 0: The total amount of wall time = 201.587131
+ 0: The maximum resident set size (KB) = 911468
Test 144 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_cfsr_intel
Checking test 145 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4894,14 +4873,14 @@ Checking test 145 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 529.774122
- 0: The maximum resident set size (KB) = 880788
+ 0: The total amount of wall time = 474.570408
+ 0: The maximum resident set size (KB) = 877516
Test 145 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_gefs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_gefs_intel
Checking test 146 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4910,77 +4889,77 @@ Checking test 146 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 469.175957
- 0: The maximum resident set size (KB) = 838632
+ 0: The total amount of wall time = 472.764301
+ 0: The maximum resident set size (KB) = 829076
Test 146 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_multiple_files_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_multiple_files_cfsr_intel
Checking test 147 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 203.911044
- 0: The maximum resident set size (KB) = 1039072
+ 0: The total amount of wall time = 204.967265
+ 0: The maximum resident set size (KB) = 1044896
Test 147 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_3072x1536_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_3072x1536_cfsr_intel
Checking test 148 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 286.455759
- 0: The maximum resident set size (KB) = 2390100
+ 0: The total amount of wall time = 325.277481
+ 0: The maximum resident set size (KB) = 2387176
Test 148 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_gfs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_gfs_intel
Checking test 149 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 290.255899
- 0: The maximum resident set size (KB) = 2348952
+ 0: The total amount of wall time = 295.452555
+ 0: The maximum resident set size (KB) = 2385104
Test 149 datm_cdeps_gfs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_debug_cfsr_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_debug_cfsr_intel
Checking test 150 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 464.668999
- 0: The maximum resident set size (KB) = 980696
+ 0: The total amount of wall time = 473.479611
+ 0: The maximum resident set size (KB) = 989492
Test 150 datm_cdeps_debug_cfsr_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_faster_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_faster_intel
Checking test 151 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.159634
- 0: The maximum resident set size (KB) = 1041940
+ 0: The total amount of wall time = 203.070149
+ 0: The maximum resident set size (KB) = 1040356
Test 151 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_gswp3_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_gswp3_intel
Checking test 152 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -4989,14 +4968,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 79.209631
- 0: The maximum resident set size (KB) = 224600
+ 0: The total amount of wall time = 83.206067
+ 0: The maximum resident set size (KB) = 227632
Test 152 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_intel
Checking test 153 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5005,14 +4984,14 @@ Checking test 153 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 68.544359
- 0: The maximum resident set size (KB) = 248888
+ 0: The total amount of wall time = 67.461536
+ 0: The maximum resident set size (KB) = 249512
Test 153 datm_cdeps_lnd_era5_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_rst_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_rst_intel
Checking test 154 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5021,14 +5000,14 @@ Checking test 154 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 43.573184
- 0: The maximum resident set size (KB) = 246788
+ 0: The total amount of wall time = 35.689501
+ 0: The maximum resident set size (KB) = 246412
Test 154 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_sbs_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_sbs_intel
Checking test 155 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5117,14 +5096,14 @@ Checking test 155 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 614.389627
- 0: The maximum resident set size (KB) = 1575892
+ 0: The total amount of wall time = 673.173633
+ 0: The maximum resident set size (KB) = 1575508
Test 155 control_p8_atmlnd_sbs_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_intel
Checking test 156 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5213,14 +5192,14 @@ Checking test 156 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 621.053022
- 0: The maximum resident set size (KB) = 1576120
+ 0: The total amount of wall time = 678.583389
+ 0: The maximum resident set size (KB) = 1593852
Test 156 control_p8_atmlnd_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_atmlnd_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_atmlnd_intel
Checking test 157 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5241,14 +5220,14 @@ Checking test 157 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 306.682487
- 0: The maximum resident set size (KB) = 852240
+ 0: The total amount of wall time = 311.978616
+ 0: The maximum resident set size (KB) = 860248
Test 157 control_restart_p8_atmlnd_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmwav_control_noaero_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmwav_control_noaero_p8_intel
Checking test 158 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5291,14 +5270,14 @@ Checking test 158 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 130.054074
- 0: The maximum resident set size (KB) = 1589052
+ 0: The total amount of wall time = 132.181556
+ 0: The maximum resident set size (KB) = 1577344
Test 158 atmwav_control_noaero_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_atmwav_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_atmwav_intel
Checking test 159 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5342,18 +5321,65 @@ Checking test 159 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 124.585846
- 0: The maximum resident set size (KB) = 597616
+ 0: The total amount of wall time = 121.718619
+ 0: The maximum resident set size (KB) = 602416
Test 159 control_atmwav_intel PASS
-Test 160 atmaero_control_p8_intel FAIL
-Test 160 atmaero_control_p8_intel FAIL
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_intel
+Checking test 160 atmaero_control_p8_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF24 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF24 .........OK
+ Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+ 0: The total amount of wall time = 312.460434
+ 0: The maximum resident set size (KB) = 1657076
+
+Test 160 atmaero_control_p8_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_intel
Checking test 161 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5397,14 +5423,14 @@ Checking test 161 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 376.854059
- 0: The maximum resident set size (KB) = 1689624
+ 0: The total amount of wall time = 374.691250
+ 0: The maximum resident set size (KB) = 1702356
Test 161 atmaero_control_p8_rad_intel PASS
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_micro_intel
+working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_micro_intel
Checking test 162 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5448,40 +5474,32 @@ Checking test 162 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 405.723526
- 0: The maximum resident set size (KB) = 1714264
+ 0: The total amount of wall time = 400.031312
+ 0: The maximum resident set size (KB) = 1711716
Test 162 atmaero_control_p8_rad_micro_intel PASS
-FAILED TESTS:
-cpld_debug_gfsv17_intel 006 failed in run_test
-atmaero_control_p8_intel 160 failed in run_test
-
-REGRESSION TEST FAILED
-Thu Feb 8 20:24:43 UTC 2024
-Elapsed time: 04h:38m:21s. Have a nice day!
-Thu Feb 8 20:28:27 UTC 2024
+Fri Feb 9 16:26:20 UTC 2024
Start Regression test
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
+Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 1783 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 362 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/cpld_debug_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_73249/cpld_debug_gfsv17_intel
Checking test 001 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -5533,63 +5551,12 @@ Checking test 001 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1795.087507
- 0: The maximum resident set size (KB) = 1648396
+ 0: The total amount of wall time = 1809.368354
+ 0: The maximum resident set size (KB) = 1649888
Test 001 cpld_debug_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/atmaero_control_p8_intel
-Checking test 002 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 304.244533
- 0: The maximum resident set size (KB) = 1670716
-
-Test 002 atmaero_control_p8_intel PASS
-
-
REGRESSION TEST WAS SUCCESSFUL
-Thu Feb 8 21:09:48 UTC 2024
-Elapsed time: 00h:41m:22s. Have a nice day!
+Fri Feb 9 17:38:33 UTC 2024
+Elapsed time: 01h:12m:14s. Have a nice day!
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 783f3a344d..97d126f2f7 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,62 +1,62 @@
-Thu Feb 8 08:58:12 CST 2024
+Thu Feb 8 20:42:14 CST 2024
Start Regression test
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
+Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 199 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 750 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 705 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 687 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 213 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 396 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 77 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 681 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 759 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 221 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 757 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 850 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 772 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 878 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1090 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1060 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 855 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 305 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1004 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 277 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 837 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 699 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 469 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 829 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 253 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 793 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 748 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 795 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 770 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 883 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 929 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 271 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1036 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_mixedmode_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 295.531409
- 0: The maximum resident set size (KB) = 3181680
+ 0: The total amount of wall time = 298.039066
+ 0: The maximum resident set size (KB) = 3180508
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 972.717260
- 0: The maximum resident set size (KB) = 1737832
+ 0: The total amount of wall time = 974.208501
+ 0: The maximum resident set size (KB) = 1707908
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_iau_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1036.889930
- 0: The maximum resident set size (KB) = 2029272
+ 0: The total amount of wall time = 1033.016947
+ 0: The maximum resident set size (KB) = 2025296
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_gfsv17_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 476.266575
- 0: The maximum resident set size (KB) = 1105484
+ 0: The total amount of wall time = 472.712040
+ 0: The maximum resident set size (KB) = 1111192
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_gfsv17_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1095.342974
- 0: The maximum resident set size (KB) = 1654824
+ 0: The total amount of wall time = 1198.694967
+ 0: The maximum resident set size (KB) = 1646924
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_gfsv17_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1372.125849
- 0: The maximum resident set size (KB) = 1688488
+ 0: The total amount of wall time = 1361.811780
+ 0: The maximum resident set size (KB) = 1685880
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 327.095707
- 0: The maximum resident set size (KB) = 3215592
+ 0: The total amount of wall time = 331.470748
+ 0: The maximum resident set size (KB) = 3216240
Test 007 cpld_control_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 325.383970
- 0: The maximum resident set size (KB) = 3209964
+ 0: The total amount of wall time = 329.518986
+ 0: The maximum resident set size (KB) = 3207432
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 187.362371
- 0: The maximum resident set size (KB) = 3250844
+ 0: The total amount of wall time = 189.689573
+ 0: The maximum resident set size (KB) = 3256608
Test 009 cpld_restart_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_qr_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 323.703547
- 0: The maximum resident set size (KB) = 3237888
+ 0: The total amount of wall time = 333.245525
+ 0: The maximum resident set size (KB) = 3236120
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_qr_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 192.101518
- 0: The maximum resident set size (KB) = 3261784
+ 0: The total amount of wall time = 189.662642
+ 0: The maximum resident set size (KB) = 3270020
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_2threads_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 353.190437
- 0: The maximum resident set size (KB) = 3554292
+ 0: The total amount of wall time = 351.962267
+ 0: The maximum resident set size (KB) = 3553924
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_decomp_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 326.639443
- 0: The maximum resident set size (KB) = 3208708
+ 0: The total amount of wall time = 331.356860
+ 0: The maximum resident set size (KB) = 3200692
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 266.925501
- 0: The maximum resident set size (KB) = 3062824
+ 0: The total amount of wall time = 271.209812
+ 0: The maximum resident set size (KB) = 3065708
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_ciceC_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 325.345357
- 0: The maximum resident set size (KB) = 3212136
+ 0: The total amount of wall time = 327.777753
+ 0: The maximum resident set size (KB) = 3212436
Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c192_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 576.825323
- 0: The maximum resident set size (KB) = 3335944
+ 0: The total amount of wall time = 588.636094
+ 0: The maximum resident set size (KB) = 3339972
Test 016 cpld_control_c192_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_c192_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 355.755081
- 0: The maximum resident set size (KB) = 3620040
+ 0: The total amount of wall time = 362.148764
+ 0: The maximum resident set size (KB) = 3625788
Test 017 cpld_restart_c192_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_bmark_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 636.044712
- 0: The maximum resident set size (KB) = 4122260
+ 0: The total amount of wall time = 633.746221
+ 0: The maximum resident set size (KB) = 4129220
Test 018 cpld_bmark_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_bmark_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 382.879580
- 0: The maximum resident set size (KB) = 4370596
+ 0: The total amount of wall time = 379.662269
+ 0: The maximum resident set size (KB) = 4373184
Test 019 cpld_restart_bmark_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_s2sa_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 308.473946
- 0: The maximum resident set size (KB) = 3173064
+ 0: The total amount of wall time = 313.134752
+ 0: The maximum resident set size (KB) = 3178564
Test 020 cpld_s2sa_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 261.157650
- 0: The maximum resident set size (KB) = 1740300
+ 0: The total amount of wall time = 253.613545
+ 0: The maximum resident set size (KB) = 1737436
Test 021 cpld_control_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_nowave_noaero_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 249.449168
- 0: The maximum resident set size (KB) = 1785088
+ 0: The total amount of wall time = 251.065952
+ 0: The maximum resident set size (KB) = 1780032
Test 022 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 496.179319
- 0: The maximum resident set size (KB) = 3249868
+ 0: The total amount of wall time = 506.121689
+ 0: The maximum resident set size (KB) = 3244880
Test 023 cpld_debug_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_noaero_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 344.738981
- 0: The maximum resident set size (KB) = 1748116
+ 0: The total amount of wall time = 337.774736
+ 0: The maximum resident set size (KB) = 1752380
Test 024 cpld_debug_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_agrid_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 249.529783
- 0: The maximum resident set size (KB) = 1772184
+ 0: The total amount of wall time = 248.786187
+ 0: The maximum resident set size (KB) = 1782164
Test 025 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c48_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 471.642374
- 0: The maximum resident set size (KB) = 2828716
+ 0: The total amount of wall time = 473.644494
+ 0: The maximum resident set size (KB) = 2830328
Test 026 cpld_control_c48_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_faster_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 306.704800
- 0: The maximum resident set size (KB) = 3204164
+ 0: The total amount of wall time = 306.542927
+ 0: The maximum resident set size (KB) = 3149508
Test 027 cpld_control_p8_faster_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1066.581337
- 0: The maximum resident set size (KB) = 1774328
+ 0: The total amount of wall time = 968.732853
+ 0: The maximum resident set size (KB) = 1779372
Test 028 cpld_control_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_pdlib_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 473.941834
- 0: The maximum resident set size (KB) = 1178848
+ 0: The total amount of wall time = 470.943603
+ 0: The maximum resident set size (KB) = 1175700
Test 029 cpld_restart_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_pdlib_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1093.224118
- 0: The maximum resident set size (KB) = 1677952
+ 0: The total amount of wall time = 1093.114881
+ 0: The maximum resident set size (KB) = 1683132
Test 030 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_pdlib_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1501.564132
- 0: The maximum resident set size (KB) = 1728284
+ 0: The total amount of wall time = 1481.760940
+ 0: The maximum resident set size (KB) = 1719788
Test 031 cpld_debug_pdlib_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_flake_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 195.007873
- 0: The maximum resident set size (KB) = 700664
+ 0: The total amount of wall time = 197.951444
+ 0: The maximum resident set size (KB) = 702668
Test 032 control_flake_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2080,16 +2080,16 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 132.782472
- 0: The maximum resident set size (KB) = 646916
+ 0: The total amount of wall time = 137.507904
+ 0: The maximum resident set size (KB) = 648040
Test 033 control_CubedSphereGrid_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_parallel_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
+ Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
@@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 139.936098
- 0: The maximum resident set size (KB) = 654516
+ 0: The total amount of wall time = 142.481581
+ 0: The maximum resident set size (KB) = 659324
Test 034 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_latlon_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 136.465317
- 0: The maximum resident set size (KB) = 649980
+ 0: The total amount of wall time = 140.508980
+ 0: The maximum resident set size (KB) = 653252
Test 035 control_latlon_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 137.252370
- 0: The maximum resident set size (KB) = 648024
+ 0: The total amount of wall time = 141.276714
+ 0: The maximum resident set size (KB) = 651556
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 348.276384
-0: The maximum resident set size (KB) = 874608
+0: The total amount of wall time = 349.676307
+0: The maximum resident set size (KB) = 872904
Test 037 control_c48_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48.v2.sfc_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 346.796887
-0: The maximum resident set size (KB) = 871508
+0: The total amount of wall time = 351.353319
+0: The maximum resident set size (KB) = 871584
Test 038 control_c48.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c192_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 531.187913
- 0: The maximum resident set size (KB) = 857336
+ 0: The total amount of wall time = 532.084365
+ 0: The maximum resident set size (KB) = 859228
Test 039 control_c192_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 655.699185
- 0: The maximum resident set size (KB) = 1250816
+ 0: The total amount of wall time = 588.229208
+ 0: The maximum resident set size (KB) = 1248720
Test 040 control_c384_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384gdas_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2287,16 +2287,16 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
@@ -2304,7 +2304,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
@@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 522.155681
- 0: The maximum resident set size (KB) = 1356696
+ 0: The total amount of wall time = 520.652450
+ 0: The maximum resident set size (KB) = 1351476
Test 041 control_c384gdas_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 88.710628
- 0: The maximum resident set size (KB) = 650120
+ 0: The total amount of wall time = 92.381567
+ 0: The maximum resident set size (KB) = 611964
Test 042 control_stochy_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_restart_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 51.185074
- 0: The maximum resident set size (KB) = 499248
+ 0: The total amount of wall time = 49.715170
+ 0: The maximum resident set size (KB) = 498604
Test 043 control_stochy_restart_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 85.764689
- 0: The maximum resident set size (KB) = 652640
+ 0: The total amount of wall time = 84.076985
+ 0: The maximum resident set size (KB) = 653536
Test 044 control_lndp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr4_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.817936
- 0: The maximum resident set size (KB) = 651820
+ 0: The total amount of wall time = 137.463585
+ 0: The maximum resident set size (KB) = 649000
Test 045 control_iovr4_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr5_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.876252
- 0: The maximum resident set size (KB) = 651904
+ 0: The total amount of wall time = 136.284260
+ 0: The maximum resident set size (KB) = 607556
Test 046 control_iovr5_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 167.081399
- 0: The maximum resident set size (KB) = 1627696
+ 0: The total amount of wall time = 169.341566
+ 0: The maximum resident set size (KB) = 1628468
Test 047 control_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.653006
- 0: The maximum resident set size (KB) = 1636356
+ 0: The total amount of wall time = 166.321609
+ 0: The maximum resident set size (KB) = 1622200
Test 048 control_p8.v2.sfc_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_ugwpv1_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 159.822106
- 0: The maximum resident set size (KB) = 1625316
+ 0: The total amount of wall time = 159.965089
+ 0: The maximum resident set size (KB) = 1629200
Test 049 control_p8_ugwpv1_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 88.421193
- 0: The maximum resident set size (KB) = 884856
+ 0: The total amount of wall time = 89.950962
+ 0: The maximum resident set size (KB) = 883044
Test 050 control_restart_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_noqr_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 161.588427
- 0: The maximum resident set size (KB) = 1614208
+ 0: The total amount of wall time = 161.231247
+ 0: The maximum resident set size (KB) = 1619460
Test 051 control_noqr_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_noqr_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 85.687575
- 0: The maximum resident set size (KB) = 928800
+ 0: The total amount of wall time = 87.343937
+ 0: The maximum resident set size (KB) = 927724
Test 052 control_restart_noqr_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_decomp_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 169.069100
- 0: The maximum resident set size (KB) = 1609088
+ 0: The total amount of wall time = 169.811067
+ 0: The maximum resident set size (KB) = 1613156
Test 053 control_decomp_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_2threads_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 173.286482
- 0: The maximum resident set size (KB) = 1717068
+ 0: The total amount of wall time = 172.276249
+ 0: The maximum resident set size (KB) = 1718744
Test 054 control_2threads_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_lndp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 301.982160
- 0: The maximum resident set size (KB) = 1628952
+ 0: The total amount of wall time = 301.114908
+ 0: The maximum resident set size (KB) = 1632856
Test 055 control_p8_lndp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_rrtmgp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 226.219477
- 0: The maximum resident set size (KB) = 1697144
+ 0: The total amount of wall time = 221.499107
+ 0: The maximum resident set size (KB) = 1695336
Test 056 control_p8_rrtmgp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_mynn_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 167.998252
- 0: The maximum resident set size (KB) = 1638332
+ 0: The total amount of wall time = 168.365276
+ 0: The maximum resident set size (KB) = 1640496
Test 057 control_p8_mynn_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/merra2_thompson_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 197.781493
- 0: The maximum resident set size (KB) = 1639152
+ 0: The total amount of wall time = 197.201113
+ 0: The maximum resident set size (KB) = 1587404
Test 058 merra2_thompson_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 298.605196
- 0: The maximum resident set size (KB) = 858860
+ 0: The total amount of wall time = 299.753692
+ 0: The maximum resident set size (KB) = 858388
Test 059 regional_control_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_restart_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 153.699340
- 0: The maximum resident set size (KB) = 1022024
+ 0: The total amount of wall time = 155.165825
+ 0: The maximum resident set size (KB) = 1019736
Test 060 regional_restart_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_decomp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 322.722236
- 0: The maximum resident set size (KB) = 798760
+ 0: The total amount of wall time = 320.184600
+ 0: The maximum resident set size (KB) = 850756
Test 061 regional_decomp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2threads_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 207.882523
- 0: The maximum resident set size (KB) = 848340
+ 0: The total amount of wall time = 210.835261
+ 0: The maximum resident set size (KB) = 842908
Test 062 regional_2threads_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_noquilt_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 293.642892
- 0: The maximum resident set size (KB) = 1363152
+ 0: The total amount of wall time = 296.817520
+ 0: The maximum resident set size (KB) = 1363148
Test 063 regional_noquilt_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_netcdf_parallel_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 292.897949
- 0: The maximum resident set size (KB) = 851496
+ 0: The total amount of wall time = 297.601989
+ 0: The maximum resident set size (KB) = 856792
Test 064 regional_netcdf_parallel_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2dwrtdecomp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 294.655531
- 0: The maximum resident set size (KB) = 856984
+ 0: The total amount of wall time = 300.924365
+ 0: The maximum resident set size (KB) = 855880
Test 065 regional_2dwrtdecomp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_wofs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 381.836940
- 0: The maximum resident set size (KB) = 1914396
+ 0: The total amount of wall time = 389.207388
+ 0: The maximum resident set size (KB) = 1918760
Test 066 regional_wofs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 449.534861
- 0: The maximum resident set size (KB) = 1109352
+ 0: The total amount of wall time = 453.938262
+ 0: The maximum resident set size (KB) = 1111596
Test 067 rap_control_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 267.970465
- 0: The maximum resident set size (KB) = 1299520
+ 0: The total amount of wall time = 268.822382
+ 0: The maximum resident set size (KB) = 1297596
Test 068 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_decomp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 471.356981
- 0: The maximum resident set size (KB) = 1028172
+ 0: The total amount of wall time = 472.155583
+ 0: The maximum resident set size (KB) = 1030756
Test 069 rap_decomp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 462.530912
- 0: The maximum resident set size (KB) = 1177664
+ 0: The total amount of wall time = 459.476521
+ 0: The maximum resident set size (KB) = 1126444
Test 070 rap_2threads_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 230.611852
- 0: The maximum resident set size (KB) = 1098176
+ 0: The total amount of wall time = 233.910373
+ 0: The maximum resident set size (KB) = 1100572
Test 071 rap_restart_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 449.336408
- 0: The maximum resident set size (KB) = 1105148
+ 0: The total amount of wall time = 454.695009
+ 0: The maximum resident set size (KB) = 1097788
Test 072 rap_sfcdiff_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_decomp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 475.248602
- 0: The maximum resident set size (KB) = 1032528
+ 0: The total amount of wall time = 472.455282
+ 0: The maximum resident set size (KB) = 1032772
Test 073 rap_sfcdiff_decomp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_restart_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 337.270427
- 0: The maximum resident set size (KB) = 1124096
+ 0: The total amount of wall time = 337.819157
+ 0: The maximum resident set size (KB) = 1131732
Test 074 rap_sfcdiff_restart_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.723452
- 0: The maximum resident set size (KB) = 1033936
+ 0: The total amount of wall time = 228.512688
+ 0: The maximum resident set size (KB) = 1042128
Test 075 hrrr_control_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.045399
- 0: The maximum resident set size (KB) = 1017764
+ 0: The total amount of wall time = 236.069047
+ 0: The maximum resident set size (KB) = 1029972
Test 076 hrrr_control_decomp_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 192.711364
- 0: The maximum resident set size (KB) = 1113024
+ 0: The total amount of wall time = 195.390324
+ 0: The maximum resident set size (KB) = 1111352
Test 077 hrrr_control_2threads_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 120.524523
- 0: The maximum resident set size (KB) = 1002508
+ 0: The total amount of wall time = 120.323650
+ 0: The maximum resident set size (KB) = 994316
Test 078 hrrr_control_restart_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 442.992770
- 0: The maximum resident set size (KB) = 1094428
+ 0: The total amount of wall time = 441.055273
+ 0: The maximum resident set size (KB) = 1099736
Test 079 rrfs_v1beta_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 544.420440
- 0: The maximum resident set size (KB) = 1991540
+ 0: The total amount of wall time = 537.188206
+ 0: The maximum resident set size (KB) = 1998200
Test 080 rrfs_v1nssl_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 522.941028
- 0: The maximum resident set size (KB) = 2068592
+ 0: The total amount of wall time = 523.547397
+ 0: The maximum resident set size (KB) = 2076828
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 338.495057
- 0: The maximum resident set size (KB) = 745636
+ 0: The total amount of wall time = 340.210791
+ 0: The maximum resident set size (KB) = 748176
Test 082 control_csawmg_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 339.017842
- 0: The maximum resident set size (KB) = 751852
+ 0: The total amount of wall time = 337.619819
+ 0: The maximum resident set size (KB) = 752644
Test 083 control_csawmgt_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.385374
- 0: The maximum resident set size (KB) = 739420
+ 0: The total amount of wall time = 186.382452
+ 0: The maximum resident set size (KB) = 745756
Test 084 control_ras_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 112.874490
- 0: The maximum resident set size (KB) = 657604
+ 0: The total amount of wall time = 113.957087
+ 0: The maximum resident set size (KB) = 658120
Test 085 control_wam_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_faster_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 145.650303
- 0: The maximum resident set size (KB) = 1624672
+ 0: The total amount of wall time = 147.301351
+ 0: The maximum resident set size (KB) = 1627188
Test 086 control_p8_faster_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_faster_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 268.656966
- 0: The maximum resident set size (KB) = 856064
+ 0: The total amount of wall time = 264.713383
+ 0: The maximum resident set size (KB) = 852856
Test 087 regional_control_faster_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 154.508677
- 0: The maximum resident set size (KB) = 819144
+ 0: The total amount of wall time = 150.846461
+ 0: The maximum resident set size (KB) = 811668
Test 088 control_CubedSphereGrid_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.615534
- 0: The maximum resident set size (KB) = 810940
+ 0: The total amount of wall time = 152.169795
+ 0: The maximum resident set size (KB) = 808568
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 175.386628
- 0: The maximum resident set size (KB) = 816720
+ 0: The total amount of wall time = 173.626201
+ 0: The maximum resident set size (KB) = 819012
Test 090 control_stochy_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 155.938039
- 0: The maximum resident set size (KB) = 814112
+ 0: The total amount of wall time = 157.965746
+ 0: The maximum resident set size (KB) = 814880
Test 091 control_lndp_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 239.760893
- 0: The maximum resident set size (KB) = 863120
+ 0: The total amount of wall time = 239.999053
+ 0: The maximum resident set size (KB) = 861204
Test 092 control_csawmg_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 234.518689
- 0: The maximum resident set size (KB) = 868340
+ 0: The total amount of wall time = 235.143428
+ 0: The maximum resident set size (KB) = 860500
Test 093 control_csawmgt_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 153.633282
- 0: The maximum resident set size (KB) = 827540
+ 0: The total amount of wall time = 157.371620
+ 0: The maximum resident set size (KB) = 828748
Test 094 control_ras_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_diag_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 158.403334
- 0: The maximum resident set size (KB) = 874732
+ 0: The total amount of wall time = 155.278820
+ 0: The maximum resident set size (KB) = 872912
Test 095 control_diag_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_debug_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 166.578778
- 0: The maximum resident set size (KB) = 1641032
+ 0: The total amount of wall time = 167.552670
+ 0: The maximum resident set size (KB) = 1640284
Test 096 control_debug_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 1026.384500
- 0: The maximum resident set size (KB) = 847044
+ 0: The total amount of wall time = 1036.579759
+ 0: The maximum resident set size (KB) = 841848
Test 097 regional_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.006884
- 0: The maximum resident set size (KB) = 1197732
+ 0: The total amount of wall time = 289.558769
+ 0: The maximum resident set size (KB) = 1153520
Test 098 rap_control_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.176667
- 0: The maximum resident set size (KB) = 1193536
+ 0: The total amount of wall time = 278.604177
+ 0: The maximum resident set size (KB) = 1199992
Test 099 hrrr_control_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_gf_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.641493
- 0: The maximum resident set size (KB) = 1198772
+ 0: The total amount of wall time = 278.610181
+ 0: The maximum resident set size (KB) = 1199800
Test 100 hrrr_gf_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_c3_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.407553
- 0: The maximum resident set size (KB) = 1196412
+ 0: The total amount of wall time = 295.630034
+ 0: The maximum resident set size (KB) = 1198752
Test 101 hrrr_c3_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_drag_suite_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.961436
- 0: The maximum resident set size (KB) = 1203160
+ 0: The total amount of wall time = 292.199762
+ 0: The maximum resident set size (KB) = 1201536
Test 102 rap_unified_drag_suite_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_diag_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 299.696419
- 0: The maximum resident set size (KB) = 1292580
+ 0: The total amount of wall time = 305.768250
+ 0: The maximum resident set size (KB) = 1289956
Test 103 rap_diag_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 286.910984
- 0: The maximum resident set size (KB) = 1194892
+ 0: The total amount of wall time = 288.747602
+ 0: The maximum resident set size (KB) = 1201172
Test 104 rap_cires_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_ugwp_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 294.791870
- 0: The maximum resident set size (KB) = 1204176
+ 0: The total amount of wall time = 286.835579
+ 0: The maximum resident set size (KB) = 1208392
Test 105 rap_unified_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_lndp_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 286.041402
- 0: The maximum resident set size (KB) = 1200500
+ 0: The total amount of wall time = 283.920296
+ 0: The maximum resident set size (KB) = 1203996
Test 106 rap_lndp_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_progcld_thompson_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 285.759903
- 0: The maximum resident set size (KB) = 1201144
+ 0: The total amount of wall time = 284.579174
+ 0: The maximum resident set size (KB) = 1201056
Test 107 rap_progcld_thompson_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.171801
- 0: The maximum resident set size (KB) = 1201832
+ 0: The total amount of wall time = 280.949188
+ 0: The maximum resident set size (KB) = 1200044
Test 108 rap_noah_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.712951
- 0: The maximum resident set size (KB) = 1206212
+ 0: The total amount of wall time = 286.488081
+ 0: The maximum resident set size (KB) = 1201356
Test 109 rap_sfcdiff_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 467.521313
- 0: The maximum resident set size (KB) = 1201768
+ 0: The total amount of wall time = 466.038447
+ 0: The maximum resident set size (KB) = 1196428
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.860984
- 0: The maximum resident set size (KB) = 1197996
+ 0: The total amount of wall time = 292.294814
+ 0: The maximum resident set size (KB) = 1206368
Test 111 rrfs_v1beta_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_clm_lake_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 365.356539
- 0: The maximum resident set size (KB) = 1206200
+ 0: The total amount of wall time = 346.228323
+ 0: The maximum resident set size (KB) = 1196484
Test 112 rap_clm_lake_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_flake_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.637059
- 0: The maximum resident set size (KB) = 1209716
+ 0: The total amount of wall time = 283.990390
+ 0: The maximum resident set size (KB) = 1202476
Test 113 rap_flake_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_c96_no_nest_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 507.435300
- 0: The maximum resident set size (KB) = 1209368
+ 0: The total amount of wall time = 489.100602
+ 0: The maximum resident set size (KB) = 1202292
Test 114 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 286.998778
- 0: The maximum resident set size (KB) = 508124
+ 0: The total amount of wall time = 284.310012
+ 0: The maximum resident set size (KB) = 507392
Test 115 control_wam_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 249.786685
- 0: The maximum resident set size (KB) = 1160748
+ 0: The total amount of wall time = 255.848043
+ 0: The maximum resident set size (KB) = 1161604
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 370.396123
- 0: The maximum resident set size (KB) = 1047460
+ 0: The total amount of wall time = 374.940363
+ 0: The maximum resident set size (KB) = 1047788
Test 117 rap_control_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 191.177814
- 0: The maximum resident set size (KB) = 980132
+ 0: The total amount of wall time = 192.975014
+ 0: The maximum resident set size (KB) = 981060
Test 118 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 388.721559
- 0: The maximum resident set size (KB) = 1088908
+ 0: The total amount of wall time = 393.181370
+ 0: The maximum resident set size (KB) = 1094564
Test 119 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.346744
- 0: The maximum resident set size (KB) = 965168
+ 0: The total amount of wall time = 168.479975
+ 0: The maximum resident set size (KB) = 973336
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 202.976446
- 0: The maximum resident set size (KB) = 922000
+ 0: The total amount of wall time = 203.518108
+ 0: The maximum resident set size (KB) = 865300
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 277.441741
- 0: The maximum resident set size (KB) = 1033780
+ 0: The total amount of wall time = 278.216252
+ 0: The maximum resident set size (KB) = 1033560
Test 122 rap_restart_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 102.694901
- 0: The maximum resident set size (KB) = 926132
+ 0: The total amount of wall time = 100.979892
+ 0: The maximum resident set size (KB) = 926932
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_control_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 111.669185
- 0: The maximum resident set size (KB) = 1206672
+ 0: The total amount of wall time = 114.700529
+ 0: The maximum resident set size (KB) = 1201792
Test 124 conus13km_control_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_2threads_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 49.794920
- 0: The maximum resident set size (KB) = 1123420
+ 0: The total amount of wall time = 51.162391
+ 0: The maximum resident set size (KB) = 1121880
Test 125 conus13km_2threads_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_restart_mismatch_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 66.835969
- 0: The maximum resident set size (KB) = 1111040
+ 0: The total amount of wall time = 66.102676
+ 0: The maximum resident set size (KB) = 1111472
Test 126 conus13km_restart_mismatch_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 242.892242
- 0: The maximum resident set size (KB) = 995236
+ 0: The total amount of wall time = 241.297127
+ 0: The maximum resident set size (KB) = 989120
Test 127 rap_control_dyn64_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 287.362087
- 0: The maximum resident set size (KB) = 1084220
+ 0: The total amount of wall time = 284.346323
+ 0: The maximum resident set size (KB) = 1082752
Test 128 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.582939
- 0: The maximum resident set size (KB) = 1078580
+ 0: The total amount of wall time = 276.529476
+ 0: The maximum resident set size (KB) = 1079384
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 851.922184
- 0: The maximum resident set size (KB) = 1232524
+ 0: The total amount of wall time = 875.303385
+ 0: The maximum resident set size (KB) = 1234548
Test 130 conus13km_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_qr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 860.171664
- 0: The maximum resident set size (KB) = 931792
+ 0: The total amount of wall time = 868.324797
+ 0: The maximum resident set size (KB) = 926388
Test 131 conus13km_debug_qr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_2threads_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 491.298743
- 0: The maximum resident set size (KB) = 1156532
+ 0: The total amount of wall time = 492.495900
+ 0: The maximum resident set size (KB) = 1148948
Test 132 conus13km_debug_2threads_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_radar_tten_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 858.291234
- 0: The maximum resident set size (KB) = 1296916
+ 0: The total amount of wall time = 832.899060
+ 0: The maximum resident set size (KB) = 1296112
Test 133 conus13km_radar_tten_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 296.930398
- 0: The maximum resident set size (KB) = 1118848
+ 0: The total amount of wall time = 289.662530
+ 0: The maximum resident set size (KB) = 1121028
Test 134 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 315.061596
- 0: The maximum resident set size (KB) = 743576
+ 0: The total amount of wall time = 314.283442
+ 0: The maximum resident set size (KB) = 742852
Test 135 hafs_regional_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 339.937228
- 0: The maximum resident set size (KB) = 1118696
+ 0: The total amount of wall time = 339.148588
+ 0: The maximum resident set size (KB) = 1113460
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 402.512774
- 0: The maximum resident set size (KB) = 831084
+ 0: The total amount of wall time = 401.732275
+ 0: The maximum resident set size (KB) = 835864
Test 137 hafs_regional_atm_ocn_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_wav_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 750.312664
- 0: The maximum resident set size (KB) = 867120
+ 0: The total amount of wall time = 754.920080
+ 0: The maximum resident set size (KB) = 866088
Test 138 hafs_regional_atm_wav_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 864.678190
- 0: The maximum resident set size (KB) = 880400
+ 0: The total amount of wall time = 853.792262
+ 0: The maximum resident set size (KB) = 880624
Test 139 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_1nest_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 364.555775
- 0: The maximum resident set size (KB) = 501144
+ 0: The total amount of wall time = 354.089585
+ 0: The maximum resident set size (KB) = 499096
Test 140 hafs_regional_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 433.599265
- 0: The maximum resident set size (KB) = 522460
+ 0: The total amount of wall time = 431.798671
+ 0: The maximum resident set size (KB) = 469484
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_1nest_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5082,12 +5082,12 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5096,30 +5096,30 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 176.940254
- 0: The maximum resident set size (KB) = 375628
+ 0: The total amount of wall time = 177.637872
+ 0: The maximum resident set size (KB) = 376032
Test 142 hafs_global_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_multiple_4nests_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5156,18 +5156,18 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
@@ -5177,8 +5177,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
@@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 455.372886
- 0: The maximum resident set size (KB) = 481676
+ 0: The total amount of wall time = 460.683556
+ 0: The maximum resident set size (KB) = 473856
Test 143 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 232.449456
- 0: The maximum resident set size (KB) = 526520
+ 0: The total amount of wall time = 235.175327
+ 0: The maximum resident set size (KB) = 532640
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 224.349682
- 0: The maximum resident set size (KB) = 530400
+ 0: The total amount of wall time = 223.996179
+ 0: The maximum resident set size (KB) = 532276
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5262,96 +5262,96 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 302.352931
- 0: The maximum resident set size (KB) = 592444
+ 0: The total amount of wall time = 304.287952
+ 0: The maximum resident set size (KB) = 589116
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 72.272371
- 0: The maximum resident set size (KB) = 405728
+ 0: The total amount of wall time = 76.659948
+ 0: The maximum resident set size (KB) = 405384
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_nested_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
- Comparing atmf006.nc ............ALT CHECK......NOT OK
- Comparing sfcf006.nc ............ALT CHECK......NOT OK
- Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK
- Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK
+ Comparing atmf006.nc .........OK
+ Comparing sfcf006.nc .........OK
+ Comparing atm.nest02.f006.nc .........OK
+ Comparing sfc.nest02.f006.nc .........OK
Comparing RESTART/20200825.180000.coupler.res .........OK
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK
-
- 0: The total amount of wall time = 261.145551
- 0: The maximum resident set size (KB) = 804960
-
-Test 148 gnv1_nested_intel FAIL Tries: 2
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
+ Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
+
+ 0: The total amount of wall time = 256.205309
+ 0: The maximum resident set size (KB) = 805832
+
+Test 148 gnv1_nested_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 770.779140
- 0: The maximum resident set size (KB) = 569712
+ 0: The total amount of wall time = 771.111837
+ 0: The maximum resident set size (KB) = 572380
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 561.011573
- 0: The maximum resident set size (KB) = 676156
+ 0: The total amount of wall time = 554.352393
+ 0: The maximum resident set size (KB) = 673184
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 562.600796
- 0: The maximum resident set size (KB) = 693160
+ 0: The total amount of wall time = 567.324064
+ 0: The maximum resident set size (KB) = 747672
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 397.005775
- 0: The maximum resident set size (KB) = 735004
+ 0: The total amount of wall time = 399.997019
+ 0: The maximum resident set size (KB) = 728868
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 359.592440
- 0: The maximum resident set size (KB) = 829700
+ 0: The total amount of wall time = 365.553306
+ 0: The maximum resident set size (KB) = 826820
Test 153 hafs_regional_docn_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_oisst_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 364.605045
- 0: The maximum resident set size (KB) = 816460
+ 0: The total amount of wall time = 367.249025
+ 0: The maximum resident set size (KB) = 816728
Test 154 hafs_regional_docn_oisst_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_datm_cdeps_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 949.407623
- 0: The maximum resident set size (KB) = 1174192
+ 0: The total amount of wall time = 943.886495
+ 0: The maximum resident set size (KB) = 1208780
Test 155 hafs_regional_datm_cdeps_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.937060
- 0: The maximum resident set size (KB) = 1143984
+ 0: The total amount of wall time = 153.008567
+ 0: The maximum resident set size (KB) = 1109144
Test 156 datm_cdeps_control_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_restart_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 87.960218
- 0: The maximum resident set size (KB) = 1084064
+ 0: The total amount of wall time = 88.554449
+ 0: The maximum resident set size (KB) = 1082632
Test 157 datm_cdeps_restart_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_gefs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.410578
- 0: The maximum resident set size (KB) = 1017344
+ 0: The total amount of wall time = 141.543241
+ 0: The maximum resident set size (KB) = 1016124
Test 158 datm_cdeps_control_gefs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_iau_gefs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.367995
- 0: The maximum resident set size (KB) = 1015404
+ 0: The total amount of wall time = 147.871812
+ 0: The maximum resident set size (KB) = 1011232
Test 159 datm_cdeps_iau_gefs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_stochy_gefs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.413319
- 0: The maximum resident set size (KB) = 1017156
+ 0: The total amount of wall time = 145.578206
+ 0: The maximum resident set size (KB) = 1016564
Test 160 datm_cdeps_stochy_gefs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_ciceC_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.465229
- 0: The maximum resident set size (KB) = 1133672
+ 0: The total amount of wall time = 148.171922
+ 0: The maximum resident set size (KB) = 1127752
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 149.324559
- 0: The maximum resident set size (KB) = 1139856
+ 0: The total amount of wall time = 148.382170
+ 0: The maximum resident set size (KB) = 1133640
Test 162 datm_cdeps_bulk_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_gefs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 143.527166
- 0: The maximum resident set size (KB) = 1014508
+ 0: The total amount of wall time = 142.306499
+ 0: The maximum resident set size (KB) = 1010588
Test 163 datm_cdeps_bulk_gefs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 336.875988
- 0: The maximum resident set size (KB) = 1055732
+ 0: The total amount of wall time = 340.697052
+ 0: The maximum resident set size (KB) = 1055112
Test 164 datm_cdeps_mx025_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_gefs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 336.898028
- 0: The maximum resident set size (KB) = 1032636
+ 0: The total amount of wall time = 339.187984
+ 0: The maximum resident set size (KB) = 1036108
Test 165 datm_cdeps_mx025_gefs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_multiple_files_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.663450
- 0: The maximum resident set size (KB) = 1136220
+ 0: The total amount of wall time = 151.430726
+ 0: The maximum resident set size (KB) = 1117572
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 200.998586
- 0: The maximum resident set size (KB) = 2449396
+ 0: The total amount of wall time = 201.192992
+ 0: The maximum resident set size (KB) = 2447380
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_gfs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 206.926367
- 0: The maximum resident set size (KB) = 2438476
+ 0: The total amount of wall time = 206.172268
+ 0: The maximum resident set size (KB) = 2485264
Test 168 datm_cdeps_gfs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_debug_cfsr_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 353.393557
- 0: The maximum resident set size (KB) = 1060016
+ 0: The total amount of wall time = 366.503827
+ 0: The maximum resident set size (KB) = 1060856
Test 169 datm_cdeps_debug_cfsr_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_faster_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 146.362175
- 0: The maximum resident set size (KB) = 1139996
+ 0: The total amount of wall time = 146.160580
+ 0: The maximum resident set size (KB) = 1136836
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_gswp3_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 37.706783
- 0: The maximum resident set size (KB) = 257584
+ 0: The total amount of wall time = 37.960240
+ 0: The maximum resident set size (KB) = 231004
Test 171 datm_cdeps_lnd_gswp3_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 37.621511
- 0: The maximum resident set size (KB) = 322924
+ 0: The total amount of wall time = 39.319878
+ 0: The maximum resident set size (KB) = 325604
Test 172 datm_cdeps_lnd_era5_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_rst_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 21.266173
- 0: The maximum resident set size (KB) = 323604
+ 0: The total amount of wall time = 22.124823
+ 0: The maximum resident set size (KB) = 319916
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_sbs_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 242.592537
- 0: The maximum resident set size (KB) = 1601000
+ 0: The total amount of wall time = 242.730129
+ 0: The maximum resident set size (KB) = 1610668
Test 174 control_p8_atmlnd_sbs_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 243.732255
- 0: The maximum resident set size (KB) = 1609892
+ 0: The total amount of wall time = 241.495057
+ 0: The maximum resident set size (KB) = 1611060
Test 175 control_p8_atmlnd_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_atmlnd_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 124.208687
- 0: The maximum resident set size (KB) = 899620
+ 0: The total amount of wall time = 125.538764
+ 0: The maximum resident set size (KB) = 900192
Test 176 control_restart_p8_atmlnd_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmwav_control_noaero_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 93.985240
- 0: The maximum resident set size (KB) = 1662804
+ 0: The total amount of wall time = 93.465656
+ 0: The maximum resident set size (KB) = 1665080
Test 177 atmwav_control_noaero_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_atmwav_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 90.326766
- 0: The maximum resident set size (KB) = 676552
+ 0: The total amount of wall time = 88.695176
+ 0: The maximum resident set size (KB) = 671484
Test 178 control_atmwav_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 226.970479
- 0: The maximum resident set size (KB) = 3022192
+ 0: The total amount of wall time = 224.067385
+ 0: The maximum resident set size (KB) = 3023484
Test 179 atmaero_control_p8_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 274.737253
- 0: The maximum resident set size (KB) = 3093372
+ 0: The total amount of wall time = 274.634783
+ 0: The maximum resident set size (KB) = 3086836
Test 180 atmaero_control_p8_rad_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_micro_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 293.098306
- 0: The maximum resident set size (KB) = 3110924
+ 0: The total amount of wall time = 293.587906
+ 0: The maximum resident set size (KB) = 3105680
Test 181 atmaero_control_p8_rad_micro_intel PASS
baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_atmaq_debug_intel
+working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6182,91 +6182,12 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1231.536326
- 0: The maximum resident set size (KB) = 4573004
+ 0: The total amount of wall time = 1234.349031
+ 0: The maximum resident set size (KB) = 4578348
Test 182 regional_atmaq_debug_intel PASS
-FAILED TESTS:
-148 gnv1_nested_intel failed in check_result
-gnv1_nested_intel 148 failed in run_test
-
-REGRESSION TEST FAILED
-Thu Feb 8 10:23:18 CST 2024
-Elapsed time: 01h:25m:08s. Have a nice day!
-Thu Feb 8 10:28:34 CST 2024
-Start Regression test
-
-Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile hafsw_intel elapsed time 725 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_386460/gnv1_nested_intel
-Checking test 001 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 263.087549
- 0: The maximum resident set size (KB) = 809212
-
-Test 001 gnv1_nested_intel PASS Tries: 2
-
REGRESSION TEST WAS SUCCESSFUL
-Thu Feb 8 10:57:22 CST 2024
-Elapsed time: 00h:28m:49s. Have a nice day!
+Thu Feb 8 22:09:31 CST 2024
+Elapsed time: 01h:27m:19s. Have a nice day!
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index f15d9e134a..8e62724435 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,54 +1,54 @@
-Thu Feb 8 12:11:45 UTC 2024
+Fri Feb 9 18:49:33 UTC 2024
Start Regression test
-Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184
+Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update)
+ c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/HEAD-2-gc082c3b)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (remotes/origin/sppint-2-ga556180)
-Compile atmaero_intel elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 787 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 1299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 871 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 665 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 930 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1069 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 727 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 1059 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 747 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 866 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 680 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 670 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 2087 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 957 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1923 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 1243 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 320 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile atmaero_intel elapsed time 1094 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 1135 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 1002 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 1718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 1561 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 989 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 485 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 1060 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 1237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 937 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 1258 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 1191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 1401 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 686 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1712 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 662 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 322.772414
-The maximum resident set size (KB) = 2972708
+The total amount of wall time = 322.520334
+The maximum resident set size (KB) = 2973440
Test 001 cpld_control_p8_mixedmode_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 910.731032
-The maximum resident set size (KB) = 1587172
+The total amount of wall time = 914.666202
+The maximum resident set size (KB) = 1592256
Test 002 cpld_control_gfsv17_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 983.544800
-The maximum resident set size (KB) = 1706440
+The total amount of wall time = 991.256489
+The maximum resident set size (KB) = 1708572
Test 003 cpld_control_gfsv17_iau_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 456.242341
-The maximum resident set size (KB) = 847432
+The total amount of wall time = 464.757647
+The maximum resident set size (KB) = 844528
Test 004 cpld_restart_gfsv17_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1065.338692
-The maximum resident set size (KB) = 1566980
+The total amount of wall time = 1059.436174
+The maximum resident set size (KB) = 1573448
Test 005 cpld_mpi_gfsv17_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1404.169036
-The maximum resident set size (KB) = 1598984
+The total amount of wall time = 1515.127358
+The maximum resident set size (KB) = 1600216
Test 006 cpld_debug_gfsv17_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 366.702921
-The maximum resident set size (KB) = 3001884
+The total amount of wall time = 366.904993
+The maximum resident set size (KB) = 3000620
Test 007 cpld_control_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.742969
-The maximum resident set size (KB) = 3002400
+The total amount of wall time = 364.267854
+The maximum resident set size (KB) = 3002416
Test 008 cpld_control_p8.v2.sfc_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 218.301189
-The maximum resident set size (KB) = 3063012
+The total amount of wall time = 217.605702
+The maximum resident set size (KB) = 3062020
Test 009 cpld_restart_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_qr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 366.866719
-The maximum resident set size (KB) = 3028492
+The total amount of wall time = 370.857200
+The maximum resident set size (KB) = 3028020
Test 010 cpld_control_qr_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_qr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 220.874218
-The maximum resident set size (KB) = 3080068
+The total amount of wall time = 221.730298
+The maximum resident set size (KB) = 3081584
Test 011 cpld_restart_qr_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_2threads_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 325.012400
-The maximum resident set size (KB) = 3316164
+The total amount of wall time = 327.901205
+The maximum resident set size (KB) = 3316928
Test 012 cpld_2threads_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_decomp_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 357.907522
-The maximum resident set size (KB) = 2997104
+The total amount of wall time = 359.508303
+The maximum resident set size (KB) = 3003756
Test 013 cpld_decomp_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 303.652377
-The maximum resident set size (KB) = 2923216
+The total amount of wall time = 302.502625
+The maximum resident set size (KB) = 2932636
Test 014 cpld_mpi_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.033549
-The maximum resident set size (KB) = 3004436
+The total amount of wall time = 363.242732
+The maximum resident set size (KB) = 3004700
Test 015 cpld_control_ciceC_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_bmark_p8_intel
Checking test 016 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 756.259365
-The maximum resident set size (KB) = 3952964
+The total amount of wall time = 754.501015
+The maximum resident set size (KB) = 3951440
Test 016 cpld_bmark_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_bmark_p8_intel
Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 541.490510
-The maximum resident set size (KB) = 4256924
+The total amount of wall time = 532.803589
+The maximum resident set size (KB) = 4250580
Test 017 cpld_restart_bmark_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_s2sa_p8_intel
Checking test 018 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 343.894288
-The maximum resident set size (KB) = 2967508
+The total amount of wall time = 343.549757
+The maximum resident set size (KB) = 2966836
Test 018 cpld_s2sa_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_intel
Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 277.108455
-The maximum resident set size (KB) = 1584664
+The total amount of wall time = 270.560051
+The maximum resident set size (KB) = 1590600
Test 019 cpld_control_noaero_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_nowave_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_nowave_noaero_p8_intel
Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 282.769568
-The maximum resident set size (KB) = 1636840
+The total amount of wall time = 276.938146
+The maximum resident set size (KB) = 1637508
Test 020 cpld_control_nowave_noaero_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_agrid_intel
Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 274.684919
-The maximum resident set size (KB) = 1634592
+The total amount of wall time = 276.697595
+The maximum resident set size (KB) = 1631212
Test 021 cpld_control_noaero_p8_agrid_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_c48_intel
Checking test 022 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 408.146202
-The maximum resident set size (KB) = 2650456
+The total amount of wall time = 406.835402
+The maximum resident set size (KB) = 2652116
Test 022 cpld_control_c48_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_faster_intel
Checking test 023 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 358.005204
-The maximum resident set size (KB) = 3003900
+The total amount of wall time = 363.128198
+The maximum resident set size (KB) = 3001136
Test 023 cpld_control_p8_faster_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 929.239085
-The maximum resident set size (KB) = 1597568
+The total amount of wall time = 928.152759
+The maximum resident set size (KB) = 1596972
Test 024 cpld_control_pdlib_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 469.141027
-The maximum resident set size (KB) = 898064
+The total amount of wall time = 471.260902
+The maximum resident set size (KB) = 899872
Test 025 cpld_restart_pdlib_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1077.611155
-The maximum resident set size (KB) = 1577576
+The total amount of wall time = 1088.789497
+The maximum resident set size (KB) = 1582900
Test 026 cpld_mpi_pdlib_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1489.582749
-The maximum resident set size (KB) = 1619680
+The total amount of wall time = 1490.451653
+The maximum resident set size (KB) = 1612276
Test 027 cpld_debug_pdlib_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 215.004933
-The maximum resident set size (KB) = 571512
+The total amount of wall time = 216.225908
+The maximum resident set size (KB) = 571624
Test 028 control_flake_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 133.747232
-The maximum resident set size (KB) = 521376
+The total amount of wall time = 132.436920
+The maximum resident set size (KB) = 521400
Test 029 control_CubedSphereGrid_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 139.499754
-The maximum resident set size (KB) = 527656
+The total amount of wall time = 139.390134
+The maximum resident set size (KB) = 529644
Test 030 control_CubedSphereGrid_parallel_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.980258
-The maximum resident set size (KB) = 523128
+The total amount of wall time = 134.200576
+The maximum resident set size (KB) = 524080
Test 031 control_latlon_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 137.075317
-The maximum resident set size (KB) = 522056
+The total amount of wall time = 135.766651
+The maximum resident set size (KB) = 527260
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 329.632449
-The maximum resident set size (KB) = 715436
+The total amount of wall time = 327.252663
+The maximum resident set size (KB) = 714792
Test 033 control_c48_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 329.697470
-The maximum resident set size (KB) = 714940
+The total amount of wall time = 328.447199
+The maximum resident set size (KB) = 714848
Test 034 control_c48.v2.sfc_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 531.463784
-The maximum resident set size (KB) = 637944
+The total amount of wall time = 531.480779
+The maximum resident set size (KB) = 641900
Test 035 control_c192_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 585.159398
-The maximum resident set size (KB) = 952192
+The total amount of wall time = 593.703739
+The maximum resident set size (KB) = 951744
Test 036 control_c384_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 516.438040
-The maximum resident set size (KB) = 1094076
+The total amount of wall time = 540.443723
+The maximum resident set size (KB) = 1089544
Test 037 control_c384gdas_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 88.311892
-The maximum resident set size (KB) = 531904
+The total amount of wall time = 89.547314
+The maximum resident set size (KB) = 530868
Test 038 control_stochy_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 50.558205
-The maximum resident set size (KB) = 337064
+The total amount of wall time = 51.517874
+The maximum resident set size (KB) = 334608
Test 039 control_stochy_restart_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 83.674427
-The maximum resident set size (KB) = 528260
+The total amount of wall time = 85.426827
+The maximum resident set size (KB) = 526640
Test 040 control_lndp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.689079
-The maximum resident set size (KB) = 524600
+The total amount of wall time = 134.530199
+The maximum resident set size (KB) = 521924
Test 041 control_iovr4_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.159394
-The maximum resident set size (KB) = 522968
+The total amount of wall time = 134.886238
+The maximum resident set size (KB) = 521952
Test 042 control_iovr5_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 163.142716
-The maximum resident set size (KB) = 1498532
+The total amount of wall time = 164.588120
+The maximum resident set size (KB) = 1498668
Test 043 control_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 163.898079
-The maximum resident set size (KB) = 1495984
+The total amount of wall time = 163.049069
+The maximum resident set size (KB) = 1511836
Test 044 control_p8.v2.sfc_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 160.150591
-The maximum resident set size (KB) = 1505432
+The total amount of wall time = 161.710332
+The maximum resident set size (KB) = 1511136
Test 045 control_p8_ugwpv1_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 90.567027
-The maximum resident set size (KB) = 689420
+The total amount of wall time = 90.698693
+The maximum resident set size (KB) = 686908
Test 046 control_restart_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_noqr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 163.307225
-The maximum resident set size (KB) = 1488620
+The total amount of wall time = 165.013063
+The maximum resident set size (KB) = 1494288
Test 047 control_noqr_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_noqr_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 89.466469
-The maximum resident set size (KB) = 692724
+The total amount of wall time = 90.241117
+The maximum resident set size (KB) = 695252
Test 048 control_restart_noqr_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_decomp_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 168.177930
-The maximum resident set size (KB) = 1498708
+The total amount of wall time = 170.024349
+The maximum resident set size (KB) = 1503248
Test 049 control_decomp_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_2threads_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_2threads_p8_intel
Checking test 050 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 146.539529
-The maximum resident set size (KB) = 1597580
+The total amount of wall time = 145.224451
+The maximum resident set size (KB) = 1582168
Test 050 control_2threads_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_lndp_intel
Checking test 051 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 294.833818
-The maximum resident set size (KB) = 1505424
+The total amount of wall time = 293.843781
+The maximum resident set size (KB) = 1498936
Test 051 control_p8_lndp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_rrtmgp_intel
Checking test 052 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 226.376626
-The maximum resident set size (KB) = 1553972
+The total amount of wall time = 220.240233
+The maximum resident set size (KB) = 1556408
Test 052 control_p8_rrtmgp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_mynn_intel
Checking test 053 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 169.877046
-The maximum resident set size (KB) = 1512596
+The total amount of wall time = 167.093940
+The maximum resident set size (KB) = 1511552
Test 053 control_p8_mynn_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/merra2_thompson_intel
Checking test 054 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 203.845086
-The maximum resident set size (KB) = 1518516
+The total amount of wall time = 197.980116
+The maximum resident set size (KB) = 1508488
Test 054 merra2_thompson_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_intel
Checking test 055 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 291.454854
-The maximum resident set size (KB) = 605920
+The total amount of wall time = 290.377617
+The maximum resident set size (KB) = 606408
Test 055 regional_control_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_restart_intel
Checking test 056 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 155.249031
-The maximum resident set size (KB) = 777340
+The total amount of wall time = 157.480535
+The maximum resident set size (KB) = 778324
Test 056 regional_restart_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_decomp_intel
Checking test 057 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 303.047275
-The maximum resident set size (KB) = 605796
+The total amount of wall time = 304.338849
+The maximum resident set size (KB) = 605684
Test 057 regional_decomp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2threads_intel
Checking test 058 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 172.278279
-The maximum resident set size (KB) = 668288
+The total amount of wall time = 175.422691
+The maximum resident set size (KB) = 660620
Test 058 regional_2threads_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_noquilt_intel
Checking test 059 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 280.805624
-The maximum resident set size (KB) = 1138164
+The total amount of wall time = 280.000830
+The maximum resident set size (KB) = 1141104
Test 059 regional_noquilt_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_netcdf_parallel_intel
Checking test 060 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 285.101281
-The maximum resident set size (KB) = 607028
+The total amount of wall time = 287.310854
+The maximum resident set size (KB) = 607216
Test 060 regional_netcdf_parallel_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2dwrtdecomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2dwrtdecomp_intel
Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 289.825775
-The maximum resident set size (KB) = 608984
+The total amount of wall time = 286.448947
+The maximum resident set size (KB) = 607100
Test 061 regional_2dwrtdecomp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_wofs_intel
Checking test 062 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 372.335239
-The maximum resident set size (KB) = 1579964
+The total amount of wall time = 370.002079
+The maximum resident set size (KB) = 1581448
Test 062 regional_wofs_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 408.266116
-The maximum resident set size (KB) = 915576
+The total amount of wall time = 405.761757
+The maximum resident set size (KB) = 919924
Test 063 rap_control_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 240.781829
-The maximum resident set size (KB) = 1090784
+The total amount of wall time = 242.742615
+The maximum resident set size (KB) = 1092304
Test 064 regional_spp_sppt_shum_skeb_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 421.490321
-The maximum resident set size (KB) = 914780
+The total amount of wall time = 420.844891
+The maximum resident set size (KB) = 915580
Test 065 rap_decomp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 370.198457
-The maximum resident set size (KB) = 1006440
+The total amount of wall time = 370.382045
+The maximum resident set size (KB) = 1008316
Test 066 rap_2threads_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 212.308251
-The maximum resident set size (KB) = 783116
+The total amount of wall time = 210.282217
+The maximum resident set size (KB) = 784084
Test 067 rap_restart_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 407.502892
-The maximum resident set size (KB) = 911192
+The total amount of wall time = 408.000618
+The maximum resident set size (KB) = 913048
Test 068 rap_sfcdiff_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 423.159391
-The maximum resident set size (KB) = 912000
+The total amount of wall time = 421.332180
+The maximum resident set size (KB) = 914964
Test 069 rap_sfcdiff_decomp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 302.415086
-The maximum resident set size (KB) = 782380
+The total amount of wall time = 305.547528
+The maximum resident set size (KB) = 783352
Test 070 rap_sfcdiff_restart_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 210.357208
-The maximum resident set size (KB) = 906692
+The total amount of wall time = 210.203982
+The maximum resident set size (KB) = 911880
Test 071 hrrr_control_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 212.480979
-The maximum resident set size (KB) = 909184
+The total amount of wall time = 214.131388
+The maximum resident set size (KB) = 907928
Test 072 hrrr_control_decomp_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 187.693284
-The maximum resident set size (KB) = 997904
+The total amount of wall time = 186.942980
+The maximum resident set size (KB) = 991916
Test 073 hrrr_control_2threads_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 110.324867
-The maximum resident set size (KB) = 743852
+The total amount of wall time = 109.819242
+The maximum resident set size (KB) = 742116
Test 074 hrrr_control_restart_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 400.553044
-The maximum resident set size (KB) = 909704
+The total amount of wall time = 398.166108
+The maximum resident set size (KB) = 904132
Test 075 rrfs_v1beta_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 488.987399
-The maximum resident set size (KB) = 1872972
+The total amount of wall time = 490.003704
+The maximum resident set size (KB) = 1874704
Test 076 rrfs_v1nssl_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 472.407966
-The maximum resident set size (KB) = 1859360
+The total amount of wall time = 472.440630
+The maximum resident set size (KB) = 1861208
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 336.156818
-The maximum resident set size (KB) = 602952
+The total amount of wall time = 338.500426
+The maximum resident set size (KB) = 600048
Test 078 control_csawmg_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 332.533486
-The maximum resident set size (KB) = 594364
+The total amount of wall time = 336.566237
+The maximum resident set size (KB) = 596180
Test 079 control_csawmgt_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_intel
Checking test 080 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 184.950621
-The maximum resident set size (KB) = 559432
+The total amount of wall time = 184.660551
+The maximum resident set size (KB) = 561864
Test 080 control_ras_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_intel
Checking test 081 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 119.338500
-The maximum resident set size (KB) = 272840
+The total amount of wall time = 119.063038
+The maximum resident set size (KB) = 271836
Test 081 control_wam_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_faster_intel
Checking test 082 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 157.937879
-The maximum resident set size (KB) = 1503168
+The total amount of wall time = 159.301292
+The maximum resident set size (KB) = 1505300
Test 082 control_p8_faster_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_faster_intel
Checking test 083 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 282.310219
-The maximum resident set size (KB) = 609908
+The total amount of wall time = 280.648571
+The maximum resident set size (KB) = 609956
Test 083 regional_control_faster_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_debug_intel
Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 163.533173
-The maximum resident set size (KB) = 684512
+The total amount of wall time = 162.337300
+The maximum resident set size (KB) = 683512
Test 084 control_CubedSphereGrid_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.836127
-The maximum resident set size (KB) = 693188
+The total amount of wall time = 160.370876
+The maximum resident set size (KB) = 693624
Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_debug_intel
Checking test 086 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 180.703328
-The maximum resident set size (KB) = 693420
+The total amount of wall time = 183.537405
+The maximum resident set size (KB) = 692352
Test 086 control_stochy_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_debug_intel
Checking test 087 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 162.417812
-The maximum resident set size (KB) = 692092
+The total amount of wall time = 162.253932
+The maximum resident set size (KB) = 693132
Test 087 control_lndp_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_debug_intel
Checking test 088 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 257.539294
-The maximum resident set size (KB) = 732228
+The total amount of wall time = 253.313215
+The maximum resident set size (KB) = 733268
Test 088 control_csawmg_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_debug_intel
Checking test 089 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 253.758498
-The maximum resident set size (KB) = 731240
+The total amount of wall time = 252.329851
+The maximum resident set size (KB) = 730496
Test 089 control_csawmgt_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_debug_intel
Checking test 090 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 167.140986
-The maximum resident set size (KB) = 703804
+The total amount of wall time = 164.369490
+The maximum resident set size (KB) = 703916
Test 090 control_ras_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_diag_debug_intel
Checking test 091 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 166.628987
-The maximum resident set size (KB) = 746256
+The total amount of wall time = 172.195350
+The maximum resident set size (KB) = 746740
Test 091 control_diag_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_debug_p8_intel
Checking test 092 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 169.847887
-The maximum resident set size (KB) = 1521184
+The total amount of wall time = 169.031907
+The maximum resident set size (KB) = 1519200
Test 092 control_debug_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_debug_intel
Checking test 093 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1057.576212
-The maximum resident set size (KB) = 632792
+The total amount of wall time = 1057.508445
+The maximum resident set size (KB) = 629056
Test 093 regional_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_intel
Checking test 094 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 304.227471
-The maximum resident set size (KB) = 1077604
+The total amount of wall time = 301.960520
+The maximum resident set size (KB) = 1076488
Test 094 rap_control_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_intel
Checking test 095 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.599585
-The maximum resident set size (KB) = 1069440
+The total amount of wall time = 295.368278
+The maximum resident set size (KB) = 1070004
Test 095 hrrr_control_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_gf_debug_intel
Checking test 096 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 304.371168
-The maximum resident set size (KB) = 1071732
+The total amount of wall time = 299.841380
+The maximum resident set size (KB) = 1074248
Test 096 hrrr_gf_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_c3_debug_intel
Checking test 097 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.726062
-The maximum resident set size (KB) = 1074888
+The total amount of wall time = 301.945532
+The maximum resident set size (KB) = 1078352
Test 097 hrrr_c3_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_drag_suite_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_drag_suite_debug_intel
Checking test 098 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 303.275215
-The maximum resident set size (KB) = 1080748
+The total amount of wall time = 300.925601
+The maximum resident set size (KB) = 1073756
Test 098 rap_unified_drag_suite_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_diag_debug_intel
Checking test 099 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 314.584640
-The maximum resident set size (KB) = 1155332
+The total amount of wall time = 312.452353
+The maximum resident set size (KB) = 1162888
Test 099 rap_diag_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_cires_ugwp_debug_intel
Checking test 100 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 307.750164
-The maximum resident set size (KB) = 1073920
+The total amount of wall time = 308.599165
+The maximum resident set size (KB) = 1076032
Test 100 rap_cires_ugwp_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_ugwp_debug_intel
Checking test 101 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 308.818130
-The maximum resident set size (KB) = 1076280
+The total amount of wall time = 308.730674
+The maximum resident set size (KB) = 1079376
Test 101 rap_unified_ugwp_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_lndp_debug_intel
Checking test 102 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 303.969573
-The maximum resident set size (KB) = 1078336
+The total amount of wall time = 304.479275
+The maximum resident set size (KB) = 1075932
Test 102 rap_lndp_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_progcld_thompson_debug_intel
Checking test 103 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 304.074241
-The maximum resident set size (KB) = 1073032
+The total amount of wall time = 302.023173
+The maximum resident set size (KB) = 1074988
Test 103 rap_progcld_thompson_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_debug_intel
Checking test 104 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 297.279825
-The maximum resident set size (KB) = 1072620
+The total amount of wall time = 295.080200
+The maximum resident set size (KB) = 1068868
Test 104 rap_noah_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_debug_intel
Checking test 105 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.181075
-The maximum resident set size (KB) = 1071460
+The total amount of wall time = 303.806473
+The maximum resident set size (KB) = 1073844
Test 105 rap_sfcdiff_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 491.996978
-The maximum resident set size (KB) = 1070932
+The total amount of wall time = 498.436218
+The maximum resident set size (KB) = 1075296
Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_debug_intel
Checking test 107 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 297.225742
-The maximum resident set size (KB) = 1068100
+The total amount of wall time = 298.047098
+The maximum resident set size (KB) = 1069512
Test 107 rrfs_v1beta_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_clm_lake_debug_intel
Checking test 108 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 351.399253
-The maximum resident set size (KB) = 1075296
+The total amount of wall time = 351.599105
+The maximum resident set size (KB) = 1074656
Test 108 rap_clm_lake_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_flake_debug_intel
Checking test 109 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.904245
-The maximum resident set size (KB) = 1076368
+The total amount of wall time = 301.316766
+The maximum resident set size (KB) = 1073452
Test 109 rap_flake_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/gnv1_c96_no_nest_debug_intel
Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 525.187740
-The maximum resident set size (KB) = 1079352
+The total amount of wall time = 526.273497
+The maximum resident set size (KB) = 1077160
Test 110 gnv1_c96_no_nest_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_debug_intel
Checking test 111 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 295.899096
-The maximum resident set size (KB) = 296816
+The total amount of wall time = 299.088393
+The maximum resident set size (KB) = 298148
Test 111 control_wam_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 227.670595
-The maximum resident set size (KB) = 955232
+The total amount of wall time = 230.022175
+The maximum resident set size (KB) = 952956
Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn32_phy32_intel
Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 335.725423
-The maximum resident set size (KB) = 789816
+The total amount of wall time = 336.797512
+The maximum resident set size (KB) = 789616
Test 113 rap_control_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_dyn32_phy32_intel
Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 179.182742
-The maximum resident set size (KB) = 787528
+The total amount of wall time = 180.171997
+The maximum resident set size (KB) = 788240
Test 114 hrrr_control_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_dyn32_phy32_intel
Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 305.603189
-The maximum resident set size (KB) = 851512
+The total amount of wall time = 308.608507
+The maximum resident set size (KB) = 851852
Test 115 rap_2threads_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_dyn32_phy32_intel
Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.646100
-The maximum resident set size (KB) = 841524
+The total amount of wall time = 160.933595
+The maximum resident set size (KB) = 840220
Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_dyn32_phy32_intel
Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 184.542179
-The maximum resident set size (KB) = 788688
+The total amount of wall time = 186.779550
+The maximum resident set size (KB) = 791856
Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_dyn32_phy32_intel
Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 249.992297
-The maximum resident set size (KB) = 688444
+The total amount of wall time = 254.794040
+The maximum resident set size (KB) = 685660
Test 118 rap_restart_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_dyn32_phy32_intel
Checking test 119 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 93.291122
-The maximum resident set size (KB) = 670088
+The total amount of wall time = 93.806382
+The maximum resident set size (KB) = 667280
Test 119 hrrr_control_restart_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_control_intel
Checking test 120 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 120.036268
-The maximum resident set size (KB) = 1006688
+The total amount of wall time = 120.596185
+The maximum resident set size (KB) = 1003932
Test 120 conus13km_control_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_2threads_intel
Checking test 121 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 62.068988
-The maximum resident set size (KB) = 1004968
+The total amount of wall time = 63.221902
+The maximum resident set size (KB) = 1007156
Test 121 conus13km_2threads_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_restart_mismatch_intel
Checking test 122 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 71.888271
-The maximum resident set size (KB) = 881768
+The total amount of wall time = 71.013649
+The maximum resident set size (KB) = 881756
Test 122 conus13km_restart_mismatch_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_intel
Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 229.924763
-The maximum resident set size (KB) = 811036
+The total amount of wall time = 234.585978
+The maximum resident set size (KB) = 811188
Test 123 rap_control_dyn64_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_dyn32_phy32_intel
Checking test 124 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.211871
-The maximum resident set size (KB) = 950276
+The total amount of wall time = 295.731602
+The maximum resident set size (KB) = 950728
Test 124 rap_control_debug_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_dyn32_phy32_intel
Checking test 125 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 288.904924
-The maximum resident set size (KB) = 948412
+The total amount of wall time = 288.839630
+The maximum resident set size (KB) = 949132
Test 125 hrrr_control_debug_dyn32_phy32_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_intel
Checking test 126 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 885.969783
-The maximum resident set size (KB) = 1035812
+The total amount of wall time = 889.758617
+The maximum resident set size (KB) = 1036268
Test 126 conus13km_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_qr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_qr_intel
Checking test 127 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 890.813272
-The maximum resident set size (KB) = 710492
+The total amount of wall time = 897.344891
+The maximum resident set size (KB) = 710752
Test 127 conus13km_debug_qr_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_2threads_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_2threads_intel
Checking test 128 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 510.687907
-The maximum resident set size (KB) = 1037972
+The total amount of wall time = 512.772061
+The maximum resident set size (KB) = 1037896
Test 128 conus13km_debug_2threads_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_radar_tten_debug_intel
Checking test 129 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 891.181302
-The maximum resident set size (KB) = 1099836
+The total amount of wall time = 882.770745
+The maximum resident set size (KB) = 1109524
Test 129 conus13km_radar_tten_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_debug_intel
Checking test 130 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.315154
-The maximum resident set size (KB) = 982816
+The total amount of wall time = 300.603950
+The maximum resident set size (KB) = 979708
Test 130 rap_control_dyn64_phy32_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_intel
Checking test 131 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 351.343193
-The maximum resident set size (KB) = 620944
+The total amount of wall time = 369.531631
+The maximum resident set size (KB) = 617228
Test 131 hafs_regional_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 320.014688
-The maximum resident set size (KB) = 966704
+The total amount of wall time = 355.154398
+The maximum resident set size (KB) = 962868
Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_intel
Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 421.291448
-The maximum resident set size (KB) = 666536
+The total amount of wall time = 438.730589
+The maximum resident set size (KB) = 665392
Test 133 hafs_regional_atm_ocn_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_wav_intel
Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 750.626780
-The maximum resident set size (KB) = 691316
+The total amount of wall time = 752.176827
+The maximum resident set size (KB) = 688472
Test 134 hafs_regional_atm_wav_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_wav_intel
Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 933.836052
-The maximum resident set size (KB) = 704968
+The total amount of wall time = 947.190738
+The maximum resident set size (KB) = 706528
Test 135 hafs_regional_atm_ocn_wav_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_1nest_atm_intel
Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 320.150492
-The maximum resident set size (KB) = 387648
+The total amount of wall time = 323.948890
+The maximum resident set size (KB) = 390444
Test 136 hafs_regional_1nest_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_telescopic_2nests_atm_intel
Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 408.399377
-The maximum resident set size (KB) = 410968
+The total amount of wall time = 419.083475
+The maximum resident set size (KB) = 411292
Test 137 hafs_regional_telescopic_2nests_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_1nest_atm_intel
Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 174.809942
-The maximum resident set size (KB) = 282528
+The total amount of wall time = 178.064158
+The maximum resident set size (KB) = 284008
Test 138 hafs_global_1nest_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_multiple_4nests_atm_intel
Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 507.720307
-The maximum resident set size (KB) = 376972
+The total amount of wall time = 513.406980
+The maximum resident set size (KB) = 369996
Test 139 hafs_global_multiple_4nests_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_specified_moving_1nest_atm_intel
Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 222.447786
-The maximum resident set size (KB) = 422436
+The total amount of wall time = 225.541419
+The maximum resident set size (KB) = 411900
Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 206.579523
-The maximum resident set size (KB) = 417820
+The total amount of wall time = 216.108215
+The maximum resident set size (KB) = 414940
Test 141 hafs_regional_storm_following_1nest_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 268.429851
-The maximum resident set size (KB) = 488184
+The total amount of wall time = 277.787997
+The maximum resident set size (KB) = 488860
Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_storm_following_1nest_atm_intel
Checking test 143 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 95.605926
-The maximum resident set size (KB) = 315000
+The total amount of wall time = 97.748097
+The maximum resident set size (KB) = 319588
Test 143 hafs_global_storm_following_1nest_atm_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 816.259567
-The maximum resident set size (KB) = 498564
+The total amount of wall time = 827.555675
+The maximum resident set size (KB) = 501768
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 522.295834
-The maximum resident set size (KB) = 530228
+The total amount of wall time = 534.652709
+The maximum resident set size (KB) = 528456
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 529.409840
-The maximum resident set size (KB) = 707012
+The total amount of wall time = 534.592094
+The maximum resident set size (KB) = 710948
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 384.686943
-The maximum resident set size (KB) = 710620
+The total amount of wall time = 395.725953
+The maximum resident set size (KB) = 710956
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 392.604842
-The maximum resident set size (KB) = 653792
+The total amount of wall time = 441.947517
+The maximum resident set size (KB) = 655240
Test 148 hafs_regional_docn_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 396.925525
-The maximum resident set size (KB) = 640920
+The total amount of wall time = 424.937547
+The maximum resident set size (KB) = 641236
Test 149 hafs_regional_docn_oisst_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 951.862273
-The maximum resident set size (KB) = 881080
+The total amount of wall time = 959.502318
+The maximum resident set size (KB) = 880960
Test 150 hafs_regional_datm_cdeps_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_sbs_intel
Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 274.928982
-The maximum resident set size (KB) = 1543700
+The total amount of wall time = 279.391007
+The maximum resident set size (KB) = 1546220
Test 151 control_p8_atmlnd_sbs_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_intel
Checking test 152 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 277.779951
-The maximum resident set size (KB) = 1548328
+The total amount of wall time = 277.072040
+The maximum resident set size (KB) = 1538484
Test 152 control_p8_atmlnd_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_atmlnd_intel
Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 151.491189
-The maximum resident set size (KB) = 739472
+The total amount of wall time = 155.932872
+The maximum resident set size (KB) = 738524
Test 153 control_restart_p8_atmlnd_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_intel
Checking test 154 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 240.375083
-The maximum resident set size (KB) = 2849900
+The total amount of wall time = 248.697666
+The maximum resident set size (KB) = 2850348
Test 154 atmaero_control_p8_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_intel
Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 278.341096
-The maximum resident set size (KB) = 2911956
+The total amount of wall time = 281.921693
+The maximum resident set size (KB) = 2910640
Test 155 atmaero_control_p8_rad_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_micro_intel
Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 298.926042
-The maximum resident set size (KB) = 2919712
+The total amount of wall time = 293.390049
+The maximum resident set size (KB) = 2926952
Test 156 atmaero_control_p8_rad_micro_intel PASS
baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_atmaq_debug_intel
Checking test 157 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5533,10 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1320.210491
-The maximum resident set size (KB) = 4439436
+The total amount of wall time = 1330.775370
+The maximum resident set size (KB) = 4440152
Test 157 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
+Fri Feb 9 20:15:43 UTC 2024
+Elapsed time: 01h:26m:10s. Have a nice day!
diff --git a/tests/module-setup.sh b/tests/module-setup.sh
index f0daa24cdb..f392a6c084 100755
--- a/tests/module-setup.sh
+++ b/tests/module-setup.sh
@@ -65,8 +65,8 @@ elif [[ $MACHINE_ID = stampede ]] ; then
fi
module purge
-elif [[ $MACHINE_ID = gaea-c5 ]] ; then
- # We are on GAEA C5
+elif [[ $MACHINE_ID = gaea ]] ; then
+ # We are on GAEA
if ( ! eval module help > /dev/null 2>&1 ) ; then
# We cannot simply load the module command. The GAEA
# /etc/profile modifies a number of module-related variables
@@ -75,7 +75,7 @@ elif [[ $MACHINE_ID = gaea-c5 ]] ; then
# /etc/profile here.
source /etc/profile
fi
- source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh
+ module reset
elif [[ $MACHINE_ID = expanse ]]; then
# We are on SDSC Expanse
diff --git a/tests/opnReqTest b/tests/opnReqTest
index f7cded2d64..4bec5cbc00 100755
--- a/tests/opnReqTest
+++ b/tests/opnReqTest
@@ -307,7 +307,7 @@ export CI_TEST=${CI_TEST:-false}
# specify compiler
export RT_COMPILER=${RT_COMPILER:-intel}
# detect_machine sets MACHINE_ID
-RT_MACHINE=${RT_MACHINE:-}
+MACHINE=${MACHINE:-}
source detect_machine.sh
cd $PATHRT
diff --git a/tests/rt.conf b/tests/rt.conf
index 19c1f90733..f8abbc4158 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -31,8 +31,8 @@ RUN | cpld_control_gfsv17_iau | - noaacloud
RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17
RUN | cpld_mpi_gfsv17 | - noaacloud | |
-COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 |
-RUN | cpld_debug_gfsv17 | - noaacloud | baseline |
+COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 |
+RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline |
COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 |
RUN | cpld_control_p8 | - noaacloud | baseline |
@@ -243,7 +243,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud
RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline |
# This probably works on S4, but I cannot know for certain. I don't have access to the machine.
-RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline |
+RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline |
COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 |
RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline |
diff --git a/tests/rt.sh b/tests/rt.sh
index 1819833aa8..960e20bb87 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -304,30 +304,32 @@ elif [[ $MACHINE_ID = acorn ]]; then
PTMP=/lfs/h2/emc/ptmp
SCHEDULER=pbs
-elif [[ $MACHINE_ID = gaea-c5 ]]; then
+elif [[ $MACHINE_ID = gaea ]]; then
- module use /lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles
+ module use /ncrc/proj/epic/rocoto/modulefiles
module load rocoto
ROCOTORUN=$(which rocotorun)
ROCOTOSTAT=$(which rocotostat)
ROCOTOCOMPLETE=$(which rocotocomplete)
ROCOTO_SCHEDULER=slurm
+
module load PrgEnv-intel/8.3.3
module load intel-classic/2023.1.0
module load cray-mpich/8.1.25
module load python/3.9.12
- module use /lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles
+ module use /ncrc/proj/epic/spack-stack/modulefiles
+ module load gcc/12.2.0
module load ecflow/5.8.4
- ECFLOW_START=/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/ecflow-5.8.4/bin/ecflow_start.sh
+ ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
ECF_PORT=$(( $(id -u) + 1500 ))
- DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT
+ DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT
QUEUE=normal
COMPILE_QUEUE=normal
PARTITION=c5
- STMP=/lustre/f2/scratch
- PTMP=/lustre/f2/scratch
+ STMP=/gpfs/f5/epic/scratch
+ PTMP=/gpfs/f5/epic/scratch
SCHEDULER=slurm
@@ -657,7 +659,7 @@ if [[ $ROCOTO == true ]]; then
QUEUE=main
COMPILE_QUEUE=main
ROCOTO_SCHEDULER=pbspro
- elif [[ $MACHINE_ID = gaea-c5 ]]; then
+ elif [[ $MACHINE_ID = gaea ]]; then
QUEUE=normal
COMPILE_QUEUE=normal
ROCOTO_SCHEDULER=slurm
@@ -731,7 +733,7 @@ EOF
QUEUE=batch
elif [[ $MACHINE_ID = s4 ]]; then
QUEUE=s4
- elif [[ $MACHINE_ID = gaea* ]]; then
+ elif [[ $MACHINE_ID = gaea ]]; then
QUEUE=normal
elif [[ $MACHINE_ID = derecho ]]; then
QUEUE=main
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index c9c4c01802..0646266895 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -347,7 +347,7 @@ check_results() {
fi
if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then
- if [[ " orion hercules hera wcoss2 acorn derecho gaea-c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then
+ if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then
printf ".......ALT CHECK.." >> ${RT_LOG}
printf ".......ALT CHECK.."
if [[ $CMP_DATAONLY == false ]]; then
@@ -469,7 +469,7 @@ rocoto_create_compile_task() {
if [[ ${MACHINE_ID} == s4 ]]; then
BUILD_WALLTIME="01:00:00"
fi
- if [[ $MACHINE_ID == gaea-c5 ]]; then
+ if [[ $MACHINE_ID == gaea ]]; then
BUILD_WALLTIME="01:00:00"
fi
@@ -482,7 +482,7 @@ rocoto_create_compile_task() {
${COMPILE_QUEUE}
EOF
- if [[ "$MACHINE_ID" == gaea-c5 ]] ; then
+ if [[ "$MACHINE_ID" == gaea ]] ; then
cat << EOF >> $ROCOTO_XML
--clusters=es
eslogin_c5
@@ -526,7 +526,7 @@ rocoto_create_run_task() {
${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE}
EOF
- if [[ "$MACHINE_ID" == gaea-c5 ]] ; then
+ if [[ "$MACHINE_ID" == gaea ]] ; then
cat << EOF >> $ROCOTO_XML
--clusters=${PARTITION}
--partition=batch
diff --git a/tests/run_test.sh b/tests/run_test.sh
index a94d089c78..ab10a0e17d 100755
--- a/tests/run_test.sh
+++ b/tests/run_test.sh
@@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/.
cp ${PATHRT}/module-setup.sh module-setup.sh
# load nccmp module
-if [[ " s4 hera orion hercules gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then
+if [[ " s4 hera orion hercules gaea jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then
if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then
module load intel/19.1.3.304 netcdf/4.7.4
module load nccmp
@@ -106,9 +106,12 @@ if [[ " s4 hera orion hercules gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_
module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0
module load miniconda/3.9.12
module load nccmp/1.9.0.1
- elif [[ " hera orion hercules gaea-c5 jet " =~ " ${MACHINE_ID} " ]] ; then
+ elif [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then
module use modulefiles
module load modules.fv3
+ if [[ " gaea " =~ " ${MACHINE_ID} " ]]; then
+ module load gcc/12.2.0
+ fi
else
module load nccmp
fi
diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq
index 7b38d66ab1..54fb6f1514 100644
--- a/tests/tests/regional_atmaq
+++ b/tests/tests/regional_atmaq
@@ -101,6 +101,4 @@ if [[ $MACHINE_ID = hera ]]; then
TPN=30
elif [[ $MACHINE_ID = gaea ]]; then
TPN=16
-elif [[ $MACHINE_ID = gaea-c5 ]]; then
- TPN=16
fi
diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug
index a87b1310bc..666598c1e7 100644
--- a/tests/tests/regional_atmaq_debug
+++ b/tests/tests/regional_atmaq_debug
@@ -97,6 +97,6 @@ export CCPP_SUITE=FV3_GFS_v15p2
if [[ $MACHINE_ID = hera ]]; then
TPN=30
-elif [[ $MACHINE_ID = gaea* ]]; then
+elif [[ $MACHINE_ID = gaea ]]; then
TPN=16
fi
diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster
index c81fbfba1c..75f85debf7 100644
--- a/tests/tests/regional_atmaq_faster
+++ b/tests/tests/regional_atmaq_faster
@@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2
if [[ $MACHINE_ID = hera ]]; then
TPN=30
-elif [[ $MACHINE_ID = gaea* ]]; then
+elif [[ $MACHINE_ID = gaea ]]; then
TPN=18
fi
From 56e31ff520e05e1fe2cec20be9697a49a2675b6a Mon Sep 17 00:00:00 2001
From: Jessica Meixner
Date: Tue, 13 Feb 2024 11:17:32 -0500
Subject: [PATCH 02/33] Add extra variables to get ice temperature for marine
DA (#2118)
Add ice temperature in CICE output
---
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 1482 +++++-----
tests/logs/RegressionTests_derecho.log | 1452 +++++-----
tests/logs/RegressionTests_gaea.log | 1562 +++++------
tests/logs/RegressionTests_hera.log | 2098 +++++++-------
tests/logs/RegressionTests_hercules.log | 2443 ++++++++---------
tests/logs/RegressionTests_jet.log | 2125 +++++++-------
tests/logs/RegressionTests_orion.log | 1590 +++++------
tests/logs/RegressionTests_wcoss2.log | 1330 ++++-----
tests/parm/ice_in.IN | 3 +
13 files changed, 7034 insertions(+), 7149 deletions(-)
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 68d139e13c..db8bf0ab30 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240208
+export BL_DATE=20240212
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 1c213bde54..5f291dc8c6 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 9 14:39:17 UTC 2024
+Mon Feb 12 17:34:36 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_bit_base
Checking test bit_base control_p8_gnu results ....
Moving baseline bit_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 282.839267
- 0: The maximum resident set size (KB) = 1304660
+ 0: The total amount of wall time = 295.377764
+ 0: The maximum resident set size (KB) = 1308520
Test bit_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dbg_base
Checking test dbg_base control_p8_gnu results ....
Moving baseline dbg_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 892.021338
- 0: The maximum resident set size (KB) = 1288444
+ 0: The total amount of wall time = 905.836659
+ 0: The maximum resident set size (KB) = 1289704
Test dbg_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dcp
Checking test dcp control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.299884
- 0: The maximum resident set size (KB) = 1281236
+ 0: The total amount of wall time = 247.635355
+ 0: The maximum resident set size (KB) = 1280580
Test dcp control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_mpi
Checking test mpi control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.586878
- 0: The maximum resident set size (KB) = 1284604
+ 0: The total amount of wall time = 255.206853
+ 0: The maximum resident set size (KB) = 1273300
Test mpi control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_rst
Checking test rst control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.664516
- 0: The maximum resident set size (KB) = 1283488
+ 0: The total amount of wall time = 251.001418
+ 0: The maximum resident set size (KB) = 1281992
Test rst control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_std_base
Checking test std_base control_p8_gnu results ....
Moving baseline std_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.494655
- 0: The maximum resident set size (KB) = 1281868
+ 0: The total amount of wall time = 245.431368
+ 0: The maximum resident set size (KB) = 1281712
Test std_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_thr
Checking test thr control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.472280
- 0: The maximum resident set size (KB) = 1283528
+ 0: The total amount of wall time = 249.171559
+ 0: The maximum resident set size (KB) = 1291604
Test thr control_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Feb 9 17:11:49 UTC 2024
-Elapsed time: 02h:32m:32s. Have a nice day!
+Mon Feb 12 18:52:54 UTC 2024
+Elapsed time: 01h:18m:18s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 50fc402047..d7a6ad9b62 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 9 18:43:44 UTC 2024
+Mon Feb 12 19:53:38 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_dbg_base
Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1225.252760
- 0: The maximum resident set size (KB) = 1412400
+ 0: The total amount of wall time = 1226.601363
+ 0: The maximum resident set size (KB) = 1406616
Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_rst
Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 372.797074
- 0: The maximum resident set size (KB) = 1405444
+ 0: The total amount of wall time = 381.635239
+ 0: The maximum resident set size (KB) = 1404212
Test rst cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_std_base
Checking test std_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 377.466475
- 0: The maximum resident set size (KB) = 1404384
+ 0: The total amount of wall time = 383.441742
+ 0: The maximum resident set size (KB) = 1407432
Test std_base cpld_control_nowave_noaero_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Feb 9 19:48:46 UTC 2024
-Elapsed time: 01h:05m:02s. Have a nice day!
+Mon Feb 12 21:05:36 UTC 2024
+Elapsed time: 01h:11m:59s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 25755a6eac..42b888c371 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 9 18:00:49 UTC 2024
+Mon Feb 12 18:56:01 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_dcp
Checking test dcp regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 521.814442
- 0: The maximum resident set size (KB) = 592736
+ 0: The total amount of wall time = 518.010148
+ 0: The maximum resident set size (KB) = 592116
Test dcp regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_std_base
Checking test std_base regional_control_gnu results ....
Moving baseline std_base regional_control_gnu files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 512.876185
- 0: The maximum resident set size (KB) = 591908
+ 0: The total amount of wall time = 520.071220
+ 0: The maximum resident set size (KB) = 589292
Test std_base regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_thr
Checking test thr regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 505.653831
- 0: The maximum resident set size (KB) = 596020
+ 0: The total amount of wall time = 502.487646
+ 0: The maximum resident set size (KB) = 592096
Test thr regional_control_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Feb 9 18:39:56 UTC 2024
-Elapsed time: 00h:39m:08s. Have a nice day!
+Mon Feb 12 19:32:44 UTC 2024
+Elapsed time: 00h:36m:43s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 14cb612062..56b4542381 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,60 +1,60 @@
-Fri Feb 9 17:34:04 UTC 2024
+Tue Feb 13 14:07:51 UTC 2024
Start Regression test
-Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
+Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 525 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_faster_intel elapsed time 460 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 183 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 526 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_faster_intel elapsed time 518 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 526 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 555 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 563 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 197 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 571 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 627 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 610 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1033 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 857 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 630 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 620 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 961 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 902 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 581 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 901 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_mixedmode_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 325.069319
-The maximum resident set size (KB) = 2977512
+The total amount of wall time = 320.431229
+The maximum resident set size (KB) = 2973508
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 901.574297
-The maximum resident set size (KB) = 1588856
+The total amount of wall time = 901.292979
+The maximum resident set size (KB) = 1592148
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_iau_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 970.585781
-The maximum resident set size (KB) = 1714640
+The total amount of wall time = 969.922689
+The maximum resident set size (KB) = 1710552
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 449.948426
-The maximum resident set size (KB) = 849864
+The total amount of wall time = 453.198730
+The maximum resident set size (KB) = 847968
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1057.877826
-The maximum resident set size (KB) = 1570648
+The total amount of wall time = 1053.880929
+The maximum resident set size (KB) = 1573768
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1443.576316
-The maximum resident set size (KB) = 1610604
+The total amount of wall time = 1404.844347
+The maximum resident set size (KB) = 1600052
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.281607
-The maximum resident set size (KB) = 3003988
+The total amount of wall time = 363.720413
+The maximum resident set size (KB) = 3001592
Test 007 cpld_control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.047392
-The maximum resident set size (KB) = 3000400
+The total amount of wall time = 363.114406
+The maximum resident set size (KB) = 3003684
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 213.604123
-The maximum resident set size (KB) = 3058484
+The total amount of wall time = 213.666517
+The maximum resident set size (KB) = 3061748
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_qr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 365.416961
-The maximum resident set size (KB) = 3028140
+The total amount of wall time = 364.516087
+The maximum resident set size (KB) = 3026600
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_qr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 217.152233
-The maximum resident set size (KB) = 3080048
+The total amount of wall time = 217.989895
+The maximum resident set size (KB) = 3080876
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_2threads_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 326.244114
-The maximum resident set size (KB) = 3316092
+The total amount of wall time = 324.509045
+The maximum resident set size (KB) = 3315524
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_decomp_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 357.785847
-The maximum resident set size (KB) = 2996540
+The total amount of wall time = 356.915458
+The maximum resident set size (KB) = 2997384
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 305.227913
-The maximum resident set size (KB) = 2924320
+The total amount of wall time = 302.115277
+The maximum resident set size (KB) = 2925944
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_ciceC_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 368.575371
-The maximum resident set size (KB) = 3000544
+The total amount of wall time = 362.349738
+The maximum resident set size (KB) = 3002992
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_s2sa_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_s2sa_p8_intel
Checking test 016 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 342.253295
-The maximum resident set size (KB) = 2971624
+The total amount of wall time = 342.065720
+The maximum resident set size (KB) = 2974280
Test 016 cpld_s2sa_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_intel
Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 270.201647
-The maximum resident set size (KB) = 1589376
+The total amount of wall time = 269.199649
+The maximum resident set size (KB) = 1590444
Test 017 cpld_control_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_nowave_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_nowave_noaero_p8_intel
Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 280.223593
-The maximum resident set size (KB) = 1637552
+The total amount of wall time = 273.905327
+The maximum resident set size (KB) = 1641564
Test 018 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_agrid_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_agrid_intel
Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 280.548146
-The maximum resident set size (KB) = 1634332
+The total amount of wall time = 275.468269
+The maximum resident set size (KB) = 1634952
Test 019 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_c48_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_c48_intel
Checking test 020 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 405.385811
-The maximum resident set size (KB) = 2661420
+The total amount of wall time = 405.129974
+The maximum resident set size (KB) = 2659084
Test 020 cpld_control_c48_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_faster_intel
Checking test 021 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 357.379114
-The maximum resident set size (KB) = 3002160
+The total amount of wall time = 357.167762
+The maximum resident set size (KB) = 3001692
Test 021 cpld_control_p8_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_pdlib_p8_intel
Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 918.070525
-The maximum resident set size (KB) = 1614120
+The total amount of wall time = 917.343363
+The maximum resident set size (KB) = 1610376
Test 022 cpld_control_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_pdlib_p8_intel
Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 457.209050
-The maximum resident set size (KB) = 910796
+The total amount of wall time = 457.688844
+The maximum resident set size (KB) = 906796
Test 023 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_pdlib_p8_intel
Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1066.151181
-The maximum resident set size (KB) = 1584748
+The total amount of wall time = 1066.336617
+The maximum resident set size (KB) = 1580956
Test 024 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_pdlib_p8_intel
Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1489.432463
-The maximum resident set size (KB) = 1606768
+The total amount of wall time = 1485.769226
+The maximum resident set size (KB) = 1624436
Test 025 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_flake_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_flake_intel
Checking test 026 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 213.088566
-The maximum resident set size (KB) = 579084
+The total amount of wall time = 212.441596
+The maximum resident set size (KB) = 579916
Test 026 control_flake_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_intel
Checking test 027 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 131.253300
-The maximum resident set size (KB) = 530832
+The total amount of wall time = 130.833019
+The maximum resident set size (KB) = 530100
Test 027 control_CubedSphereGrid_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_parallel_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_parallel_intel
Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 137.026135
-The maximum resident set size (KB) = 533936
+The total amount of wall time = 135.932805
+The maximum resident set size (KB) = 536868
Test 028 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_latlon_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_latlon_intel
Checking test 029 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 132.242121
-The maximum resident set size (KB) = 527860
+The total amount of wall time = 132.064553
+The maximum resident set size (KB) = 528664
Test 029 control_latlon_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_intel
Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.346506
-The maximum resident set size (KB) = 531484
+The total amount of wall time = 134.664278
+The maximum resident set size (KB) = 531584
Test 030 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48_intel
Checking test 031 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 326.434173
-The maximum resident set size (KB) = 723676
+The total amount of wall time = 327.194725
+The maximum resident set size (KB) = 720624
Test 031 control_c48_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48.v2.sfc_intel
Checking test 032 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 327.095293
-The maximum resident set size (KB) = 721836
+The total amount of wall time = 327.193693
+The maximum resident set size (KB) = 722684
Test 032 control_c48.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c192_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c192_intel
Checking test 033 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 527.061586
-The maximum resident set size (KB) = 646348
+The total amount of wall time = 525.939866
+The maximum resident set size (KB) = 649380
Test 033 control_c192_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384_intel
Checking test 034 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 585.491892
-The maximum resident set size (KB) = 966528
+The total amount of wall time = 582.032478
+The maximum resident set size (KB) = 962208
Test 034 control_c384_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384gdas_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384gdas_intel
Checking test 035 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 511.985063
-The maximum resident set size (KB) = 1098576
+The total amount of wall time = 512.289225
+The maximum resident set size (KB) = 1097588
Test 035 control_c384gdas_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_intel
Checking test 036 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 88.729331
-The maximum resident set size (KB) = 538960
+The total amount of wall time = 88.602188
+The maximum resident set size (KB) = 534588
Test 036 control_stochy_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_restart_intel
Checking test 037 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 49.140012
-The maximum resident set size (KB) = 338988
+The total amount of wall time = 49.392489
+The maximum resident set size (KB) = 338832
Test 037 control_stochy_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_intel
Checking test 038 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 83.444075
-The maximum resident set size (KB) = 536084
+The total amount of wall time = 83.969680
+The maximum resident set size (KB) = 534360
Test 038 control_lndp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr4_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr4_intel
Checking test 039 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.544964
-The maximum resident set size (KB) = 528820
+The total amount of wall time = 133.774315
+The maximum resident set size (KB) = 529464
Test 039 control_iovr4_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr5_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr5_intel
Checking test 040 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.469248
-The maximum resident set size (KB) = 530248
+The total amount of wall time = 133.041501
+The maximum resident set size (KB) = 529144
Test 040 control_iovr5_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_intel
Checking test 041 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 162.594535
-The maximum resident set size (KB) = 1505512
+The total amount of wall time = 162.704931
+The maximum resident set size (KB) = 1504752
Test 041 control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8.v2.sfc_intel
Checking test 042 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 163.170161
-The maximum resident set size (KB) = 1505916
+The total amount of wall time = 162.596674
+The maximum resident set size (KB) = 1515040
Test 042 control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_ugwpv1_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_ugwpv1_intel
Checking test 043 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.630728
-The maximum resident set size (KB) = 1517440
+The total amount of wall time = 159.365987
+The maximum resident set size (KB) = 1514192
Test 043 control_p8_ugwpv1_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_intel
Checking test 044 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 89.739651
-The maximum resident set size (KB) = 697064
+The total amount of wall time = 91.789380
+The maximum resident set size (KB) = 697236
Test 044 control_restart_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_noqr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_noqr_p8_intel
Checking test 045 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 162.679467
-The maximum resident set size (KB) = 1497164
+The total amount of wall time = 162.549796
+The maximum resident set size (KB) = 1500736
Test 045 control_noqr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_noqr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_noqr_p8_intel
Checking test 046 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 87.179377
-The maximum resident set size (KB) = 702536
+The total amount of wall time = 88.525005
+The maximum resident set size (KB) = 703548
Test 046 control_restart_noqr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_decomp_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_decomp_p8_intel
Checking test 047 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 165.867667
-The maximum resident set size (KB) = 1506852
+The total amount of wall time = 167.759858
+The maximum resident set size (KB) = 1505848
Test 047 control_decomp_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_2threads_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_2threads_p8_intel
Checking test 048 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 143.236548
-The maximum resident set size (KB) = 1592596
+The total amount of wall time = 143.619906
+The maximum resident set size (KB) = 1599820
Test 048 control_2threads_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_lndp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_lndp_intel
Checking test 049 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 292.399085
-The maximum resident set size (KB) = 1510340
+The total amount of wall time = 292.409155
+The maximum resident set size (KB) = 1511456
Test 049 control_p8_lndp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_rrtmgp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_rrtmgp_intel
Checking test 050 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 218.193873
-The maximum resident set size (KB) = 1569140
+The total amount of wall time = 217.311119
+The maximum resident set size (KB) = 1573920
Test 050 control_p8_rrtmgp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_mynn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_mynn_intel
Checking test 051 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 165.738776
-The maximum resident set size (KB) = 1514804
+The total amount of wall time = 164.852610
+The maximum resident set size (KB) = 1518368
Test 051 control_p8_mynn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/merra2_thompson_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/merra2_thompson_intel
Checking test 052 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 197.007516
-The maximum resident set size (KB) = 1520040
+The total amount of wall time = 197.178167
+The maximum resident set size (KB) = 1523776
Test 052 merra2_thompson_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_intel
Checking test 053 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 283.095339
-The maximum resident set size (KB) = 611600
+The total amount of wall time = 284.982565
+The maximum resident set size (KB) = 615316
Test 053 regional_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_restart_intel
Checking test 054 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 154.086833
-The maximum resident set size (KB) = 786908
+The total amount of wall time = 153.047541
+The maximum resident set size (KB) = 781444
Test 054 regional_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_decomp_intel
Checking test 055 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 298.627065
-The maximum resident set size (KB) = 612448
+The total amount of wall time = 300.722561
+The maximum resident set size (KB) = 615492
Test 055 regional_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2threads_intel
Checking test 056 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 171.233296
-The maximum resident set size (KB) = 670288
+The total amount of wall time = 171.098769
+The maximum resident set size (KB) = 670840
Test 056 regional_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_noquilt_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 277.230072
-The maximum resident set size (KB) = 1156628
+The total amount of wall time = 277.426436
+The maximum resident set size (KB) = 1146112
Test 057 regional_noquilt_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2dwrtdecomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2dwrtdecomp_intel
Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 282.338410
-The maximum resident set size (KB) = 614520
+The total amount of wall time = 282.463321
+The maximum resident set size (KB) = 615608
Test 058 regional_2dwrtdecomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_wofs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_wofs_intel
Checking test 059 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 366.623529
-The maximum resident set size (KB) = 1590696
+The total amount of wall time = 367.031967
+The maximum resident set size (KB) = 1588752
Test 059 regional_wofs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_control_intel
Checking test 060 regional_ifi_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 314.701823
-The maximum resident set size (KB) = 611676
+The total amount of wall time = 315.180067
+The maximum resident set size (KB) = 613612
Test 060 regional_ifi_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_decomp_intel
Checking test 061 regional_ifi_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 331.175442
-The maximum resident set size (KB) = 610184
+The total amount of wall time = 328.839821
+The maximum resident set size (KB) = 609204
Test 061 regional_ifi_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_2threads_intel
Checking test 062 regional_ifi_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 190.343883
-The maximum resident set size (KB) = 665508
+The total amount of wall time = 188.608290
+The maximum resident set size (KB) = 667872
Test 062 regional_ifi_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 405.005427
-The maximum resident set size (KB) = 913724
+The total amount of wall time = 405.866851
+The maximum resident set size (KB) = 915444
Test 063 rap_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 237.962552
-The maximum resident set size (KB) = 1100812
+The total amount of wall time = 238.550921
+The maximum resident set size (KB) = 1092396
Test 064 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 418.604997
-The maximum resident set size (KB) = 913096
+The total amount of wall time = 420.264237
+The maximum resident set size (KB) = 917548
Test 065 rap_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 371.410385
-The maximum resident set size (KB) = 996636
+The total amount of wall time = 370.200398
+The maximum resident set size (KB) = 1002652
Test 066 rap_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 208.044395
-The maximum resident set size (KB) = 786800
+The total amount of wall time = 207.820131
+The maximum resident set size (KB) = 788432
Test 067 rap_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 403.858451
-The maximum resident set size (KB) = 909660
+The total amount of wall time = 403.134456
+The maximum resident set size (KB) = 914648
Test 068 rap_sfcdiff_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 419.720523
-The maximum resident set size (KB) = 910392
+The total amount of wall time = 420.847383
+The maximum resident set size (KB) = 914024
Test 069 rap_sfcdiff_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 304.973740
-The maximum resident set size (KB) = 790356
+The total amount of wall time = 301.582506
+The maximum resident set size (KB) = 787784
Test 070 rap_sfcdiff_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 207.951558
-The maximum resident set size (KB) = 908336
+The total amount of wall time = 206.889690
+The maximum resident set size (KB) = 908760
Test 071 hrrr_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 211.409873
-The maximum resident set size (KB) = 907676
+The total amount of wall time = 211.263517
+The maximum resident set size (KB) = 912908
Test 072 hrrr_control_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 185.758241
-The maximum resident set size (KB) = 985612
+The total amount of wall time = 185.991832
+The maximum resident set size (KB) = 991112
Test 073 hrrr_control_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 108.813453
-The maximum resident set size (KB) = 744520
+The total amount of wall time = 109.222538
+The maximum resident set size (KB) = 740620
Test 074 hrrr_control_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 396.825195
-The maximum resident set size (KB) = 910400
+The total amount of wall time = 396.621180
+The maximum resident set size (KB) = 910212
Test 075 rrfs_v1beta_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 483.383052
-The maximum resident set size (KB) = 1872612
+The total amount of wall time = 484.017399
+The maximum resident set size (KB) = 1871832
Test 076 rrfs_v1nssl_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 469.391748
-The maximum resident set size (KB) = 1859888
+The total amount of wall time = 467.707890
+The maximum resident set size (KB) = 1856820
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 337.101706
-The maximum resident set size (KB) = 606352
+The total amount of wall time = 335.608902
+The maximum resident set size (KB) = 602236
Test 078 control_csawmg_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 332.555390
-The maximum resident set size (KB) = 598396
+The total amount of wall time = 332.680240
+The maximum resident set size (KB) = 598800
Test 079 control_csawmgt_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_intel
Checking test 080 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 119.385910
-The maximum resident set size (KB) = 276576
+The total amount of wall time = 119.195700
+The maximum resident set size (KB) = 276264
Test 080 control_wam_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_faster_intel
Checking test 081 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 157.748353
-The maximum resident set size (KB) = 1500744
+The total amount of wall time = 156.352379
+The maximum resident set size (KB) = 1501296
Test 081 control_p8_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_faster_intel
Checking test 082 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 270.645322
-The maximum resident set size (KB) = 605820
+The total amount of wall time = 270.450826
+The maximum resident set size (KB) = 606332
Test 082 regional_control_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_debug_intel
Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 159.966216
-The maximum resident set size (KB) = 686040
+The total amount of wall time = 159.609238
+The maximum resident set size (KB) = 685224
Test 083 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 158.911460
-The maximum resident set size (KB) = 688080
+The total amount of wall time = 158.309180
+The maximum resident set size (KB) = 686520
Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_debug_intel
Checking test 085 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 179.193481
-The maximum resident set size (KB) = 690436
+The total amount of wall time = 178.698093
+The maximum resident set size (KB) = 692508
Test 085 control_stochy_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_debug_intel
Checking test 086 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.838063
-The maximum resident set size (KB) = 692140
+The total amount of wall time = 160.988509
+The maximum resident set size (KB) = 692676
Test 086 control_lndp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_debug_intel
Checking test 087 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 249.590459
-The maximum resident set size (KB) = 727932
+The total amount of wall time = 251.427731
+The maximum resident set size (KB) = 728560
Test 087 control_csawmg_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_debug_intel
Checking test 088 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 246.113797
-The maximum resident set size (KB) = 731936
+The total amount of wall time = 249.938562
+The maximum resident set size (KB) = 730192
Test 088 control_csawmgt_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_ras_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_ras_debug_intel
Checking test 089 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 164.143203
-The maximum resident set size (KB) = 702056
+The total amount of wall time = 163.200331
+The maximum resident set size (KB) = 700604
Test 089 control_ras_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_diag_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_diag_debug_intel
Checking test 090 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 163.968208
-The maximum resident set size (KB) = 747192
+The total amount of wall time = 162.505064
+The maximum resident set size (KB) = 746632
Test 090 control_diag_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_debug_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_debug_p8_intel
Checking test 091 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 168.845102
-The maximum resident set size (KB) = 1518356
+The total amount of wall time = 168.875227
+The maximum resident set size (KB) = 1516996
Test 091 control_debug_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_debug_intel
Checking test 092 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1047.368932
-The maximum resident set size (KB) = 629320
+The total amount of wall time = 1047.615549
+The maximum resident set size (KB) = 630828
Test 092 regional_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_intel
Checking test 093 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.885194
-The maximum resident set size (KB) = 1072696
+The total amount of wall time = 300.926735
+The maximum resident set size (KB) = 1072836
Test 093 rap_control_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_intel
Checking test 094 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 291.667503
-The maximum resident set size (KB) = 1065048
+The total amount of wall time = 292.336573
+The maximum resident set size (KB) = 1072488
Test 094 hrrr_control_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_gf_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_gf_debug_intel
Checking test 095 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.438010
-The maximum resident set size (KB) = 1071048
+The total amount of wall time = 297.712497
+The maximum resident set size (KB) = 1073072
Test 095 hrrr_gf_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_c3_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_c3_debug_intel
Checking test 096 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.459178
-The maximum resident set size (KB) = 1077248
+The total amount of wall time = 298.914574
+The maximum resident set size (KB) = 1068504
Test 096 hrrr_c3_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_drag_suite_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_drag_suite_debug_intel
Checking test 097 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.352337
-The maximum resident set size (KB) = 1073256
+The total amount of wall time = 298.443865
+The maximum resident set size (KB) = 1076464
Test 097 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_diag_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_diag_debug_intel
Checking test 098 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 309.559939
-The maximum resident set size (KB) = 1156952
+The total amount of wall time = 309.790080
+The maximum resident set size (KB) = 1157412
Test 098 rap_diag_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_cires_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_cires_ugwp_debug_intel
Checking test 099 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.581865
-The maximum resident set size (KB) = 1076260
+The total amount of wall time = 305.445932
+The maximum resident set size (KB) = 1072360
Test 099 rap_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_ugwp_debug_intel
Checking test 100 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.053733
-The maximum resident set size (KB) = 1074768
+The total amount of wall time = 307.400872
+The maximum resident set size (KB) = 1075020
Test 100 rap_unified_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_lndp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_lndp_debug_intel
Checking test 101 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.599292
-The maximum resident set size (KB) = 1075068
+The total amount of wall time = 301.700496
+The maximum resident set size (KB) = 1075720
Test 101 rap_lndp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_progcld_thompson_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_progcld_thompson_debug_intel
Checking test 102 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.156143
-The maximum resident set size (KB) = 1075180
+The total amount of wall time = 299.236826
+The maximum resident set size (KB) = 1071340
Test 102 rap_progcld_thompson_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_debug_intel
Checking test 103 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 291.984446
-The maximum resident set size (KB) = 1073072
+The total amount of wall time = 294.315465
+The maximum resident set size (KB) = 1071780
Test 103 rap_noah_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_debug_intel
Checking test 104 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.922273
-The maximum resident set size (KB) = 1074364
+The total amount of wall time = 298.789750
+The maximum resident set size (KB) = 1070464
Test 104 rap_sfcdiff_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 489.841587
-The maximum resident set size (KB) = 1073724
+The total amount of wall time = 489.562697
+The maximum resident set size (KB) = 1068720
Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_debug_intel
Checking test 106 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.631434
-The maximum resident set size (KB) = 1064756
+The total amount of wall time = 294.369995
+The maximum resident set size (KB) = 1068972
Test 106 rrfs_v1beta_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_clm_lake_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_clm_lake_debug_intel
Checking test 107 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 348.835644
-The maximum resident set size (KB) = 1073756
+The total amount of wall time = 349.446992
+The maximum resident set size (KB) = 1074360
Test 107 rap_clm_lake_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_flake_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_flake_debug_intel
Checking test 108 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.148473
-The maximum resident set size (KB) = 1073584
+The total amount of wall time = 299.718569
+The maximum resident set size (KB) = 1073616
Test 108 rap_flake_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_c96_no_nest_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_c96_no_nest_debug_intel
Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 521.256417
-The maximum resident set size (KB) = 1079824
+The total amount of wall time = 522.815925
+The maximum resident set size (KB) = 1079040
Test 109 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_debug_intel
Checking test 110 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 297.373066
-The maximum resident set size (KB) = 299136
+The total amount of wall time = 297.095886
+The maximum resident set size (KB) = 300960
Test 110 control_wam_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 228.732005
-The maximum resident set size (KB) = 960160
+The total amount of wall time = 227.717135
+The maximum resident set size (KB) = 956628
Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn32_phy32_intel
Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 333.378945
-The maximum resident set size (KB) = 794880
+The total amount of wall time = 334.510732
+The maximum resident set size (KB) = 797840
Test 112 rap_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_dyn32_phy32_intel
Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 175.792607
-The maximum resident set size (KB) = 793124
+The total amount of wall time = 176.871234
+The maximum resident set size (KB) = 790232
Test 113 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_dyn32_phy32_intel
Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 305.521690
-The maximum resident set size (KB) = 860124
+The total amount of wall time = 305.969456
+The maximum resident set size (KB) = 851304
Test 114 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_dyn32_phy32_intel
Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.462393
-The maximum resident set size (KB) = 842856
+The total amount of wall time = 159.583519
+The maximum resident set size (KB) = 842592
Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_dyn32_phy32_intel
Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 183.999423
-The maximum resident set size (KB) = 790656
+The total amount of wall time = 183.269289
+The maximum resident set size (KB) = 791796
Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_dyn32_phy32_intel
Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 250.983474
-The maximum resident set size (KB) = 690988
+The total amount of wall time = 250.430677
+The maximum resident set size (KB) = 691912
Test 117 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_dyn32_phy32_intel
Checking test 118 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 93.245514
-The maximum resident set size (KB) = 672380
+The total amount of wall time = 92.610297
+The maximum resident set size (KB) = 672292
Test 118 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_control_intel
Checking test 119 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 116.682896
-The maximum resident set size (KB) = 1004720
+The total amount of wall time = 116.188624
+The maximum resident set size (KB) = 1004708
Test 119 conus13km_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_2threads_intel
Checking test 120 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 60.302281
-The maximum resident set size (KB) = 1008360
+The total amount of wall time = 58.206397
+The maximum resident set size (KB) = 1008820
Test 120 conus13km_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_restart_mismatch_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_restart_mismatch_intel
Checking test 121 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 70.742648
-The maximum resident set size (KB) = 884664
+The total amount of wall time = 68.898752
+The maximum resident set size (KB) = 882308
Test 121 conus13km_restart_mismatch_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_intel
Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 228.293293
-The maximum resident set size (KB) = 816148
+The total amount of wall time = 228.217239
+The maximum resident set size (KB) = 819428
Test 122 rap_control_dyn64_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_dyn32_phy32_intel
Checking test 123 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.066175
-The maximum resident set size (KB) = 954740
+The total amount of wall time = 292.350903
+The maximum resident set size (KB) = 954032
Test 123 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_dyn32_phy32_intel
Checking test 124 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 286.418924
-The maximum resident set size (KB) = 950464
+The total amount of wall time = 285.466234
+The maximum resident set size (KB) = 951840
Test 124 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_intel
Checking test 125 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 893.354675
-The maximum resident set size (KB) = 1037660
+The total amount of wall time = 893.174876
+The maximum resident set size (KB) = 1037772
Test 125 conus13km_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_qr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_qr_intel
Checking test 126 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 900.523350
-The maximum resident set size (KB) = 708992
+The total amount of wall time = 901.328606
+The maximum resident set size (KB) = 712580
Test 126 conus13km_debug_qr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_2threads_intel
Checking test 127 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 513.846417
-The maximum resident set size (KB) = 1037804
+The total amount of wall time = 512.860826
+The maximum resident set size (KB) = 1039008
Test 127 conus13km_debug_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_radar_tten_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_radar_tten_debug_intel
Checking test 128 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 893.948066
-The maximum resident set size (KB) = 1108164
+The total amount of wall time = 895.827338
+The maximum resident set size (KB) = 1107244
Test 128 conus13km_radar_tten_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_debug_intel
Checking test 129 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.152457
-The maximum resident set size (KB) = 974948
+The total amount of wall time = 299.717674
+The maximum resident set size (KB) = 974716
Test 129 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_intel
Checking test 130 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 345.541689
-The maximum resident set size (KB) = 620640
+The total amount of wall time = 344.518833
+The maximum resident set size (KB) = 618280
Test 130 hafs_regional_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 310.406403
-The maximum resident set size (KB) = 968032
+The total amount of wall time = 312.656069
+The maximum resident set size (KB) = 975072
Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_intel
Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 425.847427
-The maximum resident set size (KB) = 662292
+The total amount of wall time = 427.083376
+The maximum resident set size (KB) = 668296
Test 132 hafs_regional_atm_ocn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_wav_intel
Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 751.546546
-The maximum resident set size (KB) = 693516
+The total amount of wall time = 751.195662
+The maximum resident set size (KB) = 697528
Test 133 hafs_regional_atm_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_wav_intel
Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 934.494992
-The maximum resident set size (KB) = 705504
+The total amount of wall time = 943.834402
+The maximum resident set size (KB) = 706868
Test 134 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_1nest_atm_intel
Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 317.605218
-The maximum resident set size (KB) = 391460
+The total amount of wall time = 316.450239
+The maximum resident set size (KB) = 391032
Test 135 hafs_regional_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_telescopic_2nests_atm_intel
Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 403.518609
-The maximum resident set size (KB) = 412724
+The total amount of wall time = 403.413783
+The maximum resident set size (KB) = 409532
Test 136 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_1nest_atm_intel
Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 170.808951
-The maximum resident set size (KB) = 283520
+The total amount of wall time = 172.569478
+The maximum resident set size (KB) = 284704
Test 137 hafs_global_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_multiple_4nests_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_multiple_4nests_atm_intel
Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 486.950302
-The maximum resident set size (KB) = 374216
+The total amount of wall time = 483.212421
+The maximum resident set size (KB) = 372920
Test 138 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_specified_moving_1nest_atm_intel
Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 219.519626
-The maximum resident set size (KB) = 420804
+The total amount of wall time = 219.339089
+The maximum resident set size (KB) = 416332
Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 206.019923
-The maximum resident set size (KB) = 422012
+The total amount of wall time = 205.521077
+The maximum resident set size (KB) = 418608
Test 140 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 262.971430
-The maximum resident set size (KB) = 491188
+The total amount of wall time = 263.366887
+The maximum resident set size (KB) = 486272
Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_storm_following_1nest_atm_intel
Checking test 142 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 92.909982
-The maximum resident set size (KB) = 315116
+The total amount of wall time = 90.549217
+The maximum resident set size (KB) = 321300
Test 142 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_nested_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_nested_intel
Checking test 143 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 238.952555
-The maximum resident set size (KB) = 677024
+The total amount of wall time = 239.859329
+The maximum resident set size (KB) = 686160
Test 143 gnv1_nested_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 815.677537
-The maximum resident set size (KB) = 507680
+The total amount of wall time = 814.470927
+The maximum resident set size (KB) = 502132
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 516.764418
-The maximum resident set size (KB) = 530996
+The total amount of wall time = 516.576260
+The maximum resident set size (KB) = 530244
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 523.005603
-The maximum resident set size (KB) = 711684
+The total amount of wall time = 528.709762
+The maximum resident set size (KB) = 717224
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 386.878211
-The maximum resident set size (KB) = 710628
+The total amount of wall time = 383.115405
+The maximum resident set size (KB) = 707136
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 391.858057
-The maximum resident set size (KB) = 656576
+The total amount of wall time = 396.820475
+The maximum resident set size (KB) = 657916
Test 148 hafs_regional_docn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_oisst_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 399.051624
-The maximum resident set size (KB) = 638204
+The total amount of wall time = 395.778002
+The maximum resident set size (KB) = 639052
Test 149 hafs_regional_docn_oisst_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_datm_cdeps_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 945.104264
-The maximum resident set size (KB) = 884252
+The total amount of wall time = 945.419293
+The maximum resident set size (KB) = 889112
Test 150 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_intel
Checking test 151 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.743454
-The maximum resident set size (KB) = 749448
+The total amount of wall time = 143.012685
+The maximum resident set size (KB) = 749816
Test 151 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_restart_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_restart_cfsr_intel
Checking test 152 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 86.123321
-The maximum resident set size (KB) = 738424
+The total amount of wall time = 86.156702
+The maximum resident set size (KB) = 739564
Test 152 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_gefs_intel
Checking test 153 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 133.800434
-The maximum resident set size (KB) = 630120
+The total amount of wall time = 134.695417
+The maximum resident set size (KB) = 629496
Test 153 datm_cdeps_control_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_iau_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_iau_gefs_intel
Checking test 154 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 136.625069
-The maximum resident set size (KB) = 629184
+The total amount of wall time = 136.248477
+The maximum resident set size (KB) = 628208
Test 154 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_stochy_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_stochy_gefs_intel
Checking test 155 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 137.621567
-The maximum resident set size (KB) = 635340
+The total amount of wall time = 139.094410
+The maximum resident set size (KB) = 637792
Test 155 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_ciceC_cfsr_intel
Checking test 156 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.699376
-The maximum resident set size (KB) = 748376
+The total amount of wall time = 143.134562
+The maximum resident set size (KB) = 749684
Test 156 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_cfsr_intel
Checking test 157 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.935817
-The maximum resident set size (KB) = 747108
+The total amount of wall time = 143.261497
+The maximum resident set size (KB) = 751332
Test 157 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_gefs_intel
Checking test 158 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 133.823516
-The maximum resident set size (KB) = 627992
+The total amount of wall time = 134.663691
+The maximum resident set size (KB) = 630928
Test 158 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_cfsr_intel
Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 340.971185
-The maximum resident set size (KB) = 596184
+The total amount of wall time = 337.237935
+The maximum resident set size (KB) = 598288
Test 159 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_gefs_intel
Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 336.704980
-The maximum resident set size (KB) = 576776
+The total amount of wall time = 338.187934
+The maximum resident set size (KB) = 581872
Test 160 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_multiple_files_cfsr_intel
Checking test 161 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.802480
-The maximum resident set size (KB) = 747548
+The total amount of wall time = 142.816363
+The maximum resident set size (KB) = 750292
Test 161 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_3072x1536_cfsr_intel
Checking test 162 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 261.008363
-The maximum resident set size (KB) = 2008308
+The total amount of wall time = 261.035149
+The maximum resident set size (KB) = 2010712
Test 162 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_gfs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_gfs_intel
Checking test 163 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 261.373898
-The maximum resident set size (KB) = 2004796
+The total amount of wall time = 262.797641
+The maximum resident set size (KB) = 2002756
Test 163 datm_cdeps_gfs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_faster_intel
Checking test 164 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.413445
-The maximum resident set size (KB) = 750572
+The total amount of wall time = 142.957460
+The maximum resident set size (KB) = 750104
Test 164 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_gswp3_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_gswp3_intel
Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 57.234886
-The maximum resident set size (KB) = 218580
+The total amount of wall time = 57.185813
+The maximum resident set size (KB) = 221464
Test 165 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_intel
Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 58.410388
-The maximum resident set size (KB) = 365616
+The total amount of wall time = 57.839392
+The maximum resident set size (KB) = 369372
Test 166 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_rst_intel
Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 42.190902
-The maximum resident set size (KB) = 369756
+The total amount of wall time = 42.316296
+The maximum resident set size (KB) = 373544
Test 167 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_sbs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_sbs_intel
Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 274.975496
-The maximum resident set size (KB) = 1546104
+The total amount of wall time = 272.868141
+The maximum resident set size (KB) = 1546444
Test 168 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_intel
Checking test 169 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 274.189530
-The maximum resident set size (KB) = 1548268
+The total amount of wall time = 273.885303
+The maximum resident set size (KB) = 1546224
Test 169 control_p8_atmlnd_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_atmlnd_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_atmlnd_intel
Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 153.971567
-The maximum resident set size (KB) = 739256
+The total amount of wall time = 154.539803
+The maximum resident set size (KB) = 746436
Test 170 control_restart_p8_atmlnd_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmwav_control_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmwav_control_noaero_p8_intel
Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 100.416904
-The maximum resident set size (KB) = 1548012
+The total amount of wall time = 99.355693
+The maximum resident set size (KB) = 1542124
Test 171 atmwav_control_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_atmwav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_atmwav_intel
Checking test 172 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 91.242314
-The maximum resident set size (KB) = 543824
+The total amount of wall time = 91.398439
+The maximum resident set size (KB) = 543620
Test 172 control_atmwav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_intel
Checking test 173 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 237.901667
-The maximum resident set size (KB) = 2852976
+The total amount of wall time = 237.485997
+The maximum resident set size (KB) = 2853732
Test 173 atmaero_control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_intel
Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 274.289914
-The maximum resident set size (KB) = 2910532
+The total amount of wall time = 276.392883
+The maximum resident set size (KB) = 2912172
Test 174 atmaero_control_p8_rad_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_micro_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_micro_intel
Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 291.077525
-The maximum resident set size (KB) = 2924636
+The total amount of wall time = 290.078744
+The maximum resident set size (KB) = 2926236
Test 175 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_atmaq_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_atmaq_debug_intel
Checking test 176 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5840,12 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1320.749454
-The maximum resident set size (KB) = 4429316
+The total amount of wall time = 1314.650533
+The maximum resident set size (KB) = 4446796
Test 176 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Fri Feb 9 19:28:48 UTC 2024
-Elapsed time: 01h:54m:45s. Have a nice day!
+Tue Feb 13 16:09:34 UTC 2024
+Elapsed time: 02h:01m:44s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 52cd1218aa..94d295595d 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,60 +1,60 @@
-Thu 08 Feb 2024 07:35:51 PM MST
+Mon 12 Feb 2024 01:36:18 PM MST
Start Regression test
-Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_intel elapsed time 648 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 495 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 762 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 755 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 470 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 146 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 841 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 987 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 435 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1153 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 928 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 723 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 874 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 865 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 1185 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1263 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1159 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1136 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile atmaero_intel elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_intel elapsed time 680 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 1398 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 817 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 780 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 344 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 516 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 507 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 165 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 899 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 1050 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 457 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 1174 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 972 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 722 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 344 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 1189 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1244 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 589 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 1186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 545 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 546 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile wam_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_mixedmode_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 283.116339
-The maximum resident set size (KB) = 3072688
+The total amount of wall time = 288.602343
+The maximum resident set size (KB) = 3073956
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 813.943705
-The maximum resident set size (KB) = 1681460
+The total amount of wall time = 814.196932
+The maximum resident set size (KB) = 1687380
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_iau_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 897.250202
-The maximum resident set size (KB) = 1817348
+The total amount of wall time = 937.377291
+The maximum resident set size (KB) = 1823880
-Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2
+Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 422.482839
-The maximum resident set size (KB) = 955876
+The total amount of wall time = 476.203031
+The maximum resident set size (KB) = 952916
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 929.949945
-The maximum resident set size (KB) = 1653052
+The total amount of wall time = 933.145973
+The maximum resident set size (KB) = 1655220
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1278.854488
-The maximum resident set size (KB) = 1694924
+The total amount of wall time = 1287.378206
+The maximum resident set size (KB) = 1703508
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 325.480126
-The maximum resident set size (KB) = 3092824
+The total amount of wall time = 331.920058
+The maximum resident set size (KB) = 3095304
Test 007 cpld_control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 329.186547
-The maximum resident set size (KB) = 3096724
+The total amount of wall time = 332.283151
+The maximum resident set size (KB) = 3095476
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 187.927131
-The maximum resident set size (KB) = 3150752
+The total amount of wall time = 196.217077
+The maximum resident set size (KB) = 3149996
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_qr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 324.802251
-The maximum resident set size (KB) = 3129004
+The total amount of wall time = 325.627887
+The maximum resident set size (KB) = 3128056
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_qr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 188.573617
-The maximum resident set size (KB) = 3177364
+The total amount of wall time = 223.557838
+The maximum resident set size (KB) = 3181580
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_decomp_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_decomp_p8_intel
Checking test 012 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -829,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 323.111015
-The maximum resident set size (KB) = 3092532
+The total amount of wall time = 325.031693
+The maximum resident set size (KB) = 3090352
Test 012 cpld_decomp_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_p8_intel
Checking test 013 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -889,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 262.378434
-The maximum resident set size (KB) = 3387196
+The total amount of wall time = 268.398233
+The maximum resident set size (KB) = 3386300
Test 013 cpld_mpi_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_ciceC_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_ciceC_p8_intel
Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -961,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 324.817171
-The maximum resident set size (KB) = 3101008
+The total amount of wall time = 328.715085
+The maximum resident set size (KB) = 3102656
Test 014 cpld_control_ciceC_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c192_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c192_p8_intel
Checking test 015 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 514.049625
-The maximum resident set size (KB) = 3638412
+The total amount of wall time = 588.682635
+The maximum resident set size (KB) = 3639424
Test 015 cpld_control_c192_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_c192_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_c192_p8_intel
Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1081,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 336.915721
-The maximum resident set size (KB) = 3614852
+The total amount of wall time = 446.236767
+The maximum resident set size (KB) = 3617112
Test 016 cpld_restart_c192_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_s2sa_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_s2sa_p8_intel
Checking test 017 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1139,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 302.029895
-The maximum resident set size (KB) = 3070504
+The total amount of wall time = 309.203029
+The maximum resident set size (KB) = 3066608
Test 017 cpld_s2sa_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_intel
Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1210,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 241.657851
-The maximum resident set size (KB) = 1681732
+The total amount of wall time = 241.758081
+The maximum resident set size (KB) = 1678600
Test 018 cpld_control_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_nowave_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_nowave_noaero_p8_intel
Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1279,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 245.482355
-The maximum resident set size (KB) = 1723964
+The total amount of wall time = 247.043372
+The maximum resident set size (KB) = 1723372
Test 019 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_p8_intel
Checking test 020 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1339,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 452.200683
-The maximum resident set size (KB) = 3151076
+The total amount of wall time = 448.087267
+The maximum resident set size (KB) = 3146828
Test 020 cpld_debug_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_noaero_p8_intel
Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1398,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 301.799048
-The maximum resident set size (KB) = 1701056
+The total amount of wall time = 298.763897
+The maximum resident set size (KB) = 1697424
Test 021 cpld_debug_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_agrid_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_agrid_intel
Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1467,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 243.747092
-The maximum resident set size (KB) = 1731124
+The total amount of wall time = 243.589641
+The maximum resident set size (KB) = 1724812
Test 022 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c48_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c48_intel
Checking test 023 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1524,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 386.919764
-The maximum resident set size (KB) = 2673324
+The total amount of wall time = 388.455720
+The maximum resident set size (KB) = 2665152
Test 023 cpld_control_c48_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1595,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 827.704808
-The maximum resident set size (KB) = 1698132
+The total amount of wall time = 830.770867
+The maximum resident set size (KB) = 1697800
Test 024 cpld_control_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1654,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 427.614309
-The maximum resident set size (KB) = 1016316
+The total amount of wall time = 477.982337
+The maximum resident set size (KB) = 1012048
Test 025 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1725,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 947.559386
-The maximum resident set size (KB) = 1670052
+The total amount of wall time = 957.689695
+The maximum resident set size (KB) = 1668528
Test 026 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1784,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1346.192107
-The maximum resident set size (KB) = 1711564
+The total amount of wall time = 1352.203651
+The maximum resident set size (KB) = 1713100
-Test 027 cpld_debug_pdlib_p8_intel PASS Tries: 2
+Test 027 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_flake_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1802,14 +1802,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 195.138807
-The maximum resident set size (KB) = 667604
+The total amount of wall time = 202.034991
+The maximum resident set size (KB) = 665388
Test 028 control_flake_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1836,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 114.646694
-The maximum resident set size (KB) = 617372
+The total amount of wall time = 124.441774
+The maximum resident set size (KB) = 615936
Test 029 control_CubedSphereGrid_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1858,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 120.851852
-The maximum resident set size (KB) = 622264
+The total amount of wall time = 137.730464
+The maximum resident set size (KB) = 620336
Test 030 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_latlon_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1876,14 +1876,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 115.032899
-The maximum resident set size (KB) = 620848
+The total amount of wall time = 171.127843
+The maximum resident set size (KB) = 618024
Test 031 control_latlon_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1894,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 116.134178
-The maximum resident set size (KB) = 617140
+The total amount of wall time = 136.390977
+The maximum resident set size (KB) = 621092
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1940,14 +1940,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 309.345123
-The maximum resident set size (KB) = 729544
+The total amount of wall time = 310.765956
+The maximum resident set size (KB) = 729684
Test 033 control_c48_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1986,14 +1986,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 310.068806
-The maximum resident set size (KB) = 729312
+The total amount of wall time = 320.032655
+The maximum resident set size (KB) = 727880
Test 034 control_c48.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c192_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2004,14 +2004,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 459.944531
-The maximum resident set size (KB) = 734336
+The total amount of wall time = 491.553781
+The maximum resident set size (KB) = 738028
-Test 035 control_c192_intel PASS Tries: 2
+Test 035 control_c192_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2022,14 +2022,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 477.700454
-The maximum resident set size (KB) = 1062916
+The total amount of wall time = 765.548261
+The maximum resident set size (KB) = 1053572
-Test 036 control_c384_intel PASS Tries: 2
+Test 036 control_c384_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384gdas_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2072,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 424.307740
-The maximum resident set size (KB) = 1199572
+The total amount of wall time = 511.921395
+The maximum resident set size (KB) = 1195448
Test 037 control_c384gdas_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2090,28 +2090,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 75.804766
-The maximum resident set size (KB) = 623532
+The total amount of wall time = 84.368241
+The maximum resident set size (KB) = 622972
Test 038 control_stochy_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 41.742004
-The maximum resident set size (KB) = 436716
+The total amount of wall time = 55.213178
+The maximum resident set size (KB) = 436564
Test 039 control_stochy_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2122,14 +2122,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 71.450324
-The maximum resident set size (KB) = 620356
+The total amount of wall time = 117.043323
+The maximum resident set size (KB) = 620120
Test 040 control_lndp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr4_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2144,14 +2144,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 115.173531
-The maximum resident set size (KB) = 618900
+The total amount of wall time = 167.870924
+The maximum resident set size (KB) = 615808
-Test 041 control_iovr4_intel PASS Tries: 2
+Test 041 control_iovr4_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr5_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2166,14 +2166,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 115.437444
-The maximum resident set size (KB) = 617796
+The total amount of wall time = 132.780874
+The maximum resident set size (KB) = 616668
Test 042 control_iovr5_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2220,14 +2220,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 139.985306
-The maximum resident set size (KB) = 1599704
+The total amount of wall time = 151.182866
+The maximum resident set size (KB) = 1592816
Test 043 control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2274,14 +2274,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 140.002842
-The maximum resident set size (KB) = 1599864
+The total amount of wall time = 151.435672
+The maximum resident set size (KB) = 1601420
Test 044 control_p8.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_ugwpv1_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2328,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 139.353776
-The maximum resident set size (KB) = 1597044
+The total amount of wall time = 156.573410
+The maximum resident set size (KB) = 1601464
Test 045 control_p8_ugwpv1_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2374,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 75.146615
-The maximum resident set size (KB) = 791972
+The total amount of wall time = 82.133288
+The maximum resident set size (KB) = 791908
Test 046 control_restart_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_noqr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2428,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 139.945671
-The maximum resident set size (KB) = 1576984
+The total amount of wall time = 144.799167
+The maximum resident set size (KB) = 1585932
Test 047 control_noqr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_noqr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2474,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 73.537670
-The maximum resident set size (KB) = 799724
+The total amount of wall time = 77.176710
+The maximum resident set size (KB) = 796552
Test 048 control_restart_noqr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_decomp_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2524,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 144.155448
-The maximum resident set size (KB) = 1593868
+The total amount of wall time = 160.659227
+The maximum resident set size (KB) = 1590344
Test 049 control_decomp_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_lndp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_lndp_intel
Checking test 050 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2550,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 252.377982
-The maximum resident set size (KB) = 1600412
+The total amount of wall time = 288.334525
+The maximum resident set size (KB) = 1590840
Test 050 control_p8_lndp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_rrtmgp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_rrtmgp_intel
Checking test 051 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2604,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 189.306214
-The maximum resident set size (KB) = 1655904
+The total amount of wall time = 314.782282
+The maximum resident set size (KB) = 1648472
Test 051 control_p8_rrtmgp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_mynn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_mynn_intel
Checking test 052 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2658,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 141.528162
-The maximum resident set size (KB) = 1600840
+The total amount of wall time = 204.067715
+The maximum resident set size (KB) = 1600768
Test 052 control_p8_mynn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/merra2_thompson_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/merra2_thompson_intel
Checking test 053 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2712,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 169.983004
-The maximum resident set size (KB) = 1598496
+The total amount of wall time = 209.558273
+The maximum resident set size (KB) = 1605820
Test 053 merra2_thompson_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_intel
Checking test 054 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2730,28 +2730,28 @@ Checking test 054 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 261.109765
-The maximum resident set size (KB) = 626132
+The total amount of wall time = 309.793229
+The maximum resident set size (KB) = 626840
Test 054 regional_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_restart_intel
Checking test 055 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 140.810195
-The maximum resident set size (KB) = 795928
+The total amount of wall time = 160.267760
+The maximum resident set size (KB) = 793720
Test 055 regional_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_decomp_intel
Checking test 056 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2762,14 +2762,14 @@ Checking test 056 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 273.113666
-The maximum resident set size (KB) = 625916
+The total amount of wall time = 360.013638
+The maximum resident set size (KB) = 627252
Test 056 regional_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_noquilt_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2777,28 +2777,28 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 254.863225
-The maximum resident set size (KB) = 1157048
+The total amount of wall time = 318.554664
+The maximum resident set size (KB) = 1156508
Test 057 regional_noquilt_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_netcdf_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_netcdf_parallel_intel
Checking test 058 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 256.349682
-The maximum resident set size (KB) = 622116
+The total amount of wall time = 305.720100
+The maximum resident set size (KB) = 620564
Test 058 regional_netcdf_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_2dwrtdecomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_2dwrtdecomp_intel
Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2809,14 +2809,14 @@ Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 262.120628
-The maximum resident set size (KB) = 627004
+The total amount of wall time = 308.398466
+The maximum resident set size (KB) = 626556
Test 059 regional_2dwrtdecomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_wofs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_wofs_intel
Checking test 060 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2827,14 +2827,14 @@ Checking test 060 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 322.736964
-The maximum resident set size (KB) = 1597032
+The total amount of wall time = 395.219570
+The maximum resident set size (KB) = 1596240
Test 060 regional_wofs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_intel
Checking test 061 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2881,14 +2881,14 @@ Checking test 061 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 355.672496
-The maximum resident set size (KB) = 1008760
+The total amount of wall time = 417.139771
+The maximum resident set size (KB) = 1007760
Test 061 rap_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_intel
Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2899,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 206.335463
-The maximum resident set size (KB) = 1193964
+The total amount of wall time = 205.921153
+The maximum resident set size (KB) = 1195768
Test 062 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_decomp_intel
Checking test 063 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2953,14 +2953,14 @@ Checking test 063 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 369.997382
-The maximum resident set size (KB) = 1007820
+The total amount of wall time = 499.315620
+The maximum resident set size (KB) = 1006488
Test 063 rap_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_intel
Checking test 064 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2999,14 +2999,14 @@ Checking test 064 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 182.773442
-The maximum resident set size (KB) = 881852
+The total amount of wall time = 227.518708
+The maximum resident set size (KB) = 878812
Test 064 rap_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_intel
Checking test 065 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3053,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 356.264052
-The maximum resident set size (KB) = 1005568
+The total amount of wall time = 387.246909
+The maximum resident set size (KB) = 1007368
Test 065 rap_sfcdiff_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_decomp_intel
Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3107,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 371.098443
-The maximum resident set size (KB) = 1008792
+The total amount of wall time = 456.217018
+The maximum resident set size (KB) = 1007816
Test 066 rap_sfcdiff_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_restart_intel
Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 265.527425
-The maximum resident set size (KB) = 884084
+The total amount of wall time = 294.481127
+The maximum resident set size (KB) = 881392
Test 067 rap_sfcdiff_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_intel
Checking test 068 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 068 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 183.260712
-The maximum resident set size (KB) = 1001448
+The total amount of wall time = 187.954364
+The maximum resident set size (KB) = 1003864
Test 068 hrrr_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_intel
Checking test 069 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3261,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 186.244718
-The maximum resident set size (KB) = 1004132
+The total amount of wall time = 205.126873
+The maximum resident set size (KB) = 1006420
Test 069 hrrr_control_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_2threads_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_2threads_intel
Checking test 070 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3315,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 161.179313
-The maximum resident set size (KB) = 1087204
+The total amount of wall time = 160.413069
+The maximum resident set size (KB) = 1087428
Test 070 hrrr_control_2threads_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_intel
Checking test 071 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 95.552484
-The maximum resident set size (KB) = 837104
+The total amount of wall time = 102.313442
+The maximum resident set size (KB) = 835272
Test 071 hrrr_control_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_intel
Checking test 072 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3383,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 347.136479
-The maximum resident set size (KB) = 1003412
+The total amount of wall time = 403.713541
+The maximum resident set size (KB) = 996680
Test 072 rrfs_v1beta_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_intel
Checking test 073 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3405,14 +3405,14 @@ Checking test 073 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 431.703119
-The maximum resident set size (KB) = 1960876
+The total amount of wall time = 482.397635
+The maximum resident set size (KB) = 1960020
Test 073 rrfs_v1nssl_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_nohailnoccn_intel
Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3427,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 413.903843
-The maximum resident set size (KB) = 1950852
+The total amount of wall time = 419.172514
+The maximum resident set size (KB) = 1949072
Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_intel
Checking test 075 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3445,14 +3445,14 @@ Checking test 075 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 300.668152
-The maximum resident set size (KB) = 690452
+The total amount of wall time = 305.898667
+The maximum resident set size (KB) = 689692
Test 075 control_csawmg_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_intel
Checking test 076 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3463,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 298.459430
-The maximum resident set size (KB) = 692876
+The total amount of wall time = 306.089390
+The maximum resident set size (KB) = 689164
Test 076 control_csawmgt_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_intel
Checking test 077 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3481,26 +3481,26 @@ Checking test 077 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 162.560573
-The maximum resident set size (KB) = 654488
+The total amount of wall time = 163.040855
+The maximum resident set size (KB) = 654060
Test 077 control_ras_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_intel
Checking test 078 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 105.149311
-The maximum resident set size (KB) = 383768
+The total amount of wall time = 104.626584
+The maximum resident set size (KB) = 381208
Test 078 control_wam_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_faster_intel
Checking test 079 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3547,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 132.858699
-The maximum resident set size (KB) = 1594508
+The total amount of wall time = 144.889882
+The maximum resident set size (KB) = 1595648
Test 079 control_p8_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_faster_intel
Checking test 080 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3565,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 246.277595
-The maximum resident set size (KB) = 624140
+The total amount of wall time = 323.096184
+The maximum resident set size (KB) = 629380
Test 080 regional_control_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_debug_intel
Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3599,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 143.051336
-The maximum resident set size (KB) = 792764
+The total amount of wall time = 145.177422
+The maximum resident set size (KB) = 795096
Test 081 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 141.115260
-The maximum resident set size (KB) = 791528
+The total amount of wall time = 141.945284
+The maximum resident set size (KB) = 795288
Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_debug_intel
Checking test 083 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.055984
-The maximum resident set size (KB) = 801540
+The total amount of wall time = 167.277840
+The maximum resident set size (KB) = 801296
Test 083 control_stochy_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_debug_intel
Checking test 084 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 147.219860
-The maximum resident set size (KB) = 796288
+The total amount of wall time = 150.997387
+The maximum resident set size (KB) = 801992
Test 084 control_lndp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_debug_intel
Checking test 085 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 224.749099
-The maximum resident set size (KB) = 833248
+The total amount of wall time = 225.445747
+The maximum resident set size (KB) = 837068
Test 085 control_csawmg_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_debug_intel
Checking test 086 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 220.319064
-The maximum resident set size (KB) = 835732
+The total amount of wall time = 225.115468
+The maximum resident set size (KB) = 836848
Test 086 control_csawmgt_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_debug_intel
Checking test 087 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 145.920210
-The maximum resident set size (KB) = 803944
+The total amount of wall time = 148.890614
+The maximum resident set size (KB) = 808844
Test 087 control_ras_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_diag_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_diag_debug_intel
Checking test 088 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 148.018536
-The maximum resident set size (KB) = 852472
+The total amount of wall time = 152.891124
+The maximum resident set size (KB) = 854444
Test 088 control_diag_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_debug_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_debug_p8_intel
Checking test 089 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 150.318865
-The maximum resident set size (KB) = 1629036
+The total amount of wall time = 164.320659
+The maximum resident set size (KB) = 1632164
Test 089 control_debug_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_debug_intel
Checking test 090 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 945.852804
-The maximum resident set size (KB) = 661600
+The total amount of wall time = 957.580876
+The maximum resident set size (KB) = 665856
Test 090 regional_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_intel
Checking test 091 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 267.242571
-The maximum resident set size (KB) = 1179124
+The total amount of wall time = 280.137450
+The maximum resident set size (KB) = 1183164
Test 091 rap_control_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_intel
Checking test 092 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.562304
-The maximum resident set size (KB) = 1174500
+The total amount of wall time = 267.374479
+The maximum resident set size (KB) = 1173532
Test 092 hrrr_control_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_gf_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_gf_debug_intel
Checking test 093 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 271.039593
-The maximum resident set size (KB) = 1176192
+The total amount of wall time = 297.902826
+The maximum resident set size (KB) = 1179168
Test 093 hrrr_gf_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_c3_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_c3_debug_intel
Checking test 094 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 269.103612
-The maximum resident set size (KB) = 1181928
+The total amount of wall time = 270.386634
+The maximum resident set size (KB) = 1183592
Test 094 hrrr_c3_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_drag_suite_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_drag_suite_debug_intel
Checking test 095 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.926176
-The maximum resident set size (KB) = 1180024
+The total amount of wall time = 270.302507
+The maximum resident set size (KB) = 1182768
Test 095 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_diag_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_diag_debug_intel
Checking test 096 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 285.393634
-The maximum resident set size (KB) = 1262036
+The total amount of wall time = 283.259906
+The maximum resident set size (KB) = 1266396
Test 096 rap_diag_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_cires_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_cires_ugwp_debug_intel
Checking test 097 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 273.169079
-The maximum resident set size (KB) = 1179424
+The total amount of wall time = 275.841578
+The maximum resident set size (KB) = 1182244
Test 097 rap_cires_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_ugwp_debug_intel
Checking test 098 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 281.839362
-The maximum resident set size (KB) = 1181140
+The total amount of wall time = 273.776376
+The maximum resident set size (KB) = 1181452
Test 098 rap_unified_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_lndp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_lndp_debug_intel
Checking test 099 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 269.484551
-The maximum resident set size (KB) = 1180268
+The total amount of wall time = 270.128390
+The maximum resident set size (KB) = 1179364
Test 099 rap_lndp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_progcld_thompson_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_progcld_thompson_debug_intel
Checking test 100 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 269.486570
-The maximum resident set size (KB) = 1179744
+The total amount of wall time = 268.873664
+The maximum resident set size (KB) = 1179612
Test 100 rap_progcld_thompson_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_debug_intel
Checking test 101 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 261.635725
-The maximum resident set size (KB) = 1177000
+The total amount of wall time = 268.413581
+The maximum resident set size (KB) = 1176872
Test 101 rap_noah_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_debug_intel
Checking test 102 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.662886
-The maximum resident set size (KB) = 1178260
+The total amount of wall time = 267.450367
+The maximum resident set size (KB) = 1181404
Test 102 rap_sfcdiff_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 440.230638
-The maximum resident set size (KB) = 1175020
+The total amount of wall time = 437.998968
+The maximum resident set size (KB) = 1178544
Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_debug_intel
Checking test 104 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 264.357214
-The maximum resident set size (KB) = 1175180
+The total amount of wall time = 267.471450
+The maximum resident set size (KB) = 1175524
Test 104 rrfs_v1beta_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_clm_lake_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_clm_lake_debug_intel
Checking test 105 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 335.581738
-The maximum resident set size (KB) = 1183080
+The total amount of wall time = 336.511402
+The maximum resident set size (KB) = 1181144
Test 105 rap_clm_lake_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_flake_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_flake_debug_intel
Checking test 106 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 274.315894
-The maximum resident set size (KB) = 1178156
+The total amount of wall time = 268.971392
+The maximum resident set size (KB) = 1183748
Test 106 rap_flake_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_c96_no_nest_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_c96_no_nest_debug_intel
Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -3997,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 479.027383
-The maximum resident set size (KB) = 1179752
+The total amount of wall time = 465.482207
+The maximum resident set size (KB) = 1182972
Test 107 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_debug_intel
Checking test 108 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 277.006958
-The maximum resident set size (KB) = 417856
+The total amount of wall time = 274.345175
+The maximum resident set size (KB) = 422312
Test 108 control_wam_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4027,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 193.741344
-The maximum resident set size (KB) = 1058576
+The total amount of wall time = 212.965632
+The maximum resident set size (KB) = 1057376
Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn32_phy32_intel
Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4081,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 298.409683
-The maximum resident set size (KB) = 883064
+The total amount of wall time = 297.864120
+The maximum resident set size (KB) = 881616
Test 110 rap_control_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_dyn32_phy32_intel
Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4135,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 156.130259
-The maximum resident set size (KB) = 879588
+The total amount of wall time = 156.884689
+The maximum resident set size (KB) = 881588
Test 111 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_dyn32_phy32_intel
Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4189,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 165.224962
-The maximum resident set size (KB) = 880760
+The total amount of wall time = 165.626405
+The maximum resident set size (KB) = 880152
Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_dyn32_phy32_intel
Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4235,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 222.610543
-The maximum resident set size (KB) = 795532
+The total amount of wall time = 222.089931
+The maximum resident set size (KB) = 795168
Test 113 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_dyn32_phy32_intel
Checking test 114 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 83.400520
-The maximum resident set size (KB) = 776720
+The total amount of wall time = 83.327707
+The maximum resident set size (KB) = 774912
Test 114 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_control_intel
Checking test 115 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4272,40 +4272,40 @@ Checking test 115 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 102.604974
-The maximum resident set size (KB) = 1084384
+The total amount of wall time = 106.401035
+The maximum resident set size (KB) = 1085956
Test 115 conus13km_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_2threads_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_2threads_intel
Checking test 116 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 45.782977
-The maximum resident set size (KB) = 1085228
+The total amount of wall time = 48.632565
+The maximum resident set size (KB) = 1365176
Test 116 conus13km_2threads_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_restart_mismatch_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_restart_mismatch_intel
Checking test 117 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 59.109964
-The maximum resident set size (KB) = 977056
+The total amount of wall time = 61.284476
+The maximum resident set size (KB) = 975664
Test 117 conus13km_restart_mismatch_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_intel
Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4352,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 210.999676
-The maximum resident set size (KB) = 907660
+The total amount of wall time = 210.883561
+The maximum resident set size (KB) = 905916
Test 118 rap_control_dyn64_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_dyn32_phy32_intel
Checking test 119 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 259.602129
-The maximum resident set size (KB) = 1054716
+The total amount of wall time = 260.468033
+The maximum resident set size (KB) = 1052496
Test 119 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_dyn32_phy32_intel
Checking test 120 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 260.765049
-The maximum resident set size (KB) = 1050544
+The total amount of wall time = 254.759186
+The maximum resident set size (KB) = 1052188
Test 120 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_debug_intel
Checking test 121 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4401,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 790.038482
-The maximum resident set size (KB) = 1129896
+The total amount of wall time = 784.251934
+The maximum resident set size (KB) = 1130368
Test 121 conus13km_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_radar_tten_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_radar_tten_debug_intel
Checking test 122 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 791.513741
-The maximum resident set size (KB) = 1197900
+The total amount of wall time = 787.499656
+The maximum resident set size (KB) = 1197980
Test 122 conus13km_radar_tten_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_debug_intel
Checking test 123 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 263.106216
-The maximum resident set size (KB) = 1080332
+The total amount of wall time = 268.565882
+The maximum resident set size (KB) = 1083652
Test 123 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_intel
Checking test 124 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 259.304606
-The maximum resident set size (KB) = 720072
+The total amount of wall time = 273.589214
+The maximum resident set size (KB) = 716596
Test 124 hafs_regional_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 292.917706
-The maximum resident set size (KB) = 1065116
+The total amount of wall time = 312.596870
+The maximum resident set size (KB) = 1067424
Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_intel
Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4470,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 373.049608
-The maximum resident set size (KB) = 775664
+The total amount of wall time = 379.850360
+The maximum resident set size (KB) = 778160
Test 126 hafs_regional_atm_ocn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_wav_intel
Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4486,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 644.261762
-The maximum resident set size (KB) = 790424
+The total amount of wall time = 646.873869
+The maximum resident set size (KB) = 791380
Test 127 hafs_regional_atm_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_wav_intel
Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4504,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 709.546700
-The maximum resident set size (KB) = 810576
+The total amount of wall time = 716.296851
+The maximum resident set size (KB) = 807876
Test 128 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_1nest_atm_intel
Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4533,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 261.969825
-The maximum resident set size (KB) = 478496
+The total amount of wall time = 266.794227
+The maximum resident set size (KB) = 1365176
Test 129 hafs_regional_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_telescopic_2nests_atm_intel
Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4549,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 332.239233
-The maximum resident set size (KB) = 494656
+The total amount of wall time = 333.562804
+The maximum resident set size (KB) = 497284
Test 130 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_1nest_atm_intel
Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4603,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 127.034352
-The maximum resident set size (KB) = 392964
+The total amount of wall time = 132.995751
+The maximum resident set size (KB) = 392268
Test 131 hafs_global_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_multiple_4nests_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_multiple_4nests_atm_intel
Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4692,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 364.922319
-The maximum resident set size (KB) = 458960
+The total amount of wall time = 370.955412
+The maximum resident set size (KB) = 456392
Test 132 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_specified_moving_1nest_atm_intel
Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4708,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 182.517862
-The maximum resident set size (KB) = 512004
+The total amount of wall time = 189.016256
+The maximum resident set size (KB) = 511904
Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_intel
Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4737,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 170.141584
-The maximum resident set size (KB) = 512536
+The total amount of wall time = 173.741243
+The maximum resident set size (KB) = 1233084
Test 134 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4753,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 213.809751
-The maximum resident set size (KB) = 591644
+The total amount of wall time = 217.563287
+The maximum resident set size (KB) = 586808
Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_storm_following_1nest_atm_intel
Checking test 136 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 62.314111
-The maximum resident set size (KB) = 422892
+The total amount of wall time = 64.779542
+The maximum resident set size (KB) = 427384
Test 136 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_nested_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_nested_intel
Checking test 137 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4821,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 188.533083
-The maximum resident set size (KB) = 789572
+The total amount of wall time = 192.661897
+The maximum resident set size (KB) = 784416
Test 137 gnv1_nested_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 704.003045
-The maximum resident set size (KB) = 607608
+The total amount of wall time = 732.193463
+The maximum resident set size (KB) = 611776
Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4853,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 412.863336
-The maximum resident set size (KB) = 627584
+The total amount of wall time = 419.068818
+The maximum resident set size (KB) = 626428
Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4871,14 +4871,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 422.899779
-The maximum resident set size (KB) = 682664
+The total amount of wall time = 422.708319
+The maximum resident set size (KB) = 681652
Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -4888,14 +4888,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 304.944588
-The maximum resident set size (KB) = 673216
+The total amount of wall time = 307.553309
+The maximum resident set size (KB) = 673860
Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_intel
Checking test 142 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4903,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 319.054045
-The maximum resident set size (KB) = 748412
+The total amount of wall time = 320.902519
+The maximum resident set size (KB) = 749688
Test 142 hafs_regional_docn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_oisst_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_oisst_intel
Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4918,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 322.042774
-The maximum resident set size (KB) = 733540
+The total amount of wall time = 325.503921
+The maximum resident set size (KB) = 735064
Test 143 hafs_regional_docn_oisst_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_datm_cdeps_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_datm_cdeps_intel
Checking test 144 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 958.298657
-The maximum resident set size (KB) = 892616
+The total amount of wall time = 958.132693
+The maximum resident set size (KB) = 892076
Test 144 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_intel
Checking test 145 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 140.831670
-The maximum resident set size (KB) = 762300
+The total amount of wall time = 141.793267
+The maximum resident set size (KB) = 760576
Test 145 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_restart_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_restart_cfsr_intel
Checking test 146 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 85.601070
-The maximum resident set size (KB) = 747924
+The total amount of wall time = 85.265694
+The maximum resident set size (KB) = 749492
Test 146 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_gefs_intel
Checking test 147 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 133.957403
-The maximum resident set size (KB) = 640304
+The total amount of wall time = 134.524110
+The maximum resident set size (KB) = 641140
Test 147 datm_cdeps_control_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_iau_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_iau_gefs_intel
Checking test 148 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 136.465227
-The maximum resident set size (KB) = 644380
+The total amount of wall time = 136.665812
+The maximum resident set size (KB) = 639816
Test 148 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_stochy_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_stochy_gefs_intel
Checking test 149 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 135.448355
-The maximum resident set size (KB) = 640180
+The total amount of wall time = 137.937302
+The maximum resident set size (KB) = 639876
Test 149 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_ciceC_cfsr_intel
Checking test 150 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.260860
-The maximum resident set size (KB) = 762244
+The total amount of wall time = 143.269525
+The maximum resident set size (KB) = 760124
Test 150 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_cfsr_intel
Checking test 151 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.080187
-The maximum resident set size (KB) = 761716
+The total amount of wall time = 142.730302
+The maximum resident set size (KB) = 760396
Test 151 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_gefs_intel
Checking test 152 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 132.791236
-The maximum resident set size (KB) = 641664
+The total amount of wall time = 137.415426
+The maximum resident set size (KB) = 640580
Test 152 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_cfsr_intel
Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5051,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 329.380629
-The maximum resident set size (KB) = 692224
+The total amount of wall time = 330.260535
+The maximum resident set size (KB) = 689340
Test 153 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_gefs_intel
Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5067,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 325.150991
-The maximum resident set size (KB) = 672096
+The total amount of wall time = 329.095164
+The maximum resident set size (KB) = 674624
Test 154 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_multiple_files_cfsr_intel
Checking test 155 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 141.004904
-The maximum resident set size (KB) = 761272
+The total amount of wall time = 141.616972
+The maximum resident set size (KB) = 762216
Test 155 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_3072x1536_cfsr_intel
Checking test 156 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 228.438023
-The maximum resident set size (KB) = 2023728
+The total amount of wall time = 228.600162
+The maximum resident set size (KB) = 2022960
Test 156 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_gfs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_gfs_intel
Checking test 157 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 226.771550
-The maximum resident set size (KB) = 2022364
+The total amount of wall time = 228.079068
+The maximum resident set size (KB) = 2020520
Test 157 datm_cdeps_gfs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_debug_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_debug_cfsr_intel
Checking test 158 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-The total amount of wall time = 299.324383
-The maximum resident set size (KB) = 746840
+The total amount of wall time = 300.854818
+The maximum resident set size (KB) = 745600
Test 158 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_faster_intel
Checking test 159 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.292989
-The maximum resident set size (KB) = 761924
+The total amount of wall time = 142.323304
+The maximum resident set size (KB) = 762756
Test 159 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_gswp3_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_gswp3_intel
Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5146,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 61.219151
-The maximum resident set size (KB) = 308664
+The total amount of wall time = 67.056311
+The maximum resident set size (KB) = 312788
Test 160 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_intel
Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5162,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 57.142021
-The maximum resident set size (KB) = 449852
+The total amount of wall time = 62.235638
+The maximum resident set size (KB) = 450668
Test 161 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_rst_intel
Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5178,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 32.165049
-The maximum resident set size (KB) = 450856
+The total amount of wall time = 40.095661
+The maximum resident set size (KB) = 449800
Test 162 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_sbs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_sbs_intel
Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5274,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 399.287537
-The maximum resident set size (KB) = 1634536
+The total amount of wall time = 499.137149
+The maximum resident set size (KB) = 1631368
Test 163 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_intel
Checking test 164 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5370,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 418.763604
-The maximum resident set size (KB) = 1628584
+The total amount of wall time = 543.898697
+The maximum resident set size (KB) = 1633272
Test 164 control_p8_atmlnd_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_atmlnd_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_atmlnd_intel
Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5398,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 219.850821
-The maximum resident set size (KB) = 848576
+The total amount of wall time = 312.354665
+The maximum resident set size (KB) = 849704
Test 165 control_restart_p8_atmlnd_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmwav_control_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmwav_control_noaero_p8_intel
Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5448,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 82.974003
-The maximum resident set size (KB) = 1631516
+The total amount of wall time = 84.268422
+The maximum resident set size (KB) = 1637212
Test 166 atmwav_control_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_atmwav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_atmwav_intel
Checking test 167 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5499,14 +5499,14 @@ Checking test 167 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 78.676602
-The maximum resident set size (KB) = 637188
+The total amount of wall time = 78.798429
+The maximum resident set size (KB) = 635264
Test 167 control_atmwav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_intel
Checking test 168 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5550,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 206.295568
-The maximum resident set size (KB) = 2946840
+The total amount of wall time = 214.964561
+The maximum resident set size (KB) = 2944800
Test 168 atmaero_control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_intel
Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5601,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 244.930632
-The maximum resident set size (KB) = 3000868
+The total amount of wall time = 250.475437
+The maximum resident set size (KB) = 3002404
Test 169 atmaero_control_p8_rad_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_micro_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_micro_intel
Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5652,12 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 258.692191
-The maximum resident set size (KB) = 3012148
+The total amount of wall time = 264.243751
+The maximum resident set size (KB) = 3011032
Test 170 atmaero_control_p8_rad_micro_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Thu 08 Feb 2024 09:43:05 PM MST
-Elapsed time: 02h:07m:14s. Have a nice day!
+Mon 12 Feb 2024 05:17:17 PM MST
+Elapsed time: 03h:41m:00s. Have a nice day!
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 869ba39db4..46faa843f1 100644
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,62 +1,62 @@
-Thu 08 Feb 2024 09:14:00 PM EST
+Mon 12 Feb 2024 03:08:37 PM EST
Start Regression test
-Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
-+c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 390 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 712 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 333 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile atmaero_intel elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 332 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 594 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 642 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 335 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 583 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 660 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 696 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 877 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 667 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1147 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 641 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 640 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 667 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 699 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 653 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 674 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 444 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1151 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 773 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 727 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 417 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1125 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_mixedmode_intel
+Compile s2swa_intel elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1121 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 299.420878
- 0: The maximum resident set size (KB) = 3073108
+ 0: The total amount of wall time = 302.927125
+ 0: The maximum resident set size (KB) = 3072904
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 783.101264
- 0: The maximum resident set size (KB) = 1695132
+ 0: The total amount of wall time = 778.782654
+ 0: The maximum resident set size (KB) = 1694684
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_iau_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 835.953830
- 0: The maximum resident set size (KB) = 1807968
+ 0: The total amount of wall time = 839.979536
+ 0: The maximum resident set size (KB) = 1807284
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 380.125975
- 0: The maximum resident set size (KB) = 941948
+ 0: The total amount of wall time = 377.871790
+ 0: The maximum resident set size (KB) = 943668
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 856.224449
- 0: The maximum resident set size (KB) = 1668764
+ 0: The total amount of wall time = 860.154351
+ 0: The maximum resident set size (KB) = 1668000
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1463.391416
- 0: The maximum resident set size (KB) = 1699088
+ 0: The total amount of wall time = 1418.880398
+ 0: The maximum resident set size (KB) = 1699528
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 344.691260
- 0: The maximum resident set size (KB) = 3099192
+ 0: The total amount of wall time = 351.184679
+ 0: The maximum resident set size (KB) = 3099592
Test 007 cpld_control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 347.397426
- 0: The maximum resident set size (KB) = 3098852
+ 0: The total amount of wall time = 346.673313
+ 0: The maximum resident set size (KB) = 3098656
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 201.369035
- 0: The maximum resident set size (KB) = 3157080
+ 0: The total amount of wall time = 206.050893
+ 0: The maximum resident set size (KB) = 3157164
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_qr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 350.074732
- 0: The maximum resident set size (KB) = 3122940
+ 0: The total amount of wall time = 349.819580
+ 0: The maximum resident set size (KB) = 3123012
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_qr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 205.956550
- 0: The maximum resident set size (KB) = 3177660
+ 0: The total amount of wall time = 208.099039
+ 0: The maximum resident set size (KB) = 3177580
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_2threads_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 313.384977
- 0: The maximum resident set size (KB) = 3410384
+ 0: The total amount of wall time = 316.039625
+ 0: The maximum resident set size (KB) = 3408160
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_decomp_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 339.131555
- 0: The maximum resident set size (KB) = 3098536
+ 0: The total amount of wall time = 342.515186
+ 0: The maximum resident set size (KB) = 3097900
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 290.045166
- 0: The maximum resident set size (KB) = 3021892
+ 0: The total amount of wall time = 291.518774
+ 0: The maximum resident set size (KB) = 3022580
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_ciceC_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 348.186106
- 0: The maximum resident set size (KB) = 3099424
+ 0: The total amount of wall time = 345.252258
+ 0: The maximum resident set size (KB) = 3099892
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c192_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 574.739062
- 0: The maximum resident set size (KB) = 3283436
+ 0: The total amount of wall time = 585.770834
+ 0: The maximum resident set size (KB) = 3269848
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_c192_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 392.269931
- 0: The maximum resident set size (KB) = 3608872
+ 0: The total amount of wall time = 399.216434
+ 0: The maximum resident set size (KB) = 3606524
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_bmark_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 714.544209
- 0: The maximum resident set size (KB) = 4037728
+ 0: The total amount of wall time = 720.776891
+ 0: The maximum resident set size (KB) = 4040212
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_bmark_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 500.305230
- 0: The maximum resident set size (KB) = 4341392
+ 0: The total amount of wall time = 501.070542
+ 0: The maximum resident set size (KB) = 4347312
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_s2sa_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 328.882216
- 0: The maximum resident set size (KB) = 3068308
+ 0: The total amount of wall time = 334.481915
+ 0: The maximum resident set size (KB) = 3067832
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 252.442767
- 0: The maximum resident set size (KB) = 1688036
+ 0: The total amount of wall time = 253.647382
+ 0: The maximum resident set size (KB) = 1687916
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_nowave_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 262.879555
- 0: The maximum resident set size (KB) = 1731972
+ 0: The total amount of wall time = 262.694999
+ 0: The maximum resident set size (KB) = 1731580
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 479.130562
- 0: The maximum resident set size (KB) = 3131512
+ 0: The total amount of wall time = 483.815659
+ 0: The maximum resident set size (KB) = 3131940
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 326.382644
- 0: The maximum resident set size (KB) = 1698208
+ 0: The total amount of wall time = 326.948123
+ 0: The maximum resident set size (KB) = 1696372
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_agrid_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 262.402236
- 0: The maximum resident set size (KB) = 1730948
+ 0: The total amount of wall time = 266.580683
+ 0: The maximum resident set size (KB) = 1730812
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c48_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 406.098808
- 0: The maximum resident set size (KB) = 2663032
+ 0: The total amount of wall time = 407.023321
+ 0: The maximum resident set size (KB) = 2662848
Test 026 cpld_control_c48_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 336.737801
- 0: The maximum resident set size (KB) = 3101712
+ 0: The total amount of wall time = 341.208407
+ 0: The maximum resident set size (KB) = 3099324
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 846.566459
- 0: The maximum resident set size (KB) = 1702980
+ 0: The total amount of wall time = 846.791363
+ 0: The maximum resident set size (KB) = 1702492
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 409.132882
- 0: The maximum resident set size (KB) = 1001232
+ 0: The total amount of wall time = 406.875815
+ 0: The maximum resident set size (KB) = 1001544
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1005.789462
- 0: The maximum resident set size (KB) = 1682652
+ 0: The total amount of wall time = 1000.903957
+ 0: The maximum resident set size (KB) = 1683420
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1560.548722
- 0: The maximum resident set size (KB) = 1711056
+ 0: The total amount of wall time = 1578.890446
+ 0: The maximum resident set size (KB) = 1710936
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_flake_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 198.028888
- 0: The maximum resident set size (KB) = 672092
+ 0: The total amount of wall time = 197.519177
+ 0: The maximum resident set size (KB) = 671944
Test 032 control_flake_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 122.566159
- 0: The maximum resident set size (KB) = 617136
+ 0: The total amount of wall time = 123.053283
+ 0: The maximum resident set size (KB) = 617448
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 126.766859
- 0: The maximum resident set size (KB) = 625984
+ 0: The total amount of wall time = 129.731258
+ 0: The maximum resident set size (KB) = 625648
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_latlon_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 123.162572
- 0: The maximum resident set size (KB) = 620548
+ 0: The total amount of wall time = 125.065822
+ 0: The maximum resident set size (KB) = 620888
Test 035 control_latlon_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 127.879693
- 0: The maximum resident set size (KB) = 620564
+ 0: The total amount of wall time = 125.926854
+ 0: The maximum resident set size (KB) = 620424
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 330.717033
-0: The maximum resident set size (KB) = 720884
+0: The total amount of wall time = 335.703017
+0: The maximum resident set size (KB) = 726784
Test 037 control_c48_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 334.720334
-0: The maximum resident set size (KB) = 727156
+0: The total amount of wall time = 338.261876
+0: The maximum resident set size (KB) = 726516
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c192_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 501.071043
- 0: The maximum resident set size (KB) = 738020
+ 0: The total amount of wall time = 499.433304
+ 0: The maximum resident set size (KB) = 738224
Test 039 control_c192_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 954.853910
- 0: The maximum resident set size (KB) = 1039848
+ 0: The total amount of wall time = 957.979812
+ 0: The maximum resident set size (KB) = 1039552
Test 040 control_c384_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384gdas_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 819.668504
- 0: The maximum resident set size (KB) = 1182096
+ 0: The total amount of wall time = 830.731498
+ 0: The maximum resident set size (KB) = 1184096
Test 041 control_c384gdas_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 83.154593
- 0: The maximum resident set size (KB) = 624540
+ 0: The total amount of wall time = 82.901248
+ 0: The maximum resident set size (KB) = 624520
Test 042 control_stochy_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 45.030959
- 0: The maximum resident set size (KB) = 428676
+ 0: The total amount of wall time = 47.155766
+ 0: The maximum resident set size (KB) = 428748
Test 043 control_stochy_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 79.511936
- 0: The maximum resident set size (KB) = 626012
+ 0: The total amount of wall time = 78.253560
+ 0: The maximum resident set size (KB) = 625668
Test 044 control_lndp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr4_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 126.438402
- 0: The maximum resident set size (KB) = 620524
+ 0: The total amount of wall time = 123.806765
+ 0: The maximum resident set size (KB) = 620592
Test 045 control_iovr4_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr5_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 125.584737
- 0: The maximum resident set size (KB) = 620392
+ 0: The total amount of wall time = 126.325534
+ 0: The maximum resident set size (KB) = 620664
Test 046 control_iovr5_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 153.223911
- 0: The maximum resident set size (KB) = 1607692
+ 0: The total amount of wall time = 151.419395
+ 0: The maximum resident set size (KB) = 1608264
Test 047 control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 154.482026
- 0: The maximum resident set size (KB) = 1608784
+ 0: The total amount of wall time = 152.534138
+ 0: The maximum resident set size (KB) = 1608052
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_ugwpv1_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 145.699561
- 0: The maximum resident set size (KB) = 1611024
+ 0: The total amount of wall time = 145.477010
+ 0: The maximum resident set size (KB) = 1610928
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 81.549425
- 0: The maximum resident set size (KB) = 791664
+ 0: The total amount of wall time = 81.836517
+ 0: The maximum resident set size (KB) = 791548
Test 050 control_restart_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_noqr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 147.605183
- 0: The maximum resident set size (KB) = 1596700
+ 0: The total amount of wall time = 151.188883
+ 0: The maximum resident set size (KB) = 1596436
Test 051 control_noqr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_noqr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 79.539949
- 0: The maximum resident set size (KB) = 793888
+ 0: The total amount of wall time = 82.527801
+ 0: The maximum resident set size (KB) = 794208
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_decomp_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 154.443978
- 0: The maximum resident set size (KB) = 1596264
+ 0: The total amount of wall time = 154.031589
+ 0: The maximum resident set size (KB) = 1595768
Test 053 control_decomp_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_2threads_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 130.109612
- 0: The maximum resident set size (KB) = 1686360
+ 0: The total amount of wall time = 132.017941
+ 0: The maximum resident set size (KB) = 1679112
Test 054 control_2threads_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_lndp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 270.809116
- 0: The maximum resident set size (KB) = 1607180
+ 0: The total amount of wall time = 272.862503
+ 0: The maximum resident set size (KB) = 1607632
Test 055 control_p8_lndp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_rrtmgp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 200.278306
- 0: The maximum resident set size (KB) = 1658604
+ 0: The total amount of wall time = 203.167872
+ 0: The maximum resident set size (KB) = 1658756
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_mynn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 153.822891
- 0: The maximum resident set size (KB) = 1614636
+ 0: The total amount of wall time = 151.587152
+ 0: The maximum resident set size (KB) = 1614716
Test 057 control_p8_mynn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/merra2_thompson_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 180.024807
- 0: The maximum resident set size (KB) = 1615548
+ 0: The total amount of wall time = 181.405361
+ 0: The maximum resident set size (KB) = 1615360
Test 058 merra2_thompson_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 266.776185
- 0: The maximum resident set size (KB) = 616704
+ 0: The total amount of wall time = 270.299632
+ 0: The maximum resident set size (KB) = 617240
Test 059 regional_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 142.430140
- 0: The maximum resident set size (KB) = 790308
+ 0: The total amount of wall time = 141.768709
+ 0: The maximum resident set size (KB) = 790840
Test 060 regional_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 275.985134
- 0: The maximum resident set size (KB) = 615772
+ 0: The total amount of wall time = 284.199929
+ 0: The maximum resident set size (KB) = 615692
Test 061 regional_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 156.979689
- 0: The maximum resident set size (KB) = 761560
+ 0: The total amount of wall time = 159.089309
+ 0: The maximum resident set size (KB) = 758484
Test 062 regional_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_noquilt_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 264.382413
- 0: The maximum resident set size (KB) = 1154836
+ 0: The total amount of wall time = 262.559269
+ 0: The maximum resident set size (KB) = 1154816
Test 063 regional_noquilt_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_netcdf_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 268.557387
- 0: The maximum resident set size (KB) = 616500
+ 0: The total amount of wall time = 264.529098
+ 0: The maximum resident set size (KB) = 616676
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2dwrtdecomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 265.501802
- 0: The maximum resident set size (KB) = 617424
+ 0: The total amount of wall time = 266.981263
+ 0: The maximum resident set size (KB) = 617492
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_wofs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 345.536210
- 0: The maximum resident set size (KB) = 1591424
+ 0: The total amount of wall time = 344.823623
+ 0: The maximum resident set size (KB) = 1590864
Test 066 regional_wofs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 372.406298
- 0: The maximum resident set size (KB) = 1010184
+ 0: The total amount of wall time = 379.138083
+ 0: The maximum resident set size (KB) = 1009772
Test 067 rap_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 219.383124
- 0: The maximum resident set size (KB) = 1188660
+ 0: The total amount of wall time = 223.992209
+ 0: The maximum resident set size (KB) = 1186336
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 389.463204
- 0: The maximum resident set size (KB) = 1009072
+ 0: The total amount of wall time = 385.420782
+ 0: The maximum resident set size (KB) = 1009116
Test 069 rap_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 339.732048
- 0: The maximum resident set size (KB) = 1096936
+ 0: The total amount of wall time = 338.823571
+ 0: The maximum resident set size (KB) = 1100420
Test 070 rap_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 192.513711
- 0: The maximum resident set size (KB) = 879100
+ 0: The total amount of wall time = 187.548879
+ 0: The maximum resident set size (KB) = 878392
Test 071 rap_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 375.928959
- 0: The maximum resident set size (KB) = 1007044
+ 0: The total amount of wall time = 373.753296
+ 0: The maximum resident set size (KB) = 1007572
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 391.662635
- 0: The maximum resident set size (KB) = 1005480
+ 0: The total amount of wall time = 395.947137
+ 0: The maximum resident set size (KB) = 1005552
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 277.114967
- 0: The maximum resident set size (KB) = 878172
+ 0: The total amount of wall time = 280.753318
+ 0: The maximum resident set size (KB) = 878588
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.493005
- 0: The maximum resident set size (KB) = 1004980
+ 0: The total amount of wall time = 194.449018
+ 0: The maximum resident set size (KB) = 1004824
Test 075 hrrr_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.037519
- 0: The maximum resident set size (KB) = 1006700
+ 0: The total amount of wall time = 196.593185
+ 0: The maximum resident set size (KB) = 1006600
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 172.179545
- 0: The maximum resident set size (KB) = 1087388
+ 0: The total amount of wall time = 175.491061
+ 0: The maximum resident set size (KB) = 1078392
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 101.183578
- 0: The maximum resident set size (KB) = 836076
+ 0: The total amount of wall time = 102.325676
+ 0: The maximum resident set size (KB) = 836064
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 367.784492
- 0: The maximum resident set size (KB) = 1001432
+ 0: The total amount of wall time = 366.309554
+ 0: The maximum resident set size (KB) = 1001900
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 448.168986
- 0: The maximum resident set size (KB) = 1964892
+ 0: The total amount of wall time = 458.099433
+ 0: The maximum resident set size (KB) = 1967676
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 446.473435
- 0: The maximum resident set size (KB) = 1951820
+ 0: The total amount of wall time = 444.214178
+ 0: The maximum resident set size (KB) = 1953212
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 320.662659
- 0: The maximum resident set size (KB) = 696108
+ 0: The total amount of wall time = 322.372971
+ 0: The maximum resident set size (KB) = 694272
Test 082 control_csawmg_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 315.316370
- 0: The maximum resident set size (KB) = 693920
+ 0: The total amount of wall time = 318.059281
+ 0: The maximum resident set size (KB) = 692400
Test 083 control_csawmgt_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 176.143298
- 0: The maximum resident set size (KB) = 656308
+ 0: The total amount of wall time = 179.057987
+ 0: The maximum resident set size (KB) = 654528
Test 084 control_ras_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 113.955734
- 0: The maximum resident set size (KB) = 370060
+ 0: The total amount of wall time = 117.671119
+ 0: The maximum resident set size (KB) = 369744
Test 085 control_wam_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 143.548278
- 0: The maximum resident set size (KB) = 1606792
+ 0: The total amount of wall time = 146.214110
+ 0: The maximum resident set size (KB) = 1605608
Test 086 control_p8_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 253.726037
- 0: The maximum resident set size (KB) = 612972
+ 0: The total amount of wall time = 258.941700
+ 0: The maximum resident set size (KB) = 612944
Test 087 regional_control_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 150.242981
- 0: The maximum resident set size (KB) = 779028
+ 0: The total amount of wall time = 149.309010
+ 0: The maximum resident set size (KB) = 777520
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf001.nc ............ALT CHECK......OK
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
- Comparing atmf001.nc ............ALT CHECK......OK
+ Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 146.197231
- 0: The maximum resident set size (KB) = 782544
+ 0: The total amount of wall time = 152.074319
+ 0: The maximum resident set size (KB) = 780672
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 164.661988
- 0: The maximum resident set size (KB) = 783072
+ 0: The total amount of wall time = 165.412939
+ 0: The maximum resident set size (KB) = 781892
Test 090 control_stochy_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 149.988033
- 0: The maximum resident set size (KB) = 789344
+ 0: The total amount of wall time = 150.849615
+ 0: The maximum resident set size (KB) = 788124
Test 091 control_lndp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 233.814321
- 0: The maximum resident set size (KB) = 825524
+ 0: The total amount of wall time = 232.935812
+ 0: The maximum resident set size (KB) = 824544
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.677652
- 0: The maximum resident set size (KB) = 825732
+ 0: The total amount of wall time = 231.763595
+ 0: The maximum resident set size (KB) = 824980
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 153.217828
- 0: The maximum resident set size (KB) = 795992
+ 0: The total amount of wall time = 149.810305
+ 0: The maximum resident set size (KB) = 794536
Test 094 control_ras_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_diag_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.326038
- 0: The maximum resident set size (KB) = 843788
+ 0: The total amount of wall time = 151.903900
+ 0: The maximum resident set size (KB) = 842952
Test 095 control_diag_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_debug_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 153.807346
- 0: The maximum resident set size (KB) = 1622056
+ 0: The total amount of wall time = 155.202235
+ 0: The maximum resident set size (KB) = 1620448
Test 096 control_debug_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 951.440755
- 0: The maximum resident set size (KB) = 635348
+ 0: The total amount of wall time = 985.541916
+ 0: The maximum resident set size (KB) = 634488
Test 097 regional_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.574703
- 0: The maximum resident set size (KB) = 1167644
+ 0: The total amount of wall time = 283.677914
+ 0: The maximum resident set size (KB) = 1166348
Test 098 rap_control_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 270.563931
- 0: The maximum resident set size (KB) = 1165580
+ 0: The total amount of wall time = 271.010908
+ 0: The maximum resident set size (KB) = 1165252
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_gf_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.622625
- 0: The maximum resident set size (KB) = 1167872
+ 0: The total amount of wall time = 280.337256
+ 0: The maximum resident set size (KB) = 1167208
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_c3_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.497264
- 0: The maximum resident set size (KB) = 1167488
+ 0: The total amount of wall time = 272.665035
+ 0: The maximum resident set size (KB) = 1167392
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_drag_suite_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.744497
- 0: The maximum resident set size (KB) = 1167272
+ 0: The total amount of wall time = 278.856031
+ 0: The maximum resident set size (KB) = 1166516
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_diag_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.761696
- 0: The maximum resident set size (KB) = 1251864
+ 0: The total amount of wall time = 287.949256
+ 0: The maximum resident set size (KB) = 1250884
Test 103 rap_diag_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_cires_ugwp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 282.799806
- 0: The maximum resident set size (KB) = 1167008
+ 0: The total amount of wall time = 288.827298
+ 0: The maximum resident set size (KB) = 1165892
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_ugwp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.032090
- 0: The maximum resident set size (KB) = 1168560
+ 0: The total amount of wall time = 285.495745
+ 0: The maximum resident set size (KB) = 1167272
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_lndp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.498006
- 0: The maximum resident set size (KB) = 1168716
+ 0: The total amount of wall time = 284.721260
+ 0: The maximum resident set size (KB) = 1168560
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_progcld_thompson_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.161299
- 0: The maximum resident set size (KB) = 1166716
+ 0: The total amount of wall time = 285.671011
+ 0: The maximum resident set size (KB) = 1166600
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.169096
- 0: The maximum resident set size (KB) = 1167368
+ 0: The total amount of wall time = 280.201106
+ 0: The maximum resident set size (KB) = 1166588
Test 108 rap_noah_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.852343
- 0: The maximum resident set size (KB) = 1165956
+ 0: The total amount of wall time = 276.987808
+ 0: The maximum resident set size (KB) = 1164832
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 446.909084
- 0: The maximum resident set size (KB) = 1167168
+ 0: The total amount of wall time = 463.855002
+ 0: The maximum resident set size (KB) = 1166328
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.997854
- 0: The maximum resident set size (KB) = 1163820
+ 0: The total amount of wall time = 275.616546
+ 0: The maximum resident set size (KB) = 1162948
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_clm_lake_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 342.124919
- 0: The maximum resident set size (KB) = 1168832
+ 0: The total amount of wall time = 350.255271
+ 0: The maximum resident set size (KB) = 1168520
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_flake_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.492839
- 0: The maximum resident set size (KB) = 1167024
+ 0: The total amount of wall time = 277.386397
+ 0: The maximum resident set size (KB) = 1166480
Test 113 rap_flake_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_c96_no_nest_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 488.367076
- 0: The maximum resident set size (KB) = 1172696
+ 0: The total amount of wall time = 482.040307
+ 0: The maximum resident set size (KB) = 1169788
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 280.877440
- 0: The maximum resident set size (KB) = 393268
+ 0: The total amount of wall time = 282.300366
+ 0: The maximum resident set size (KB) = 392188
Test 115 control_wam_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 209.916176
- 0: The maximum resident set size (KB) = 1053440
+ 0: The total amount of wall time = 210.379853
+ 0: The maximum resident set size (KB) = 1054000
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 310.580027
- 0: The maximum resident set size (KB) = 889532
+ 0: The total amount of wall time = 311.230220
+ 0: The maximum resident set size (KB) = 889908
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.184994
- 0: The maximum resident set size (KB) = 886288
+ 0: The total amount of wall time = 164.719359
+ 0: The maximum resident set size (KB) = 886208
Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 287.063893
- 0: The maximum resident set size (KB) = 946400
+ 0: The total amount of wall time = 285.761538
+ 0: The maximum resident set size (KB) = 951776
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 147.654036
- 0: The maximum resident set size (KB) = 937980
+ 0: The total amount of wall time = 149.749961
+ 0: The maximum resident set size (KB) = 938040
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.520872
- 0: The maximum resident set size (KB) = 888012
+ 0: The total amount of wall time = 174.239272
+ 0: The maximum resident set size (KB) = 888324
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.390693
- 0: The maximum resident set size (KB) = 785580
+ 0: The total amount of wall time = 233.852459
+ 0: The maximum resident set size (KB) = 785876
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 85.278739
- 0: The maximum resident set size (KB) = 767948
+ 0: The total amount of wall time = 86.420440
+ 0: The maximum resident set size (KB) = 767620
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 104.558333
- 0: The maximum resident set size (KB) = 1094604
+ 0: The total amount of wall time = 102.771843
+ 0: The maximum resident set size (KB) = 1094692
Test 124 conus13km_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 49.790323
- 0: The maximum resident set size (KB) = 1074404
+ 0: The total amount of wall time = 48.958585
+ 0: The maximum resident set size (KB) = 1075768
Test 125 conus13km_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_restart_mismatch_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 60.742555
- 0: The maximum resident set size (KB) = 974488
+ 0: The total amount of wall time = 61.268495
+ 0: The maximum resident set size (KB) = 974156
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 218.180156
- 0: The maximum resident set size (KB) = 907760
+ 0: The total amount of wall time = 217.332559
+ 0: The maximum resident set size (KB) = 907816
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.968198
- 0: The maximum resident set size (KB) = 1048848
+ 0: The total amount of wall time = 273.738767
+ 0: The maximum resident set size (KB) = 1047968
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.556898
- 0: The maximum resident set size (KB) = 1046904
+ 0: The total amount of wall time = 266.749135
+ 0: The maximum resident set size (KB) = 1048824
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 808.962561
- 0: The maximum resident set size (KB) = 1127572
+ 0: The total amount of wall time = 803.448842
+ 0: The maximum resident set size (KB) = 1128628
Test 130 conus13km_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_qr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 815.556756
- 0: The maximum resident set size (KB) = 801448
+ 0: The total amount of wall time = 818.086461
+ 0: The maximum resident set size (KB) = 804036
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 469.559045
- 0: The maximum resident set size (KB) = 1107132
+ 0: The total amount of wall time = 466.891916
+ 0: The maximum resident set size (KB) = 1110412
Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_radar_tten_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 808.327050
- 0: The maximum resident set size (KB) = 1193728
+ 0: The total amount of wall time = 792.170378
+ 0: The maximum resident set size (KB) = 1194948
Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.652687
- 0: The maximum resident set size (KB) = 1067304
+ 0: The total amount of wall time = 280.661010
+ 0: The maximum resident set size (KB) = 1071368
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 299.240879
- 0: The maximum resident set size (KB) = 710420
+ 0: The total amount of wall time = 300.148342
+ 0: The maximum resident set size (KB) = 706592
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 251.197498
- 0: The maximum resident set size (KB) = 1059192
+ 0: The total amount of wall time = 251.051048
+ 0: The maximum resident set size (KB) = 1058064
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 383.144873
- 0: The maximum resident set size (KB) = 754252
+ 0: The total amount of wall time = 388.277073
+ 0: The maximum resident set size (KB) = 754736
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 686.033772
- 0: The maximum resident set size (KB) = 782132
+ 0: The total amount of wall time = 685.855015
+ 0: The maximum resident set size (KB) = 780600
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 757.235429
- 0: The maximum resident set size (KB) = 799300
+ 0: The total amount of wall time = 770.726858
+ 0: The maximum resident set size (KB) = 797796
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 300.344040
- 0: The maximum resident set size (KB) = 477124
+ 0: The total amount of wall time = 301.517361
+ 0: The maximum resident set size (KB) = 475292
Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 388.337235
- 0: The maximum resident set size (KB) = 503016
+ 0: The total amount of wall time = 386.976865
+ 0: The maximum resident set size (KB) = 501012
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5085,7 +5085,7 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -5112,14 +5112,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 160.372348
- 0: The maximum resident set size (KB) = 374924
+ 0: The total amount of wall time = 159.524217
+ 0: The maximum resident set size (KB) = 373112
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_multiple_4nests_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5180,7 +5180,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
@@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 458.954643
- 0: The maximum resident set size (KB) = 437152
+ 0: The total amount of wall time = 457.175622
+ 0: The maximum resident set size (KB) = 444220
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 207.888221
- 0: The maximum resident set size (KB) = 513216
+ 0: The total amount of wall time = 208.436538
+ 0: The maximum resident set size (KB) = 508064
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 194.455733
- 0: The maximum resident set size (KB) = 511860
+ 0: The total amount of wall time = 195.268159
+ 0: The maximum resident set size (KB) = 510856
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5262,28 +5262,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 250.292158
- 0: The maximum resident set size (KB) = 577804
+ 0: The total amount of wall time = 250.207912
+ 0: The maximum resident set size (KB) = 574432
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 86.949307
- 0: The maximum resident set size (KB) = 405568
+ 0: The total amount of wall time = 88.835893
+ 0: The maximum resident set size (KB) = 403776
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_nested_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5303,8 +5303,8 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
@@ -5320,7 +5320,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
@@ -5330,28 +5330,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 219.436933
- 0: The maximum resident set size (KB) = 768080
+ 0: The total amount of wall time = 219.702752
+ 0: The maximum resident set size (KB) = 768252
Test 148 gnv1_nested_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 754.148677
- 0: The maximum resident set size (KB) = 581656
+ 0: The total amount of wall time = 751.119629
+ 0: The maximum resident set size (KB) = 585096
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 443.090277
- 0: The maximum resident set size (KB) = 613564
+ 0: The total amount of wall time = 439.600538
+ 0: The maximum resident set size (KB) = 613948
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 449.097950
- 0: The maximum resident set size (KB) = 785348
+ 0: The total amount of wall time = 449.792963
+ 0: The maximum resident set size (KB) = 785092
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 343.858111
- 0: The maximum resident set size (KB) = 785988
+ 0: The total amount of wall time = 346.560106
+ 0: The maximum resident set size (KB) = 786376
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 347.181244
- 0: The maximum resident set size (KB) = 742232
+ 0: The total amount of wall time = 344.507089
+ 0: The maximum resident set size (KB) = 745888
Test 153 hafs_regional_docn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_oisst_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 347.690358
- 0: The maximum resident set size (KB) = 726632
+ 0: The total amount of wall time = 348.439224
+ 0: The maximum resident set size (KB) = 726700
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_datm_cdeps_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 958.575212
- 0: The maximum resident set size (KB) = 893512
+ 0: The total amount of wall time = 961.511637
+ 0: The maximum resident set size (KB) = 893560
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 143.014780
- 0: The maximum resident set size (KB) = 756412
+ 0: The total amount of wall time = 143.070089
+ 0: The maximum resident set size (KB) = 756320
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_restart_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 84.172594
- 0: The maximum resident set size (KB) = 745116
+ 0: The total amount of wall time = 83.957679
+ 0: The maximum resident set size (KB) = 745068
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 133.281913
- 0: The maximum resident set size (KB) = 639272
+ 0: The total amount of wall time = 133.636546
+ 0: The maximum resident set size (KB) = 637100
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_iau_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 133.351209
- 0: The maximum resident set size (KB) = 637524
+ 0: The total amount of wall time = 133.872790
+ 0: The maximum resident set size (KB) = 638372
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_stochy_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 135.043758
- 0: The maximum resident set size (KB) = 639188
+ 0: The total amount of wall time = 134.520275
+ 0: The maximum resident set size (KB) = 641208
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 140.864315
- 0: The maximum resident set size (KB) = 756268
+ 0: The total amount of wall time = 140.615348
+ 0: The maximum resident set size (KB) = 756648
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.235915
- 0: The maximum resident set size (KB) = 744788
+ 0: The total amount of wall time = 141.417190
+ 0: The maximum resident set size (KB) = 756620
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 132.056283
- 0: The maximum resident set size (KB) = 638292
+ 0: The total amount of wall time = 131.740235
+ 0: The maximum resident set size (KB) = 639596
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 335.666161
- 0: The maximum resident set size (KB) = 693008
+ 0: The total amount of wall time = 331.774573
+ 0: The maximum resident set size (KB) = 692708
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 332.681732
- 0: The maximum resident set size (KB) = 672552
+ 0: The total amount of wall time = 334.080217
+ 0: The maximum resident set size (KB) = 672480
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.363037
- 0: The maximum resident set size (KB) = 756144
+ 0: The total amount of wall time = 141.473619
+ 0: The maximum resident set size (KB) = 756536
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 270.238896
- 0: The maximum resident set size (KB) = 2013488
+ 0: The total amount of wall time = 270.517374
+ 0: The maximum resident set size (KB) = 2012740
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_gfs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 270.815947
- 0: The maximum resident set size (KB) = 2014160
+ 0: The total amount of wall time = 271.745924
+ 0: The maximum resident set size (KB) = 2014856
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_debug_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 315.896359
- 0: The maximum resident set size (KB) = 730188
+ 0: The total amount of wall time = 317.691659
+ 0: The maximum resident set size (KB) = 741016
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 140.958446
- 0: The maximum resident set size (KB) = 756584
+ 0: The total amount of wall time = 141.298008
+ 0: The maximum resident set size (KB) = 744568
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_gswp3_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 63.252211
- 0: The maximum resident set size (KB) = 318676
+ 0: The total amount of wall time = 62.974753
+ 0: The maximum resident set size (KB) = 310752
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 53.747354
- 0: The maximum resident set size (KB) = 456596
+ 0: The total amount of wall time = 54.722769
+ 0: The maximum resident set size (KB) = 456600
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 38.592699
- 0: The maximum resident set size (KB) = 456492
+ 0: The total amount of wall time = 38.979705
+ 0: The maximum resident set size (KB) = 456520
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_sbs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 368.978372
- 0: The maximum resident set size (KB) = 1640348
+ 0: The total amount of wall time = 367.320142
+ 0: The maximum resident set size (KB) = 1642564
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 364.924589
- 0: The maximum resident set size (KB) = 1642732
+ 0: The total amount of wall time = 370.429712
+ 0: The maximum resident set size (KB) = 1642432
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_atmlnd_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 198.400630
- 0: The maximum resident set size (KB) = 837104
+ 0: The total amount of wall time = 189.071405
+ 0: The maximum resident set size (KB) = 837012
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmwav_control_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 89.198779
- 0: The maximum resident set size (KB) = 1651972
+ 0: The total amount of wall time = 89.306919
+ 0: The maximum resident set size (KB) = 1651488
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_atmwav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 84.060129
- 0: The maximum resident set size (KB) = 639468
+ 0: The total amount of wall time = 84.693035
+ 0: The maximum resident set size (KB) = 639252
Test 178 control_atmwav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.935096
- 0: The maximum resident set size (KB) = 2942552
+ 0: The total amount of wall time = 241.128453
+ 0: The maximum resident set size (KB) = 2942768
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 277.325749
- 0: The maximum resident set size (KB) = 3011440
+ 0: The total amount of wall time = 275.081228
+ 0: The maximum resident set size (KB) = 3011556
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_micro_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 288.052789
- 0: The maximum resident set size (KB) = 3017704
+ 0: The total amount of wall time = 292.094812
+ 0: The maximum resident set size (KB) = 3018492
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_atmaq_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6177,17 +6177,17 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.coupler.res .........OK
Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1082.597175
- 0: The maximum resident set size (KB) = 4478292
+ 0: The total amount of wall time = 1089.115372
+ 0: The maximum resident set size (KB) = 4486556
Test 182 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Thu 08 Feb 2024 10:37:11 PM EST
-Elapsed time: 01h:23m:16s. Have a nice day!
+Mon 12 Feb 2024 04:57:55 PM EST
+Elapsed time: 01h:49m:24s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index e7d6b31803..59585fcf13 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,14 +1,14 @@
-Fri Feb 9 02:42:39 UTC 2024
+Mon Feb 12 19:47:52 UTC 2024
Start Regression test
-Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -16,61 +16,61 @@ Testing With Submodule Hashes:
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 302 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 661 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 602 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 368 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 356 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 623 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 654 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 217 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 659 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 641 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 687 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 590 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 619 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 362 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 817 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 370 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 659 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 698 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 635 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 821 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 234 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 680 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile rrfs_intel elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 634 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 815 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 821 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 906 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 707 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 928 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 136 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 822 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 725 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_mixedmode_intel
+Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 941 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 255 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 978 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 304.512951
- 0: The maximum resident set size (KB) = 3166336
+ 0: The total amount of wall time = 303.568631
+ 0: The maximum resident set size (KB) = 3165948
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 952.929058
- 0: The maximum resident set size (KB) = 1731100
+ 0: The total amount of wall time = 953.189154
+ 0: The maximum resident set size (KB) = 1734356
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_iau_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 998.082067
- 0: The maximum resident set size (KB) = 2016556
+ 0: The total amount of wall time = 1000.322970
+ 0: The maximum resident set size (KB) = 1976656
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 443.715119
- 0: The maximum resident set size (KB) = 1119636
+ 0: The total amount of wall time = 444.097126
+ 0: The maximum resident set size (KB) = 1107408
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1076.863952
- 0: The maximum resident set size (KB) = 1640568
+ 0: The total amount of wall time = 1086.535581
+ 0: The maximum resident set size (KB) = 1609592
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1334.215786
- 0: The maximum resident set size (KB) = 1669992
+ 0: The total amount of wall time = 1323.801230
+ 0: The maximum resident set size (KB) = 1674992
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 332.843461
- 0: The maximum resident set size (KB) = 3180748
+ 0: The total amount of wall time = 327.204219
+ 0: The maximum resident set size (KB) = 3179344
Test 007 cpld_control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 324.862727
- 0: The maximum resident set size (KB) = 3205428
+ 0: The total amount of wall time = 326.626342
+ 0: The maximum resident set size (KB) = 3164020
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 186.389417
- 0: The maximum resident set size (KB) = 3247468
+ 0: The total amount of wall time = 187.411107
+ 0: The maximum resident set size (KB) = 3224904
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_qr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 329.110115
- 0: The maximum resident set size (KB) = 3208992
+ 0: The total amount of wall time = 333.008969
+ 0: The maximum resident set size (KB) = 3174304
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_qr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 188.799647
- 0: The maximum resident set size (KB) = 3257416
+ 0: The total amount of wall time = 188.438442
+ 0: The maximum resident set size (KB) = 3218256
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_2threads_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 311.066150
- 0: The maximum resident set size (KB) = 3544328
+ 0: The total amount of wall time = 309.850329
+ 0: The maximum resident set size (KB) = 3533288
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_decomp_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 328.592107
- 0: The maximum resident set size (KB) = 3156256
+ 0: The total amount of wall time = 326.885583
+ 0: The maximum resident set size (KB) = 3148300
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 276.062640
- 0: The maximum resident set size (KB) = 3049448
+ 0: The total amount of wall time = 270.450727
+ 0: The maximum resident set size (KB) = 3010424
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_ciceC_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 330.358697
- 0: The maximum resident set size (KB) = 3182120
+ 0: The total amount of wall time = 325.063135
+ 0: The maximum resident set size (KB) = 3167680
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c192_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 567.777130
- 0: The maximum resident set size (KB) = 3321080
+ 0: The total amount of wall time = 564.525842
+ 0: The maximum resident set size (KB) = 3314568
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_c192_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 347.288904
- 0: The maximum resident set size (KB) = 3602060
+ 0: The total amount of wall time = 346.698895
+ 0: The maximum resident set size (KB) = 3603972
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_bmark_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 569.134478
- 0: The maximum resident set size (KB) = 4095196
+ 0: The total amount of wall time = 590.466204
+ 0: The maximum resident set size (KB) = 4099700
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_bmark_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 361.177648
- 0: The maximum resident set size (KB) = 4339540
+ 0: The total amount of wall time = 382.195540
+ 0: The maximum resident set size (KB) = 4338092
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_s2sa_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 309.830184
- 0: The maximum resident set size (KB) = 3163856
+ 0: The total amount of wall time = 305.352616
+ 0: The maximum resident set size (KB) = 3144248
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 263.732118
- 0: The maximum resident set size (KB) = 1677228
+ 0: The total amount of wall time = 259.907598
+ 0: The maximum resident set size (KB) = 1711160
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 255.238359
- 0: The maximum resident set size (KB) = 1771760
+ 0: The total amount of wall time = 250.773875
+ 0: The maximum resident set size (KB) = 1783816
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 476.671975
- 0: The maximum resident set size (KB) = 3238616
+ 0: The total amount of wall time = 475.895126
+ 0: The maximum resident set size (KB) = 3236412
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 325.497696
- 0: The maximum resident set size (KB) = 1710296
+ 0: The total amount of wall time = 319.001112
+ 0: The maximum resident set size (KB) = 1746856
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_agrid_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 254.393887
- 0: The maximum resident set size (KB) = 1763108
+ 0: The total amount of wall time = 247.510976
+ 0: The maximum resident set size (KB) = 1773060
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c48_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 556.160931
- 0: The maximum resident set size (KB) = 2810648
+ 0: The total amount of wall time = 552.228821
+ 0: The maximum resident set size (KB) = 2814960
Test 026 cpld_control_c48_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 310.820787
- 0: The maximum resident set size (KB) = 3210152
+ 0: The total amount of wall time = 303.688245
+ 0: The maximum resident set size (KB) = 3196616
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 963.543557
- 0: The maximum resident set size (KB) = 1758664
+ 0: The total amount of wall time = 962.426891
+ 0: The maximum resident set size (KB) = 1721908
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 445.964303
- 0: The maximum resident set size (KB) = 1167036
+ 0: The total amount of wall time = 443.116180
+ 0: The maximum resident set size (KB) = 1168896
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1100.982335
- 0: The maximum resident set size (KB) = 1669064
+ 0: The total amount of wall time = 1105.827106
+ 0: The maximum resident set size (KB) = 1660240
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1473.509921
- 0: The maximum resident set size (KB) = 1705596
+ 0: The total amount of wall time = 1464.899827
+ 0: The maximum resident set size (KB) = 1637188
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.964136
- 0: The maximum resident set size (KB) = 701272
+ 0: The total amount of wall time = 185.666624
+ 0: The maximum resident set size (KB) = 695552
Test 032 control_flake_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,14 +2094,14 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 131.087320
- 0: The maximum resident set size (KB) = 652008
+ 0: The total amount of wall time = 133.157021
+ 0: The maximum resident set size (KB) = 644768
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2109,21 +2109,21 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
+ Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 138.827757
- 0: The maximum resident set size (KB) = 653988
+ 0: The total amount of wall time = 137.664995
+ 0: The maximum resident set size (KB) = 656332
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_latlon_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 133.306776
- 0: The maximum resident set size (KB) = 644756
+ 0: The total amount of wall time = 133.333064
+ 0: The maximum resident set size (KB) = 644048
Test 035 control_latlon_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.065789
- 0: The maximum resident set size (KB) = 645940
+ 0: The total amount of wall time = 136.337441
+ 0: The maximum resident set size (KB) = 651576
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 374.087642
-0: The maximum resident set size (KB) = 875684
+0: The total amount of wall time = 371.232212
+0: The maximum resident set size (KB) = 867588
Test 037 control_c48_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 369.784073
-0: The maximum resident set size (KB) = 872564
+0: The total amount of wall time = 371.884923
+0: The maximum resident set size (KB) = 867128
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c192_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 527.996221
- 0: The maximum resident set size (KB) = 848128
+ 0: The total amount of wall time = 525.577267
+ 0: The maximum resident set size (KB) = 851348
Test 039 control_c192_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 522.296572
- 0: The maximum resident set size (KB) = 1283096
+ 0: The total amount of wall time = 521.524701
+ 0: The maximum resident set size (KB) = 1284192
Test 040 control_c384_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384gdas_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2299,13 +2299,13 @@ Checking test 041 control_c384gdas_intel results ....
Comparing GFSPRS.GrbF06 .........OK
Comparing RESTART/20210322.060000.coupler.res .........OK
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
@@ -2318,7 +2318,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
@@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 456.938041
- 0: The maximum resident set size (KB) = 1382916
+ 0: The total amount of wall time = 455.726821
+ 0: The maximum resident set size (KB) = 1392736
Test 041 control_c384gdas_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 87.325746
- 0: The maximum resident set size (KB) = 621884
+ 0: The total amount of wall time = 87.357503
+ 0: The maximum resident set size (KB) = 634836
Test 042 control_stochy_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 47.983257
- 0: The maximum resident set size (KB) = 506516
+ 0: The total amount of wall time = 48.495107
+ 0: The maximum resident set size (KB) = 502228
Test 043 control_stochy_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 82.630832
- 0: The maximum resident set size (KB) = 648564
+ 0: The total amount of wall time = 82.318434
+ 0: The maximum resident set size (KB) = 624068
Test 044 control_lndp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr4_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 133.816801
- 0: The maximum resident set size (KB) = 649496
+ 0: The total amount of wall time = 135.208785
+ 0: The maximum resident set size (KB) = 638444
Test 045 control_iovr4_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr5_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 134.809589
- 0: The maximum resident set size (KB) = 641736
+ 0: The total amount of wall time = 134.345735
+ 0: The maximum resident set size (KB) = 653424
Test 046 control_iovr5_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.886411
- 0: The maximum resident set size (KB) = 1585764
+ 0: The total amount of wall time = 164.594205
+ 0: The maximum resident set size (KB) = 1622864
Test 047 control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 165.322435
- 0: The maximum resident set size (KB) = 1613244
+ 0: The total amount of wall time = 163.006437
+ 0: The maximum resident set size (KB) = 1621616
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 158.585781
- 0: The maximum resident set size (KB) = 1619112
+ 0: The total amount of wall time = 157.787667
+ 0: The maximum resident set size (KB) = 1610164
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 86.088350
- 0: The maximum resident set size (KB) = 881124
+ 0: The total amount of wall time = 85.998651
+ 0: The maximum resident set size (KB) = 888408
Test 050 control_restart_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_noqr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 160.906648
- 0: The maximum resident set size (KB) = 1604684
+ 0: The total amount of wall time = 163.693315
+ 0: The maximum resident set size (KB) = 1591828
Test 051 control_noqr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_noqr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 84.096340
- 0: The maximum resident set size (KB) = 902336
+ 0: The total amount of wall time = 84.403239
+ 0: The maximum resident set size (KB) = 927348
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_decomp_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 167.835644
- 0: The maximum resident set size (KB) = 1603656
+ 0: The total amount of wall time = 170.679636
+ 0: The maximum resident set size (KB) = 1581408
Test 053 control_decomp_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_2threads_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 154.033605
- 0: The maximum resident set size (KB) = 1706080
+ 0: The total amount of wall time = 153.170645
+ 0: The maximum resident set size (KB) = 1711716
Test 054 control_2threads_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_lndp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 296.801899
- 0: The maximum resident set size (KB) = 1609640
+ 0: The total amount of wall time = 297.100669
+ 0: The maximum resident set size (KB) = 1614324
Test 055 control_p8_lndp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_rrtmgp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 217.532517
- 0: The maximum resident set size (KB) = 1674888
+ 0: The total amount of wall time = 216.981714
+ 0: The maximum resident set size (KB) = 1659248
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_mynn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 165.592187
- 0: The maximum resident set size (KB) = 1607640
+ 0: The total amount of wall time = 167.649312
+ 0: The maximum resident set size (KB) = 1622436
Test 057 control_p8_mynn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/merra2_thompson_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 195.167623
- 0: The maximum resident set size (KB) = 1610904
+ 0: The total amount of wall time = 196.941312
+ 0: The maximum resident set size (KB) = 1631404
Test 058 merra2_thompson_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 294.436146
- 0: The maximum resident set size (KB) = 853740
+ 0: The total amount of wall time = 294.643744
+ 0: The maximum resident set size (KB) = 854884
Test 059 regional_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 154.069289
- 0: The maximum resident set size (KB) = 1014072
+ 0: The total amount of wall time = 151.959387
+ 0: The maximum resident set size (KB) = 1010872
Test 060 regional_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 310.864483
- 0: The maximum resident set size (KB) = 849644
+ 0: The total amount of wall time = 315.897742
+ 0: The maximum resident set size (KB) = 838892
Test 061 regional_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 179.472044
- 0: The maximum resident set size (KB) = 813984
+ 0: The total amount of wall time = 179.599481
+ 0: The maximum resident set size (KB) = 845384
Test 062 regional_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_noquilt_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 294.253920
- 0: The maximum resident set size (KB) = 1327104
+ 0: The total amount of wall time = 296.636309
+ 0: The maximum resident set size (KB) = 1364268
Test 063 regional_noquilt_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_netcdf_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 292.926792
- 0: The maximum resident set size (KB) = 852028
+ 0: The total amount of wall time = 293.186553
+ 0: The maximum resident set size (KB) = 847864
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2dwrtdecomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 293.809348
- 0: The maximum resident set size (KB) = 848108
+ 0: The total amount of wall time = 296.877507
+ 0: The maximum resident set size (KB) = 837296
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_wofs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 380.831097
- 0: The maximum resident set size (KB) = 1909572
+ 0: The total amount of wall time = 383.315807
+ 0: The maximum resident set size (KB) = 1913356
Test 066 regional_wofs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 448.093181
- 0: The maximum resident set size (KB) = 1103804
+ 0: The total amount of wall time = 451.071493
+ 0: The maximum resident set size (KB) = 1101988
Test 067 rap_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 237.982413
- 0: The maximum resident set size (KB) = 1289348
+ 0: The total amount of wall time = 233.343673
+ 0: The maximum resident set size (KB) = 1290280
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 469.086162
- 0: The maximum resident set size (KB) = 1001332
+ 0: The total amount of wall time = 470.379858
+ 0: The maximum resident set size (KB) = 1023536
Test 069 rap_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 420.980809
- 0: The maximum resident set size (KB) = 1182584
+ 0: The total amount of wall time = 420.615985
+ 0: The maximum resident set size (KB) = 1184948
Test 070 rap_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.656988
- 0: The maximum resident set size (KB) = 1082664
+ 0: The total amount of wall time = 229.809108
+ 0: The maximum resident set size (KB) = 1101576
Test 071 rap_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 447.514183
- 0: The maximum resident set size (KB) = 1105416
+ 0: The total amount of wall time = 449.820455
+ 0: The maximum resident set size (KB) = 1097124
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 472.544337
- 0: The maximum resident set size (KB) = 1035216
+ 0: The total amount of wall time = 471.768325
+ 0: The maximum resident set size (KB) = 1046940
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 336.646295
- 0: The maximum resident set size (KB) = 1122916
+ 0: The total amount of wall time = 335.061895
+ 0: The maximum resident set size (KB) = 1132580
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.019135
- 0: The maximum resident set size (KB) = 1044308
+ 0: The total amount of wall time = 226.550141
+ 0: The maximum resident set size (KB) = 1029352
Test 075 hrrr_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 232.384019
- 0: The maximum resident set size (KB) = 1017056
+ 0: The total amount of wall time = 233.635964
+ 0: The maximum resident set size (KB) = 1011600
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.734882
- 0: The maximum resident set size (KB) = 1107988
+ 0: The total amount of wall time = 207.131294
+ 0: The maximum resident set size (KB) = 1106600
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 118.626222
- 0: The maximum resident set size (KB) = 1001748
+ 0: The total amount of wall time = 118.578114
+ 0: The maximum resident set size (KB) = 998860
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 440.962499
- 0: The maximum resident set size (KB) = 1099572
+ 0: The total amount of wall time = 441.309666
+ 0: The maximum resident set size (KB) = 1057360
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 532.209018
- 0: The maximum resident set size (KB) = 1980720
+ 0: The total amount of wall time = 532.712054
+ 0: The maximum resident set size (KB) = 1991160
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 522.039560
- 0: The maximum resident set size (KB) = 2025540
+ 0: The total amount of wall time = 515.792700
+ 0: The maximum resident set size (KB) = 2058992
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 339.768205
- 0: The maximum resident set size (KB) = 747648
+ 0: The total amount of wall time = 342.511531
+ 0: The maximum resident set size (KB) = 742316
Test 082 control_csawmg_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 336.280679
- 0: The maximum resident set size (KB) = 746848
+ 0: The total amount of wall time = 332.865752
+ 0: The maximum resident set size (KB) = 747268
Test 083 control_csawmgt_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 184.605268
- 0: The maximum resident set size (KB) = 737416
+ 0: The total amount of wall time = 186.934976
+ 0: The maximum resident set size (KB) = 743008
Test 084 control_ras_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 112.532138
- 0: The maximum resident set size (KB) = 653352
+ 0: The total amount of wall time = 111.464977
+ 0: The maximum resident set size (KB) = 645704
Test 085 control_wam_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 146.297436
- 0: The maximum resident set size (KB) = 1600432
+ 0: The total amount of wall time = 146.712933
+ 0: The maximum resident set size (KB) = 1617784
Test 086 control_p8_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 266.690204
- 0: The maximum resident set size (KB) = 853360
+ 0: The total amount of wall time = 268.418882
+ 0: The maximum resident set size (KB) = 849792
Test 087 regional_control_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 149.574969
- 0: The maximum resident set size (KB) = 805484
+ 0: The total amount of wall time = 147.944081
+ 0: The maximum resident set size (KB) = 812608
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
- Comparing atmf000.nc ............ALT CHECK......OK
+ Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 146.885189
- 0: The maximum resident set size (KB) = 810076
+ 0: The total amount of wall time = 150.780840
+ 0: The maximum resident set size (KB) = 810360
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 165.728363
- 0: The maximum resident set size (KB) = 789572
+ 0: The total amount of wall time = 165.247123
+ 0: The maximum resident set size (KB) = 787628
Test 090 control_stochy_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.800299
- 0: The maximum resident set size (KB) = 813456
+ 0: The total amount of wall time = 148.794493
+ 0: The maximum resident set size (KB) = 808316
Test 091 control_lndp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 228.186015
- 0: The maximum resident set size (KB) = 863652
+ 0: The total amount of wall time = 229.898822
+ 0: The maximum resident set size (KB) = 860616
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 219.018937
- 0: The maximum resident set size (KB) = 862984
+ 0: The total amount of wall time = 225.749094
+ 0: The maximum resident set size (KB) = 856096
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.669722
- 0: The maximum resident set size (KB) = 813432
+ 0: The total amount of wall time = 149.399603
+ 0: The maximum resident set size (KB) = 823456
Test 094 control_ras_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 154.891525
- 0: The maximum resident set size (KB) = 870772
+ 0: The total amount of wall time = 158.692059
+ 0: The maximum resident set size (KB) = 871544
Test 095 control_diag_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.349447
- 0: The maximum resident set size (KB) = 1636064
+ 0: The total amount of wall time = 159.327726
+ 0: The maximum resident set size (KB) = 1607588
Test 096 control_debug_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 993.244043
- 0: The maximum resident set size (KB) = 829480
+ 0: The total amount of wall time = 972.216738
+ 0: The maximum resident set size (KB) = 824100
Test 097 regional_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 272.939965
- 0: The maximum resident set size (KB) = 1196080
+ 0: The total amount of wall time = 277.800839
+ 0: The maximum resident set size (KB) = 1196052
Test 098 rap_control_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 264.184276
- 0: The maximum resident set size (KB) = 1201444
+ 0: The total amount of wall time = 270.255123
+ 0: The maximum resident set size (KB) = 1172544
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.298302
- 0: The maximum resident set size (KB) = 1192044
+ 0: The total amount of wall time = 273.250044
+ 0: The maximum resident set size (KB) = 1194996
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.585663
- 0: The maximum resident set size (KB) = 1170332
+ 0: The total amount of wall time = 271.502518
+ 0: The maximum resident set size (KB) = 1199632
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_drag_suite_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.892891
- 0: The maximum resident set size (KB) = 1203184
+ 0: The total amount of wall time = 272.516051
+ 0: The maximum resident set size (KB) = 1206560
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.458237
- 0: The maximum resident set size (KB) = 1285900
+ 0: The total amount of wall time = 285.163902
+ 0: The maximum resident set size (KB) = 1277132
Test 103 rap_diag_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_cires_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 272.382971
- 0: The maximum resident set size (KB) = 1199752
+ 0: The total amount of wall time = 279.347147
+ 0: The maximum resident set size (KB) = 1203408
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.569299
- 0: The maximum resident set size (KB) = 1197360
+ 0: The total amount of wall time = 281.243572
+ 0: The maximum resident set size (KB) = 1195820
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_lndp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.372101
- 0: The maximum resident set size (KB) = 1196256
+ 0: The total amount of wall time = 275.585512
+ 0: The maximum resident set size (KB) = 1194036
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.979548
- 0: The maximum resident set size (KB) = 1206376
+ 0: The total amount of wall time = 276.649882
+ 0: The maximum resident set size (KB) = 1191084
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.013535
- 0: The maximum resident set size (KB) = 1200588
+ 0: The total amount of wall time = 268.867286
+ 0: The maximum resident set size (KB) = 1193312
Test 108 rap_noah_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.144950
- 0: The maximum resident set size (KB) = 1173876
+ 0: The total amount of wall time = 273.640190
+ 0: The maximum resident set size (KB) = 1198552
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 444.242462
- 0: The maximum resident set size (KB) = 1192956
+ 0: The total amount of wall time = 450.997682
+ 0: The maximum resident set size (KB) = 1193464
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 266.133423
- 0: The maximum resident set size (KB) = 1160672
+ 0: The total amount of wall time = 270.737051
+ 0: The maximum resident set size (KB) = 1186396
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 329.830037
- 0: The maximum resident set size (KB) = 1195020
+ 0: The total amount of wall time = 333.464130
+ 0: The maximum resident set size (KB) = 1197984
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.610092
- 0: The maximum resident set size (KB) = 1203804
+ 0: The total amount of wall time = 271.043080
+ 0: The maximum resident set size (KB) = 1195892
Test 113 rap_flake_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 474.797353
- 0: The maximum resident set size (KB) = 1207704
+ 0: The total amount of wall time = 477.896260
+ 0: The maximum resident set size (KB) = 1201416
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 277.834959
- 0: The maximum resident set size (KB) = 509588
+ 0: The total amount of wall time = 279.368314
+ 0: The maximum resident set size (KB) = 481600
Test 115 control_wam_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 216.466826
- 0: The maximum resident set size (KB) = 1150164
+ 0: The total amount of wall time = 221.770194
+ 0: The maximum resident set size (KB) = 1150316
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 369.029832
- 0: The maximum resident set size (KB) = 1052676
+ 0: The total amount of wall time = 369.556851
+ 0: The maximum resident set size (KB) = 1056244
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 190.140482
- 0: The maximum resident set size (KB) = 963984
+ 0: The total amount of wall time = 190.427715
+ 0: The maximum resident set size (KB) = 979816
Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 348.481483
- 0: The maximum resident set size (KB) = 1092100
+ 0: The total amount of wall time = 349.946379
+ 0: The maximum resident set size (KB) = 1082320
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 177.686687
- 0: The maximum resident set size (KB) = 958268
+ 0: The total amount of wall time = 176.550235
+ 0: The maximum resident set size (KB) = 959496
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 204.075477
- 0: The maximum resident set size (KB) = 903488
+ 0: The total amount of wall time = 202.692334
+ 0: The maximum resident set size (KB) = 911664
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 276.333974
- 0: The maximum resident set size (KB) = 1035132
+ 0: The total amount of wall time = 276.438246
+ 0: The maximum resident set size (KB) = 1032892
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 99.774300
- 0: The maximum resident set size (KB) = 925324
+ 0: The total amount of wall time = 99.778809
+ 0: The maximum resident set size (KB) = 929844
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 111.576488
- 0: The maximum resident set size (KB) = 1202272
+ 0: The total amount of wall time = 114.704915
+ 0: The maximum resident set size (KB) = 1162016
Test 124 conus13km_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 42.983390
- 0: The maximum resident set size (KB) = 1095808
+ 0: The total amount of wall time = 43.219208
+ 0: The maximum resident set size (KB) = 1118396
Test 125 conus13km_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 61.778142
- 0: The maximum resident set size (KB) = 1101396
+ 0: The total amount of wall time = 61.579077
+ 0: The maximum resident set size (KB) = 1101688
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 243.068761
- 0: The maximum resident set size (KB) = 982284
+ 0: The total amount of wall time = 240.480859
+ 0: The maximum resident set size (KB) = 986272
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.424007
- 0: The maximum resident set size (KB) = 1080424
+ 0: The total amount of wall time = 274.150312
+ 0: The maximum resident set size (KB) = 1081460
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 263.006189
- 0: The maximum resident set size (KB) = 1080240
+ 0: The total amount of wall time = 265.922374
+ 0: The maximum resident set size (KB) = 1072500
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 811.195371
- 0: The maximum resident set size (KB) = 1216144
+ 0: The total amount of wall time = 822.722419
+ 0: The maximum resident set size (KB) = 1219912
Test 130 conus13km_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 820.108485
- 0: The maximum resident set size (KB) = 921656
+ 0: The total amount of wall time = 814.866061
+ 0: The maximum resident set size (KB) = 918584
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 463.045155
- 0: The maximum resident set size (KB) = 1150768
+ 0: The total amount of wall time = 459.507598
+ 0: The maximum resident set size (KB) = 1148604
Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 835.709060
- 0: The maximum resident set size (KB) = 1271496
+ 0: The total amount of wall time = 830.181302
+ 0: The maximum resident set size (KB) = 1292668
Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.238718
- 0: The maximum resident set size (KB) = 1115652
+ 0: The total amount of wall time = 274.638429
+ 0: The maximum resident set size (KB) = 1119064
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 269.591331
- 0: The maximum resident set size (KB) = 732584
+ 0: The total amount of wall time = 271.319114
+ 0: The maximum resident set size (KB) = 735252
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 329.311193
- 0: The maximum resident set size (KB) = 1115180
+ 0: The total amount of wall time = 335.526396
+ 0: The maximum resident set size (KB) = 1106148
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 393.141806
- 0: The maximum resident set size (KB) = 830692
+ 0: The total amount of wall time = 396.155571
+ 0: The maximum resident set size (KB) = 827180
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 763.367385
- 0: The maximum resident set size (KB) = 855152
+ 0: The total amount of wall time = 763.044752
+ 0: The maximum resident set size (KB) = 852124
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 866.318467
- 0: The maximum resident set size (KB) = 877336
+ 0: The total amount of wall time = 871.959441
+ 0: The maximum resident set size (KB) = 881404
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 302.505423
- 0: The maximum resident set size (KB) = 505936
+ 0: The total amount of wall time = 310.160417
+ 0: The maximum resident set size (KB) = 502844
Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 372.281162
- 0: The maximum resident set size (KB) = 514792
+ 0: The total amount of wall time = 389.580576
+ 0: The maximum resident set size (KB) = 521436
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5089,19 +5089,19 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 144.728929
- 0: The maximum resident set size (KB) = 376824
+ 0: The total amount of wall time = 156.092604
+ 0: The maximum resident set size (KB) = 377028
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_multiple_4nests_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5162,7 +5162,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
@@ -5172,7 +5172,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
@@ -5196,7 +5196,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
@@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 397.004363
- 0: The maximum resident set size (KB) = 482756
+ 0: The total amount of wall time = 413.646554
+ 0: The maximum resident set size (KB) = 473780
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 204.311082
- 0: The maximum resident set size (KB) = 531212
+ 0: The total amount of wall time = 214.551997
+ 0: The maximum resident set size (KB) = 530400
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5256,18 +5256,18 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 192.788451
- 0: The maximum resident set size (KB) = 528404
+ 0: The total amount of wall time = 206.391257
+ 0: The maximum resident set size (KB) = 532260
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 233.026851
- 0: The maximum resident set size (KB) = 580944
+ 0: The total amount of wall time = 241.659181
+ 0: The maximum resident set size (KB) = 583064
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 64.936264
- 0: The maximum resident set size (KB) = 399072
+ 0: The total amount of wall time = 62.026329
+ 0: The maximum resident set size (KB) = 399936
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_nested_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5309,16 +5309,16 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
@@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 226.320282
- 0: The maximum resident set size (KB) = 784844
+ 0: The total amount of wall time = 224.890724
+ 0: The maximum resident set size (KB) = 795792
Test 148 gnv1_nested_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 712.907872
- 0: The maximum resident set size (KB) = 624452
+ 0: The total amount of wall time = 722.026750
+ 0: The maximum resident set size (KB) = 548576
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 492.970928
- 0: The maximum resident set size (KB) = 660640
+ 0: The total amount of wall time = 492.103995
+ 0: The maximum resident set size (KB) = 624412
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 508.612300
- 0: The maximum resident set size (KB) = 698852
+ 0: The total amount of wall time = 497.852704
+ 0: The maximum resident set size (KB) = 739400
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 363.479913
- 0: The maximum resident set size (KB) = 688796
+ 0: The total amount of wall time = 367.171305
+ 0: The maximum resident set size (KB) = 725100
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 361.856230
- 0: The maximum resident set size (KB) = 823472
+ 0: The total amount of wall time = 373.632735
+ 0: The maximum resident set size (KB) = 792300
Test 153 hafs_regional_docn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_oisst_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 360.283526
- 0: The maximum resident set size (KB) = 805924
+ 0: The total amount of wall time = 358.388454
+ 0: The maximum resident set size (KB) = 811556
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_datm_cdeps_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 942.521065
- 0: The maximum resident set size (KB) = 1212460
+ 0: The total amount of wall time = 950.899892
+ 0: The maximum resident set size (KB) = 1219500
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 151.363887
- 0: The maximum resident set size (KB) = 1135228
+ 0: The total amount of wall time = 153.853228
+ 0: The maximum resident set size (KB) = 1123920
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_restart_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 89.959781
- 0: The maximum resident set size (KB) = 1078044
+ 0: The total amount of wall time = 90.972188
+ 0: The maximum resident set size (KB) = 1088780
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.635190
- 0: The maximum resident set size (KB) = 1004284
+ 0: The total amount of wall time = 146.030170
+ 0: The maximum resident set size (KB) = 1008768
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_iau_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.105170
- 0: The maximum resident set size (KB) = 1005596
+ 0: The total amount of wall time = 148.345006
+ 0: The maximum resident set size (KB) = 999632
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_stochy_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.721221
- 0: The maximum resident set size (KB) = 1002800
+ 0: The total amount of wall time = 147.600625
+ 0: The maximum resident set size (KB) = 1003720
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.452521
- 0: The maximum resident set size (KB) = 1141212
+ 0: The total amount of wall time = 147.197015
+ 0: The maximum resident set size (KB) = 1121144
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.787859
- 0: The maximum resident set size (KB) = 1118308
+ 0: The total amount of wall time = 150.003110
+ 0: The maximum resident set size (KB) = 1131948
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.303852
- 0: The maximum resident set size (KB) = 1005720
+ 0: The total amount of wall time = 145.887089
+ 0: The maximum resident set size (KB) = 1005404
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 377.824234
- 0: The maximum resident set size (KB) = 1050572
+ 0: The total amount of wall time = 356.695793
+ 0: The maximum resident set size (KB) = 1052980
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 386.459490
- 0: The maximum resident set size (KB) = 1047540
+ 0: The total amount of wall time = 360.244361
+ 0: The maximum resident set size (KB) = 1057408
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.441484
- 0: The maximum resident set size (KB) = 1127644
+ 0: The total amount of wall time = 154.222800
+ 0: The maximum resident set size (KB) = 1121736
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 241.094129
- 0: The maximum resident set size (KB) = 2431952
+ 0: The total amount of wall time = 223.783340
+ 0: The maximum resident set size (KB) = 2491360
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_gfs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 226.580313
- 0: The maximum resident set size (KB) = 2476300
+ 0: The total amount of wall time = 223.247409
+ 0: The maximum resident set size (KB) = 2484356
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_debug_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 357.204948
- 0: The maximum resident set size (KB) = 1046324
+ 0: The total amount of wall time = 354.179969
+ 0: The maximum resident set size (KB) = 1043136
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.476488
- 0: The maximum resident set size (KB) = 1127896
+ 0: The total amount of wall time = 149.295762
+ 0: The maximum resident set size (KB) = 1131848
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_gswp3_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 36.001820
- 0: The maximum resident set size (KB) = 254432
+ 0: The total amount of wall time = 35.662665
+ 0: The maximum resident set size (KB) = 252556
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 37.876324
- 0: The maximum resident set size (KB) = 320484
+ 0: The total amount of wall time = 38.091672
+ 0: The maximum resident set size (KB) = 319816
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 21.762636
- 0: The maximum resident set size (KB) = 315984
+ 0: The total amount of wall time = 22.170708
+ 0: The maximum resident set size (KB) = 315616
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_sbs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 266.601415
- 0: The maximum resident set size (KB) = 1583840
+ 0: The total amount of wall time = 242.799798
+ 0: The maximum resident set size (KB) = 1588680
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 265.692732
- 0: The maximum resident set size (KB) = 1591404
+ 0: The total amount of wall time = 248.419274
+ 0: The maximum resident set size (KB) = 1573676
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_atmlnd_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 124.281916
- 0: The maximum resident set size (KB) = 888112
+ 0: The total amount of wall time = 125.717673
+ 0: The maximum resident set size (KB) = 894372
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmwav_control_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 99.894690
- 0: The maximum resident set size (KB) = 1613184
+ 0: The total amount of wall time = 92.732975
+ 0: The maximum resident set size (KB) = 1655124
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_atmwav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 87.873404
- 0: The maximum resident set size (KB) = 664332
+ 0: The total amount of wall time = 87.148476
+ 0: The maximum resident set size (KB) = 668300
Test 178 control_atmwav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.354898
- 0: The maximum resident set size (KB) = 3000484
+ 0: The total amount of wall time = 220.459272
+ 0: The maximum resident set size (KB) = 3004436
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 289.664148
- 0: The maximum resident set size (KB) = 3067228
+ 0: The total amount of wall time = 277.280527
+ 0: The maximum resident set size (KB) = 3085148
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_micro_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 301.433619
- 0: The maximum resident set size (KB) = 3078804
+ 0: The total amount of wall time = 290.237464
+ 0: The maximum resident set size (KB) = 3095712
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_atmaq_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6193,17 +6193,17 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
+ Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1181.521694
- 0: The maximum resident set size (KB) = 4504128
+ 0: The total amount of wall time = 1207.046141
+ 0: The maximum resident set size (KB) = 4400692
Test 182 regional_atmaq_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_gnu
Checking test 183 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 692.795800
-0: The maximum resident set size (KB) = 794260
+0: The total amount of wall time = 681.675545
+0: The maximum resident set size (KB) = 794988
Test 183 control_c48_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_gnu
Checking test 184 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 223.895041
- 0: The maximum resident set size (KB) = 551168
+ 0: The total amount of wall time = 236.825354
+ 0: The maximum resident set size (KB) = 553272
Test 184 control_stochy_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_gnu
Checking test 185 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 291.940296
- 0: The maximum resident set size (KB) = 559112
+ 0: The total amount of wall time = 281.241988
+ 0: The maximum resident set size (KB) = 560788
Test 185 control_ras_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_gnu
Checking test 186 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 282.015183
- 0: The maximum resident set size (KB) = 1313376
+ 0: The total amount of wall time = 280.284469
+ 0: The maximum resident set size (KB) = 1308004
Test 186 control_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_gnu
Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 267.617016
- 0: The maximum resident set size (KB) = 1312300
+ 0: The total amount of wall time = 267.323340
+ 0: The maximum resident set size (KB) = 1307348
Test 187 control_p8_ugwpv1_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_gnu
Checking test 188 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 340.509143
- 0: The maximum resident set size (KB) = 599100
+ 0: The total amount of wall time = 346.146210
+ 0: The maximum resident set size (KB) = 599816
Test 188 control_flake_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_gnu
Checking test 189 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 679.829016
- 0: The maximum resident set size (KB) = 896284
+ 0: The total amount of wall time = 689.690751
+ 0: The maximum resident set size (KB) = 895100
Test 189 rap_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_gnu
Checking test 190 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 689.072968
- 0: The maximum resident set size (KB) = 903596
+ 0: The total amount of wall time = 693.551294
+ 0: The maximum resident set size (KB) = 898104
Test 190 rap_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_gnu
Checking test 191 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 616.918734
- 0: The maximum resident set size (KB) = 977320
+ 0: The total amount of wall time = 611.268683
+ 0: The maximum resident set size (KB) = 983768
Test 191 rap_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_gnu
Checking test 192 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 352.112529
- 0: The maximum resident set size (KB) = 629296
+ 0: The total amount of wall time = 349.652861
+ 0: The maximum resident set size (KB) = 625004
Test 192 rap_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_gnu
Checking test 193 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 683.790792
- 0: The maximum resident set size (KB) = 897200
+ 0: The total amount of wall time = 684.575073
+ 0: The maximum resident set size (KB) = 896844
Test 193 rap_sfcdiff_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_gnu
Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 697.040564
- 0: The maximum resident set size (KB) = 897280
+ 0: The total amount of wall time = 692.956862
+ 0: The maximum resident set size (KB) = 897036
Test 194 rap_sfcdiff_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_gnu
Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 523.826402
- 0: The maximum resident set size (KB) = 632020
+ 0: The total amount of wall time = 514.611257
+ 0: The maximum resident set size (KB) = 630024
Test 195 rap_sfcdiff_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_gnu
Checking test 196 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 355.096279
- 0: The maximum resident set size (KB) = 893200
+ 0: The total amount of wall time = 347.599333
+ 0: The maximum resident set size (KB) = 891568
Test 196 hrrr_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_noqr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_noqr_gnu
Checking test 197 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 343.772398
- 0: The maximum resident set size (KB) = 879540
+ 0: The total amount of wall time = 346.276386
+ 0: The maximum resident set size (KB) = 884948
Test 197 hrrr_control_noqr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_gnu
Checking test 198 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 302.538771
- 0: The maximum resident set size (KB) = 971500
+ 0: The total amount of wall time = 304.725469
+ 0: The maximum resident set size (KB) = 976560
Test 198 hrrr_control_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_gnu
Checking test 199 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 348.550028
- 0: The maximum resident set size (KB) = 894580
+ 0: The total amount of wall time = 346.158226
+ 0: The maximum resident set size (KB) = 892444
Test 199 hrrr_control_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_gnu
Checking test 200 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 182.498345
- 0: The maximum resident set size (KB) = 612224
+ 0: The total amount of wall time = 201.082821
+ 0: The maximum resident set size (KB) = 613028
Test 200 hrrr_control_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_noqr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_noqr_gnu
Checking test 201 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 179.413236
- 0: The maximum resident set size (KB) = 705664
+ 0: The total amount of wall time = 180.612869
+ 0: The maximum resident set size (KB) = 707324
Test 201 hrrr_control_restart_noqr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_gnu
Checking test 202 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 673.387490
- 0: The maximum resident set size (KB) = 897904
+ 0: The total amount of wall time = 669.572003
+ 0: The maximum resident set size (KB) = 895348
Test 202 rrfs_v1beta_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_gnu
Checking test 203 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 84.392899
- 0: The maximum resident set size (KB) = 592080
+ 0: The total amount of wall time = 83.770174
+ 0: The maximum resident set size (KB) = 600416
Test 203 control_diag_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_gnu
Checking test 204 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 434.996273
- 0: The maximum resident set size (KB) = 595888
+ 0: The total amount of wall time = 434.969481
+ 0: The maximum resident set size (KB) = 602324
Test 204 regional_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_gnu
Checking test 205 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 141.824319
- 0: The maximum resident set size (KB) = 911384
+ 0: The total amount of wall time = 140.029285
+ 0: The maximum resident set size (KB) = 919844
Test 205 rap_control_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_gnu
Checking test 206 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 134.395503
- 0: The maximum resident set size (KB) = 903880
+ 0: The total amount of wall time = 135.522272
+ 0: The maximum resident set size (KB) = 911428
Test 206 hrrr_control_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_gnu
Checking test 207 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 138.979459
- 0: The maximum resident set size (KB) = 908716
+ 0: The total amount of wall time = 140.930872
+ 0: The maximum resident set size (KB) = 911460
Test 207 hrrr_gf_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_gnu
Checking test 208 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.555490
- 0: The maximum resident set size (KB) = 914392
+ 0: The total amount of wall time = 139.866402
+ 0: The maximum resident set size (KB) = 914132
Test 208 hrrr_c3_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_gnu
Checking test 209 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 151.580921
- 0: The maximum resident set size (KB) = 999028
+ 0: The total amount of wall time = 150.728221
+ 0: The maximum resident set size (KB) = 1005068
Test 209 rap_diag_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_gnu
Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 220.550247
- 0: The maximum resident set size (KB) = 909140
+ 0: The total amount of wall time = 223.215254
+ 0: The maximum resident set size (KB) = 873516
Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_gnu
Checking test 211 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.941752
- 0: The maximum resident set size (KB) = 916300
+ 0: The total amount of wall time = 141.907998
+ 0: The maximum resident set size (KB) = 885084
Test 211 rap_progcld_thompson_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_gnu
Checking test 212 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.579622
- 0: The maximum resident set size (KB) = 901792
+ 0: The total amount of wall time = 139.755853
+ 0: The maximum resident set size (KB) = 911388
Test 212 rrfs_v1beta_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_gnu
Checking test 213 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 80.054783
- 0: The maximum resident set size (KB) = 540512
+ 0: The total amount of wall time = 79.026826
+ 0: The maximum resident set size (KB) = 544284
Test 213 control_ras_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_gnu
Checking test 214 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 121.470016
- 0: The maximum resident set size (KB) = 538164
+ 0: The total amount of wall time = 117.032905
+ 0: The maximum resident set size (KB) = 543148
Test 214 control_stochy_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_gnu
Checking test 215 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 88.919673
- 0: The maximum resident set size (KB) = 1292548
+ 0: The total amount of wall time = 88.372124
+ 0: The maximum resident set size (KB) = 1295696
Test 215 control_debug_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_gnu
Checking test 216 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 143.855554
- 0: The maximum resident set size (KB) = 912372
+ 0: The total amount of wall time = 138.439615
+ 0: The maximum resident set size (KB) = 917516
Test 216 rap_flake_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_gnu
Checking test 217 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 159.835207
- 0: The maximum resident set size (KB) = 913792
+ 0: The total amount of wall time = 157.204836
+ 0: The maximum resident set size (KB) = 917908
Test 217 rap_clm_lake_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_gnu
Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.077066
- 0: The maximum resident set size (KB) = 910856
+ 0: The total amount of wall time = 235.347977
+ 0: The maximum resident set size (KB) = 917920
Test 218 gnv1_c96_no_nest_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_gnu
Checking test 219 control_wam_debug_gnu results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 139.290323
- 0: The maximum resident set size (KB) = 249200
+ 0: The total amount of wall time = 137.421986
+ 0: The maximum resident set size (KB) = 244972
Test 219 control_wam_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_gnu
Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 697.275705
- 0: The maximum resident set size (KB) = 752000
+ 0: The total amount of wall time = 692.764510
+ 0: The maximum resident set size (KB) = 750048
Test 220 rap_control_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_gnu
Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 353.770014
- 0: The maximum resident set size (KB) = 750444
+ 0: The total amount of wall time = 355.454468
+ 0: The maximum resident set size (KB) = 748012
Test 221 hrrr_control_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_gnu
Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 631.534921
- 0: The maximum resident set size (KB) = 803532
+ 0: The total amount of wall time = 622.909581
+ 0: The maximum resident set size (KB) = 804520
Test 222 rap_2threads_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_gnu
Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 311.792468
- 0: The maximum resident set size (KB) = 814684
+ 0: The total amount of wall time = 305.705708
+ 0: The maximum resident set size (KB) = 805892
Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_gnu
Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 351.896889
- 0: The maximum resident set size (KB) = 749348
+ 0: The total amount of wall time = 352.538569
+ 0: The maximum resident set size (KB) = 746216
Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_gnu
Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 526.713416
- 0: The maximum resident set size (KB) = 594756
+ 0: The total amount of wall time = 517.257788
+ 0: The maximum resident set size (KB) = 592932
Test 225 rap_restart_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_gnu
Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 184.051875
- 0: The maximum resident set size (KB) = 584392
+ 0: The total amount of wall time = 185.821866
+ 0: The maximum resident set size (KB) = 582260
Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_gnu
Checking test 227 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 237.901392
- 0: The maximum resident set size (KB) = 901060
+ 0: The total amount of wall time = 241.101873
+ 0: The maximum resident set size (KB) = 899848
Test 227 conus13km_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_gnu
Checking test 228 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 100.776535
- 0: The maximum resident set size (KB) = 937072
+ 0: The total amount of wall time = 99.783553
+ 0: The maximum resident set size (KB) = 937436
Test 228 conus13km_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_gnu
Checking test 229 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 126.313436
- 0: The maximum resident set size (KB) = 600832
+ 0: The total amount of wall time = 127.730944
+ 0: The maximum resident set size (KB) = 599308
Test 229 conus13km_restart_mismatch_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_gnu
Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 405.947899
- 0: The maximum resident set size (KB) = 782644
+ 0: The total amount of wall time = 407.328008
+ 0: The maximum resident set size (KB) = 787716
Test 230 rap_control_dyn64_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_gnu
Checking test 231 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.632430
- 0: The maximum resident set size (KB) = 762164
+ 0: The total amount of wall time = 141.061955
+ 0: The maximum resident set size (KB) = 763912
Test 231 rap_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_gnu
Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 135.820539
- 0: The maximum resident set size (KB) = 762324
+ 0: The total amount of wall time = 138.516894
+ 0: The maximum resident set size (KB) = 762000
Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_gnu
Checking test 233 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 415.827265
- 0: The maximum resident set size (KB) = 920564
+ 0: The total amount of wall time = 415.930622
+ 0: The maximum resident set size (KB) = 917172
Test 233 conus13km_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_gnu
Checking test 234 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 426.875680
- 0: The maximum resident set size (KB) = 635624
+ 0: The total amount of wall time = 415.411982
+ 0: The maximum resident set size (KB) = 637428
Test 234 conus13km_debug_qr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_gnu
Checking test 235 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 251.480665
- 0: The maximum resident set size (KB) = 956152
+ 0: The total amount of wall time = 250.018445
+ 0: The maximum resident set size (KB) = 955564
Test 235 conus13km_debug_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_gnu
Checking test 236 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 411.098192
- 0: The maximum resident set size (KB) = 986952
+ 0: The total amount of wall time = 415.685734
+ 0: The maximum resident set size (KB) = 976656
Test 236 conus13km_radar_tten_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_gnu
Checking test 237 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 143.792686
- 0: The maximum resident set size (KB) = 787444
+ 0: The total amount of wall time = 144.307142
+ 0: The maximum resident set size (KB) = 792460
Test 237 rap_control_dyn64_phy32_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_gnu
Checking test 238 cpld_control_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 629.363051
- 0: The maximum resident set size (KB) = 1511956
+ 0: The total amount of wall time = 630.737741
+ 0: The maximum resident set size (KB) = 1508960
Test 238 cpld_control_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_gnu
Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 374.149647
- 0: The maximum resident set size (KB) = 1406204
+ 0: The total amount of wall time = 376.902625
+ 0: The maximum resident set size (KB) = 1405548
Test 239 cpld_control_nowave_noaero_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_gnu
Checking test 240 cpld_debug_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 353.473349
- 0: The maximum resident set size (KB) = 1519488
+ 0: The total amount of wall time = 365.690517
+ 0: The maximum resident set size (KB) = 1520780
Test 240 cpld_debug_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_gnu
Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1305.915616
- 0: The maximum resident set size (KB) = 1378840
+ 0: The total amount of wall time = 1309.292695
+ 0: The maximum resident set size (KB) = 1381772
Test 241 cpld_control_pdlib_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_gnu
Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 749.003228
- 0: The maximum resident set size (KB) = 1385740
+ 0: The total amount of wall time = 762.149234
+ 0: The maximum resident set size (KB) = 1387380
Test 242 cpld_debug_pdlib_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_gnu
Checking test 243 datm_cdeps_control_cfsr_gnu results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 170.884111
- 0: The maximum resident set size (KB) = 697716
+ 0: The total amount of wall time = 164.064629
+ 0: The maximum resident set size (KB) = 695084
Test 243 datm_cdeps_control_cfsr_gnu PASS
REGRESSION TEST WAS SUCCESSFUL
-Fri Feb 9 04:43:44 UTC 2024
-Elapsed time: 02h:01m:05s. Have a nice day!
+Mon Feb 12 21:38:25 UTC 2024
+Elapsed time: 01h:50m:34s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index f23ba5ab87..52d0eb537b 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,76 +1,76 @@
-Thu Feb 8 17:53:11 CST 2024
+Mon Feb 12 02:35:49 PM CST 2024
Start Regression test
-Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
-+c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 220 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 370 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 249 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 414 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaero_intel elapsed time 393 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 383 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 568 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 221 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 900 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 43 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 574 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 164 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 639 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 529 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 883 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 337 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 914 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 889 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 733 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 233 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 851 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 510 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 601 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 253 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_debug_gnu elapsed time 803 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 719 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 721 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 744 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_gnu elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 637 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 745 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 842 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 221 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 831 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 772 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 819 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 779 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 652 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_gnu elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 957 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 916 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 701 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1165 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 414 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 700 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1084 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 1045 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 285 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 490 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_gnu elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1098 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 430.551336
- 0: The maximum resident set size (KB) = 1890576
+ 0: The total amount of wall time = 451.823372
+ 0: The maximum resident set size (KB) = 1889368
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 783.981906
- 0: The maximum resident set size (KB) = 1785560
+ 0: The total amount of wall time = 783.487041
+ 0: The maximum resident set size (KB) = 1765228
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_iau_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 829.172560
- 0: The maximum resident set size (KB) = 2165104
+ 0: The total amount of wall time = 837.817324
+ 0: The maximum resident set size (KB) = 2151536
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 370.372125
- 0: The maximum resident set size (KB) = 1169496
+ 0: The total amount of wall time = 380.010740
+ 0: The maximum resident set size (KB) = 1174540
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 894.098335
- 0: The maximum resident set size (KB) = 1699572
+ 0: The total amount of wall time = 892.480567
+ 0: The maximum resident set size (KB) = 1689272
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1205.819574
- 0: The maximum resident set size (KB) = 1731696
+ 0: The total amount of wall time = 1203.667275
+ 0: The maximum resident set size (KB) = 1733732
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 451.274498
- 0: The maximum resident set size (KB) = 2063756
+ 0: The total amount of wall time = 446.297803
+ 0: The maximum resident set size (KB) = 2077260
Test 007 cpld_control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 443.285201
- 0: The maximum resident set size (KB) = 2092632
+ 0: The total amount of wall time = 461.152058
+ 0: The maximum resident set size (KB) = 2057152
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 242.086652
- 0: The maximum resident set size (KB) = 1982236
+ 0: The total amount of wall time = 254.110310
+ 0: The maximum resident set size (KB) = 1978604
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_qr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 441.286202
- 0: The maximum resident set size (KB) = 1983244
+ 0: The total amount of wall time = 458.574330
+ 0: The maximum resident set size (KB) = 1992252
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_qr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 241.976440
- 0: The maximum resident set size (KB) = 1741020
+ 0: The total amount of wall time = 266.614398
+ 0: The maximum resident set size (KB) = 1747240
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_2threads_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 540.920443
- 0: The maximum resident set size (KB) = 2482208
+ 0: The total amount of wall time = 550.067206
+ 0: The maximum resident set size (KB) = 2493752
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_decomp_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 440.830683
- 0: The maximum resident set size (KB) = 2062560
+ 0: The total amount of wall time = 476.512382
+ 0: The maximum resident set size (KB) = 2057736
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 370.215536
- 0: The maximum resident set size (KB) = 1900140
+ 0: The total amount of wall time = 401.178588
+ 0: The maximum resident set size (KB) = 1883144
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_ciceC_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 436.533744
- 0: The maximum resident set size (KB) = 2092868
+ 0: The total amount of wall time = 462.374245
+ 0: The maximum resident set size (KB) = 2096304
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c192_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 941.018889
- 0: The maximum resident set size (KB) = 2805860
+ 0: The total amount of wall time = 916.721771
+ 0: The maximum resident set size (KB) = 2807628
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_c192_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 328.363025
- 0: The maximum resident set size (KB) = 2927324
+ 0: The total amount of wall time = 347.504287
+ 0: The maximum resident set size (KB) = 2923888
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_bmark_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 482.035387
- 0: The maximum resident set size (KB) = 3623532
+ 0: The total amount of wall time = 527.530983
+ 0: The maximum resident set size (KB) = 3626832
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_bmark_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 283.674077
- 0: The maximum resident set size (KB) = 3622612
+ 0: The total amount of wall time = 361.132627
+ 0: The maximum resident set size (KB) = 3611344
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_s2sa_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 283.122530
- 0: The maximum resident set size (KB) = 2056368
+ 0: The total amount of wall time = 299.062655
+ 0: The maximum resident set size (KB) = 2015620
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 400.368736
- 0: The maximum resident set size (KB) = 1774836
+ 0: The total amount of wall time = 413.026049
+ 0: The maximum resident set size (KB) = 1776820
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_nowave_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 224.538006
- 0: The maximum resident set size (KB) = 1823780
+ 0: The total amount of wall time = 230.327785
+ 0: The maximum resident set size (KB) = 1815740
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 396.792409
- 0: The maximum resident set size (KB) = 2059020
+ 0: The total amount of wall time = 414.437688
+ 0: The maximum resident set size (KB) = 2067420
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 268.191668
- 0: The maximum resident set size (KB) = 1785568
+ 0: The total amount of wall time = 275.501105
+ 0: The maximum resident set size (KB) = 1789356
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_agrid_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 225.810803
- 0: The maximum resident set size (KB) = 1829460
+ 0: The total amount of wall time = 234.104777
+ 0: The maximum resident set size (KB) = 1817736
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c48_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 425.989730
- 0: The maximum resident set size (KB) = 2836632
+ 0: The total amount of wall time = 427.710294
+ 0: The maximum resident set size (KB) = 2840708
Test 026 cpld_control_c48_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 420.378922
- 0: The maximum resident set size (KB) = 2072848
+ 0: The total amount of wall time = 439.255864
+ 0: The maximum resident set size (KB) = 2077380
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 814.685799
- 0: The maximum resident set size (KB) = 1810172
+ 0: The total amount of wall time = 819.728581
+ 0: The maximum resident set size (KB) = 1803056
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 386.496348
- 0: The maximum resident set size (KB) = 1303752
+ 0: The total amount of wall time = 396.266881
+ 0: The maximum resident set size (KB) = 1286388
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 903.394383
- 0: The maximum resident set size (KB) = 1741320
+ 0: The total amount of wall time = 928.820630
+ 0: The maximum resident set size (KB) = 1721252
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1273.059948
- 0: The maximum resident set size (KB) = 1789012
+ 0: The total amount of wall time = 1286.314019
+ 0: The maximum resident set size (KB) = 1764500
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 159.943091
- 0: The maximum resident set size (KB) = 711016
+ 0: The total amount of wall time = 162.518769
+ 0: The maximum resident set size (KB) = 705340
Test 032 control_flake_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,18 +2094,18 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 114.260992
- 0: The maximum resident set size (KB) = 670176
+ 0: The total amount of wall time = 117.220259
+ 0: The maximum resident set size (KB) = 659600
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
- Comparing atmf000.nc ............ALT CHECK......OK
+ Comparing atmf000.nc .........OK
Comparing atmf024.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_sfcf000.nc .........OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
@@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 119.694421
- 0: The maximum resident set size (KB) = 668660
+ 0: The total amount of wall time = 125.322944
+ 0: The maximum resident set size (KB) = 668656
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_latlon_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,32 +2134,32 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 116.581534
- 0: The maximum resident set size (KB) = 675996
+ 0: The total amount of wall time = 116.347518
+ 0: The maximum resident set size (KB) = 670628
Test 035 control_latlon_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
+ Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc .........OK
+ Comparing atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 122.289495
- 0: The maximum resident set size (KB) = 670148
+ 0: The total amount of wall time = 119.598980
+ 0: The maximum resident set size (KB) = 673448
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 337.978757
-0: The maximum resident set size (KB) = 865740
+0: The total amount of wall time = 340.966705
+0: The maximum resident set size (KB) = 870532
Test 037 control_c48_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 338.723507
-0: The maximum resident set size (KB) = 861396
+0: The total amount of wall time = 341.901668
+0: The maximum resident set size (KB) = 864788
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c192_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 449.395290
- 0: The maximum resident set size (KB) = 961848
+ 0: The total amount of wall time = 468.140966
+ 0: The maximum resident set size (KB) = 990168
Test 039 control_c192_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 469.094595
- 0: The maximum resident set size (KB) = 1445964
+ 0: The total amount of wall time = 483.806495
+ 0: The maximum resident set size (KB) = 1451244
Test 040 control_c384_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384gdas_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 415.271984
- 0: The maximum resident set size (KB) = 1527500
+ 0: The total amount of wall time = 417.955903
+ 0: The maximum resident set size (KB) = 1551488
Test 041 control_c384gdas_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 76.271868
- 0: The maximum resident set size (KB) = 675804
+ 0: The total amount of wall time = 78.151974
+ 0: The maximum resident set size (KB) = 679428
Test 042 control_stochy_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 43.037293
- 0: The maximum resident set size (KB) = 538436
+ 0: The total amount of wall time = 44.506409
+ 0: The maximum resident set size (KB) = 543916
Test 043 control_stochy_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 73.369905
- 0: The maximum resident set size (KB) = 672884
+ 0: The total amount of wall time = 72.350384
+ 0: The maximum resident set size (KB) = 662704
Test 044 control_lndp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr4_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 118.932850
- 0: The maximum resident set size (KB) = 665692
+ 0: The total amount of wall time = 116.144709
+ 0: The maximum resident set size (KB) = 666700
Test 045 control_iovr4_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr5_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 117.521707
- 0: The maximum resident set size (KB) = 675384
+ 0: The total amount of wall time = 117.385820
+ 0: The maximum resident set size (KB) = 663936
Test 046 control_iovr5_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 143.899096
- 0: The maximum resident set size (KB) = 1635572
+ 0: The total amount of wall time = 142.946430
+ 0: The maximum resident set size (KB) = 1634152
Test 047 control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 141.355960
- 0: The maximum resident set size (KB) = 1637228
+ 0: The total amount of wall time = 149.457964
+ 0: The maximum resident set size (KB) = 1638208
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 135.703376
- 0: The maximum resident set size (KB) = 1641012
+ 0: The total amount of wall time = 139.416227
+ 0: The maximum resident set size (KB) = 1632740
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 74.659397
- 0: The maximum resident set size (KB) = 920884
+ 0: The total amount of wall time = 78.641960
+ 0: The maximum resident set size (KB) = 929628
Test 050 control_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_noqr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 137.530339
- 0: The maximum resident set size (KB) = 1630116
+ 0: The total amount of wall time = 141.786512
+ 0: The maximum resident set size (KB) = 1624048
Test 051 control_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_noqr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 72.759465
- 0: The maximum resident set size (KB) = 974524
+ 0: The total amount of wall time = 77.637286
+ 0: The maximum resident set size (KB) = 990728
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_decomp_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 144.279497
- 0: The maximum resident set size (KB) = 1635532
+ 0: The total amount of wall time = 149.273172
+ 0: The maximum resident set size (KB) = 1622124
Test 053 control_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_2threads_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 129.798695
- 0: The maximum resident set size (KB) = 1727108
+ 0: The total amount of wall time = 136.116915
+ 0: The maximum resident set size (KB) = 1736152
Test 054 control_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_lndp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 254.924152
- 0: The maximum resident set size (KB) = 1645332
+ 0: The total amount of wall time = 260.213517
+ 0: The maximum resident set size (KB) = 1641020
Test 055 control_p8_lndp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_rrtmgp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 198.979787
- 0: The maximum resident set size (KB) = 1729464
+ 0: The total amount of wall time = 198.070882
+ 0: The maximum resident set size (KB) = 1710156
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_mynn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 141.779806
- 0: The maximum resident set size (KB) = 1650480
+ 0: The total amount of wall time = 146.573683
+ 0: The maximum resident set size (KB) = 1642184
Test 057 control_p8_mynn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/merra2_thompson_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 167.723689
- 0: The maximum resident set size (KB) = 1650188
+ 0: The total amount of wall time = 171.456241
+ 0: The maximum resident set size (KB) = 1663880
Test 058 merra2_thompson_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 259.114558
- 0: The maximum resident set size (KB) = 960056
+ 0: The total amount of wall time = 259.633951
+ 0: The maximum resident set size (KB) = 959536
Test 059 regional_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 137.083464
- 0: The maximum resident set size (KB) = 1104240
+ 0: The total amount of wall time = 139.219117
+ 0: The maximum resident set size (KB) = 1109672
Test 060 regional_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 271.999807
- 0: The maximum resident set size (KB) = 948576
+ 0: The total amount of wall time = 273.319411
+ 0: The maximum resident set size (KB) = 948460
Test 061 regional_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 157.324716
- 0: The maximum resident set size (KB) = 917924
+ 0: The total amount of wall time = 161.847975
+ 0: The maximum resident set size (KB) = 915912
Test 062 regional_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_noquilt_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 248.820110
- 0: The maximum resident set size (KB) = 1487488
+ 0: The total amount of wall time = 250.977806
+ 0: The maximum resident set size (KB) = 1491020
Test 063 regional_noquilt_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 254.792054
- 0: The maximum resident set size (KB) = 963704
+ 0: The total amount of wall time = 259.553735
+ 0: The maximum resident set size (KB) = 959712
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2dwrtdecomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 260.021290
- 0: The maximum resident set size (KB) = 958696
+ 0: The total amount of wall time = 261.383526
+ 0: The maximum resident set size (KB) = 957184
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_wofs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 320.187631
- 0: The maximum resident set size (KB) = 2105652
+ 0: The total amount of wall time = 324.421182
+ 0: The maximum resident set size (KB) = 2082948
Test 066 regional_wofs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 389.238343
- 0: The maximum resident set size (KB) = 1205512
+ 0: The total amount of wall time = 379.742196
+ 0: The maximum resident set size (KB) = 1225884
Test 067 rap_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 196.173734
- 0: The maximum resident set size (KB) = 1411816
+ 0: The total amount of wall time = 215.790207
+ 0: The maximum resident set size (KB) = 1423432
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 399.083779
- 0: The maximum resident set size (KB) = 1131372
+ 0: The total amount of wall time = 406.547752
+ 0: The maximum resident set size (KB) = 1127368
Test 069 rap_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 356.753366
- 0: The maximum resident set size (KB) = 1356252
+ 0: The total amount of wall time = 360.956121
+ 0: The maximum resident set size (KB) = 1376068
Test 070 rap_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 194.483670
- 0: The maximum resident set size (KB) = 1161324
+ 0: The total amount of wall time = 197.135055
+ 0: The maximum resident set size (KB) = 1132988
Test 071 rap_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 387.129535
- 0: The maximum resident set size (KB) = 1196708
+ 0: The total amount of wall time = 381.916787
+ 0: The maximum resident set size (KB) = 1200984
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 396.621999
- 0: The maximum resident set size (KB) = 1126548
+ 0: The total amount of wall time = 404.106020
+ 0: The maximum resident set size (KB) = 1152168
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 284.838209
- 0: The maximum resident set size (KB) = 1188400
+ 0: The total amount of wall time = 284.430079
+ 0: The maximum resident set size (KB) = 1197900
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 191.040405
- 0: The maximum resident set size (KB) = 1075740
+ 0: The total amount of wall time = 194.480464
+ 0: The maximum resident set size (KB) = 1080892
Test 075 hrrr_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 195.239536
- 0: The maximum resident set size (KB) = 1049380
+ 0: The total amount of wall time = 199.963608
+ 0: The maximum resident set size (KB) = 1046196
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 174.371282
- 0: The maximum resident set size (KB) = 1119060
+ 0: The total amount of wall time = 179.669285
+ 0: The maximum resident set size (KB) = 1122176
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 100.911859
- 0: The maximum resident set size (KB) = 1036780
+ 0: The total amount of wall time = 103.070538
+ 0: The maximum resident set size (KB) = 1023032
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 365.743285
- 0: The maximum resident set size (KB) = 1197472
+ 0: The total amount of wall time = 372.842344
+ 0: The maximum resident set size (KB) = 1182788
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 445.018269
- 0: The maximum resident set size (KB) = 2006388
+ 0: The total amount of wall time = 447.510074
+ 0: The maximum resident set size (KB) = 2008324
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 434.179462
- 0: The maximum resident set size (KB) = 2176536
+ 0: The total amount of wall time = 438.584415
+ 0: The maximum resident set size (KB) = 2204660
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 293.795215
- 0: The maximum resident set size (KB) = 814284
+ 0: The total amount of wall time = 297.202958
+ 0: The maximum resident set size (KB) = 824780
Test 082 control_csawmg_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 291.487385
- 0: The maximum resident set size (KB) = 827296
+ 0: The total amount of wall time = 293.619005
+ 0: The maximum resident set size (KB) = 812024
Test 083 control_csawmgt_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 160.406571
- 0: The maximum resident set size (KB) = 813000
+ 0: The total amount of wall time = 161.707212
+ 0: The maximum resident set size (KB) = 804772
Test 084 control_ras_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wam_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 104.047968
- 0: The maximum resident set size (KB) = 779400
+ 0: The total amount of wall time = 104.166406
+ 0: The maximum resident set size (KB) = 778964
Test 085 control_wam_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 124.388469
- 0: The maximum resident set size (KB) = 1635612
+ 0: The total amount of wall time = 127.818467
+ 0: The maximum resident set size (KB) = 1643476
Test 086 control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 230.542141
- 0: The maximum resident set size (KB) = 959392
+ 0: The total amount of wall time = 238.523916
+ 0: The maximum resident set size (KB) = 959356
Test 087 regional_control_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 126.577079
- 0: The maximum resident set size (KB) = 824628
+ 0: The total amount of wall time = 125.782640
+ 0: The maximum resident set size (KB) = 819084
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc ............ALT CHECK......OK
Comparing atmf001.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 122.709979
- 0: The maximum resident set size (KB) = 832824
+ 0: The total amount of wall time = 127.994595
+ 0: The maximum resident set size (KB) = 819952
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.036237
- 0: The maximum resident set size (KB) = 826416
+ 0: The total amount of wall time = 143.153287
+ 0: The maximum resident set size (KB) = 827488
Test 090 control_stochy_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 124.397013
- 0: The maximum resident set size (KB) = 824372
+ 0: The total amount of wall time = 126.544030
+ 0: The maximum resident set size (KB) = 827372
Test 091 control_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 193.215812
- 0: The maximum resident set size (KB) = 885464
+ 0: The total amount of wall time = 194.499395
+ 0: The maximum resident set size (KB) = 869788
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 187.642472
- 0: The maximum resident set size (KB) = 878036
+ 0: The total amount of wall time = 192.764425
+ 0: The maximum resident set size (KB) = 875248
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 126.617555
- 0: The maximum resident set size (KB) = 837184
+ 0: The total amount of wall time = 130.002758
+ 0: The maximum resident set size (KB) = 837256
Test 094 control_ras_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 127.152381
- 0: The maximum resident set size (KB) = 886324
+ 0: The total amount of wall time = 133.513938
+ 0: The maximum resident set size (KB) = 885620
Test 095 control_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 132.830157
- 0: The maximum resident set size (KB) = 1665044
+ 0: The total amount of wall time = 140.720409
+ 0: The maximum resident set size (KB) = 1656892
Test 096 control_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 831.502402
- 0: The maximum resident set size (KB) = 893832
+ 0: The total amount of wall time = 829.274606
+ 0: The maximum resident set size (KB) = 892732
Test 097 regional_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.610455
- 0: The maximum resident set size (KB) = 1225900
+ 0: The total amount of wall time = 232.527061
+ 0: The maximum resident set size (KB) = 1210304
Test 098 rap_control_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 223.198852
- 0: The maximum resident set size (KB) = 1210908
+ 0: The total amount of wall time = 227.264416
+ 0: The maximum resident set size (KB) = 1212192
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 227.146257
- 0: The maximum resident set size (KB) = 1229700
+ 0: The total amount of wall time = 232.100184
+ 0: The maximum resident set size (KB) = 1220684
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.230965
- 0: The maximum resident set size (KB) = 1224180
+ 0: The total amount of wall time = 231.184425
+ 0: The maximum resident set size (KB) = 1231276
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_drag_suite_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.715269
- 0: The maximum resident set size (KB) = 1221896
+ 0: The total amount of wall time = 232.787908
+ 0: The maximum resident set size (KB) = 1224388
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 239.354062
- 0: The maximum resident set size (KB) = 1311048
+ 0: The total amount of wall time = 240.458386
+ 0: The maximum resident set size (KB) = 1297844
Test 103 rap_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 233.381935
- 0: The maximum resident set size (KB) = 1223132
+ 0: The total amount of wall time = 235.120548
+ 0: The maximum resident set size (KB) = 1221280
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.262413
- 0: The maximum resident set size (KB) = 1230052
+ 0: The total amount of wall time = 239.889945
+ 0: The maximum resident set size (KB) = 1214292
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_lndp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.296686
- 0: The maximum resident set size (KB) = 1221732
+ 0: The total amount of wall time = 234.519153
+ 0: The maximum resident set size (KB) = 1220196
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 230.670011
- 0: The maximum resident set size (KB) = 1221088
+ 0: The total amount of wall time = 232.861170
+ 0: The maximum resident set size (KB) = 1221332
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 222.694099
- 0: The maximum resident set size (KB) = 1218216
+ 0: The total amount of wall time = 227.819438
+ 0: The maximum resident set size (KB) = 1218328
Test 108 rap_noah_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 228.642036
- 0: The maximum resident set size (KB) = 1219408
+ 0: The total amount of wall time = 233.096337
+ 0: The maximum resident set size (KB) = 1220268
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 373.997451
- 0: The maximum resident set size (KB) = 1222624
+ 0: The total amount of wall time = 376.561220
+ 0: The maximum resident set size (KB) = 1218744
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 225.915838
- 0: The maximum resident set size (KB) = 1217512
+ 0: The total amount of wall time = 225.766613
+ 0: The maximum resident set size (KB) = 1214064
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 281.114888
- 0: The maximum resident set size (KB) = 1223320
+ 0: The total amount of wall time = 283.147903
+ 0: The maximum resident set size (KB) = 1224352
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.954161
- 0: The maximum resident set size (KB) = 1216368
+ 0: The total amount of wall time = 229.552976
+ 0: The maximum resident set size (KB) = 1212004
Test 113 rap_flake_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 398.184483
- 0: The maximum resident set size (KB) = 1227312
+ 0: The total amount of wall time = 400.873320
+ 0: The maximum resident set size (KB) = 1220204
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 183.619126
- 0: The maximum resident set size (KB) = 1328728
+ 0: The total amount of wall time = 199.680414
+ 0: The maximum resident set size (KB) = 1309708
Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_intel
Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 311.550287
- 0: The maximum resident set size (KB) = 1149312
+ 0: The total amount of wall time = 315.328400
+ 0: The maximum resident set size (KB) = 1142588
Test 116 rap_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_intel
Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 162.100803
- 0: The maximum resident set size (KB) = 1037152
+ 0: The total amount of wall time = 164.941527
+ 0: The maximum resident set size (KB) = 1044892
Test 117 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_intel
Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 293.638169
- 0: The maximum resident set size (KB) = 1291208
+ 0: The total amount of wall time = 311.950802
+ 0: The maximum resident set size (KB) = 1295056
Test 118 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_intel
Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 149.291909
- 0: The maximum resident set size (KB) = 1050528
+ 0: The total amount of wall time = 155.379397
+ 0: The maximum resident set size (KB) = 1034512
Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_intel
Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 174.297567
- 0: The maximum resident set size (KB) = 982244
+ 0: The total amount of wall time = 171.440603
+ 0: The maximum resident set size (KB) = 1035132
Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_intel
Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.462005
- 0: The maximum resident set size (KB) = 1102020
+ 0: The total amount of wall time = 235.193640
+ 0: The maximum resident set size (KB) = 1089964
Test 121 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_intel
Checking test 122 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 84.772033
- 0: The maximum resident set size (KB) = 953852
+ 0: The total amount of wall time = 87.134745
+ 0: The maximum resident set size (KB) = 962400
Test 122 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_intel
Checking test 123 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 93.302324
- 0: The maximum resident set size (KB) = 1307100
+ 0: The total amount of wall time = 106.720304
+ 0: The maximum resident set size (KB) = 1300616
Test 123 conus13km_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_intel
Checking test 124 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 36.696331
- 0: The maximum resident set size (KB) = 1205612
+ 0: The total amount of wall time = 44.354665
+ 0: The maximum resident set size (KB) = 1201024
Test 124 conus13km_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_intel
Checking test 125 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 53.510029
- 0: The maximum resident set size (KB) = 1153620
+ 0: The total amount of wall time = 57.671850
+ 0: The maximum resident set size (KB) = 1163784
Test 125 conus13km_restart_mismatch_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_intel
Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 208.281048
- 0: The maximum resident set size (KB) = 1095292
+ 0: The total amount of wall time = 214.198639
+ 0: The maximum resident set size (KB) = 1097568
Test 126 rap_control_dyn64_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_intel
Checking test 127 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 226.905917
- 0: The maximum resident set size (KB) = 1095928
+ 0: The total amount of wall time = 229.496279
+ 0: The maximum resident set size (KB) = 1095320
Test 127 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_intel
Checking test 128 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 219.551667
- 0: The maximum resident set size (KB) = 1097796
+ 0: The total amount of wall time = 221.393731
+ 0: The maximum resident set size (KB) = 1098620
Test 128 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_intel
Checking test 129 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 695.001955
- 0: The maximum resident set size (KB) = 1342144
+ 0: The total amount of wall time = 697.576904
+ 0: The maximum resident set size (KB) = 1347488
Test 129 conus13km_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_intel
Checking test 130 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 699.562751
- 0: The maximum resident set size (KB) = 989116
+ 0: The total amount of wall time = 712.898446
+ 0: The maximum resident set size (KB) = 995268
Test 130 conus13km_debug_qr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_intel
Checking test 131 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 390.803202
- 0: The maximum resident set size (KB) = 1238820
+ 0: The total amount of wall time = 405.093150
+ 0: The maximum resident set size (KB) = 1245404
Test 131 conus13km_debug_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_intel
Checking test 132 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 689.266474
- 0: The maximum resident set size (KB) = 1400400
+ 0: The total amount of wall time = 706.565714
+ 0: The maximum resident set size (KB) = 1416416
Test 132 conus13km_radar_tten_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_intel
Checking test 133 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.235417
- 0: The maximum resident set size (KB) = 1147672
+ 0: The total amount of wall time = 233.120107
+ 0: The maximum resident set size (KB) = 1144896
Test 133 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_intel
Checking test 134 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 305.359074
- 0: The maximum resident set size (KB) = 872868
+ 0: The total amount of wall time = 324.134135
+ 0: The maximum resident set size (KB) = 867448
Test 134 hafs_regional_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 281.945532
- 0: The maximum resident set size (KB) = 1278760
+ 0: The total amount of wall time = 299.811518
+ 0: The maximum resident set size (KB) = 1281516
Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_intel
Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 367.761185
- 0: The maximum resident set size (KB) = 952228
+ 0: The total amount of wall time = 384.082116
+ 0: The maximum resident set size (KB) = 954740
Test 136 hafs_regional_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_wav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_wav_intel
Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 811.240530
- 0: The maximum resident set size (KB) = 986732
+ 0: The total amount of wall time = 834.316678
+ 0: The maximum resident set size (KB) = 1014528
Test 137 hafs_regional_atm_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_wav_intel
Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 890.138569
- 0: The maximum resident set size (KB) = 1005336
+ 0: The total amount of wall time = 889.318521
+ 0: The maximum resident set size (KB) = 1018204
Test 138 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_1nest_atm_intel
Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5040,18 +5040,18 @@ Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 311.983926
- 0: The maximum resident set size (KB) = 606452
+ 0: The total amount of wall time = 315.474492
+ 0: The maximum resident set size (KB) = 604820
Test 139 hafs_regional_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_telescopic_2nests_atm_intel
Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 396.035240
- 0: The maximum resident set size (KB) = 619516
+ 0: The total amount of wall time = 413.920523
+ 0: The maximum resident set size (KB) = 619996
Test 140 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_1nest_atm_intel
Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5099,14 +5099,14 @@ Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
@@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 153.453691
- 0: The maximum resident set size (KB) = 436604
+ 0: The total amount of wall time = 166.823503
+ 0: The maximum resident set size (KB) = 433484
Test 141 hafs_global_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_multiple_4nests_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_multiple_4nests_atm_intel
Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5141,13 +5141,13 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.coupler.res .........OK
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
@@ -5156,12 +5156,12 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -5170,16 +5170,16 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
@@ -5188,8 +5188,8 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
@@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 441.514735
- 0: The maximum resident set size (KB) = 541824
+ 0: The total amount of wall time = 463.133874
+ 0: The maximum resident set size (KB) = 542580
Test 142 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_specified_moving_1nest_atm_intel
Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 213.903087
- 0: The maximum resident set size (KB) = 618724
+ 0: The total amount of wall time = 228.262745
+ 0: The maximum resident set size (KB) = 617732
Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5243,19 +5243,19 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 204.562187
- 0: The maximum resident set size (KB) = 622252
+ 0: The total amount of wall time = 217.938963
+ 0: The maximum resident set size (KB) = 619936
Test 144 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5264,97 +5264,43 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 275.803428
- 0: The maximum resident set size (KB) = 671616
+ 0: The total amount of wall time = 280.162490
+ 0: The maximum resident set size (KB) = 685828
Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_storm_following_1nest_atm_intel
Checking test 146 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 71.418089
- 0: The maximum resident set size (KB) = 445600
+ 0: The total amount of wall time = 78.540171
+ 0: The maximum resident set size (KB) = 451104
Test 146 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_nested_intel
-Checking test 147 gnv1_nested_intel results ....
- Comparing atmf006.nc ............ALT CHECK......NOT OK
- Comparing sfcf006.nc ............ALT CHECK......NOT OK
- Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK
- Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK
-
- 0: The total amount of wall time = 243.796081
- 0: The maximum resident set size (KB) = 901624
-
-Test 147 gnv1_nested_intel FAIL Tries: 2
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 654.771092
- 0: The maximum resident set size (KB) = 633120
+ 0: The total amount of wall time = 676.364143
+ 0: The maximum resident set size (KB) = 636996
-Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
+Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5364,15 +5310,15 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 986.917162
- 0: The maximum resident set size (KB) = 747040
+ 0: The total amount of wall time = 963.542316
+ 0: The maximum resident set size (KB) = 747144
-Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
+Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -5382,15 +5328,15 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 988.690132
- 0: The maximum resident set size (KB) = 811176
+ 0: The total amount of wall time = 1039.318020
+ 0: The maximum resident set size (KB) = 841392
-Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
+Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
Comparing atm.nest02.f003.nc .........OK
@@ -5399,162 +5345,162 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 608.465934
+ 0: The total amount of wall time = 618.068101
0: The maximum resident set size (KB) = 832012
-Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
+Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_intel
-Checking test 152 hafs_regional_docn_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_intel
+Checking test 151 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 308.682139
- 0: The maximum resident set size (KB) = 962392
+ 0: The total amount of wall time = 324.611754
+ 0: The maximum resident set size (KB) = 936884
-Test 152 hafs_regional_docn_intel PASS
+Test 151 hafs_regional_docn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_oisst_intel
-Checking test 153 hafs_regional_docn_oisst_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_oisst_intel
+Checking test 152 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 309.584798
- 0: The maximum resident set size (KB) = 931412
+ 0: The total amount of wall time = 328.495838
+ 0: The maximum resident set size (KB) = 928916
-Test 153 hafs_regional_docn_oisst_intel PASS
+Test 152 hafs_regional_docn_oisst_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_datm_cdeps_intel
-Checking test 154 hafs_regional_datm_cdeps_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_datm_cdeps_intel
+Checking test 153 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 970.774864
- 0: The maximum resident set size (KB) = 1339792
+ 0: The total amount of wall time = 975.713199
+ 0: The maximum resident set size (KB) = 1341288
-Test 154 hafs_regional_datm_cdeps_intel PASS
+Test 153 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_intel
-Checking test 155 datm_cdeps_control_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_intel
+Checking test 154 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 121.385172
- 0: The maximum resident set size (KB) = 1127364
+ 0: The total amount of wall time = 122.496421
+ 0: The maximum resident set size (KB) = 1131496
-Test 155 datm_cdeps_control_cfsr_intel PASS
+Test 154 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_restart_cfsr_intel
-Checking test 156 datm_cdeps_restart_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_restart_cfsr_intel
+Checking test 155 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 72.371422
- 0: The maximum resident set size (KB) = 1106520
+ 0: The total amount of wall time = 74.615006
+ 0: The maximum resident set size (KB) = 1091708
-Test 156 datm_cdeps_restart_cfsr_intel PASS
+Test 155 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_gefs_intel
-Checking test 157 datm_cdeps_control_gefs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_gefs_intel
+Checking test 156 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 116.316837
- 0: The maximum resident set size (KB) = 1007612
+ 0: The total amount of wall time = 117.480557
+ 0: The maximum resident set size (KB) = 1013700
-Test 157 datm_cdeps_control_gefs_intel PASS
+Test 156 datm_cdeps_control_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_iau_gefs_intel
-Checking test 158 datm_cdeps_iau_gefs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_iau_gefs_intel
+Checking test 157 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 117.410368
- 0: The maximum resident set size (KB) = 1012700
+ 0: The total amount of wall time = 120.175501
+ 0: The maximum resident set size (KB) = 1006792
-Test 158 datm_cdeps_iau_gefs_intel PASS
+Test 157 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_stochy_gefs_intel
-Checking test 159 datm_cdeps_stochy_gefs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_stochy_gefs_intel
+Checking test 158 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 119.136809
- 0: The maximum resident set size (KB) = 1013252
+ 0: The total amount of wall time = 119.361014
+ 0: The maximum resident set size (KB) = 1002272
-Test 159 datm_cdeps_stochy_gefs_intel PASS
+Test 158 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_ciceC_cfsr_intel
-Checking test 160 datm_cdeps_ciceC_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_ciceC_cfsr_intel
+Checking test 159 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 121.433967
- 0: The maximum resident set size (KB) = 1150568
+ 0: The total amount of wall time = 122.936189
+ 0: The maximum resident set size (KB) = 1147940
-Test 160 datm_cdeps_ciceC_cfsr_intel PASS
+Test 159 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_cfsr_intel
-Checking test 161 datm_cdeps_bulk_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_cfsr_intel
+Checking test 160 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.201909
- 0: The maximum resident set size (KB) = 1142140
+ 0: The total amount of wall time = 120.559403
+ 0: The maximum resident set size (KB) = 1148308
-Test 161 datm_cdeps_bulk_cfsr_intel PASS
+Test 160 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_gefs_intel
-Checking test 162 datm_cdeps_bulk_gefs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_gefs_intel
+Checking test 161 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 116.895143
- 0: The maximum resident set size (KB) = 1012868
+ 0: The total amount of wall time = 117.235872
+ 0: The maximum resident set size (KB) = 1013792
-Test 162 datm_cdeps_bulk_gefs_intel PASS
+Test 161 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_cfsr_intel
-Checking test 163 datm_cdeps_mx025_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_cfsr_intel
+Checking test 162 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -5562,15 +5508,15 @@ Checking test 163 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 281.031125
- 0: The maximum resident set size (KB) = 1169008
+ 0: The total amount of wall time = 285.435487
+ 0: The maximum resident set size (KB) = 1157008
-Test 163 datm_cdeps_mx025_cfsr_intel PASS
+Test 162 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_gefs_intel
-Checking test 164 datm_cdeps_mx025_gefs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_gefs_intel
+Checking test 163 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -5578,78 +5524,78 @@ Checking test 164 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 276.809644
- 0: The maximum resident set size (KB) = 1151748
+ 0: The total amount of wall time = 282.435475
+ 0: The maximum resident set size (KB) = 1148160
-Test 164 datm_cdeps_mx025_gefs_intel PASS
+Test 163 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_multiple_files_cfsr_intel
-Checking test 165 datm_cdeps_multiple_files_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_multiple_files_cfsr_intel
+Checking test 164 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 121.189175
- 0: The maximum resident set size (KB) = 1147892
+ 0: The total amount of wall time = 125.206900
+ 0: The maximum resident set size (KB) = 1149528
-Test 165 datm_cdeps_multiple_files_cfsr_intel PASS
+Test 164 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_3072x1536_cfsr_intel
-Checking test 166 datm_cdeps_3072x1536_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_3072x1536_cfsr_intel
+Checking test 165 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 173.860347
- 0: The maximum resident set size (KB) = 2386708
+ 0: The total amount of wall time = 175.291794
+ 0: The maximum resident set size (KB) = 2438792
-Test 166 datm_cdeps_3072x1536_cfsr_intel PASS
+Test 165 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_gfs_intel
-Checking test 167 datm_cdeps_gfs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_gfs_intel
+Checking test 166 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 173.775039
- 0: The maximum resident set size (KB) = 2441660
+ 0: The total amount of wall time = 180.006985
+ 0: The maximum resident set size (KB) = 2377084
-Test 167 datm_cdeps_gfs_intel PASS
+Test 166 datm_cdeps_gfs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_debug_cfsr_intel
-Checking test 168 datm_cdeps_debug_cfsr_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_debug_cfsr_intel
+Checking test 167 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 298.432820
- 0: The maximum resident set size (KB) = 1077744
+ 0: The total amount of wall time = 301.226193
+ 0: The maximum resident set size (KB) = 1075328
-Test 168 datm_cdeps_debug_cfsr_intel PASS
+Test 167 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_faster_intel
-Checking test 169 datm_cdeps_control_cfsr_faster_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_faster_intel
+Checking test 168 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 121.920799
- 0: The maximum resident set size (KB) = 1145184
+ 0: The total amount of wall time = 122.741765
+ 0: The maximum resident set size (KB) = 1137512
-Test 169 datm_cdeps_control_cfsr_faster_intel PASS
+Test 168 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_gswp3_intel
-Checking test 170 datm_cdeps_lnd_gswp3_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_gswp3_intel
+Checking test 169 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
@@ -5657,15 +5603,15 @@ Checking test 170 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 43.721790
- 0: The maximum resident set size (KB) = 328884
+ 0: The total amount of wall time = 46.105725
+ 0: The maximum resident set size (KB) = 329128
-Test 170 datm_cdeps_lnd_gswp3_intel PASS
+Test 169 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_intel
-Checking test 171 datm_cdeps_lnd_era5_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_intel
+Checking test 170 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
@@ -5673,15 +5619,15 @@ Checking test 171 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 39.572909
- 0: The maximum resident set size (KB) = 557740
+ 0: The total amount of wall time = 44.455630
+ 0: The maximum resident set size (KB) = 557844
-Test 171 datm_cdeps_lnd_era5_intel PASS
+Test 170 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_rst_intel
-Checking test 172 datm_cdeps_lnd_era5_rst_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_rst_intel
+Checking test 171 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
@@ -5689,15 +5635,15 @@ Checking test 172 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 23.499585
- 0: The maximum resident set size (KB) = 557872
+ 0: The total amount of wall time = 34.204514
+ 0: The maximum resident set size (KB) = 563280
-Test 172 datm_cdeps_lnd_era5_rst_intel PASS
+Test 171 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_sbs_intel
-Checking test 173 control_p8_atmlnd_sbs_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_sbs_intel
+Checking test 172 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -5785,15 +5731,15 @@ Checking test 173 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 338.795293
- 0: The maximum resident set size (KB) = 1649392
+ 0: The total amount of wall time = 344.546305
+ 0: The maximum resident set size (KB) = 1634600
-Test 173 control_p8_atmlnd_sbs_intel PASS
+Test 172 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_intel
-Checking test 174 control_p8_atmlnd_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_intel
+Checking test 173 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -5881,15 +5827,15 @@ Checking test 174 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 326.915840
- 0: The maximum resident set size (KB) = 1642416
+ 0: The total amount of wall time = 347.393013
+ 0: The maximum resident set size (KB) = 1644492
-Test 174 control_p8_atmlnd_intel PASS
+Test 173 control_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_atmlnd_intel
-Checking test 175 control_restart_p8_atmlnd_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_atmlnd_intel
+Checking test 174 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -5909,15 +5855,15 @@ Checking test 175 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 173.458248
- 0: The maximum resident set size (KB) = 945696
+ 0: The total amount of wall time = 183.711025
+ 0: The maximum resident set size (KB) = 948208
-Test 175 control_restart_p8_atmlnd_intel PASS
+Test 174 control_restart_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmwav_control_noaero_p8_intel
-Checking test 176 atmwav_control_noaero_p8_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmwav_control_noaero_p8_intel
+Checking test 175 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -5959,15 +5905,15 @@ Checking test 176 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 80.157693
- 0: The maximum resident set size (KB) = 1699552
+ 0: The total amount of wall time = 82.007732
+ 0: The maximum resident set size (KB) = 1703500
-Test 176 atmwav_control_noaero_p8_intel PASS
+Test 175 atmwav_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_atmwav_intel
-Checking test 177 control_atmwav_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_atmwav_intel
+Checking test 176 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -6010,15 +5956,15 @@ Checking test 177 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 76.513338
- 0: The maximum resident set size (KB) = 696804
+ 0: The total amount of wall time = 81.983347
+ 0: The maximum resident set size (KB) = 682412
-Test 177 control_atmwav_intel PASS
+Test 176 control_atmwav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_intel
-Checking test 178 atmaero_control_p8_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_intel
+Checking test 177 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6061,15 +6007,15 @@ Checking test 178 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 198.068527
- 0: The maximum resident set size (KB) = 1790736
+ 0: The total amount of wall time = 201.812942
+ 0: The maximum resident set size (KB) = 1792108
-Test 178 atmaero_control_p8_intel PASS
+Test 177 atmaero_control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_intel
-Checking test 179 atmaero_control_p8_rad_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_intel
+Checking test 178 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6112,15 +6058,15 @@ Checking test 179 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 244.939072
- 0: The maximum resident set size (KB) = 1802620
+ 0: The total amount of wall time = 246.158755
+ 0: The maximum resident set size (KB) = 1802676
-Test 179 atmaero_control_p8_rad_intel PASS
+Test 178 atmaero_control_p8_rad_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_micro_intel
-Checking test 180 atmaero_control_p8_rad_micro_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_micro_intel
+Checking test 179 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6163,15 +6109,15 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 259.830563
- 0: The maximum resident set size (KB) = 1828312
+ 0: The total amount of wall time = 257.884852
+ 0: The maximum resident set size (KB) = 1834884
-Test 180 atmaero_control_p8_rad_micro_intel PASS
+Test 179 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_atmaq_debug_intel
-Checking test 181 regional_atmaq_debug_intel results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_atmaq_debug_intel
+Checking test 180 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -6184,15 +6130,15 @@ Checking test 181 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 953.457712
- 0: The maximum resident set size (KB) = 4597748
+ 0: The total amount of wall time = 978.115169
+ 0: The maximum resident set size (KB) = 4593772
-Test 181 regional_atmaq_debug_intel PASS
+Test 180 regional_atmaq_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_gnu
-Checking test 182 control_c48_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_gnu
+Checking test 181 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6230,15 +6176,15 @@ Checking test 182 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 561.978146
-0: The maximum resident set size (KB) = 860524
+0: The total amount of wall time = 562.407920
+0: The maximum resident set size (KB) = 861728
-Test 182 control_c48_gnu PASS
+Test 181 control_c48_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_gnu
-Checking test 183 control_stochy_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_gnu
+Checking test 182 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -6248,15 +6194,15 @@ Checking test 183 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 123.123349
- 0: The maximum resident set size (KB) = 726696
+ 0: The total amount of wall time = 126.449389
+ 0: The maximum resident set size (KB) = 730208
-Test 183 control_stochy_gnu PASS
+Test 182 control_stochy_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_gnu
-Checking test 184 control_ras_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_gnu
+Checking test 183 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6266,15 +6212,15 @@ Checking test 184 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 212.569943
- 0: The maximum resident set size (KB) = 729044
+ 0: The total amount of wall time = 223.435886
+ 0: The maximum resident set size (KB) = 729576
-Test 184 control_ras_gnu PASS
+Test 183 control_ras_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_gnu
-Checking test 185 control_p8_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_gnu
+Checking test 184 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6320,15 +6266,15 @@ Checking test 185 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 205.442414
- 0: The maximum resident set size (KB) = 1507488
+ 0: The total amount of wall time = 210.478077
+ 0: The maximum resident set size (KB) = 1508236
-Test 185 control_p8_gnu PASS
+Test 184 control_p8_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_gnu
-Checking test 186 control_p8_ugwpv1_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_gnu
+Checking test 185 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6374,15 +6320,15 @@ Checking test 186 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 200.813328
- 0: The maximum resident set size (KB) = 1512828
+ 0: The total amount of wall time = 201.030465
+ 0: The maximum resident set size (KB) = 1509384
-Test 186 control_p8_ugwpv1_gnu PASS
+Test 185 control_p8_ugwpv1_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_gnu
-Checking test 187 control_flake_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_gnu
+Checking test 186 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -6392,15 +6338,15 @@ Checking test 187 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 251.028430
- 0: The maximum resident set size (KB) = 809992
+ 0: The total amount of wall time = 253.293231
+ 0: The maximum resident set size (KB) = 809676
-Test 187 control_flake_gnu PASS
+Test 186 control_flake_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_gnu
-Checking test 188 rap_control_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_gnu
+Checking test 187 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6446,15 +6392,15 @@ Checking test 188 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 450.609031
- 0: The maximum resident set size (KB) = 1086096
+ 0: The total amount of wall time = 458.109550
+ 0: The maximum resident set size (KB) = 1085788
-Test 188 rap_control_gnu PASS
+Test 187 rap_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_gnu
-Checking test 189 rap_decomp_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_gnu
+Checking test 188 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6500,15 +6446,15 @@ Checking test 189 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 458.488267
- 0: The maximum resident set size (KB) = 1086220
+ 0: The total amount of wall time = 457.975421
+ 0: The maximum resident set size (KB) = 1084668
-Test 189 rap_decomp_gnu PASS
+Test 188 rap_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_gnu
-Checking test 190 rap_2threads_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_gnu
+Checking test 189 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6554,15 +6500,15 @@ Checking test 190 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 421.283563
- 0: The maximum resident set size (KB) = 1129256
+ 0: The total amount of wall time = 419.861946
+ 0: The maximum resident set size (KB) = 1120928
-Test 190 rap_2threads_gnu PASS
+Test 189 rap_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_gnu
-Checking test 191 rap_restart_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_gnu
+Checking test 190 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF24 .........OK
@@ -6600,15 +6546,15 @@ Checking test 191 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.808061
- 0: The maximum resident set size (KB) = 884168
+ 0: The total amount of wall time = 229.989517
+ 0: The maximum resident set size (KB) = 891592
-Test 191 rap_restart_gnu PASS
+Test 190 rap_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_gnu
-Checking test 192 rap_sfcdiff_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_gnu
+Checking test 191 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6654,15 +6600,15 @@ Checking test 192 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 446.905865
- 0: The maximum resident set size (KB) = 1087004
+ 0: The total amount of wall time = 447.159703
+ 0: The maximum resident set size (KB) = 1084764
-Test 192 rap_sfcdiff_gnu PASS
+Test 191 rap_sfcdiff_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_gnu
-Checking test 193 rap_sfcdiff_decomp_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_gnu
+Checking test 192 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6708,15 +6654,15 @@ Checking test 193 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 458.020921
- 0: The maximum resident set size (KB) = 1086416
+ 0: The total amount of wall time = 457.859465
+ 0: The maximum resident set size (KB) = 1084528
-Test 193 rap_sfcdiff_decomp_gnu PASS
+Test 192 rap_sfcdiff_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_gnu
-Checking test 194 rap_sfcdiff_restart_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_gnu
+Checking test 193 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -6754,15 +6700,15 @@ Checking test 194 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 333.250180
- 0: The maximum resident set size (KB) = 883156
+ 0: The total amount of wall time = 333.801555
+ 0: The maximum resident set size (KB) = 885360
-Test 194 rap_sfcdiff_restart_gnu PASS
+Test 193 rap_sfcdiff_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_gnu
-Checking test 195 hrrr_control_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_gnu
+Checking test 194 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6808,15 +6754,15 @@ Checking test 195 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.697489
- 0: The maximum resident set size (KB) = 1074528
+ 0: The total amount of wall time = 230.559443
+ 0: The maximum resident set size (KB) = 1072176
-Test 195 hrrr_control_gnu PASS
+Test 194 hrrr_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_noqr_gnu
-Checking test 196 hrrr_control_noqr_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_noqr_gnu
+Checking test 195 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6862,15 +6808,15 @@ Checking test 196 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 230.255953
- 0: The maximum resident set size (KB) = 1139336
+ 0: The total amount of wall time = 234.509912
+ 0: The maximum resident set size (KB) = 1137940
-Test 196 hrrr_control_noqr_gnu PASS
+Test 195 hrrr_control_noqr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_gnu
-Checking test 197 hrrr_control_2threads_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_gnu
+Checking test 196 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6916,15 +6862,15 @@ Checking test 197 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.651039
- 0: The maximum resident set size (KB) = 1043716
+ 0: The total amount of wall time = 210.340335
+ 0: The maximum resident set size (KB) = 1026960
-Test 197 hrrr_control_2threads_gnu PASS
+Test 196 hrrr_control_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_gnu
-Checking test 198 hrrr_control_decomp_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_gnu
+Checking test 197 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6970,43 +6916,43 @@ Checking test 198 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.287590
- 0: The maximum resident set size (KB) = 1081896
+ 0: The total amount of wall time = 233.094716
+ 0: The maximum resident set size (KB) = 1070540
-Test 198 hrrr_control_decomp_gnu PASS
+Test 197 hrrr_control_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_gnu
-Checking test 199 hrrr_control_restart_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_gnu
+Checking test 198 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 115.516912
- 0: The maximum resident set size (KB) = 882512
+ 0: The total amount of wall time = 116.893900
+ 0: The maximum resident set size (KB) = 877896
-Test 199 hrrr_control_restart_gnu PASS
+Test 198 hrrr_control_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_noqr_gnu
-Checking test 200 hrrr_control_restart_noqr_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_noqr_gnu
+Checking test 199 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 113.521939
- 0: The maximum resident set size (KB) = 934456
+ 0: The total amount of wall time = 115.499942
+ 0: The maximum resident set size (KB) = 932900
-Test 200 hrrr_control_restart_noqr_gnu PASS
+Test 199 hrrr_control_restart_noqr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_gnu
-Checking test 201 rrfs_v1beta_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_gnu
+Checking test 200 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7052,225 +6998,225 @@ Checking test 201 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 438.346028
- 0: The maximum resident set size (KB) = 1085940
+ 0: The total amount of wall time = 450.897627
+ 0: The maximum resident set size (KB) = 1074076
-Test 201 rrfs_v1beta_gnu PASS
+Test 200 rrfs_v1beta_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_gnu
-Checking test 202 control_diag_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_gnu
+Checking test 201 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 64.560259
- 0: The maximum resident set size (KB) = 774620
+ 0: The total amount of wall time = 71.600716
+ 0: The maximum resident set size (KB) = 774652
-Test 202 control_diag_debug_gnu PASS
+Test 201 control_diag_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_gnu
-Checking test 203 regional_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_gnu
+Checking test 202 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 367.432213
- 0: The maximum resident set size (KB) = 926380
+ 0: The total amount of wall time = 373.713261
+ 0: The maximum resident set size (KB) = 924384
-Test 203 regional_debug_gnu PASS
+Test 202 regional_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_gnu
-Checking test 204 rap_control_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_gnu
+Checking test 203 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 111.760079
- 0: The maximum resident set size (KB) = 1098156
+ 0: The total amount of wall time = 115.568370
+ 0: The maximum resident set size (KB) = 1098296
-Test 204 rap_control_debug_gnu PASS
+Test 203 rap_control_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_gnu
-Checking test 205 hrrr_control_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_gnu
+Checking test 204 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 108.101135
- 0: The maximum resident set size (KB) = 1088160
+ 0: The total amount of wall time = 113.490563
+ 0: The maximum resident set size (KB) = 1089352
-Test 205 hrrr_control_debug_gnu PASS
+Test 204 hrrr_control_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_gnu
-Checking test 206 hrrr_gf_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_gnu
+Checking test 205 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.228348
- 0: The maximum resident set size (KB) = 1095944
+ 0: The total amount of wall time = 114.840029
+ 0: The maximum resident set size (KB) = 1090928
-Test 206 hrrr_gf_debug_gnu PASS
+Test 205 hrrr_gf_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_gnu
-Checking test 207 hrrr_c3_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_gnu
+Checking test 206 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 108.986261
- 0: The maximum resident set size (KB) = 1092828
+ 0: The total amount of wall time = 115.127629
+ 0: The maximum resident set size (KB) = 1101068
-Test 207 hrrr_c3_debug_gnu PASS
+Test 206 hrrr_c3_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_gnu
-Checking test 208 rap_diag_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_gnu
+Checking test 207 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 116.353311
- 0: The maximum resident set size (KB) = 1269224
+ 0: The total amount of wall time = 121.168447
+ 0: The maximum resident set size (KB) = 1267304
-Test 208 rap_diag_debug_gnu PASS
+Test 207 rap_diag_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 175.568800
- 0: The maximum resident set size (KB) = 1094040
+ 0: The total amount of wall time = 180.172818
+ 0: The maximum resident set size (KB) = 1094248
-Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
+Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_gnu
-Checking test 210 rap_progcld_thompson_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_gnu
+Checking test 209 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 110.519735
- 0: The maximum resident set size (KB) = 1096472
+ 0: The total amount of wall time = 113.917695
+ 0: The maximum resident set size (KB) = 1098148
-Test 210 rap_progcld_thompson_debug_gnu PASS
+Test 209 rap_progcld_thompson_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_gnu
-Checking test 211 rrfs_v1beta_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_gnu
+Checking test 210 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.664822
- 0: The maximum resident set size (KB) = 1093560
+ 0: The total amount of wall time = 113.555284
+ 0: The maximum resident set size (KB) = 1090400
-Test 211 rrfs_v1beta_debug_gnu PASS
+Test 210 rrfs_v1beta_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_gnu
-Checking test 212 control_ras_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_gnu
+Checking test 211 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 62.881807
- 0: The maximum resident set size (KB) = 727592
+ 0: The total amount of wall time = 67.098186
+ 0: The maximum resident set size (KB) = 724572
-Test 212 control_ras_debug_gnu PASS
+Test 211 control_ras_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_gnu
-Checking test 213 control_stochy_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_gnu
+Checking test 212 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 69.700142
- 0: The maximum resident set size (KB) = 719244
+ 0: The total amount of wall time = 73.337569
+ 0: The maximum resident set size (KB) = 724176
-Test 213 control_stochy_debug_gnu PASS
+Test 212 control_stochy_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_gnu
-Checking test 214 control_debug_p8_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_gnu
+Checking test 213 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 67.356416
- 0: The maximum resident set size (KB) = 1504580
+ 0: The total amount of wall time = 74.128440
+ 0: The maximum resident set size (KB) = 1507316
-Test 214 control_debug_p8_gnu PASS
+Test 213 control_debug_p8_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_gnu
-Checking test 215 rap_flake_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_gnu
+Checking test 214 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 109.236425
- 0: The maximum resident set size (KB) = 1096424
+ 0: The total amount of wall time = 113.201113
+ 0: The maximum resident set size (KB) = 1107424
-Test 215 rap_flake_debug_gnu PASS
+Test 214 rap_flake_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_gnu
-Checking test 216 rap_clm_lake_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_gnu
+Checking test 215 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 122.126095
- 0: The maximum resident set size (KB) = 1098848
+ 0: The total amount of wall time = 123.714615
+ 0: The maximum resident set size (KB) = 1102944
-Test 216 rap_clm_lake_debug_gnu PASS
+Test 215 rap_clm_lake_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_gnu
-Checking test 217 gnv1_c96_no_nest_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_gnu
+Checking test 216 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -7310,15 +7256,15 @@ Checking test 217 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 189.964902
- 0: The maximum resident set size (KB) = 1098112
+ 0: The total amount of wall time = 191.315302
+ 0: The maximum resident set size (KB) = 1100892
-Test 217 gnv1_c96_no_nest_debug_gnu PASS
+Test 216 gnv1_c96_no_nest_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_gnu
-Checking test 218 rap_control_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_gnu
+Checking test 217 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7364,15 +7310,15 @@ Checking test 218 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 424.026492
- 0: The maximum resident set size (KB) = 964848
+ 0: The total amount of wall time = 435.176866
+ 0: The maximum resident set size (KB) = 963976
-Test 218 rap_control_dyn32_phy32_gnu PASS
+Test 217 rap_control_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_gnu
-Checking test 219 hrrr_control_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_gnu
+Checking test 218 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7418,15 +7364,15 @@ Checking test 219 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 217.832194
- 0: The maximum resident set size (KB) = 953684
+ 0: The total amount of wall time = 222.575669
+ 0: The maximum resident set size (KB) = 953520
-Test 219 hrrr_control_dyn32_phy32_gnu PASS
+Test 218 hrrr_control_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_gnu
-Checking test 220 rap_2threads_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_gnu
+Checking test 219 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7472,15 +7418,15 @@ Checking test 220 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 391.667958
- 0: The maximum resident set size (KB) = 997812
+ 0: The total amount of wall time = 394.702233
+ 0: The maximum resident set size (KB) = 968160
-Test 220 rap_2threads_dyn32_phy32_gnu PASS
+Test 219 rap_2threads_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_gnu
-Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_gnu
+Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7526,15 +7472,15 @@ Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 199.050604
- 0: The maximum resident set size (KB) = 878708
+ 0: The total amount of wall time = 202.404189
+ 0: The maximum resident set size (KB) = 893360
-Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS
+Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_gnu
-Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_gnu
+Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7580,15 +7526,15 @@ Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 222.044644
- 0: The maximum resident set size (KB) = 952888
+ 0: The total amount of wall time = 224.330151
+ 0: The maximum resident set size (KB) = 951496
-Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS
+Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_gnu
-Checking test 223 rap_restart_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_gnu
+Checking test 222 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -7626,29 +7572,29 @@ Checking test 223 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 317.090656
- 0: The maximum resident set size (KB) = 858080
+ 0: The total amount of wall time = 320.306204
+ 0: The maximum resident set size (KB) = 856744
-Test 223 rap_restart_dyn32_phy32_gnu PASS
+Test 222 rap_restart_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_gnu
-Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_gnu
+Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 110.685069
- 0: The maximum resident set size (KB) = 856152
+ 0: The total amount of wall time = 115.277208
+ 0: The maximum resident set size (KB) = 855976
-Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS
+Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_gnu
-Checking test 225 conus13km_control_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_gnu
+Checking test 224 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -7663,41 +7609,41 @@ Checking test 225 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 140.749904
- 0: The maximum resident set size (KB) = 1267240
+ 0: The total amount of wall time = 152.926750
+ 0: The maximum resident set size (KB) = 1270380
-Test 225 conus13km_control_gnu PASS
+Test 224 conus13km_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_gnu
-Checking test 226 conus13km_2threads_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_gnu
+Checking test 225 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 55.463281
- 0: The maximum resident set size (KB) = 1174488
+ 0: The total amount of wall time = 58.148834
+ 0: The maximum resident set size (KB) = 1178076
-Test 226 conus13km_2threads_gnu PASS
+Test 225 conus13km_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_gnu
-Checking test 227 conus13km_restart_mismatch_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_gnu
+Checking test 226 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 78.317376
- 0: The maximum resident set size (KB) = 929236
+ 0: The total amount of wall time = 78.144792
+ 0: The maximum resident set size (KB) = 935668
-Test 227 conus13km_restart_mismatch_gnu PASS
+Test 226 conus13km_restart_mismatch_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_gnu
-Checking test 228 rap_control_dyn64_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_gnu
+Checking test 227 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -7743,43 +7689,43 @@ Checking test 228 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 253.040512
- 0: The maximum resident set size (KB) = 994068
+ 0: The total amount of wall time = 255.829008
+ 0: The maximum resident set size (KB) = 989516
-Test 228 rap_control_dyn64_phy32_gnu PASS
+Test 227 rap_control_dyn64_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_gnu
-Checking test 229 rap_control_debug_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_gnu
+Checking test 228 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 107.025441
- 0: The maximum resident set size (KB) = 974008
+ 0: The total amount of wall time = 112.127121
+ 0: The maximum resident set size (KB) = 976768
-Test 229 rap_control_debug_dyn32_phy32_gnu PASS
+Test 228 rap_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_gnu
-Checking test 230 hrrr_control_debug_dyn32_phy32_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_gnu
+Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 105.161131
- 0: The maximum resident set size (KB) = 966456
+ 0: The total amount of wall time = 108.850939
+ 0: The maximum resident set size (KB) = 966744
-Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS
+Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_gnu
-Checking test 231 conus13km_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_gnu
+Checking test 230 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -7792,15 +7738,15 @@ Checking test 231 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 315.742595
- 0: The maximum resident set size (KB) = 1279968
+ 0: The total amount of wall time = 323.770786
+ 0: The maximum resident set size (KB) = 1279396
-Test 231 conus13km_debug_gnu PASS
+Test 230 conus13km_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_gnu
-Checking test 232 conus13km_debug_qr_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_gnu
+Checking test 231 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -7813,57 +7759,54 @@ Checking test 232 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 326.074337
- 0: The maximum resident set size (KB) = 966772
+ 0: The total amount of wall time = 340.840468
+ 0: The maximum resident set size (KB) = 971656
-Test 232 conus13km_debug_qr_gnu PASS
+Test 231 conus13km_debug_qr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_gnu
-Checking test 233 conus13km_debug_2threads_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_gnu
+Checking test 232 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 184.887508
- 0: The maximum resident set size (KB) = 1189540
+ 0: The total amount of wall time = 191.519083
+ 0: The maximum resident set size (KB) = 1187968
-Test 233 conus13km_debug_2threads_gnu PASS
+Test 232 conus13km_debug_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_gnu
-Checking test 234 conus13km_radar_tten_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_gnu
+Checking test 233 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 316.370118
- 0: The maximum resident set size (KB) = 1349260
+ 0: The total amount of wall time = 322.923830
+ 0: The maximum resident set size (KB) = 1350024
-Test 234 conus13km_radar_tten_debug_gnu PASS
+Test 233 conus13km_radar_tten_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_gnu
-Checking test 235 rap_control_dyn64_phy32_debug_gnu results ....
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_gnu
+Checking test 234 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 108.466745
- 0: The maximum resident set size (KB) = 1000468
+ 0: The total amount of wall time = 114.511763
+ 0: The maximum resident set size (KB) = 1002056
-Test 235 rap_control_dyn64_phy32_debug_gnu PASS
+Test 234 rap_control_dyn64_phy32_debug_gnu PASS
-FAILED TESTS:
-147 gnv1_nested_intel failed in check_result
-gnv1_nested_intel 147 failed in run_test
-REGRESSION TEST FAILED
-Thu Feb 8 19:13:28 CST 2024
-Elapsed time: 01h:20m:18s. Have a nice day!
+REGRESSION TEST WAS SUCCESSFUL
+Tue Feb 13 02:57:32 AM CST 2024
+Elapsed time: 12h:21m:45s. Have a nice day!
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index d104ba27da..c3f73d0673 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,40 +1,56 @@
-Compile atm_debug_dyn32_intel elapsed time 367 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 2021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atm_faster_dyn32_intel elapsed time 1839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmaero_intel elapsed time 1786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atml_intel elapsed time 1966 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmw_intel elapsed time 1872 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmwm_intel elapsed time 1822 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile csawmg_intel elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile datm_cdeps_debug_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 485 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafs_all_intel elapsed time 1845 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafsw_intel elapsed time 1964 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 2534 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile s2s_aoflux_intel elapsed time 1882 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1870 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 2027 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 2723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 2279 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 2919 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 5475 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 2277 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_mixedmode_intel
+Mon Feb 12 21:36:05 UTC 2024
+Start Regression test
+
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing With Submodule Hashes:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile atm_debug_dyn32_intel elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 2039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atm_faster_dyn32_intel elapsed time 1847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmaero_intel elapsed time 1797 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atml_intel elapsed time 2229 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmw_intel elapsed time 1862 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmwm_intel elapsed time 1827 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile csawmg_intel elapsed time 1819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 493 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafs_all_intel elapsed time 1835 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafsw_intel elapsed time 1968 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 2535 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_intel elapsed time 1800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_intel elapsed time 1891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile s2s_aoflux_intel elapsed time 1915 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 343 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 2184 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 324 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 2315 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 3316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 536 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 5517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 2344 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -99,14 +115,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 417.598625
- 0: The maximum resident set size (KB) = 1746664
+ 0: The total amount of wall time = 534.782062
+ 0: The maximum resident set size (KB) = 1751836
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -170,14 +186,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1238.097157
- 0: The maximum resident set size (KB) = 1644756
+ 0: The total amount of wall time = 1230.188918
+ 0: The maximum resident set size (KB) = 1636516
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_iau_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -223,14 +239,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1330.746161
- 0: The maximum resident set size (KB) = 1851840
+ 0: The total amount of wall time = 1334.672577
+ 0: The maximum resident set size (KB) = 1866968
-Test 003 cpld_control_gfsv17_iau_intel PASS
+Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -283,14 +299,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 590.575476
- 0: The maximum resident set size (KB) = 967860
+ 0: The total amount of wall time = 599.499592
+ 0: The maximum resident set size (KB) = 983572
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -354,15 +370,15 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1445.554274
- 0: The maximum resident set size (KB) = 1607720
+ 0: The total amount of wall time = 1426.469561
+ 0: The maximum resident set size (KB) = 1610028
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_intel
+Checking test 006 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -426,15 +442,15 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 443.099353
- 0: The maximum resident set size (KB) = 1800900
+ 0: The total amount of wall time = 491.753492
+ 0: The maximum resident set size (KB) = 1790460
-Test 007 cpld_control_p8_intel PASS
+Test 006 cpld_control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8.v2.sfc_intel
+Checking test 007 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -498,15 +514,15 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 457.857445
- 0: The maximum resident set size (KB) = 1810948
+ 0: The total amount of wall time = 478.170698
+ 0: The maximum resident set size (KB) = 1792156
-Test 008 cpld_control_p8.v2.sfc_intel PASS
+Test 007 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_p8_intel
+Checking test 008 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -558,15 +574,15 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 330.397053
- 0: The maximum resident set size (KB) = 1688380
+ 0: The total amount of wall time = 293.603567
+ 0: The maximum resident set size (KB) = 1696248
-Test 009 cpld_restart_p8_intel PASS
+Test 008 cpld_restart_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_qr_p8_intel
+Checking test 009 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -630,15 +646,15 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 466.190185
- 0: The maximum resident set size (KB) = 1843488
+ 0: The total amount of wall time = 564.552994
+ 0: The maximum resident set size (KB) = 1825052
-Test 010 cpld_control_qr_p8_intel PASS
+Test 009 cpld_control_qr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_qr_p8_intel
+Checking test 010 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -690,15 +706,15 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 277.020730
- 0: The maximum resident set size (KB) = 1707008
+ 0: The total amount of wall time = 305.745305
+ 0: The maximum resident set size (KB) = 1715528
-Test 011 cpld_restart_qr_p8_intel PASS
+Test 010 cpld_restart_qr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_2threads_p8_intel
+Checking test 011 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -750,15 +766,15 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 449.399304
- 0: The maximum resident set size (KB) = 2188248
+ 0: The total amount of wall time = 436.673774
+ 0: The maximum resident set size (KB) = 2206236
-Test 012 cpld_2threads_p8_intel PASS
+Test 011 cpld_2threads_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_decomp_p8_intel
+Checking test 012 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -810,15 +826,15 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 462.329677
- 0: The maximum resident set size (KB) = 1792224
+ 0: The total amount of wall time = 457.465121
+ 0: The maximum resident set size (KB) = 1778628
-Test 013 cpld_decomp_p8_intel PASS
+Test 012 cpld_decomp_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_p8_intel
+Checking test 013 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -870,15 +886,15 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 382.894695
- 0: The maximum resident set size (KB) = 1755624
+ 0: The total amount of wall time = 387.756619
+ 0: The maximum resident set size (KB) = 1751480
-Test 014 cpld_mpi_p8_intel PASS
+Test 013 cpld_mpi_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_ciceC_p8_intel
+Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -942,15 +958,15 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 475.656668
- 0: The maximum resident set size (KB) = 1782680
+ 0: The total amount of wall time = 487.231050
+ 0: The maximum resident set size (KB) = 1791472
-Test 015 cpld_control_ciceC_p8_intel PASS
+Test 014 cpld_control_ciceC_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_s2sa_p8_intel
-Checking test 016 cpld_s2sa_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_s2sa_p8_intel
+Checking test 015 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1000,15 +1016,15 @@ Checking test 016 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 435.462329
- 0: The maximum resident set size (KB) = 1774616
+ 0: The total amount of wall time = 431.756247
+ 0: The maximum resident set size (KB) = 1758056
-Test 016 cpld_s2sa_p8_intel PASS
+Test 015 cpld_s2sa_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_intel
-Checking test 017 cpld_control_noaero_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_intel
+Checking test 016 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1071,15 +1087,15 @@ Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 397.346400
- 0: The maximum resident set size (KB) = 1637616
+ 0: The total amount of wall time = 358.569615
+ 0: The maximum resident set size (KB) = 1647968
-Test 017 cpld_control_noaero_p8_intel PASS
+Test 016 cpld_control_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_nowave_noaero_p8_intel
-Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_nowave_noaero_p8_intel
+Checking test 017 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1140,15 +1156,15 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 371.761917
- 0: The maximum resident set size (KB) = 1700940
+ 0: The total amount of wall time = 347.086253
+ 0: The maximum resident set size (KB) = 1690144
-Test 018 cpld_control_nowave_noaero_p8_intel PASS
+Test 017 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_p8_intel
-Checking test 019 cpld_debug_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_p8_intel
+Checking test 018 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1200,15 +1216,15 @@ Checking test 019 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 642.641170
- 0: The maximum resident set size (KB) = 1812596
+ 0: The total amount of wall time = 637.913018
+ 0: The maximum resident set size (KB) = 1818084
-Test 019 cpld_debug_p8_intel PASS
+Test 018 cpld_debug_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_noaero_p8_intel
-Checking test 020 cpld_debug_noaero_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_noaero_p8_intel
+Checking test 019 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1259,15 +1275,15 @@ Checking test 020 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 440.187541
- 0: The maximum resident set size (KB) = 1651300
+ 0: The total amount of wall time = 423.784444
+ 0: The maximum resident set size (KB) = 1653324
-Test 020 cpld_debug_noaero_p8_intel PASS
+Test 019 cpld_debug_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_agrid_intel
-Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_agrid_intel
+Checking test 020 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1328,15 +1344,15 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 371.197133
- 0: The maximum resident set size (KB) = 1694912
+ 0: The total amount of wall time = 362.460804
+ 0: The maximum resident set size (KB) = 1688728
-Test 021 cpld_control_noaero_p8_agrid_intel PASS
+Test 020 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_c48_intel
-Checking test 022 cpld_control_c48_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_c48_intel
+Checking test 021 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1385,15 +1401,15 @@ Checking test 022 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 766.704053
- 0: The maximum resident set size (KB) = 2783000
+ 0: The total amount of wall time = 769.214714
+ 0: The maximum resident set size (KB) = 2781404
-Test 022 cpld_control_c48_intel PASS
+Test 021 cpld_control_c48_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_faster_intel
-Checking test 023 cpld_control_p8_faster_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_faster_intel
+Checking test 022 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1457,15 +1473,15 @@ Checking test 023 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 441.675255
- 0: The maximum resident set size (KB) = 1810020
+ 0: The total amount of wall time = 423.335587
+ 0: The maximum resident set size (KB) = 1816108
-Test 023 cpld_control_p8_faster_intel PASS
+Test 022 cpld_control_p8_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_pdlib_p8_intel
-Checking test 024 cpld_control_pdlib_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_pdlib_p8_intel
+Checking test 023 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1528,15 +1544,15 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1240.111555
- 0: The maximum resident set size (KB) = 1677944
+ 0: The total amount of wall time = 1246.127718
+ 0: The maximum resident set size (KB) = 1665064
-Test 024 cpld_control_pdlib_p8_intel PASS
+Test 023 cpld_control_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_pdlib_p8_intel
-Checking test 025 cpld_restart_pdlib_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_pdlib_p8_intel
+Checking test 024 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -1587,15 +1603,15 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 596.241255
- 0: The maximum resident set size (KB) = 1020012
+ 0: The total amount of wall time = 617.156240
+ 0: The maximum resident set size (KB) = 1029984
-Test 025 cpld_restart_pdlib_p8_intel PASS
+Test 024 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_pdlib_p8_intel
-Checking test 026 cpld_mpi_pdlib_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_pdlib_p8_intel
+Checking test 025 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
Comparing sfcf021.tile3.nc .........OK
@@ -1658,15 +1674,15 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1442.768959
- 0: The maximum resident set size (KB) = 1634632
+ 0: The total amount of wall time = 1346.369940
+ 0: The maximum resident set size (KB) = 1652932
-Test 026 cpld_mpi_pdlib_p8_intel PASS
+Test 025 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_pdlib_p8_intel
-Checking test 027 cpld_debug_pdlib_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_pdlib_p8_intel
+Checking test 026 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
Comparing sfcf003.tile3.nc .........OK
@@ -1717,15 +1733,15 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1913.180413
- 0: The maximum resident set size (KB) = 1679084
+ 0: The total amount of wall time = 1911.438958
+ 0: The maximum resident set size (KB) = 1669388
-Test 027 cpld_debug_pdlib_p8_intel PASS
+Test 026 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_flake_intel
-Checking test 028 control_flake_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_flake_intel
+Checking test 027 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1735,15 +1751,15 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 285.289548
- 0: The maximum resident set size (KB) = 642168
+ 0: The total amount of wall time = 286.222758
+ 0: The maximum resident set size (KB) = 642372
-Test 028 control_flake_intel PASS
+Test 027 control_flake_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_intel
-Checking test 029 control_CubedSphereGrid_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_intel
+Checking test 028 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -1769,37 +1785,37 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 201.700142
- 0: The maximum resident set size (KB) = 598164
+ 0: The total amount of wall time = 187.681016
+ 0: The maximum resident set size (KB) = 589304
-Test 029 control_CubedSphereGrid_intel PASS
+Test 028 control_CubedSphereGrid_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_parallel_intel
-Checking test 030 control_CubedSphereGrid_parallel_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_parallel_intel
+Checking test 029 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc ............ALT CHECK......OK
+ Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc .........OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
+ Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 206.658632
- 0: The maximum resident set size (KB) = 598076
+ 0: The total amount of wall time = 203.384104
+ 0: The maximum resident set size (KB) = 599528
-Test 030 control_CubedSphereGrid_parallel_intel PASS
+Test 029 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_latlon_intel
-Checking test 031 control_latlon_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_latlon_intel
+Checking test 030 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1809,15 +1825,15 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 192.203586
- 0: The maximum resident set size (KB) = 588164
+ 0: The total amount of wall time = 209.873735
+ 0: The maximum resident set size (KB) = 597932
-Test 031 control_latlon_intel PASS
+Test 030 control_latlon_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_intel
-Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_intel
+Checking test 031 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1827,15 +1843,15 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 202.682711
- 0: The maximum resident set size (KB) = 592908
+ 0: The total amount of wall time = 214.792128
+ 0: The maximum resident set size (KB) = 591220
-Test 032 control_wrtGauss_netcdf_parallel_intel PASS
+Test 031 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48_intel
-Checking test 033 control_c48_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48_intel
+Checking test 032 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1873,15 +1889,15 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 605.899308
-0: The maximum resident set size (KB) = 839620
+0: The total amount of wall time = 606.579441
+0: The maximum resident set size (KB) = 842612
-Test 033 control_c48_intel PASS
+Test 032 control_c48_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48.v2.sfc_intel
-Checking test 034 control_c48.v2.sfc_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48.v2.sfc_intel
+Checking test 033 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1919,15 +1935,15 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 604.762516
-0: The maximum resident set size (KB) = 845876
+0: The total amount of wall time = 606.975364
+0: The maximum resident set size (KB) = 844904
-Test 034 control_c48.v2.sfc_intel PASS
+Test 033 control_c48.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c192_intel
-Checking test 035 control_c192_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c192_intel
+Checking test 034 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -1937,15 +1953,15 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 747.144683
- 0: The maximum resident set size (KB) = 724176
+ 0: The total amount of wall time = 752.567605
+ 0: The maximum resident set size (KB) = 727536
-Test 035 control_c192_intel PASS
+Test 034 control_c192_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384_intel
-Checking test 036 control_c384_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384_intel
+Checking test 035 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -1955,15 +1971,15 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 1036.489847
- 0: The maximum resident set size (KB) = 898244
+ 0: The total amount of wall time = 1019.889235
+ 0: The maximum resident set size (KB) = 891060
-Test 036 control_c384_intel PASS
+Test 035 control_c384_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384gdas_intel
-Checking test 037 control_c384gdas_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384gdas_intel
+Checking test 036 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atmf000.nc .........OK
@@ -1974,9 +1990,9 @@ Checking test 037 control_c384gdas_intel results ....
Comparing GFSPRS.GrbF06 .........OK
Comparing RESTART/20210322.060000.coupler.res .........OK
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
@@ -1985,35 +2001,35 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 863.081916
- 0: The maximum resident set size (KB) = 1013596
+ 0: The total amount of wall time = 874.560142
+ 0: The maximum resident set size (KB) = 1018424
-Test 037 control_c384gdas_intel PASS
+Test 036 control_c384gdas_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_intel
-Checking test 038 control_stochy_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_intel
+Checking test 037 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -2023,29 +2039,29 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 126.430949
- 0: The maximum resident set size (KB) = 596656
+ 0: The total amount of wall time = 125.015567
+ 0: The maximum resident set size (KB) = 601880
-Test 038 control_stochy_intel PASS
+Test 037 control_stochy_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_restart_intel
-Checking test 039 control_stochy_restart_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_restart_intel
+Checking test 038 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 70.047857
- 0: The maximum resident set size (KB) = 432020
+ 0: The total amount of wall time = 69.934029
+ 0: The maximum resident set size (KB) = 428924
-Test 039 control_stochy_restart_intel PASS
+Test 038 control_stochy_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_intel
-Checking test 040 control_lndp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_intel
+Checking test 039 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -2055,15 +2071,15 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 121.136305
- 0: The maximum resident set size (KB) = 602596
+ 0: The total amount of wall time = 116.805499
+ 0: The maximum resident set size (KB) = 596772
-Test 040 control_lndp_intel PASS
+Test 039 control_lndp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr4_intel
-Checking test 041 control_iovr4_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr4_intel
+Checking test 040 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2077,15 +2093,15 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 1393.365752
- 0: The maximum resident set size (KB) = 591436
+ 0: The total amount of wall time = 213.949351
+ 0: The maximum resident set size (KB) = 593408
-Test 041 control_iovr4_intel PASS
+Test 040 control_iovr4_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr5_intel
-Checking test 042 control_iovr5_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr5_intel
+Checking test 041 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2099,15 +2115,15 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 196.163161
- 0: The maximum resident set size (KB) = 591840
+ 0: The total amount of wall time = 208.976749
+ 0: The maximum resident set size (KB) = 596468
-Test 042 control_iovr5_intel PASS
+Test 041 control_iovr5_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_intel
-Checking test 043 control_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_intel
+Checking test 042 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2153,15 +2169,15 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.613032
- 0: The maximum resident set size (KB) = 1573544
+ 0: The total amount of wall time = 230.259030
+ 0: The maximum resident set size (KB) = 1558272
-Test 043 control_p8_intel PASS
+Test 042 control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8.v2.sfc_intel
-Checking test 044 control_p8.v2.sfc_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8.v2.sfc_intel
+Checking test 043 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2207,15 +2223,15 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 225.941040
- 0: The maximum resident set size (KB) = 1574172
+ 0: The total amount of wall time = 228.546037
+ 0: The maximum resident set size (KB) = 1565240
-Test 044 control_p8.v2.sfc_intel PASS
+Test 043 control_p8.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_ugwpv1_intel
-Checking test 045 control_p8_ugwpv1_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_ugwpv1_intel
+Checking test 044 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2261,15 +2277,15 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 222.835795
- 0: The maximum resident set size (KB) = 1569424
+ 0: The total amount of wall time = 221.330175
+ 0: The maximum resident set size (KB) = 1575000
-Test 045 control_p8_ugwpv1_intel PASS
+Test 044 control_p8_ugwpv1_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_intel
-Checking test 046 control_restart_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_intel
+Checking test 045 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF24 .........OK
@@ -2307,15 +2323,15 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 119.504831
- 0: The maximum resident set size (KB) = 808512
+ 0: The total amount of wall time = 124.103869
+ 0: The maximum resident set size (KB) = 810300
-Test 046 control_restart_p8_intel PASS
+Test 045 control_restart_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_noqr_p8_intel
-Checking test 047 control_noqr_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_noqr_p8_intel
+Checking test 046 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2361,15 +2377,15 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 221.939531
- 0: The maximum resident set size (KB) = 1555528
+ 0: The total amount of wall time = 223.966687
+ 0: The maximum resident set size (KB) = 1549348
-Test 047 control_noqr_p8_intel PASS
+Test 046 control_noqr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_noqr_p8_intel
-Checking test 048 control_restart_noqr_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_noqr_p8_intel
+Checking test 047 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF24 .........OK
@@ -2407,15 +2423,15 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 118.207898
- 0: The maximum resident set size (KB) = 833268
+ 0: The total amount of wall time = 120.227079
+ 0: The maximum resident set size (KB) = 835180
-Test 048 control_restart_noqr_p8_intel PASS
+Test 047 control_restart_noqr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_decomp_p8_intel
-Checking test 049 control_decomp_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_decomp_p8_intel
+Checking test 048 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf000.nc ............ALT CHECK......OK
@@ -2457,15 +2473,15 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 237.613789
- 0: The maximum resident set size (KB) = 1564292
+ 0: The total amount of wall time = 237.362702
+ 0: The maximum resident set size (KB) = 1548184
-Test 049 control_decomp_p8_intel PASS
+Test 048 control_decomp_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_2threads_p8_intel
-Checking test 050 control_2threads_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_2threads_p8_intel
+Checking test 049 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf000.nc ............ALT CHECK......OK
@@ -2507,15 +2523,15 @@ Checking test 050 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 219.680945
- 0: The maximum resident set size (KB) = 1658808
+ 0: The total amount of wall time = 223.751944
+ 0: The maximum resident set size (KB) = 1645176
-Test 050 control_2threads_p8_intel PASS
+Test 049 control_2threads_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_lndp_intel
-Checking test 051 control_p8_lndp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_lndp_intel
+Checking test 050 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2533,15 +2549,15 @@ Checking test 051 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 410.990355
- 0: The maximum resident set size (KB) = 1568508
+ 0: The total amount of wall time = 417.231482
+ 0: The maximum resident set size (KB) = 1560648
-Test 051 control_p8_lndp_intel PASS
+Test 050 control_p8_lndp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_rrtmgp_intel
-Checking test 052 control_p8_rrtmgp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_rrtmgp_intel
+Checking test 051 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2587,15 +2603,15 @@ Checking test 052 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 324.274315
- 0: The maximum resident set size (KB) = 1618368
+ 0: The total amount of wall time = 298.422724
+ 0: The maximum resident set size (KB) = 1635200
-Test 052 control_p8_rrtmgp_intel PASS
+Test 051 control_p8_rrtmgp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_mynn_intel
-Checking test 053 control_p8_mynn_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_mynn_intel
+Checking test 052 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2641,15 +2657,15 @@ Checking test 053 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.131373
- 0: The maximum resident set size (KB) = 1561660
+ 0: The total amount of wall time = 228.568739
+ 0: The maximum resident set size (KB) = 1580556
-Test 053 control_p8_mynn_intel PASS
+Test 052 control_p8_mynn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/merra2_thompson_intel
-Checking test 054 merra2_thompson_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/merra2_thompson_intel
+Checking test 053 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2695,15 +2711,15 @@ Checking test 054 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 264.924860
- 0: The maximum resident set size (KB) = 1564736
+ 0: The total amount of wall time = 267.610727
+ 0: The maximum resident set size (KB) = 1585996
-Test 054 merra2_thompson_intel PASS
+Test 053 merra2_thompson_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_intel
-Checking test 055 regional_control_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_intel
+Checking test 054 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2713,29 +2729,29 @@ Checking test 055 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 429.991218
- 0: The maximum resident set size (KB) = 753972
+ 0: The total amount of wall time = 430.572297
+ 0: The maximum resident set size (KB) = 758916
-Test 055 regional_control_intel PASS
+Test 054 regional_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_restart_intel
-Checking test 056 regional_restart_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_restart_intel
+Checking test 055 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 219.814728
- 0: The maximum resident set size (KB) = 927712
+ 0: The total amount of wall time = 219.037545
+ 0: The maximum resident set size (KB) = 935416
-Test 056 regional_restart_intel PASS
+Test 055 regional_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_decomp_intel
-Checking test 057 regional_decomp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_decomp_intel
+Checking test 056 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2745,15 +2761,15 @@ Checking test 057 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 451.522213
- 0: The maximum resident set size (KB) = 749776
+ 0: The total amount of wall time = 455.034196
+ 0: The maximum resident set size (KB) = 748772
-Test 057 regional_decomp_intel PASS
+Test 056 regional_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2threads_intel
-Checking test 058 regional_2threads_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2threads_intel
+Checking test 057 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2763,29 +2779,29 @@ Checking test 058 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 266.918671
- 0: The maximum resident set size (KB) = 747508
+ 0: The total amount of wall time = 264.108947
+ 0: The maximum resident set size (KB) = 750308
-Test 058 regional_2threads_intel PASS
+Test 057 regional_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_netcdf_parallel_intel
-Checking test 059 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_netcdf_parallel_intel
+Checking test 058 regional_netcdf_parallel_intel results ....
+ Comparing dynf000.nc ............ALT CHECK......OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 419.753136
- 0: The maximum resident set size (KB) = 757676
+ 0: The total amount of wall time = 416.634061
+ 0: The maximum resident set size (KB) = 752540
-Test 059 regional_netcdf_parallel_intel PASS
+Test 058 regional_netcdf_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2dwrtdecomp_intel
-Checking test 060 regional_2dwrtdecomp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2dwrtdecomp_intel
+Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -2795,15 +2811,15 @@ Checking test 060 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 423.971494
- 0: The maximum resident set size (KB) = 755008
+ 0: The total amount of wall time = 426.296210
+ 0: The maximum resident set size (KB) = 756220
-Test 060 regional_2dwrtdecomp_intel PASS
+Test 059 regional_2dwrtdecomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_intel
-Checking test 061 rap_control_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_intel
+Checking test 060 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2849,15 +2865,15 @@ Checking test 061 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 641.015804
- 0: The maximum resident set size (KB) = 968076
+ 0: The total amount of wall time = 595.012302
+ 0: The maximum resident set size (KB) = 979152
-Test 061 rap_control_intel PASS
+Test 060 rap_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_intel
-Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_intel
+Checking test 061 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
@@ -2867,15 +2883,15 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 334.033315
- 0: The maximum resident set size (KB) = 1206652
+ 0: The total amount of wall time = 336.578899
+ 0: The maximum resident set size (KB) = 1203488
-Test 062 regional_spp_sppt_shum_skeb_intel PASS
+Test 061 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_decomp_intel
-Checking test 063 rap_decomp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_decomp_intel
+Checking test 062 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2921,15 +2937,15 @@ Checking test 063 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 630.055127
- 0: The maximum resident set size (KB) = 958116
+ 0: The total amount of wall time = 636.071325
+ 0: The maximum resident set size (KB) = 971688
-Test 063 rap_decomp_intel PASS
+Test 062 rap_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_intel
-Checking test 064 rap_2threads_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_intel
+Checking test 063 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2975,15 +2991,15 @@ Checking test 064 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 571.681731
- 0: The maximum resident set size (KB) = 1064824
+ 0: The total amount of wall time = 579.475226
+ 0: The maximum resident set size (KB) = 1061520
-Test 064 rap_2threads_intel PASS
+Test 063 rap_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_intel
-Checking test 065 rap_restart_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_intel
+Checking test 064 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF24 .........OK
@@ -3021,15 +3037,15 @@ Checking test 065 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 308.813615
- 0: The maximum resident set size (KB) = 984572
+ 0: The total amount of wall time = 320.380683
+ 0: The maximum resident set size (KB) = 983312
-Test 065 rap_restart_intel PASS
+Test 064 rap_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_intel
-Checking test 066 rap_sfcdiff_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_intel
+Checking test 065 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3075,15 +3091,15 @@ Checking test 066 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 603.504721
- 0: The maximum resident set size (KB) = 969532
+ 0: The total amount of wall time = 607.543247
+ 0: The maximum resident set size (KB) = 981920
-Test 066 rap_sfcdiff_intel PASS
+Test 065 rap_sfcdiff_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_decomp_intel
-Checking test 067 rap_sfcdiff_decomp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_decomp_intel
+Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3129,15 +3145,15 @@ Checking test 067 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 639.061808
- 0: The maximum resident set size (KB) = 979304
+ 0: The total amount of wall time = 631.456578
+ 0: The maximum resident set size (KB) = 961208
-Test 067 rap_sfcdiff_decomp_intel PASS
+Test 066 rap_sfcdiff_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_restart_intel
-Checking test 068 rap_sfcdiff_restart_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_restart_intel
+Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -3175,15 +3191,15 @@ Checking test 068 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 443.003018
- 0: The maximum resident set size (KB) = 986380
+ 0: The total amount of wall time = 467.410399
+ 0: The maximum resident set size (KB) = 990640
-Test 068 rap_sfcdiff_restart_intel PASS
+Test 067 rap_sfcdiff_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_intel
-Checking test 069 hrrr_control_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_intel
+Checking test 068 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3229,15 +3245,15 @@ Checking test 069 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 306.543021
- 0: The maximum resident set size (KB) = 978476
+ 0: The total amount of wall time = 307.642296
+ 0: The maximum resident set size (KB) = 974528
-Test 069 hrrr_control_intel PASS
+Test 068 hrrr_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_intel
-Checking test 070 hrrr_control_decomp_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_intel
+Checking test 069 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3283,15 +3299,15 @@ Checking test 070 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 321.295290
- 0: The maximum resident set size (KB) = 966180
+ 0: The total amount of wall time = 318.398241
+ 0: The maximum resident set size (KB) = 965840
-Test 070 hrrr_control_decomp_intel PASS
+Test 069 hrrr_control_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_intel
-Checking test 071 hrrr_control_2threads_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_intel
+Checking test 070 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3337,29 +3353,29 @@ Checking test 071 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 284.108260
- 0: The maximum resident set size (KB) = 1051444
+ 0: The total amount of wall time = 282.476061
+ 0: The maximum resident set size (KB) = 1051404
-Test 071 hrrr_control_2threads_intel PASS
+Test 070 hrrr_control_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_intel
-Checking test 072 hrrr_control_restart_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_intel
+Checking test 071 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 167.645004
- 0: The maximum resident set size (KB) = 903024
+ 0: The total amount of wall time = 163.094490
+ 0: The maximum resident set size (KB) = 912224
-Test 072 hrrr_control_restart_intel PASS
+Test 071 hrrr_control_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_intel
-Checking test 073 rrfs_v1beta_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_intel
+Checking test 072 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3405,15 +3421,15 @@ Checking test 073 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 587.432205
- 0: The maximum resident set size (KB) = 979612
+ 0: The total amount of wall time = 601.257205
+ 0: The maximum resident set size (KB) = 969496
-Test 073 rrfs_v1beta_intel PASS
+Test 072 rrfs_v1beta_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_intel
-Checking test 074 rrfs_v1nssl_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_intel
+Checking test 073 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3427,15 +3443,15 @@ Checking test 074 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 718.128208
- 0: The maximum resident set size (KB) = 1926676
+ 0: The total amount of wall time = 760.476294
+ 0: The maximum resident set size (KB) = 1927008
-Test 074 rrfs_v1nssl_intel PASS
+Test 073 rrfs_v1nssl_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_nohailnoccn_intel
-Checking test 075 rrfs_v1nssl_nohailnoccn_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_nohailnoccn_intel
+Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -3449,15 +3465,15 @@ Checking test 075 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 723.775643
- 0: The maximum resident set size (KB) = 1921892
+ 0: The total amount of wall time = 732.994073
+ 0: The maximum resident set size (KB) = 1924848
-Test 075 rrfs_v1nssl_nohailnoccn_intel PASS
+Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_intel
-Checking test 076 control_csawmg_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_intel
+Checking test 075 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3467,15 +3483,15 @@ Checking test 076 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 499.872926
- 0: The maximum resident set size (KB) = 682884
+ 0: The total amount of wall time = 476.475224
+ 0: The maximum resident set size (KB) = 683096
-Test 076 control_csawmg_intel PASS
+Test 075 control_csawmg_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_intel
-Checking test 077 control_csawmgt_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_intel
+Checking test 076 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3485,15 +3501,15 @@ Checking test 077 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 492.512279
- 0: The maximum resident set size (KB) = 685628
+ 0: The total amount of wall time = 463.147967
+ 0: The maximum resident set size (KB) = 682252
-Test 077 control_csawmgt_intel PASS
+Test 076 control_csawmgt_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_intel
-Checking test 078 control_ras_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_intel
+Checking test 077 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -3503,27 +3519,27 @@ Checking test 078 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 259.949395
- 0: The maximum resident set size (KB) = 650968
+ 0: The total amount of wall time = 264.195431
+ 0: The maximum resident set size (KB) = 653372
-Test 078 control_ras_intel PASS
+Test 077 control_ras_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_intel
-Checking test 079 control_wam_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_intel
+Checking test 078 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 193.060547
- 0: The maximum resident set size (KB) = 497092
+ 0: The total amount of wall time = 159.515892
+ 0: The maximum resident set size (KB) = 488696
-Test 079 control_wam_intel PASS
+Test 078 control_wam_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_faster_intel
-Checking test 080 control_p8_faster_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_faster_intel
+Checking test 079 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3569,15 +3585,15 @@ Checking test 080 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.283087
- 0: The maximum resident set size (KB) = 1566732
+ 0: The total amount of wall time = 211.100612
+ 0: The maximum resident set size (KB) = 1568516
-Test 080 control_p8_faster_intel PASS
+Test 079 control_p8_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_faster_intel
-Checking test 081 regional_control_faster_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_faster_intel
+Checking test 080 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
@@ -3587,15 +3603,15 @@ Checking test 081 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 391.178962
- 0: The maximum resident set size (KB) = 756524
+ 0: The total amount of wall time = 388.027608
+ 0: The maximum resident set size (KB) = 755708
-Test 081 regional_control_faster_intel PASS
+Test 080 regional_control_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_debug_intel
-Checking test 082 control_CubedSphereGrid_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_debug_intel
+Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -3621,365 +3637,365 @@ Checking test 082 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 197.758614
- 0: The maximum resident set size (KB) = 750332
+ 0: The total amount of wall time = 197.949405
+ 0: The maximum resident set size (KB) = 748288
-Test 082 control_CubedSphereGrid_debug_intel PASS
+Test 081 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_debug_intel
+Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 201.756653
- 0: The maximum resident set size (KB) = 749352
+ 0: The total amount of wall time = 195.934017
+ 0: The maximum resident set size (KB) = 749784
-Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS
+Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_debug_intel
-Checking test 084 control_stochy_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_debug_intel
+Checking test 083 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 221.936950
- 0: The maximum resident set size (KB) = 757704
+ 0: The total amount of wall time = 216.788547
+ 0: The maximum resident set size (KB) = 755992
-Test 084 control_stochy_debug_intel PASS
+Test 083 control_stochy_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_debug_intel
-Checking test 085 control_lndp_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_debug_intel
+Checking test 084 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 197.491477
- 0: The maximum resident set size (KB) = 751528
+ 0: The total amount of wall time = 192.031486
+ 0: The maximum resident set size (KB) = 752912
-Test 085 control_lndp_debug_intel PASS
+Test 084 control_lndp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_debug_intel
-Checking test 086 control_csawmg_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_debug_intel
+Checking test 085 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 376.610104
- 0: The maximum resident set size (KB) = 799636
+ 0: The total amount of wall time = 304.862940
+ 0: The maximum resident set size (KB) = 802476
-Test 086 control_csawmg_debug_intel PASS
+Test 085 control_csawmg_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_debug_intel
-Checking test 087 control_csawmgt_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_debug_intel
+Checking test 086 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 307.314693
- 0: The maximum resident set size (KB) = 800548
+ 0: The total amount of wall time = 300.893166
+ 0: The maximum resident set size (KB) = 804564
-Test 087 control_csawmgt_debug_intel PASS
+Test 086 control_csawmgt_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_debug_intel
-Checking test 088 control_ras_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_debug_intel
+Checking test 087 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.164043
- 0: The maximum resident set size (KB) = 759824
+ 0: The total amount of wall time = 192.756996
+ 0: The maximum resident set size (KB) = 764108
-Test 088 control_ras_debug_intel PASS
+Test 087 control_ras_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_diag_debug_intel
-Checking test 089 control_diag_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_diag_debug_intel
+Checking test 088 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 264.738466
- 0: The maximum resident set size (KB) = 808968
+ 0: The total amount of wall time = 196.879806
+ 0: The maximum resident set size (KB) = 816552
-Test 089 control_diag_debug_intel PASS
+Test 088 control_diag_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_debug_p8_intel
-Checking test 090 control_debug_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_debug_p8_intel
+Checking test 089 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 213.269743
- 0: The maximum resident set size (KB) = 1574496
+ 0: The total amount of wall time = 216.684691
+ 0: The maximum resident set size (KB) = 1578496
-Test 090 control_debug_p8_intel PASS
+Test 089 control_debug_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_debug_intel
-Checking test 091 regional_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_debug_intel
+Checking test 090 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 1293.778089
- 0: The maximum resident set size (KB) = 776296
+ 0: The total amount of wall time = 1294.906142
+ 0: The maximum resident set size (KB) = 764884
-Test 091 regional_debug_intel PASS
+Test 090 regional_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_intel
-Checking test 092 rap_control_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_intel
+Checking test 091 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 361.838602
- 0: The maximum resident set size (KB) = 1147756
+ 0: The total amount of wall time = 362.037117
+ 0: The maximum resident set size (KB) = 1142484
-Test 092 rap_control_debug_intel PASS
+Test 091 rap_control_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_intel
-Checking test 093 hrrr_control_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_intel
+Checking test 092 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 352.105955
- 0: The maximum resident set size (KB) = 1146008
+ 0: The total amount of wall time = 353.948917
+ 0: The maximum resident set size (KB) = 1126728
-Test 093 hrrr_control_debug_intel PASS
+Test 092 hrrr_control_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_gf_debug_intel
-Checking test 094 hrrr_gf_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_gf_debug_intel
+Checking test 093 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 357.784158
- 0: The maximum resident set size (KB) = 1131788
+ 0: The total amount of wall time = 358.088782
+ 0: The maximum resident set size (KB) = 1138236
-Test 094 hrrr_gf_debug_intel PASS
+Test 093 hrrr_gf_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_c3_debug_intel
-Checking test 095 hrrr_c3_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_c3_debug_intel
+Checking test 094 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 354.417002
- 0: The maximum resident set size (KB) = 1152760
+ 0: The total amount of wall time = 361.937057
+ 0: The maximum resident set size (KB) = 1146536
-Test 095 hrrr_c3_debug_intel PASS
+Test 094 hrrr_c3_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_drag_suite_debug_intel
-Checking test 096 rap_unified_drag_suite_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_drag_suite_debug_intel
+Checking test 095 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 358.600282
- 0: The maximum resident set size (KB) = 1141192
+ 0: The total amount of wall time = 373.384664
+ 0: The maximum resident set size (KB) = 1133048
-Test 096 rap_unified_drag_suite_debug_intel PASS
+Test 095 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_diag_debug_intel
-Checking test 097 rap_diag_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_diag_debug_intel
+Checking test 096 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 379.489750
- 0: The maximum resident set size (KB) = 1226544
+ 0: The total amount of wall time = 375.569447
+ 0: The maximum resident set size (KB) = 1227640
-Test 097 rap_diag_debug_intel PASS
+Test 096 rap_diag_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_cires_ugwp_debug_intel
-Checking test 098 rap_cires_ugwp_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_cires_ugwp_debug_intel
+Checking test 097 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 366.378069
- 0: The maximum resident set size (KB) = 1148512
+ 0: The total amount of wall time = 372.837048
+ 0: The maximum resident set size (KB) = 1140416
-Test 098 rap_cires_ugwp_debug_intel PASS
+Test 097 rap_cires_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_ugwp_debug_intel
-Checking test 099 rap_unified_ugwp_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_ugwp_debug_intel
+Checking test 098 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 364.869012
- 0: The maximum resident set size (KB) = 1138680
+ 0: The total amount of wall time = 369.619346
+ 0: The maximum resident set size (KB) = 1154948
-Test 099 rap_unified_ugwp_debug_intel PASS
+Test 098 rap_unified_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_lndp_debug_intel
-Checking test 100 rap_lndp_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_lndp_debug_intel
+Checking test 099 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 362.196931
- 0: The maximum resident set size (KB) = 1146640
+ 0: The total amount of wall time = 362.167227
+ 0: The maximum resident set size (KB) = 1139720
-Test 100 rap_lndp_debug_intel PASS
+Test 099 rap_lndp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_progcld_thompson_debug_intel
-Checking test 101 rap_progcld_thompson_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_progcld_thompson_debug_intel
+Checking test 100 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 362.841576
- 0: The maximum resident set size (KB) = 1149568
+ 0: The total amount of wall time = 366.477841
+ 0: The maximum resident set size (KB) = 1149552
-Test 101 rap_progcld_thompson_debug_intel PASS
+Test 100 rap_progcld_thompson_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_debug_intel
-Checking test 102 rap_noah_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_debug_intel
+Checking test 101 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 356.251145
- 0: The maximum resident set size (KB) = 1148052
+ 0: The total amount of wall time = 351.444512
+ 0: The maximum resident set size (KB) = 1138908
-Test 102 rap_noah_debug_intel PASS
+Test 101 rap_noah_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_debug_intel
-Checking test 103 rap_sfcdiff_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_debug_intel
+Checking test 102 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 370.731212
- 0: The maximum resident set size (KB) = 1137804
+ 0: The total amount of wall time = 369.048524
+ 0: The maximum resident set size (KB) = 1140032
-Test 103 rap_sfcdiff_debug_intel PASS
+Test 102 rap_sfcdiff_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_sfcdiff_cires_ugwp_debug_intel
+Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 595.297882
- 0: The maximum resident set size (KB) = 1128252
+ 0: The total amount of wall time = 584.564107
+ 0: The maximum resident set size (KB) = 1145208
-Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
+Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_debug_intel
-Checking test 105 rrfs_v1beta_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_debug_intel
+Checking test 104 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 355.407557
- 0: The maximum resident set size (KB) = 1122084
+ 0: The total amount of wall time = 354.524565
+ 0: The maximum resident set size (KB) = 1134284
-Test 105 rrfs_v1beta_debug_intel PASS
+Test 104 rrfs_v1beta_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_clm_lake_debug_intel
-Checking test 106 rap_clm_lake_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_clm_lake_debug_intel
+Checking test 105 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 433.994598
- 0: The maximum resident set size (KB) = 1145636
+ 0: The total amount of wall time = 482.702399
+ 0: The maximum resident set size (KB) = 1143736
-Test 106 rap_clm_lake_debug_intel PASS
+Test 105 rap_clm_lake_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_flake_debug_intel
-Checking test 107 rap_flake_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_flake_debug_intel
+Checking test 106 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 355.874789
- 0: The maximum resident set size (KB) = 1142260
+ 0: The total amount of wall time = 362.257679
+ 0: The maximum resident set size (KB) = 1139584
-Test 107 rap_flake_debug_intel PASS
+Test 106 rap_flake_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_c96_no_nest_debug_intel
-Checking test 108 gnv1_c96_no_nest_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_c96_no_nest_debug_intel
+Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -4019,27 +4035,27 @@ Checking test 108 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 618.361430
- 0: The maximum resident set size (KB) = 1147508
+ 0: The total amount of wall time = 621.988842
+ 0: The maximum resident set size (KB) = 1144000
-Test 108 gnv1_c96_no_nest_debug_intel PASS
+Test 107 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_debug_intel
-Checking test 109 control_wam_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_debug_intel
+Checking test 108 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 362.721922
- 0: The maximum resident set size (KB) = 431872
+ 0: The total amount of wall time = 368.732194
+ 0: The maximum resident set size (KB) = 431620
-Test 109 control_wam_debug_intel PASS
+Test 108 control_wam_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
@@ -4049,15 +4065,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 307.133271
- 0: The maximum resident set size (KB) = 1080296
+ 0: The total amount of wall time = 307.325745
+ 0: The maximum resident set size (KB) = 1080112
-Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
+Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn32_phy32_intel
-Checking test 111 rap_control_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn32_phy32_intel
+Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4103,15 +4119,15 @@ Checking test 111 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 500.959708
- 0: The maximum resident set size (KB) = 902444
+ 0: The total amount of wall time = 493.646222
+ 0: The maximum resident set size (KB) = 897736
-Test 111 rap_control_dyn32_phy32_intel PASS
+Test 110 rap_control_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_dyn32_phy32_intel
-Checking test 112 hrrr_control_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_dyn32_phy32_intel
+Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4157,15 +4173,15 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 265.466812
- 0: The maximum resident set size (KB) = 868560
+ 0: The total amount of wall time = 254.459983
+ 0: The maximum resident set size (KB) = 869524
-Test 112 hrrr_control_dyn32_phy32_intel PASS
+Test 111 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_dyn32_phy32_intel
-Checking test 113 rap_2threads_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_dyn32_phy32_intel
+Checking test 112 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4211,15 +4227,15 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 484.145173
- 0: The maximum resident set size (KB) = 935308
+ 0: The total amount of wall time = 474.654727
+ 0: The maximum resident set size (KB) = 935216
-Test 113 rap_2threads_dyn32_phy32_intel PASS
+Test 112 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_dyn32_phy32_intel
+Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4265,15 +4281,15 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.668838
- 0: The maximum resident set size (KB) = 903052
+ 0: The total amount of wall time = 243.951425
+ 0: The maximum resident set size (KB) = 900808
-Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS
+Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_dyn32_phy32_intel
+Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4319,15 +4335,15 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 274.473166
- 0: The maximum resident set size (KB) = 851364
+ 0: The total amount of wall time = 273.511755
+ 0: The maximum resident set size (KB) = 858584
-Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS
+Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_dyn32_phy32_intel
-Checking test 116 rap_restart_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_dyn32_phy32_intel
+Checking test 115 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
@@ -4365,29 +4381,29 @@ Checking test 116 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 382.073550
- 0: The maximum resident set size (KB) = 898488
+ 0: The total amount of wall time = 371.795143
+ 0: The maximum resident set size (KB) = 895716
-Test 116 rap_restart_dyn32_phy32_intel PASS
+Test 115 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_dyn32_phy32_intel
-Checking test 117 hrrr_control_restart_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_dyn32_phy32_intel
+Checking test 116 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 142.832455
- 0: The maximum resident set size (KB) = 844956
+ 0: The total amount of wall time = 135.689696
+ 0: The maximum resident set size (KB) = 846412
-Test 117 hrrr_control_restart_dyn32_phy32_intel PASS
+Test 116 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_control_intel
-Checking test 118 conus13km_control_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_control_intel
+Checking test 117 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing sfcf002.nc .........OK
@@ -4402,41 +4418,41 @@ Checking test 118 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 165.856415
- 0: The maximum resident set size (KB) = 1095036
+ 0: The total amount of wall time = 166.741815
+ 0: The maximum resident set size (KB) = 1094164
-Test 118 conus13km_control_intel PASS
+Test 117 conus13km_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_2threads_intel
-Checking test 119 conus13km_2threads_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_2threads_intel
+Checking test 118 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 75.806853
- 0: The maximum resident set size (KB) = 1045708
+ 0: The total amount of wall time = 71.137121
+ 0: The maximum resident set size (KB) = 1045464
-Test 119 conus13km_2threads_intel PASS
+Test 118 conus13km_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_restart_mismatch_intel
-Checking test 120 conus13km_restart_mismatch_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_restart_mismatch_intel
+Checking test 119 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 92.105403
- 0: The maximum resident set size (KB) = 1013256
+ 0: The total amount of wall time = 90.363616
+ 0: The maximum resident set size (KB) = 1009008
-Test 120 conus13km_restart_mismatch_intel PASS
+Test 119 conus13km_restart_mismatch_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_intel
-Checking test 121 rap_control_dyn64_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_intel
+Checking test 120 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
Comparing sfcf012.nc .........OK
@@ -4482,43 +4498,43 @@ Checking test 121 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 321.830459
- 0: The maximum resident set size (KB) = 890804
+ 0: The total amount of wall time = 337.286470
+ 0: The maximum resident set size (KB) = 894768
-Test 121 rap_control_dyn64_phy32_intel PASS
+Test 120 rap_control_dyn64_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_dyn32_phy32_intel
-Checking test 122 rap_control_debug_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_dyn32_phy32_intel
+Checking test 121 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 355.354090
- 0: The maximum resident set size (KB) = 1009812
+ 0: The total amount of wall time = 347.118740
+ 0: The maximum resident set size (KB) = 1024996
-Test 122 rap_control_debug_dyn32_phy32_intel PASS
+Test 121 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_dyn32_phy32_intel
-Checking test 123 hrrr_control_debug_dyn32_phy32_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_dyn32_phy32_intel
+Checking test 122 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 350.902322
- 0: The maximum resident set size (KB) = 1006496
+ 0: The total amount of wall time = 341.435940
+ 0: The maximum resident set size (KB) = 1015840
-Test 123 hrrr_control_debug_dyn32_phy32_intel PASS
+Test 122 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_intel
-Checking test 124 conus13km_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_intel
+Checking test 123 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -4531,15 +4547,15 @@ Checking test 124 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1107.364253
- 0: The maximum resident set size (KB) = 1129452
+ 0: The total amount of wall time = 1087.950847
+ 0: The maximum resident set size (KB) = 1129212
-Test 124 conus13km_debug_intel PASS
+Test 123 conus13km_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_qr_intel
-Checking test 125 conus13km_debug_qr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_qr_intel
+Checking test 124 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
@@ -4552,82 +4568,82 @@ Checking test 125 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1110.480045
- 0: The maximum resident set size (KB) = 866948
+ 0: The total amount of wall time = 1097.144274
+ 0: The maximum resident set size (KB) = 844612
-Test 125 conus13km_debug_qr_intel PASS
+Test 124 conus13km_debug_qr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_2threads_intel
-Checking test 126 conus13km_debug_2threads_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_2threads_intel
+Checking test 125 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 637.560550
- 0: The maximum resident set size (KB) = 1078496
+ 0: The total amount of wall time = 625.508257
+ 0: The maximum resident set size (KB) = 1082896
-Test 126 conus13km_debug_2threads_intel PASS
+Test 125 conus13km_debug_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_radar_tten_debug_intel
-Checking test 127 conus13km_radar_tten_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_radar_tten_debug_intel
+Checking test 126 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 1099.356619
- 0: The maximum resident set size (KB) = 1188200
+ 0: The total amount of wall time = 1090.871099
+ 0: The maximum resident set size (KB) = 1189200
-Test 127 conus13km_radar_tten_debug_intel PASS
+Test 126 conus13km_radar_tten_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_debug_intel
-Checking test 128 rap_control_dyn64_phy32_debug_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_debug_intel
+Checking test 127 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 360.325797
- 0: The maximum resident set size (KB) = 1057176
+ 0: The total amount of wall time = 358.218954
+ 0: The maximum resident set size (KB) = 1052784
-Test 128 rap_control_dyn64_phy32_debug_intel PASS
+Test 127 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_intel
-Checking test 129 hafs_regional_atm_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_intel
+Checking test 128 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 448.402913
- 0: The maximum resident set size (KB) = 713116
+ 0: The total amount of wall time = 440.317584
+ 0: The maximum resident set size (KB) = 708940
-Test 129 hafs_regional_atm_intel PASS
+Test 128 hafs_regional_atm_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_thompson_gfdlsf_intel
+Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 419.088800
- 0: The maximum resident set size (KB) = 1075140
+ 0: The total amount of wall time = 426.575343
+ 0: The maximum resident set size (KB) = 1076816
-Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS
+Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_intel
-Checking test 131 hafs_regional_atm_ocn_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_intel
+Checking test 130 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing archv.2019_241_06.a .........OK
@@ -4635,15 +4651,15 @@ Checking test 131 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 575.033300
- 0: The maximum resident set size (KB) = 770572
+ 0: The total amount of wall time = 554.398133
+ 0: The maximum resident set size (KB) = 769104
-Test 131 hafs_regional_atm_ocn_intel PASS
+Test 130 hafs_regional_atm_ocn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_wav_intel
-Checking test 132 hafs_regional_atm_wav_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_wav_intel
+Checking test 131 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing 20190829.060000.out_grd.ww3 .........OK
@@ -4651,15 +4667,15 @@ Checking test 132 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 976.562276
- 0: The maximum resident set size (KB) = 792536
+ 0: The total amount of wall time = 980.919386
+ 0: The maximum resident set size (KB) = 806804
-Test 132 hafs_regional_atm_wav_intel PASS
+Test 131 hafs_regional_atm_wav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_wav_intel
-Checking test 133 hafs_regional_atm_ocn_wav_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_wav_intel
+Checking test 132 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing archv.2019_241_06.a .........OK
@@ -4669,15 +4685,15 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 1078.231692
- 0: The maximum resident set size (KB) = 811952
+ 0: The total amount of wall time = 1079.750200
+ 0: The maximum resident set size (KB) = 817652
-Test 133 hafs_regional_atm_ocn_wav_intel PASS
+Test 132 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_nested_intel
-Checking test 134 gnv1_nested_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_nested_intel
+Checking test 133 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
@@ -4686,186 +4702,186 @@ Checking test 134 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 358.577272
- 0: The maximum resident set size (KB) = 767144
+ 0: The total amount of wall time = 381.266198
+ 0: The maximum resident set size (KB) = 769868
-Test 134 gnv1_nested_intel PASS
+Test 133 gnv1_nested_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_intel
-Checking test 135 hafs_regional_docn_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_intel
+Checking test 134 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 517.975084
- 0: The maximum resident set size (KB) = 764020
+ 0: The total amount of wall time = 583.656699
+ 0: The maximum resident set size (KB) = 768212
-Test 135 hafs_regional_docn_intel PASS
+Test 134 hafs_regional_docn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_oisst_intel
-Checking test 136 hafs_regional_docn_oisst_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_oisst_intel
+Checking test 135 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 510.845201
- 0: The maximum resident set size (KB) = 752572
+ 0: The total amount of wall time = 551.298794
+ 0: The maximum resident set size (KB) = 750556
-Test 136 hafs_regional_docn_oisst_intel PASS
+Test 135 hafs_regional_docn_oisst_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_intel
-Checking test 137 datm_cdeps_control_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_intel
+Checking test 136 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 205.084611
- 0: The maximum resident set size (KB) = 1038208
+ 0: The total amount of wall time = 205.916667
+ 0: The maximum resident set size (KB) = 1037632
-Test 137 datm_cdeps_control_cfsr_intel PASS
+Test 136 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_restart_cfsr_intel
-Checking test 138 datm_cdeps_restart_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_restart_cfsr_intel
+Checking test 137 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.927646
- 0: The maximum resident set size (KB) = 1008848
+ 0: The total amount of wall time = 125.908070
+ 0: The maximum resident set size (KB) = 1017344
-Test 138 datm_cdeps_restart_cfsr_intel PASS
+Test 137 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_gefs_intel
-Checking test 139 datm_cdeps_control_gefs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_gefs_intel
+Checking test 138 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.348850
- 0: The maximum resident set size (KB) = 907984
+ 0: The total amount of wall time = 200.714077
+ 0: The maximum resident set size (KB) = 913544
-Test 139 datm_cdeps_control_gefs_intel PASS
+Test 138 datm_cdeps_control_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_iau_gefs_intel
-Checking test 140 datm_cdeps_iau_gefs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_iau_gefs_intel
+Checking test 139 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 206.087845
- 0: The maximum resident set size (KB) = 912576
+ 0: The total amount of wall time = 204.003941
+ 0: The maximum resident set size (KB) = 907476
-Test 140 datm_cdeps_iau_gefs_intel PASS
+Test 139 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_stochy_gefs_intel
-Checking test 141 datm_cdeps_stochy_gefs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_stochy_gefs_intel
+Checking test 140 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.808442
- 0: The maximum resident set size (KB) = 911044
+ 0: The total amount of wall time = 203.927272
+ 0: The maximum resident set size (KB) = 912740
-Test 141 datm_cdeps_stochy_gefs_intel PASS
+Test 140 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_ciceC_cfsr_intel
-Checking test 142 datm_cdeps_ciceC_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_ciceC_cfsr_intel
+Checking test 141 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 206.940846
- 0: The maximum resident set size (KB) = 1042756
+ 0: The total amount of wall time = 207.831267
+ 0: The maximum resident set size (KB) = 1036912
-Test 142 datm_cdeps_ciceC_cfsr_intel PASS
+Test 141 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_cfsr_intel
-Checking test 143 datm_cdeps_bulk_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_cfsr_intel
+Checking test 142 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 208.690824
- 0: The maximum resident set size (KB) = 1033488
+ 0: The total amount of wall time = 208.755974
+ 0: The maximum resident set size (KB) = 1038776
-Test 143 datm_cdeps_bulk_cfsr_intel PASS
+Test 142 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_gefs_intel
-Checking test 144 datm_cdeps_bulk_gefs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_gefs_intel
+Checking test 143 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 201.587131
- 0: The maximum resident set size (KB) = 911468
+ 0: The total amount of wall time = 201.449011
+ 0: The maximum resident set size (KB) = 911748
-Test 144 datm_cdeps_bulk_gefs_intel PASS
+Test 143 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_cfsr_intel
-Checking test 145 datm_cdeps_mx025_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_cfsr_intel
+Checking test 144 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -4873,15 +4889,15 @@ Checking test 145 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 474.570408
- 0: The maximum resident set size (KB) = 877516
+ 0: The total amount of wall time = 479.046727
+ 0: The maximum resident set size (KB) = 878704
-Test 145 datm_cdeps_mx025_cfsr_intel PASS
+Test 144 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_gefs_intel
-Checking test 146 datm_cdeps_mx025_gefs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_gefs_intel
+Checking test 145 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
@@ -4889,78 +4905,78 @@ Checking test 146 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 472.764301
- 0: The maximum resident set size (KB) = 829076
+ 0: The total amount of wall time = 467.773115
+ 0: The maximum resident set size (KB) = 833532
-Test 146 datm_cdeps_mx025_gefs_intel PASS
+Test 145 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_multiple_files_cfsr_intel
-Checking test 147 datm_cdeps_multiple_files_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_multiple_files_cfsr_intel
+Checking test 146 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.967265
- 0: The maximum resident set size (KB) = 1044896
+ 0: The total amount of wall time = 206.298024
+ 0: The maximum resident set size (KB) = 1039060
-Test 147 datm_cdeps_multiple_files_cfsr_intel PASS
+Test 146 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_3072x1536_cfsr_intel
-Checking test 148 datm_cdeps_3072x1536_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_3072x1536_cfsr_intel
+Checking test 147 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 325.277481
- 0: The maximum resident set size (KB) = 2387176
+ 0: The total amount of wall time = 288.865062
+ 0: The maximum resident set size (KB) = 2393528
-Test 148 datm_cdeps_3072x1536_cfsr_intel PASS
+Test 147 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_gfs_intel
-Checking test 149 datm_cdeps_gfs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_gfs_intel
+Checking test 148 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 295.452555
- 0: The maximum resident set size (KB) = 2385104
+ 0: The total amount of wall time = 326.031952
+ 0: The maximum resident set size (KB) = 2400924
-Test 149 datm_cdeps_gfs_intel PASS
+Test 148 datm_cdeps_gfs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_debug_cfsr_intel
-Checking test 150 datm_cdeps_debug_cfsr_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_debug_cfsr_intel
+Checking test 149 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 473.479611
- 0: The maximum resident set size (KB) = 989492
+ 0: The total amount of wall time = 462.707412
+ 0: The maximum resident set size (KB) = 983568
-Test 150 datm_cdeps_debug_cfsr_intel PASS
+Test 149 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_faster_intel
-Checking test 151 datm_cdeps_control_cfsr_faster_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_faster_intel
+Checking test 150 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 203.070149
- 0: The maximum resident set size (KB) = 1040356
+ 0: The total amount of wall time = 205.142029
+ 0: The maximum resident set size (KB) = 1034996
-Test 151 datm_cdeps_control_cfsr_faster_intel PASS
+Test 150 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_gswp3_intel
-Checking test 152 datm_cdeps_lnd_gswp3_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_gswp3_intel
+Checking test 151 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
@@ -4968,15 +4984,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 83.206067
- 0: The maximum resident set size (KB) = 227632
+ 0: The total amount of wall time = 83.281912
+ 0: The maximum resident set size (KB) = 229072
-Test 152 datm_cdeps_lnd_gswp3_intel PASS
+Test 151 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_intel
-Checking test 153 datm_cdeps_lnd_era5_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_intel
+Checking test 152 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
@@ -4984,15 +5000,15 @@ Checking test 153 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 67.461536
- 0: The maximum resident set size (KB) = 249512
+ 0: The total amount of wall time = 78.268524
+ 0: The maximum resident set size (KB) = 248892
-Test 153 datm_cdeps_lnd_era5_intel PASS
+Test 152 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_rst_intel
-Checking test 154 datm_cdeps_lnd_era5_rst_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_rst_intel
+Checking test 153 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
@@ -5000,15 +5016,15 @@ Checking test 154 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 35.689501
- 0: The maximum resident set size (KB) = 246412
+ 0: The total amount of wall time = 47.332999
+ 0: The maximum resident set size (KB) = 244912
-Test 154 datm_cdeps_lnd_era5_rst_intel PASS
+Test 153 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_sbs_intel
-Checking test 155 control_p8_atmlnd_sbs_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_sbs_intel
+Checking test 154 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -5096,15 +5112,15 @@ Checking test 155 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 673.173633
- 0: The maximum resident set size (KB) = 1575508
+ 0: The total amount of wall time = 852.187129
+ 0: The maximum resident set size (KB) = 1589464
-Test 155 control_p8_atmlnd_sbs_intel PASS
+Test 154 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_intel
-Checking test 156 control_p8_atmlnd_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_intel
+Checking test 155 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
Comparing sfcf000.tile3.nc .........OK
@@ -5192,15 +5208,15 @@ Checking test 156 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 678.583389
- 0: The maximum resident set size (KB) = 1593852
+ 0: The total amount of wall time = 789.772449
+ 0: The maximum resident set size (KB) = 1589472
-Test 156 control_p8_atmlnd_intel PASS
+Test 155 control_p8_atmlnd_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_atmlnd_intel
-Checking test 157 control_restart_p8_atmlnd_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_atmlnd_intel
+Checking test 156 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
Comparing sfcf024.tile3.nc .........OK
@@ -5220,15 +5236,15 @@ Checking test 157 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 311.978616
- 0: The maximum resident set size (KB) = 860248
+ 0: The total amount of wall time = 331.709767
+ 0: The maximum resident set size (KB) = 857560
-Test 157 control_restart_p8_atmlnd_intel PASS
+Test 156 control_restart_p8_atmlnd_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmwav_control_noaero_p8_intel
-Checking test 158 atmwav_control_noaero_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmwav_control_noaero_p8_intel
+Checking test 157 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -5270,15 +5286,15 @@ Checking test 158 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 132.181556
- 0: The maximum resident set size (KB) = 1577344
+ 0: The total amount of wall time = 126.989919
+ 0: The maximum resident set size (KB) = 1591356
-Test 158 atmwav_control_noaero_p8_intel PASS
+Test 157 atmwav_control_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_atmwav_intel
-Checking test 159 control_atmwav_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_atmwav_intel
+Checking test 158 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
Comparing atmf000.nc .........OK
@@ -5321,15 +5337,15 @@ Checking test 159 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 121.718619
- 0: The maximum resident set size (KB) = 602416
+ 0: The total amount of wall time = 125.291813
+ 0: The maximum resident set size (KB) = 601844
-Test 159 control_atmwav_intel PASS
+Test 158 control_atmwav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_intel
-Checking test 160 atmaero_control_p8_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_intel
+Checking test 159 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5372,15 +5388,15 @@ Checking test 160 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 312.460434
- 0: The maximum resident set size (KB) = 1657076
+ 0: The total amount of wall time = 332.964639
+ 0: The maximum resident set size (KB) = 1687164
-Test 160 atmaero_control_p8_intel PASS
+Test 159 atmaero_control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_intel
-Checking test 161 atmaero_control_p8_rad_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_intel
+Checking test 160 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5423,15 +5439,15 @@ Checking test 161 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 374.691250
- 0: The maximum resident set size (KB) = 1702356
+ 0: The total amount of wall time = 404.525502
+ 0: The maximum resident set size (KB) = 1698704
-Test 161 atmaero_control_p8_rad_intel PASS
+Test 160 atmaero_control_p8_rad_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_micro_intel
-Checking test 162 atmaero_control_p8_rad_micro_intel results ....
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_micro_intel
+Checking test 161 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
@@ -5474,89 +5490,12 @@ Checking test 162 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 400.031312
- 0: The maximum resident set size (KB) = 1711716
-
-Test 162 atmaero_control_p8_rad_micro_intel PASS
-
-Fri Feb 9 16:26:20 UTC 2024
-Start Regression test
-
-Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 362 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_73249/cpld_debug_gfsv17_intel
-Checking test 001 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1809.368354
- 0: The maximum resident set size (KB) = 1649888
+ 0: The total amount of wall time = 424.769735
+ 0: The maximum resident set size (KB) = 1722428
-Test 001 cpld_debug_gfsv17_intel PASS
+Test 161 atmaero_control_p8_rad_micro_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Fri Feb 9 17:38:33 UTC 2024
-Elapsed time: 01h:12m:14s. Have a nice day!
+Tue Feb 13 01:18:49 UTC 2024
+Elapsed time: 03h:42m:45s. Have a nice day!
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 97d126f2f7..e0179741c8 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,62 +1,62 @@
-Thu Feb 8 20:42:14 CST 2024
+Tue Feb 13 07:21:08 CST 2024
Start Regression test
-Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372
+Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 277 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 837 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 699 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 469 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 829 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 253 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 793 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 748 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 795 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 770 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 883 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 929 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 271 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1036 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 207 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 655 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 755 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 424 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 770 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 898 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 309 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 816 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 825 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 828 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 835 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 358 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1230 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 289 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1331 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 298.039066
- 0: The maximum resident set size (KB) = 3180508
+ 0: The total amount of wall time = 320.137770
+ 0: The maximum resident set size (KB) = 3183292
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 974.208501
- 0: The maximum resident set size (KB) = 1707908
+ 0: The total amount of wall time = 976.818741
+ 0: The maximum resident set size (KB) = 1742672
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_iau_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1033.016947
- 0: The maximum resident set size (KB) = 2025296
+ 0: The total amount of wall time = 1040.753397
+ 0: The maximum resident set size (KB) = 2026528
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 472.712040
- 0: The maximum resident set size (KB) = 1111192
+ 0: The total amount of wall time = 482.902179
+ 0: The maximum resident set size (KB) = 1108260
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1198.694967
- 0: The maximum resident set size (KB) = 1646924
+ 0: The total amount of wall time = 1164.770831
+ 0: The maximum resident set size (KB) = 1657560
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1361.811780
- 0: The maximum resident set size (KB) = 1685880
+ 0: The total amount of wall time = 1374.497143
+ 0: The maximum resident set size (KB) = 1690716
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 331.470748
- 0: The maximum resident set size (KB) = 3216240
+ 0: The total amount of wall time = 340.202045
+ 0: The maximum resident set size (KB) = 3209212
Test 007 cpld_control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 329.518986
- 0: The maximum resident set size (KB) = 3207432
+ 0: The total amount of wall time = 340.271358
+ 0: The maximum resident set size (KB) = 3211404
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 189.689573
- 0: The maximum resident set size (KB) = 3256608
+ 0: The total amount of wall time = 191.803666
+ 0: The maximum resident set size (KB) = 3254740
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_qr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 333.245525
- 0: The maximum resident set size (KB) = 3236120
+ 0: The total amount of wall time = 340.472232
+ 0: The maximum resident set size (KB) = 3242128
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_qr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 189.662642
- 0: The maximum resident set size (KB) = 3270020
+ 0: The total amount of wall time = 192.945679
+ 0: The maximum resident set size (KB) = 3273608
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_2threads_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 351.962267
- 0: The maximum resident set size (KB) = 3553924
+ 0: The total amount of wall time = 372.238535
+ 0: The maximum resident set size (KB) = 3556092
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_decomp_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 331.356860
- 0: The maximum resident set size (KB) = 3200692
+ 0: The total amount of wall time = 333.537062
+ 0: The maximum resident set size (KB) = 3205596
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 271.209812
- 0: The maximum resident set size (KB) = 3065708
+ 0: The total amount of wall time = 296.900474
+ 0: The maximum resident set size (KB) = 3068824
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_ciceC_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 327.777753
- 0: The maximum resident set size (KB) = 3212436
+ 0: The total amount of wall time = 334.226686
+ 0: The maximum resident set size (KB) = 3211628
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c192_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 588.636094
- 0: The maximum resident set size (KB) = 3339972
+ 0: The total amount of wall time = 616.960230
+ 0: The maximum resident set size (KB) = 3337716
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_c192_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 362.148764
- 0: The maximum resident set size (KB) = 3625788
+ 0: The total amount of wall time = 365.798148
+ 0: The maximum resident set size (KB) = 3621536
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_bmark_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 633.746221
- 0: The maximum resident set size (KB) = 4129220
+ 0: The total amount of wall time = 655.426186
+ 0: The maximum resident set size (KB) = 4126352
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_bmark_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 379.662269
- 0: The maximum resident set size (KB) = 4373184
+ 0: The total amount of wall time = 406.394888
+ 0: The maximum resident set size (KB) = 4374104
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_s2sa_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 313.134752
- 0: The maximum resident set size (KB) = 3178564
+ 0: The total amount of wall time = 318.934259
+ 0: The maximum resident set size (KB) = 3174240
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 253.613545
- 0: The maximum resident set size (KB) = 1737436
+ 0: The total amount of wall time = 273.590493
+ 0: The maximum resident set size (KB) = 1733960
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_nowave_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 251.065952
- 0: The maximum resident set size (KB) = 1780032
+ 0: The total amount of wall time = 265.003925
+ 0: The maximum resident set size (KB) = 1782116
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 506.121689
- 0: The maximum resident set size (KB) = 3244880
+ 0: The total amount of wall time = 517.927542
+ 0: The maximum resident set size (KB) = 3245532
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 337.774736
- 0: The maximum resident set size (KB) = 1752380
+ 0: The total amount of wall time = 352.849740
+ 0: The maximum resident set size (KB) = 1753388
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_agrid_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 248.786187
- 0: The maximum resident set size (KB) = 1782164
+ 0: The total amount of wall time = 266.353843
+ 0: The maximum resident set size (KB) = 1780576
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c48_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 473.644494
- 0: The maximum resident set size (KB) = 2830328
+ 0: The total amount of wall time = 485.509805
+ 0: The maximum resident set size (KB) = 2833696
Test 026 cpld_control_c48_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 306.542927
- 0: The maximum resident set size (KB) = 3149508
+ 0: The total amount of wall time = 315.741561
+ 0: The maximum resident set size (KB) = 3210468
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 968.732853
- 0: The maximum resident set size (KB) = 1779372
+ 0: The total amount of wall time = 981.770244
+ 0: The maximum resident set size (KB) = 1771984
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 470.943603
- 0: The maximum resident set size (KB) = 1175700
+ 0: The total amount of wall time = 503.765702
+ 0: The maximum resident set size (KB) = 1164720
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1093.114881
- 0: The maximum resident set size (KB) = 1683132
+ 0: The total amount of wall time = 1094.704687
+ 0: The maximum resident set size (KB) = 1679976
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1481.760940
- 0: The maximum resident set size (KB) = 1719788
+ 0: The total amount of wall time = 1489.069965
+ 0: The maximum resident set size (KB) = 1720612
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_flake_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 197.951444
- 0: The maximum resident set size (KB) = 702668
+ 0: The total amount of wall time = 206.006941
+ 0: The maximum resident set size (KB) = 703636
Test 032 control_flake_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2080,16 +2080,16 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 137.507904
- 0: The maximum resident set size (KB) = 648040
+ 0: The total amount of wall time = 141.920380
+ 0: The maximum resident set size (KB) = 647620
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
+ Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
@@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 142.481581
- 0: The maximum resident set size (KB) = 659324
+ 0: The total amount of wall time = 148.580511
+ 0: The maximum resident set size (KB) = 650364
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_latlon_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 140.508980
- 0: The maximum resident set size (KB) = 653252
+ 0: The total amount of wall time = 143.877974
+ 0: The maximum resident set size (KB) = 648308
Test 035 control_latlon_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 141.276714
- 0: The maximum resident set size (KB) = 651556
+ 0: The total amount of wall time = 146.092259
+ 0: The maximum resident set size (KB) = 648664
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 349.676307
-0: The maximum resident set size (KB) = 872904
+0: The total amount of wall time = 353.688719
+0: The maximum resident set size (KB) = 876488
Test 037 control_c48_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 351.353319
-0: The maximum resident set size (KB) = 871584
+0: The total amount of wall time = 355.015281
+0: The maximum resident set size (KB) = 871244
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c192_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 532.084365
- 0: The maximum resident set size (KB) = 859228
+ 0: The total amount of wall time = 544.880487
+ 0: The maximum resident set size (KB) = 852544
Test 039 control_c192_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 588.229208
- 0: The maximum resident set size (KB) = 1248720
+ 0: The total amount of wall time = 601.418782
+ 0: The maximum resident set size (KB) = 1242232
Test 040 control_c384_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384gdas_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2287,11 +2287,11 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
@@ -2304,7 +2304,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
@@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 520.652450
- 0: The maximum resident set size (KB) = 1351476
+ 0: The total amount of wall time = 542.340370
+ 0: The maximum resident set size (KB) = 1354860
Test 041 control_c384gdas_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 92.381567
- 0: The maximum resident set size (KB) = 611964
+ 0: The total amount of wall time = 95.657819
+ 0: The maximum resident set size (KB) = 658584
Test 042 control_stochy_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 49.715170
- 0: The maximum resident set size (KB) = 498604
+ 0: The total amount of wall time = 52.409910
+ 0: The maximum resident set size (KB) = 506568
Test 043 control_stochy_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 84.076985
- 0: The maximum resident set size (KB) = 653536
+ 0: The total amount of wall time = 91.197690
+ 0: The maximum resident set size (KB) = 649152
Test 044 control_lndp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr4_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 137.463585
- 0: The maximum resident set size (KB) = 649000
+ 0: The total amount of wall time = 144.944760
+ 0: The maximum resident set size (KB) = 653948
Test 045 control_iovr4_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr5_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 136.284260
- 0: The maximum resident set size (KB) = 607556
+ 0: The total amount of wall time = 144.120040
+ 0: The maximum resident set size (KB) = 654868
Test 046 control_iovr5_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 169.341566
- 0: The maximum resident set size (KB) = 1628468
+ 0: The total amount of wall time = 175.744714
+ 0: The maximum resident set size (KB) = 1634244
Test 047 control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 166.321609
- 0: The maximum resident set size (KB) = 1622200
+ 0: The total amount of wall time = 168.258009
+ 0: The maximum resident set size (KB) = 1633372
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_ugwpv1_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 159.965089
- 0: The maximum resident set size (KB) = 1629200
+ 0: The total amount of wall time = 164.634120
+ 0: The maximum resident set size (KB) = 1637332
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 89.950962
- 0: The maximum resident set size (KB) = 883044
+ 0: The total amount of wall time = 93.817179
+ 0: The maximum resident set size (KB) = 887880
Test 050 control_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_noqr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 161.231247
- 0: The maximum resident set size (KB) = 1619460
+ 0: The total amount of wall time = 168.838200
+ 0: The maximum resident set size (KB) = 1609924
Test 051 control_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_noqr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 87.343937
- 0: The maximum resident set size (KB) = 927724
+ 0: The total amount of wall time = 88.086273
+ 0: The maximum resident set size (KB) = 930232
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_decomp_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 169.811067
- 0: The maximum resident set size (KB) = 1613156
+ 0: The total amount of wall time = 171.440079
+ 0: The maximum resident set size (KB) = 1613048
Test 053 control_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_2threads_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 172.276249
- 0: The maximum resident set size (KB) = 1718744
+ 0: The total amount of wall time = 173.265497
+ 0: The maximum resident set size (KB) = 1722552
Test 054 control_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_lndp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 301.114908
- 0: The maximum resident set size (KB) = 1632856
+ 0: The total amount of wall time = 304.616880
+ 0: The maximum resident set size (KB) = 1632628
Test 055 control_p8_lndp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_rrtmgp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 221.499107
- 0: The maximum resident set size (KB) = 1695336
+ 0: The total amount of wall time = 226.478061
+ 0: The maximum resident set size (KB) = 1691784
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_mynn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.365276
- 0: The maximum resident set size (KB) = 1640496
+ 0: The total amount of wall time = 169.165263
+ 0: The maximum resident set size (KB) = 1636764
Test 057 control_p8_mynn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/merra2_thompson_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 197.201113
- 0: The maximum resident set size (KB) = 1587404
+ 0: The total amount of wall time = 198.388047
+ 0: The maximum resident set size (KB) = 1640672
Test 058 merra2_thompson_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 299.753692
- 0: The maximum resident set size (KB) = 858388
+ 0: The total amount of wall time = 300.787254
+ 0: The maximum resident set size (KB) = 856192
Test 059 regional_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 155.165825
- 0: The maximum resident set size (KB) = 1019736
+ 0: The total amount of wall time = 154.257351
+ 0: The maximum resident set size (KB) = 1021732
Test 060 regional_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 320.184600
- 0: The maximum resident set size (KB) = 850756
+ 0: The total amount of wall time = 322.155953
+ 0: The maximum resident set size (KB) = 846760
Test 061 regional_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 210.835261
- 0: The maximum resident set size (KB) = 842908
+ 0: The total amount of wall time = 210.109307
+ 0: The maximum resident set size (KB) = 843420
Test 062 regional_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_noquilt_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 296.817520
- 0: The maximum resident set size (KB) = 1363148
+ 0: The total amount of wall time = 296.505225
+ 0: The maximum resident set size (KB) = 1360944
Test 063 regional_noquilt_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 297.601989
- 0: The maximum resident set size (KB) = 856792
+ 0: The total amount of wall time = 301.588209
+ 0: The maximum resident set size (KB) = 856660
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2dwrtdecomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 300.924365
- 0: The maximum resident set size (KB) = 855880
+ 0: The total amount of wall time = 301.572668
+ 0: The maximum resident set size (KB) = 855720
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_wofs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 389.207388
- 0: The maximum resident set size (KB) = 1918760
+ 0: The total amount of wall time = 388.610672
+ 0: The maximum resident set size (KB) = 1921536
Test 066 regional_wofs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 453.938262
- 0: The maximum resident set size (KB) = 1111596
+ 0: The total amount of wall time = 455.002541
+ 0: The maximum resident set size (KB) = 1101696
Test 067 rap_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 268.822382
- 0: The maximum resident set size (KB) = 1297596
+ 0: The total amount of wall time = 278.679811
+ 0: The maximum resident set size (KB) = 1295948
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 472.155583
- 0: The maximum resident set size (KB) = 1030756
+ 0: The total amount of wall time = 475.513808
+ 0: The maximum resident set size (KB) = 1031808
Test 069 rap_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 459.476521
- 0: The maximum resident set size (KB) = 1126444
+ 0: The total amount of wall time = 463.205573
+ 0: The maximum resident set size (KB) = 1181644
Test 070 rap_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.910373
- 0: The maximum resident set size (KB) = 1100572
+ 0: The total amount of wall time = 231.790556
+ 0: The maximum resident set size (KB) = 1101304
Test 071 rap_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 454.695009
- 0: The maximum resident set size (KB) = 1097788
+ 0: The total amount of wall time = 449.987491
+ 0: The maximum resident set size (KB) = 1098676
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 472.455282
- 0: The maximum resident set size (KB) = 1032772
+ 0: The total amount of wall time = 476.195657
+ 0: The maximum resident set size (KB) = 1035948
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 337.819157
- 0: The maximum resident set size (KB) = 1131732
+ 0: The total amount of wall time = 340.521897
+ 0: The maximum resident set size (KB) = 1136416
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.512688
- 0: The maximum resident set size (KB) = 1042128
+ 0: The total amount of wall time = 228.874974
+ 0: The maximum resident set size (KB) = 1031240
Test 075 hrrr_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 236.069047
- 0: The maximum resident set size (KB) = 1029972
+ 0: The total amount of wall time = 234.722682
+ 0: The maximum resident set size (KB) = 1025744
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 195.390324
- 0: The maximum resident set size (KB) = 1111352
+ 0: The total amount of wall time = 196.696297
+ 0: The maximum resident set size (KB) = 1108096
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 120.323650
- 0: The maximum resident set size (KB) = 994316
+ 0: The total amount of wall time = 120.963484
+ 0: The maximum resident set size (KB) = 1000016
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 441.055273
- 0: The maximum resident set size (KB) = 1099736
+ 0: The total amount of wall time = 445.826785
+ 0: The maximum resident set size (KB) = 1104644
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 537.188206
- 0: The maximum resident set size (KB) = 1998200
+ 0: The total amount of wall time = 540.880889
+ 0: The maximum resident set size (KB) = 1996392
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 523.547397
- 0: The maximum resident set size (KB) = 2076828
+ 0: The total amount of wall time = 524.891853
+ 0: The maximum resident set size (KB) = 2074640
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 340.210791
- 0: The maximum resident set size (KB) = 748176
+ 0: The total amount of wall time = 347.602505
+ 0: The maximum resident set size (KB) = 750596
Test 082 control_csawmg_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 337.619819
- 0: The maximum resident set size (KB) = 752644
+ 0: The total amount of wall time = 340.345273
+ 0: The maximum resident set size (KB) = 749620
Test 083 control_csawmgt_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.382452
- 0: The maximum resident set size (KB) = 745756
+ 0: The total amount of wall time = 186.574288
+ 0: The maximum resident set size (KB) = 739860
Test 084 control_ras_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 113.957087
- 0: The maximum resident set size (KB) = 658120
+ 0: The total amount of wall time = 114.072251
+ 0: The maximum resident set size (KB) = 656612
Test 085 control_wam_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 147.301351
- 0: The maximum resident set size (KB) = 1627188
+ 0: The total amount of wall time = 151.246167
+ 0: The maximum resident set size (KB) = 1632840
Test 086 control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 264.713383
- 0: The maximum resident set size (KB) = 852856
+ 0: The total amount of wall time = 270.600584
+ 0: The maximum resident set size (KB) = 850360
Test 087 regional_control_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 150.846461
- 0: The maximum resident set size (KB) = 811668
+ 0: The total amount of wall time = 158.781980
+ 0: The maximum resident set size (KB) = 817936
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 152.169795
- 0: The maximum resident set size (KB) = 808568
+ 0: The total amount of wall time = 147.984889
+ 0: The maximum resident set size (KB) = 813672
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 173.626201
- 0: The maximum resident set size (KB) = 819012
+ 0: The total amount of wall time = 184.036182
+ 0: The maximum resident set size (KB) = 812488
Test 090 control_stochy_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.965746
- 0: The maximum resident set size (KB) = 814880
+ 0: The total amount of wall time = 162.001549
+ 0: The maximum resident set size (KB) = 816176
Test 091 control_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 239.999053
- 0: The maximum resident set size (KB) = 861204
+ 0: The total amount of wall time = 238.795480
+ 0: The maximum resident set size (KB) = 866976
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 235.143428
- 0: The maximum resident set size (KB) = 860500
+ 0: The total amount of wall time = 235.943895
+ 0: The maximum resident set size (KB) = 864720
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.371620
- 0: The maximum resident set size (KB) = 828748
+ 0: The total amount of wall time = 160.796367
+ 0: The maximum resident set size (KB) = 827464
Test 094 control_ras_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_diag_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 155.278820
- 0: The maximum resident set size (KB) = 872912
+ 0: The total amount of wall time = 161.813592
+ 0: The maximum resident set size (KB) = 874568
Test 095 control_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_debug_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 167.552670
- 0: The maximum resident set size (KB) = 1640284
+ 0: The total amount of wall time = 163.643867
+ 0: The maximum resident set size (KB) = 1639572
Test 096 control_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 1036.579759
- 0: The maximum resident set size (KB) = 841848
+ 0: The total amount of wall time = 997.857687
+ 0: The maximum resident set size (KB) = 842436
Test 097 regional_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 289.558769
- 0: The maximum resident set size (KB) = 1153520
+ 0: The total amount of wall time = 278.848999
+ 0: The maximum resident set size (KB) = 1200748
Test 098 rap_control_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.604177
- 0: The maximum resident set size (KB) = 1199992
+ 0: The total amount of wall time = 281.894333
+ 0: The maximum resident set size (KB) = 1205652
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_gf_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.610181
- 0: The maximum resident set size (KB) = 1199800
+ 0: The total amount of wall time = 283.903194
+ 0: The maximum resident set size (KB) = 1200536
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_c3_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 295.630034
- 0: The maximum resident set size (KB) = 1198752
+ 0: The total amount of wall time = 280.577737
+ 0: The maximum resident set size (KB) = 1197872
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_drag_suite_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 292.199762
- 0: The maximum resident set size (KB) = 1201536
+ 0: The total amount of wall time = 298.876541
+ 0: The maximum resident set size (KB) = 1203680
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_diag_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 305.768250
- 0: The maximum resident set size (KB) = 1289956
+ 0: The total amount of wall time = 302.671210
+ 0: The maximum resident set size (KB) = 1284240
Test 103 rap_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.747602
- 0: The maximum resident set size (KB) = 1201172
+ 0: The total amount of wall time = 293.559141
+ 0: The maximum resident set size (KB) = 1202408
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 286.835579
- 0: The maximum resident set size (KB) = 1208392
+ 0: The total amount of wall time = 296.039251
+ 0: The maximum resident set size (KB) = 1210684
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_lndp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.920296
- 0: The maximum resident set size (KB) = 1203996
+ 0: The total amount of wall time = 291.733280
+ 0: The maximum resident set size (KB) = 1203416
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_progcld_thompson_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.579174
- 0: The maximum resident set size (KB) = 1201056
+ 0: The total amount of wall time = 285.473001
+ 0: The maximum resident set size (KB) = 1203888
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.949188
- 0: The maximum resident set size (KB) = 1200044
+ 0: The total amount of wall time = 281.147913
+ 0: The maximum resident set size (KB) = 1194952
Test 108 rap_noah_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 286.488081
- 0: The maximum resident set size (KB) = 1201356
+ 0: The total amount of wall time = 288.344693
+ 0: The maximum resident set size (KB) = 1201816
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 466.038447
- 0: The maximum resident set size (KB) = 1196428
+ 0: The total amount of wall time = 471.073616
+ 0: The maximum resident set size (KB) = 1198576
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 292.294814
- 0: The maximum resident set size (KB) = 1206368
+ 0: The total amount of wall time = 276.476746
+ 0: The maximum resident set size (KB) = 1195068
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_clm_lake_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 346.228323
- 0: The maximum resident set size (KB) = 1196484
+ 0: The total amount of wall time = 337.077867
+ 0: The maximum resident set size (KB) = 1203376
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_flake_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.990390
- 0: The maximum resident set size (KB) = 1202476
+ 0: The total amount of wall time = 288.719924
+ 0: The maximum resident set size (KB) = 1202444
Test 113 rap_flake_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_c96_no_nest_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 489.100602
- 0: The maximum resident set size (KB) = 1202292
+ 0: The total amount of wall time = 483.587321
+ 0: The maximum resident set size (KB) = 1199812
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 284.310012
- 0: The maximum resident set size (KB) = 507392
+ 0: The total amount of wall time = 291.105171
+ 0: The maximum resident set size (KB) = 505868
Test 115 control_wam_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 255.848043
- 0: The maximum resident set size (KB) = 1161604
+ 0: The total amount of wall time = 259.393839
+ 0: The maximum resident set size (KB) = 1167240
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 374.940363
- 0: The maximum resident set size (KB) = 1047788
+ 0: The total amount of wall time = 378.838074
+ 0: The maximum resident set size (KB) = 1049032
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 192.975014
- 0: The maximum resident set size (KB) = 981060
+ 0: The total amount of wall time = 193.249031
+ 0: The maximum resident set size (KB) = 993904
Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 393.181370
- 0: The maximum resident set size (KB) = 1094564
+ 0: The total amount of wall time = 397.779542
+ 0: The maximum resident set size (KB) = 1086992
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.479975
- 0: The maximum resident set size (KB) = 973336
+ 0: The total amount of wall time = 168.259225
+ 0: The maximum resident set size (KB) = 965660
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 203.518108
- 0: The maximum resident set size (KB) = 865300
+ 0: The total amount of wall time = 211.174262
+ 0: The maximum resident set size (KB) = 936728
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 278.216252
- 0: The maximum resident set size (KB) = 1033560
+ 0: The total amount of wall time = 278.525637
+ 0: The maximum resident set size (KB) = 1037772
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 100.979892
- 0: The maximum resident set size (KB) = 926932
+ 0: The total amount of wall time = 102.169043
+ 0: The maximum resident set size (KB) = 923184
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 114.700529
- 0: The maximum resident set size (KB) = 1201792
+ 0: The total amount of wall time = 114.477522
+ 0: The maximum resident set size (KB) = 1202640
Test 124 conus13km_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 51.162391
- 0: The maximum resident set size (KB) = 1121880
+ 0: The total amount of wall time = 50.636063
+ 0: The maximum resident set size (KB) = 1121968
Test 125 conus13km_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_restart_mismatch_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 66.102676
- 0: The maximum resident set size (KB) = 1111472
+ 0: The total amount of wall time = 68.473048
+ 0: The maximum resident set size (KB) = 1064972
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 241.297127
- 0: The maximum resident set size (KB) = 989120
+ 0: The total amount of wall time = 245.460714
+ 0: The maximum resident set size (KB) = 995000
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.346323
- 0: The maximum resident set size (KB) = 1082752
+ 0: The total amount of wall time = 277.674209
+ 0: The maximum resident set size (KB) = 1084072
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.529476
- 0: The maximum resident set size (KB) = 1079384
+ 0: The total amount of wall time = 274.174193
+ 0: The maximum resident set size (KB) = 1084692
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 875.303385
- 0: The maximum resident set size (KB) = 1234548
+ 0: The total amount of wall time = 858.046640
+ 0: The maximum resident set size (KB) = 1228476
Test 130 conus13km_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_qr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 868.324797
- 0: The maximum resident set size (KB) = 926388
+ 0: The total amount of wall time = 886.257909
+ 0: The maximum resident set size (KB) = 923892
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 492.495900
- 0: The maximum resident set size (KB) = 1148948
+ 0: The total amount of wall time = 487.724543
+ 0: The maximum resident set size (KB) = 1153664
Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_radar_tten_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 832.899060
- 0: The maximum resident set size (KB) = 1296112
+ 0: The total amount of wall time = 880.303019
+ 0: The maximum resident set size (KB) = 1293376
Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 289.662530
- 0: The maximum resident set size (KB) = 1121028
+ 0: The total amount of wall time = 291.813123
+ 0: The maximum resident set size (KB) = 1117312
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 314.283442
- 0: The maximum resident set size (KB) = 742852
+ 0: The total amount of wall time = 326.815762
+ 0: The maximum resident set size (KB) = 739728
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 339.148588
- 0: The maximum resident set size (KB) = 1113460
+ 0: The total amount of wall time = 351.147113
+ 0: The maximum resident set size (KB) = 1119708
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 401.732275
- 0: The maximum resident set size (KB) = 835864
+ 0: The total amount of wall time = 412.286472
+ 0: The maximum resident set size (KB) = 828212
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 754.920080
- 0: The maximum resident set size (KB) = 866088
+ 0: The total amount of wall time = 772.792483
+ 0: The maximum resident set size (KB) = 863476
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 853.792262
- 0: The maximum resident set size (KB) = 880624
+ 0: The total amount of wall time = 864.136423
+ 0: The maximum resident set size (KB) = 886000
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 354.089585
- 0: The maximum resident set size (KB) = 499096
+ 0: The total amount of wall time = 371.077882
+ 0: The maximum resident set size (KB) = 500792
Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 431.798671
- 0: The maximum resident set size (KB) = 469484
+ 0: The total amount of wall time = 442.028429
+ 0: The maximum resident set size (KB) = 521768
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5080,14 +5080,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5096,30 +5096,30 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 177.637872
- 0: The maximum resident set size (KB) = 376032
+ 0: The total amount of wall time = 184.650281
+ 0: The maximum resident set size (KB) = 370728
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_multiple_4nests_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5157,17 +5157,17 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
@@ -5178,13 +5178,13 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
@@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 460.683556
- 0: The maximum resident set size (KB) = 473856
+ 0: The total amount of wall time = 473.950464
+ 0: The maximum resident set size (KB) = 467056
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 235.175327
- 0: The maximum resident set size (KB) = 532640
+ 0: The total amount of wall time = 243.959253
+ 0: The maximum resident set size (KB) = 532552
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 223.996179
- 0: The maximum resident set size (KB) = 532276
+ 0: The total amount of wall time = 230.519592
+ 0: The maximum resident set size (KB) = 531148
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5262,28 +5262,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 304.287952
- 0: The maximum resident set size (KB) = 589116
+ 0: The total amount of wall time = 318.111875
+ 0: The maximum resident set size (KB) = 594608
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 76.659948
- 0: The maximum resident set size (KB) = 405384
+ 0: The total amount of wall time = 73.974122
+ 0: The maximum resident set size (KB) = 405436
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_nested_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5294,7 +5294,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
@@ -5305,7 +5305,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5320,7 +5320,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
@@ -5330,28 +5330,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 256.205309
- 0: The maximum resident set size (KB) = 805832
+ 0: The total amount of wall time = 265.992543
+ 0: The maximum resident set size (KB) = 809036
-Test 148 gnv1_nested_intel PASS
+Test 148 gnv1_nested_intel PASS Tries: 2
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 771.111837
- 0: The maximum resident set size (KB) = 572380
+ 0: The total amount of wall time = 791.890844
+ 0: The maximum resident set size (KB) = 578968
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 554.352393
- 0: The maximum resident set size (KB) = 673184
+ 0: The total amount of wall time = 574.391096
+ 0: The maximum resident set size (KB) = 676728
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 567.324064
- 0: The maximum resident set size (KB) = 747672
+ 0: The total amount of wall time = 567.054858
+ 0: The maximum resident set size (KB) = 711308
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 399.997019
- 0: The maximum resident set size (KB) = 728868
+ 0: The total amount of wall time = 414.011432
+ 0: The maximum resident set size (KB) = 731488
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 365.553306
- 0: The maximum resident set size (KB) = 826820
+ 0: The total amount of wall time = 377.463284
+ 0: The maximum resident set size (KB) = 830280
Test 153 hafs_regional_docn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_oisst_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 367.249025
- 0: The maximum resident set size (KB) = 816728
+ 0: The total amount of wall time = 375.348019
+ 0: The maximum resident set size (KB) = 817940
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_datm_cdeps_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 943.886495
- 0: The maximum resident set size (KB) = 1208780
+ 0: The total amount of wall time = 961.509856
+ 0: The maximum resident set size (KB) = 1211824
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 153.008567
- 0: The maximum resident set size (KB) = 1109144
+ 0: The total amount of wall time = 155.659234
+ 0: The maximum resident set size (KB) = 1100676
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_restart_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 88.554449
- 0: The maximum resident set size (KB) = 1082632
+ 0: The total amount of wall time = 94.960814
+ 0: The maximum resident set size (KB) = 1088100
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.543241
- 0: The maximum resident set size (KB) = 1016124
+ 0: The total amount of wall time = 144.088906
+ 0: The maximum resident set size (KB) = 1011320
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_iau_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.871812
- 0: The maximum resident set size (KB) = 1011232
+ 0: The total amount of wall time = 150.868252
+ 0: The maximum resident set size (KB) = 1008800
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_stochy_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.578206
- 0: The maximum resident set size (KB) = 1016564
+ 0: The total amount of wall time = 148.832993
+ 0: The maximum resident set size (KB) = 1020416
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.171922
- 0: The maximum resident set size (KB) = 1127752
+ 0: The total amount of wall time = 149.837693
+ 0: The maximum resident set size (KB) = 1144264
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.382170
- 0: The maximum resident set size (KB) = 1133640
+ 0: The total amount of wall time = 152.743569
+ 0: The maximum resident set size (KB) = 1139092
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 142.306499
- 0: The maximum resident set size (KB) = 1010588
+ 0: The total amount of wall time = 144.103990
+ 0: The maximum resident set size (KB) = 1014016
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 340.697052
- 0: The maximum resident set size (KB) = 1055112
+ 0: The total amount of wall time = 348.519925
+ 0: The maximum resident set size (KB) = 1060008
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 339.187984
- 0: The maximum resident set size (KB) = 1036108
+ 0: The total amount of wall time = 338.533738
+ 0: The maximum resident set size (KB) = 1046004
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 151.430726
- 0: The maximum resident set size (KB) = 1117572
+ 0: The total amount of wall time = 147.239029
+ 0: The maximum resident set size (KB) = 1128924
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 201.192992
- 0: The maximum resident set size (KB) = 2447380
+ 0: The total amount of wall time = 216.424833
+ 0: The maximum resident set size (KB) = 2452904
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_gfs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 206.172268
- 0: The maximum resident set size (KB) = 2485264
+ 0: The total amount of wall time = 208.716914
+ 0: The maximum resident set size (KB) = 2491112
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_debug_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 366.503827
- 0: The maximum resident set size (KB) = 1060856
+ 0: The total amount of wall time = 372.658357
+ 0: The maximum resident set size (KB) = 1073980
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 146.160580
- 0: The maximum resident set size (KB) = 1136836
+ 0: The total amount of wall time = 150.238847
+ 0: The maximum resident set size (KB) = 1117860
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_gswp3_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 37.960240
- 0: The maximum resident set size (KB) = 231004
+ 0: The total amount of wall time = 42.544200
+ 0: The maximum resident set size (KB) = 258140
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 39.319878
- 0: The maximum resident set size (KB) = 325604
+ 0: The total amount of wall time = 44.188053
+ 0: The maximum resident set size (KB) = 319844
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 22.124823
- 0: The maximum resident set size (KB) = 319916
+ 0: The total amount of wall time = 26.864296
+ 0: The maximum resident set size (KB) = 324004
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_sbs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 242.730129
- 0: The maximum resident set size (KB) = 1610668
+ 0: The total amount of wall time = 248.860392
+ 0: The maximum resident set size (KB) = 1610064
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 241.495057
- 0: The maximum resident set size (KB) = 1611060
+ 0: The total amount of wall time = 248.172545
+ 0: The maximum resident set size (KB) = 1601908
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 125.538764
- 0: The maximum resident set size (KB) = 900192
+ 0: The total amount of wall time = 128.325973
+ 0: The maximum resident set size (KB) = 905048
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmwav_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 93.465656
- 0: The maximum resident set size (KB) = 1665080
+ 0: The total amount of wall time = 96.368620
+ 0: The maximum resident set size (KB) = 1662076
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_atmwav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 88.695176
- 0: The maximum resident set size (KB) = 671484
+ 0: The total amount of wall time = 94.819646
+ 0: The maximum resident set size (KB) = 675536
Test 178 control_atmwav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 224.067385
- 0: The maximum resident set size (KB) = 3023484
+ 0: The total amount of wall time = 227.627200
+ 0: The maximum resident set size (KB) = 3027264
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 274.634783
- 0: The maximum resident set size (KB) = 3086836
+ 0: The total amount of wall time = 278.310815
+ 0: The maximum resident set size (KB) = 3090976
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_micro_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 293.587906
- 0: The maximum resident set size (KB) = 3105680
+ 0: The total amount of wall time = 301.730404
+ 0: The maximum resident set size (KB) = 3109836
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_atmaq_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6182,12 +6182,12 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1234.349031
- 0: The maximum resident set size (KB) = 4578348
+ 0: The total amount of wall time = 1275.399529
+ 0: The maximum resident set size (KB) = 4574848
Test 182 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Thu Feb 8 22:09:31 CST 2024
-Elapsed time: 01h:27m:19s. Have a nice day!
+Tue Feb 13 08:55:49 CST 2024
+Elapsed time: 01h:34m:42s. Have a nice day!
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 8e62724435..acadb652df 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,54 +1,54 @@
-Fri Feb 9 18:49:33 UTC 2024
+Tue Feb 13 14:08:04 UTC 2024
Start Regression test
-Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18
+Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/HEAD-2-gc082c3b)
+ 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (remotes/origin/HEAD)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 1094 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 1135 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 1002 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 1718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 1561 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 989 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 485 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1060 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 1237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 937 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 1258 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 1401 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 686 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1712 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 662 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 986 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 574 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 1532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 1139 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 1184 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 828 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 950 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 859 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 1263 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 950 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1926 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 614 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 675 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1085 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 322.520334
-The maximum resident set size (KB) = 2973440
+The total amount of wall time = 331.863056
+The maximum resident set size (KB) = 2979448
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 914.666202
-The maximum resident set size (KB) = 1592256
+The total amount of wall time = 930.280986
+The maximum resident set size (KB) = 1592472
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_iau_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 991.256489
-The maximum resident set size (KB) = 1708572
+The total amount of wall time = 988.600915
+The maximum resident set size (KB) = 1709036
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 464.757647
-The maximum resident set size (KB) = 844528
+The total amount of wall time = 511.775827
+The maximum resident set size (KB) = 844884
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1059.436174
-The maximum resident set size (KB) = 1573448
+The total amount of wall time = 1058.114943
+The maximum resident set size (KB) = 1574192
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1515.127358
-The maximum resident set size (KB) = 1600216
+The total amount of wall time = 1434.523120
+The maximum resident set size (KB) = 1600708
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 366.904993
-The maximum resident set size (KB) = 3000620
+The total amount of wall time = 366.520247
+The maximum resident set size (KB) = 3004848
Test 007 cpld_control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.267854
-The maximum resident set size (KB) = 3002416
+The total amount of wall time = 374.641217
+The maximum resident set size (KB) = 3004676
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 217.605702
-The maximum resident set size (KB) = 3062020
+The total amount of wall time = 220.776679
+The maximum resident set size (KB) = 3061304
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_qr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 370.857200
-The maximum resident set size (KB) = 3028020
+The total amount of wall time = 373.110410
+The maximum resident set size (KB) = 3030140
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_qr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 221.730298
-The maximum resident set size (KB) = 3081584
+The total amount of wall time = 223.330382
+The maximum resident set size (KB) = 3081576
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_2threads_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 327.901205
-The maximum resident set size (KB) = 3316928
+The total amount of wall time = 328.492173
+The maximum resident set size (KB) = 3314268
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_decomp_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 359.508303
-The maximum resident set size (KB) = 3003756
+The total amount of wall time = 364.404786
+The maximum resident set size (KB) = 3000836
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 302.502625
-The maximum resident set size (KB) = 2932636
+The total amount of wall time = 311.264276
+The maximum resident set size (KB) = 2924920
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_ciceC_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 363.242732
-The maximum resident set size (KB) = 3004700
+The total amount of wall time = 372.575156
+The maximum resident set size (KB) = 3001148
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_bmark_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_bmark_p8_intel
Checking test 016 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 754.501015
-The maximum resident set size (KB) = 3951440
+The total amount of wall time = 756.229756
+The maximum resident set size (KB) = 3952788
Test 016 cpld_bmark_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_bmark_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_bmark_p8_intel
Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 532.803589
-The maximum resident set size (KB) = 4250580
+The total amount of wall time = 535.396418
+The maximum resident set size (KB) = 4245336
Test 017 cpld_restart_bmark_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_s2sa_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_s2sa_p8_intel
Checking test 018 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 343.549757
-The maximum resident set size (KB) = 2966836
+The total amount of wall time = 345.947134
+The maximum resident set size (KB) = 2968192
Test 018 cpld_s2sa_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_intel
Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 270.560051
-The maximum resident set size (KB) = 1590600
+The total amount of wall time = 275.784359
+The maximum resident set size (KB) = 1584180
Test 019 cpld_control_noaero_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_nowave_noaero_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_nowave_noaero_p8_intel
Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 276.938146
-The maximum resident set size (KB) = 1637508
+The total amount of wall time = 281.338276
+The maximum resident set size (KB) = 1633792
Test 020 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_agrid_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_agrid_intel
Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 276.697595
-The maximum resident set size (KB) = 1631212
+The total amount of wall time = 278.570462
+The maximum resident set size (KB) = 1633692
Test 021 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_c48_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_c48_intel
Checking test 022 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 406.835402
-The maximum resident set size (KB) = 2652116
+The total amount of wall time = 407.756080
+The maximum resident set size (KB) = 2645008
Test 022 cpld_control_c48_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_faster_intel
Checking test 023 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 363.128198
-The maximum resident set size (KB) = 3001136
+The total amount of wall time = 358.611900
+The maximum resident set size (KB) = 3002248
Test 023 cpld_control_p8_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 928.152759
-The maximum resident set size (KB) = 1596972
+The total amount of wall time = 931.577332
+The maximum resident set size (KB) = 1596928
Test 024 cpld_control_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 471.260902
-The maximum resident set size (KB) = 899872
+The total amount of wall time = 472.299588
+The maximum resident set size (KB) = 896532
Test 025 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1088.789497
-The maximum resident set size (KB) = 1582900
+The total amount of wall time = 1086.726641
+The maximum resident set size (KB) = 1572716
Test 026 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1490.451653
-The maximum resident set size (KB) = 1612276
+The total amount of wall time = 1502.550695
+The maximum resident set size (KB) = 1617084
Test 027 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_flake_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 216.225908
-The maximum resident set size (KB) = 571624
+The total amount of wall time = 213.407031
+The maximum resident set size (KB) = 573496
Test 028 control_flake_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 132.436920
-The maximum resident set size (KB) = 521400
+The total amount of wall time = 133.640254
+The maximum resident set size (KB) = 523944
Test 029 control_CubedSphereGrid_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 139.390134
-The maximum resident set size (KB) = 529644
+The total amount of wall time = 139.287643
+The maximum resident set size (KB) = 527888
Test 030 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_latlon_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.200576
-The maximum resident set size (KB) = 524080
+The total amount of wall time = 133.985086
+The maximum resident set size (KB) = 523464
Test 031 control_latlon_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 135.766651
-The maximum resident set size (KB) = 527260
+The total amount of wall time = 135.308739
+The maximum resident set size (KB) = 523760
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 327.252663
-The maximum resident set size (KB) = 714792
+The total amount of wall time = 330.959389
+The maximum resident set size (KB) = 718740
Test 033 control_c48_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 328.447199
-The maximum resident set size (KB) = 714848
+The total amount of wall time = 327.277723
+The maximum resident set size (KB) = 714672
Test 034 control_c48.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c192_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 531.480779
-The maximum resident set size (KB) = 641900
+The total amount of wall time = 529.573246
+The maximum resident set size (KB) = 638152
Test 035 control_c192_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 593.703739
-The maximum resident set size (KB) = 951744
+The total amount of wall time = 599.185011
+The maximum resident set size (KB) = 949244
Test 036 control_c384_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384gdas_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 540.443723
-The maximum resident set size (KB) = 1089544
+The total amount of wall time = 532.690549
+The maximum resident set size (KB) = 1093316
Test 037 control_c384gdas_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 89.547314
-The maximum resident set size (KB) = 530868
+The total amount of wall time = 89.197198
+The maximum resident set size (KB) = 532184
Test 038 control_stochy_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 51.517874
-The maximum resident set size (KB) = 334608
+The total amount of wall time = 50.901170
+The maximum resident set size (KB) = 327960
Test 039 control_stochy_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 85.426827
-The maximum resident set size (KB) = 526640
+The total amount of wall time = 86.524647
+The maximum resident set size (KB) = 528408
Test 040 control_lndp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr4_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.530199
-The maximum resident set size (KB) = 521924
+The total amount of wall time = 134.482418
+The maximum resident set size (KB) = 523260
Test 041 control_iovr4_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr5_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.886238
-The maximum resident set size (KB) = 521952
+The total amount of wall time = 135.336665
+The maximum resident set size (KB) = 526612
Test 042 control_iovr5_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 164.588120
-The maximum resident set size (KB) = 1498668
+The total amount of wall time = 166.203829
+The maximum resident set size (KB) = 1502800
Test 043 control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 163.049069
-The maximum resident set size (KB) = 1511836
+The total amount of wall time = 167.847954
+The maximum resident set size (KB) = 1507972
Test 044 control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_ugwpv1_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 161.710332
-The maximum resident set size (KB) = 1511136
+The total amount of wall time = 161.687212
+The maximum resident set size (KB) = 1495372
Test 045 control_p8_ugwpv1_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 90.698693
-The maximum resident set size (KB) = 686908
+The total amount of wall time = 91.093186
+The maximum resident set size (KB) = 695152
Test 046 control_restart_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_noqr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 165.013063
-The maximum resident set size (KB) = 1494288
+The total amount of wall time = 169.859551
+The maximum resident set size (KB) = 1489324
Test 047 control_noqr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_noqr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 90.241117
-The maximum resident set size (KB) = 695252
+The total amount of wall time = 90.499336
+The maximum resident set size (KB) = 695748
Test 048 control_restart_noqr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_decomp_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 170.024349
-The maximum resident set size (KB) = 1503248
+The total amount of wall time = 169.821968
+The maximum resident set size (KB) = 1496728
Test 049 control_decomp_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_2threads_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_2threads_p8_intel
Checking test 050 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 145.224451
-The maximum resident set size (KB) = 1582168
+The total amount of wall time = 146.911854
+The maximum resident set size (KB) = 1591180
Test 050 control_2threads_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_lndp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_lndp_intel
Checking test 051 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 293.843781
-The maximum resident set size (KB) = 1498936
+The total amount of wall time = 297.043958
+The maximum resident set size (KB) = 1498888
Test 051 control_p8_lndp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_rrtmgp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_rrtmgp_intel
Checking test 052 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 220.240233
-The maximum resident set size (KB) = 1556408
+The total amount of wall time = 223.402010
+The maximum resident set size (KB) = 1563876
Test 052 control_p8_rrtmgp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_mynn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_mynn_intel
Checking test 053 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 167.093940
-The maximum resident set size (KB) = 1511552
+The total amount of wall time = 170.789872
+The maximum resident set size (KB) = 1514112
Test 053 control_p8_mynn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/merra2_thompson_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/merra2_thompson_intel
Checking test 054 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 197.980116
-The maximum resident set size (KB) = 1508488
+The total amount of wall time = 204.396620
+The maximum resident set size (KB) = 1515348
Test 054 merra2_thompson_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_intel
Checking test 055 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 290.377617
-The maximum resident set size (KB) = 606408
+The total amount of wall time = 292.955178
+The maximum resident set size (KB) = 606100
Test 055 regional_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_restart_intel
Checking test 056 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 157.480535
-The maximum resident set size (KB) = 778324
+The total amount of wall time = 155.492101
+The maximum resident set size (KB) = 779516
Test 056 regional_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_decomp_intel
Checking test 057 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 304.338849
-The maximum resident set size (KB) = 605684
+The total amount of wall time = 307.857793
+The maximum resident set size (KB) = 605888
Test 057 regional_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2threads_intel
Checking test 058 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 175.422691
-The maximum resident set size (KB) = 660620
+The total amount of wall time = 181.747232
+The maximum resident set size (KB) = 657948
Test 058 regional_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_noquilt_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_noquilt_intel
Checking test 059 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 280.000830
-The maximum resident set size (KB) = 1141104
+The total amount of wall time = 283.600928
+The maximum resident set size (KB) = 1145312
Test 059 regional_noquilt_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_netcdf_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_netcdf_parallel_intel
Checking test 060 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 287.310854
-The maximum resident set size (KB) = 607216
+The total amount of wall time = 286.948719
+The maximum resident set size (KB) = 608952
Test 060 regional_netcdf_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2dwrtdecomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2dwrtdecomp_intel
Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 286.448947
-The maximum resident set size (KB) = 607100
+The total amount of wall time = 287.745601
+The maximum resident set size (KB) = 608372
Test 061 regional_2dwrtdecomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_wofs_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_wofs_intel
Checking test 062 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 370.002079
-The maximum resident set size (KB) = 1581448
+The total amount of wall time = 384.983069
+The maximum resident set size (KB) = 1580848
Test 062 regional_wofs_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 405.761757
-The maximum resident set size (KB) = 919924
+The total amount of wall time = 405.722503
+The maximum resident set size (KB) = 916712
Test 063 rap_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 242.742615
-The maximum resident set size (KB) = 1092304
+The total amount of wall time = 242.649556
+The maximum resident set size (KB) = 1095884
Test 064 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 420.844891
-The maximum resident set size (KB) = 915580
+The total amount of wall time = 421.811077
+The maximum resident set size (KB) = 917640
Test 065 rap_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 370.382045
-The maximum resident set size (KB) = 1008316
+The total amount of wall time = 368.279718
+The maximum resident set size (KB) = 1010928
Test 066 rap_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 210.282217
-The maximum resident set size (KB) = 784084
+The total amount of wall time = 208.777322
+The maximum resident set size (KB) = 785068
Test 067 rap_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 408.000618
-The maximum resident set size (KB) = 913048
+The total amount of wall time = 408.653594
+The maximum resident set size (KB) = 912504
Test 068 rap_sfcdiff_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 421.332180
-The maximum resident set size (KB) = 914964
+The total amount of wall time = 421.519770
+The maximum resident set size (KB) = 915048
Test 069 rap_sfcdiff_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 305.547528
-The maximum resident set size (KB) = 783352
+The total amount of wall time = 302.817813
+The maximum resident set size (KB) = 785600
Test 070 rap_sfcdiff_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 210.203982
-The maximum resident set size (KB) = 911880
+The total amount of wall time = 208.652600
+The maximum resident set size (KB) = 910760
Test 071 hrrr_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 214.131388
-The maximum resident set size (KB) = 907928
+The total amount of wall time = 213.227628
+The maximum resident set size (KB) = 907536
Test 072 hrrr_control_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 186.942980
-The maximum resident set size (KB) = 991916
+The total amount of wall time = 186.148913
+The maximum resident set size (KB) = 991784
Test 073 hrrr_control_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 109.819242
-The maximum resident set size (KB) = 742116
+The total amount of wall time = 109.707657
+The maximum resident set size (KB) = 741100
Test 074 hrrr_control_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 398.166108
-The maximum resident set size (KB) = 904132
+The total amount of wall time = 398.210105
+The maximum resident set size (KB) = 911776
Test 075 rrfs_v1beta_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 490.003704
-The maximum resident set size (KB) = 1874704
+The total amount of wall time = 485.793754
+The maximum resident set size (KB) = 1872736
Test 076 rrfs_v1nssl_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 472.440630
-The maximum resident set size (KB) = 1861208
+The total amount of wall time = 470.553367
+The maximum resident set size (KB) = 1859924
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 338.500426
-The maximum resident set size (KB) = 600048
+The total amount of wall time = 339.604589
+The maximum resident set size (KB) = 599140
Test 078 control_csawmg_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 336.566237
-The maximum resident set size (KB) = 596180
+The total amount of wall time = 333.273528
+The maximum resident set size (KB) = 594992
Test 079 control_csawmgt_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_intel
Checking test 080 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 184.660551
-The maximum resident set size (KB) = 561864
+The total amount of wall time = 184.374528
+The maximum resident set size (KB) = 560764
Test 080 control_ras_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_intel
Checking test 081 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 119.063038
-The maximum resident set size (KB) = 271836
+The total amount of wall time = 121.504900
+The maximum resident set size (KB) = 271740
Test 081 control_wam_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_faster_intel
Checking test 082 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.301292
-The maximum resident set size (KB) = 1505300
+The total amount of wall time = 170.040326
+The maximum resident set size (KB) = 1501620
Test 082 control_p8_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_faster_intel
Checking test 083 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 280.648571
-The maximum resident set size (KB) = 609956
+The total amount of wall time = 287.418651
+The maximum resident set size (KB) = 609532
Test 083 regional_control_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_debug_intel
Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 162.337300
-The maximum resident set size (KB) = 683512
+The total amount of wall time = 161.768232
+The maximum resident set size (KB) = 686488
Test 084 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.370876
-The maximum resident set size (KB) = 693624
+The total amount of wall time = 158.667011
+The maximum resident set size (KB) = 690672
Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_debug_intel
Checking test 086 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 183.537405
-The maximum resident set size (KB) = 692352
+The total amount of wall time = 181.218504
+The maximum resident set size (KB) = 690636
Test 086 control_stochy_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_debug_intel
Checking test 087 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 162.253932
-The maximum resident set size (KB) = 693132
+The total amount of wall time = 162.306687
+The maximum resident set size (KB) = 693552
Test 087 control_lndp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_debug_intel
Checking test 088 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 253.313215
-The maximum resident set size (KB) = 733268
+The total amount of wall time = 252.986938
+The maximum resident set size (KB) = 733916
Test 088 control_csawmg_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_debug_intel
Checking test 089 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 252.329851
-The maximum resident set size (KB) = 730496
+The total amount of wall time = 248.302778
+The maximum resident set size (KB) = 734092
Test 089 control_csawmgt_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_debug_intel
Checking test 090 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 164.369490
-The maximum resident set size (KB) = 703916
+The total amount of wall time = 166.072806
+The maximum resident set size (KB) = 703268
Test 090 control_ras_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_diag_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_diag_debug_intel
Checking test 091 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 172.195350
-The maximum resident set size (KB) = 746740
+The total amount of wall time = 168.661862
+The maximum resident set size (KB) = 747428
Test 091 control_diag_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_debug_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_debug_p8_intel
Checking test 092 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 169.031907
-The maximum resident set size (KB) = 1519200
+The total amount of wall time = 168.512682
+The maximum resident set size (KB) = 1518856
Test 092 control_debug_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_debug_intel
Checking test 093 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1057.508445
-The maximum resident set size (KB) = 629056
+The total amount of wall time = 1055.399361
+The maximum resident set size (KB) = 633448
Test 093 regional_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_intel
Checking test 094 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.960520
-The maximum resident set size (KB) = 1076488
+The total amount of wall time = 303.544779
+The maximum resident set size (KB) = 1073204
Test 094 rap_control_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_intel
Checking test 095 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.368278
-The maximum resident set size (KB) = 1070004
+The total amount of wall time = 295.099265
+The maximum resident set size (KB) = 1069120
Test 095 hrrr_control_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_gf_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_gf_debug_intel
Checking test 096 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.841380
-The maximum resident set size (KB) = 1074248
+The total amount of wall time = 300.824493
+The maximum resident set size (KB) = 1074276
Test 096 hrrr_gf_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_c3_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_c3_debug_intel
Checking test 097 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.945532
-The maximum resident set size (KB) = 1078352
+The total amount of wall time = 302.807577
+The maximum resident set size (KB) = 1070544
Test 097 hrrr_c3_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_drag_suite_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_drag_suite_debug_intel
Checking test 098 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 300.925601
-The maximum resident set size (KB) = 1073756
+The total amount of wall time = 302.122005
+The maximum resident set size (KB) = 1072124
Test 098 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_diag_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_diag_debug_intel
Checking test 099 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 312.452353
-The maximum resident set size (KB) = 1162888
+The total amount of wall time = 313.007019
+The maximum resident set size (KB) = 1159744
Test 099 rap_diag_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_cires_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_cires_ugwp_debug_intel
Checking test 100 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 308.599165
-The maximum resident set size (KB) = 1076032
+The total amount of wall time = 311.834487
+The maximum resident set size (KB) = 1074140
Test 100 rap_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_ugwp_debug_intel
Checking test 101 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 308.730674
-The maximum resident set size (KB) = 1079376
+The total amount of wall time = 310.511767
+The maximum resident set size (KB) = 1076956
Test 101 rap_unified_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_lndp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_lndp_debug_intel
Checking test 102 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 304.479275
-The maximum resident set size (KB) = 1075932
+The total amount of wall time = 306.109317
+The maximum resident set size (KB) = 1079104
Test 102 rap_lndp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_progcld_thompson_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_progcld_thompson_debug_intel
Checking test 103 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 302.023173
-The maximum resident set size (KB) = 1074988
+The total amount of wall time = 305.315894
+The maximum resident set size (KB) = 1073260
Test 103 rap_progcld_thompson_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_debug_intel
Checking test 104 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.080200
-The maximum resident set size (KB) = 1068868
+The total amount of wall time = 298.365451
+The maximum resident set size (KB) = 1068892
Test 104 rap_noah_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_debug_intel
Checking test 105 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 303.806473
-The maximum resident set size (KB) = 1073844
+The total amount of wall time = 306.555887
+The maximum resident set size (KB) = 1074148
Test 105 rap_sfcdiff_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 498.436218
-The maximum resident set size (KB) = 1075296
+The total amount of wall time = 497.072433
+The maximum resident set size (KB) = 1068848
Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_debug_intel
Checking test 107 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.047098
-The maximum resident set size (KB) = 1069512
+The total amount of wall time = 301.915862
+The maximum resident set size (KB) = 1067668
Test 107 rrfs_v1beta_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_clm_lake_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_clm_lake_debug_intel
Checking test 108 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 351.599105
-The maximum resident set size (KB) = 1074656
+The total amount of wall time = 356.387245
+The maximum resident set size (KB) = 1078344
Test 108 rap_clm_lake_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_flake_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_flake_debug_intel
Checking test 109 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.316766
-The maximum resident set size (KB) = 1073452
+The total amount of wall time = 305.996573
+The maximum resident set size (KB) = 1077284
Test 109 rap_flake_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/gnv1_c96_no_nest_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/gnv1_c96_no_nest_debug_intel
Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 526.273497
-The maximum resident set size (KB) = 1077160
+The total amount of wall time = 535.652666
+The maximum resident set size (KB) = 1076836
Test 110 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_debug_intel
Checking test 111 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 299.088393
-The maximum resident set size (KB) = 298148
+The total amount of wall time = 298.765315
+The maximum resident set size (KB) = 300624
Test 111 control_wam_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 230.022175
-The maximum resident set size (KB) = 952956
+The total amount of wall time = 230.588524
+The maximum resident set size (KB) = 953000
Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn32_phy32_intel
Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 336.797512
-The maximum resident set size (KB) = 789616
+The total amount of wall time = 337.326050
+The maximum resident set size (KB) = 796180
Test 113 rap_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_dyn32_phy32_intel
Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 180.171997
-The maximum resident set size (KB) = 788240
+The total amount of wall time = 178.905085
+The maximum resident set size (KB) = 783112
Test 114 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_dyn32_phy32_intel
Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 308.608507
-The maximum resident set size (KB) = 851852
+The total amount of wall time = 310.614336
+The maximum resident set size (KB) = 852672
Test 115 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_dyn32_phy32_intel
Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 160.933595
-The maximum resident set size (KB) = 840220
+The total amount of wall time = 159.617650
+The maximum resident set size (KB) = 840160
Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_dyn32_phy32_intel
Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 186.779550
-The maximum resident set size (KB) = 791856
+The total amount of wall time = 185.643781
+The maximum resident set size (KB) = 789440
Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_dyn32_phy32_intel
Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 254.794040
-The maximum resident set size (KB) = 685660
+The total amount of wall time = 253.106647
+The maximum resident set size (KB) = 688544
Test 118 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_dyn32_phy32_intel
Checking test 119 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 93.806382
-The maximum resident set size (KB) = 667280
+The total amount of wall time = 93.502140
+The maximum resident set size (KB) = 670152
Test 119 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_control_intel
Checking test 120 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 120.596185
-The maximum resident set size (KB) = 1003932
+The total amount of wall time = 131.034625
+The maximum resident set size (KB) = 1006496
Test 120 conus13km_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_2threads_intel
Checking test 121 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 63.221902
-The maximum resident set size (KB) = 1007156
+The total amount of wall time = 60.720676
+The maximum resident set size (KB) = 1007992
Test 121 conus13km_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_restart_mismatch_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_restart_mismatch_intel
Checking test 122 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 71.013649
-The maximum resident set size (KB) = 881756
+The total amount of wall time = 69.331365
+The maximum resident set size (KB) = 883324
Test 122 conus13km_restart_mismatch_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_intel
Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 234.585978
-The maximum resident set size (KB) = 811188
+The total amount of wall time = 236.334234
+The maximum resident set size (KB) = 810948
Test 123 rap_control_dyn64_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_dyn32_phy32_intel
Checking test 124 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.731602
-The maximum resident set size (KB) = 950728
+The total amount of wall time = 299.528702
+The maximum resident set size (KB) = 946132
Test 124 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_dyn32_phy32_intel
Checking test 125 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 288.839630
-The maximum resident set size (KB) = 949132
+The total amount of wall time = 292.755949
+The maximum resident set size (KB) = 954084
Test 125 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_intel
Checking test 126 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 889.758617
-The maximum resident set size (KB) = 1036268
+The total amount of wall time = 897.482195
+The maximum resident set size (KB) = 1038980
Test 126 conus13km_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_qr_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_qr_intel
Checking test 127 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 897.344891
-The maximum resident set size (KB) = 710752
+The total amount of wall time = 904.198403
+The maximum resident set size (KB) = 711580
Test 127 conus13km_debug_qr_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_2threads_intel
Checking test 128 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 512.772061
-The maximum resident set size (KB) = 1037896
+The total amount of wall time = 515.369189
+The maximum resident set size (KB) = 1039352
Test 128 conus13km_debug_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_radar_tten_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_radar_tten_debug_intel
Checking test 129 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 882.770745
-The maximum resident set size (KB) = 1109524
+The total amount of wall time = 905.178589
+The maximum resident set size (KB) = 1098940
Test 129 conus13km_radar_tten_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_debug_intel
Checking test 130 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 300.603950
-The maximum resident set size (KB) = 979708
+The total amount of wall time = 302.613106
+The maximum resident set size (KB) = 973616
Test 130 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_intel
Checking test 131 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 369.531631
-The maximum resident set size (KB) = 617228
+The total amount of wall time = 353.649348
+The maximum resident set size (KB) = 614244
Test 131 hafs_regional_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 355.154398
-The maximum resident set size (KB) = 962868
+The total amount of wall time = 329.437837
+The maximum resident set size (KB) = 963172
Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_intel
Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 438.730589
-The maximum resident set size (KB) = 665392
+The total amount of wall time = 425.789147
+The maximum resident set size (KB) = 659588
Test 133 hafs_regional_atm_ocn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_wav_intel
Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 752.176827
-The maximum resident set size (KB) = 688472
+The total amount of wall time = 754.119878
+The maximum resident set size (KB) = 686160
Test 134 hafs_regional_atm_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_wav_intel
Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 947.190738
-The maximum resident set size (KB) = 706528
+The total amount of wall time = 941.578158
+The maximum resident set size (KB) = 704864
Test 135 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_1nest_atm_intel
Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 323.948890
-The maximum resident set size (KB) = 390444
+The total amount of wall time = 321.936508
+The maximum resident set size (KB) = 389092
Test 136 hafs_regional_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_telescopic_2nests_atm_intel
Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 419.083475
-The maximum resident set size (KB) = 411292
+The total amount of wall time = 410.299541
+The maximum resident set size (KB) = 405160
Test 137 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_1nest_atm_intel
Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 178.064158
-The maximum resident set size (KB) = 284008
+The total amount of wall time = 176.905599
+The maximum resident set size (KB) = 281040
Test 138 hafs_global_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_multiple_4nests_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_multiple_4nests_atm_intel
Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 513.406980
-The maximum resident set size (KB) = 369996
+The total amount of wall time = 492.900377
+The maximum resident set size (KB) = 376844
Test 139 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_specified_moving_1nest_atm_intel
Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 225.541419
-The maximum resident set size (KB) = 411900
+The total amount of wall time = 224.126547
+The maximum resident set size (KB) = 413184
Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 216.108215
-The maximum resident set size (KB) = 414940
+The total amount of wall time = 210.963513
+The maximum resident set size (KB) = 413076
Test 141 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 277.787997
-The maximum resident set size (KB) = 488860
+The total amount of wall time = 279.097440
+The maximum resident set size (KB) = 488400
Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_storm_following_1nest_atm_intel
Checking test 143 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 97.748097
-The maximum resident set size (KB) = 319588
+The total amount of wall time = 96.254248
+The maximum resident set size (KB) = 315000
Test 143 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 827.555675
-The maximum resident set size (KB) = 501768
+The total amount of wall time = 825.697003
+The maximum resident set size (KB) = 509060
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 534.652709
-The maximum resident set size (KB) = 528456
+The total amount of wall time = 525.917581
+The maximum resident set size (KB) = 530736
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 534.592094
-The maximum resident set size (KB) = 710948
+The total amount of wall time = 540.934501
+The maximum resident set size (KB) = 711364
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 395.725953
-The maximum resident set size (KB) = 710956
+The total amount of wall time = 391.536720
+The maximum resident set size (KB) = 711812
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 441.947517
-The maximum resident set size (KB) = 655240
+The total amount of wall time = 401.565907
+The maximum resident set size (KB) = 657504
Test 148 hafs_regional_docn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_oisst_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 424.937547
-The maximum resident set size (KB) = 641236
+The total amount of wall time = 397.116334
+The maximum resident set size (KB) = 631908
Test 149 hafs_regional_docn_oisst_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_datm_cdeps_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 959.502318
-The maximum resident set size (KB) = 880960
+The total amount of wall time = 951.527204
+The maximum resident set size (KB) = 881208
Test 150 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_sbs_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_sbs_intel
Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 279.391007
-The maximum resident set size (KB) = 1546220
+The total amount of wall time = 278.121137
+The maximum resident set size (KB) = 1540412
Test 151 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_intel
Checking test 152 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 277.072040
-The maximum resident set size (KB) = 1538484
+The total amount of wall time = 278.964452
+The maximum resident set size (KB) = 1542860
Test 152 control_p8_atmlnd_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_atmlnd_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_atmlnd_intel
Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 155.932872
-The maximum resident set size (KB) = 738524
+The total amount of wall time = 155.160197
+The maximum resident set size (KB) = 743224
Test 153 control_restart_p8_atmlnd_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_intel
Checking test 154 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 248.697666
-The maximum resident set size (KB) = 2850348
+The total amount of wall time = 241.471847
+The maximum resident set size (KB) = 2849432
Test 154 atmaero_control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_intel
Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 281.921693
-The maximum resident set size (KB) = 2910640
+The total amount of wall time = 279.536510
+The maximum resident set size (KB) = 2911716
Test 155 atmaero_control_p8_rad_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_micro_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_micro_intel
Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 293.390049
-The maximum resident set size (KB) = 2926952
+The total amount of wall time = 294.213178
+The maximum resident set size (KB) = 2924264
Test 156 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_atmaq_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_atmaq_debug_intel
Checking test 157 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5533,12 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1330.775370
-The maximum resident set size (KB) = 4440152
+The total amount of wall time = 1342.376959
+The maximum resident set size (KB) = 4445612
Test 157 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Fri Feb 9 20:15:43 UTC 2024
-Elapsed time: 01h:26m:10s. Have a nice day!
+Tue Feb 13 15:25:48 UTC 2024
+Elapsed time: 01h:17m:44s. Have a nice day!
diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN
index b7a3fc56f5..f82edf479d 100644
--- a/tests/parm/ice_in.IN
+++ b/tests/parm/ice_in.IN
@@ -315,6 +315,9 @@
f_fmelttn_ai = 'x'
f_flatn_ai = 'x'
f_fsensn_ai = 'x'
+ f_sitempsnic = 'mdhxx'
+ f_sitemptop = 'mdhxx'
+ f_sitempbot = 'mdhxx'
/
&icefields_mechred_nml
From e464f5be2200744013c221b7eb7e1f2c85b79e22 Mon Sep 17 00:00:00 2001
From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com>
Date: Thu, 15 Feb 2024 10:17:39 -0500
Subject: [PATCH 03/33] Add option to write 3d soilt, soilw and soill variables
to a history file (#2062)
Add option to write 3d soilt, soilw and soill variables to a history file
---
FV3 | 2 +-
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 1486 ++++++------
tests/logs/RegressionTests_derecho.log | 1450 ++++++------
tests/logs/RegressionTests_gaea.log | 2037 ++++++++--------
tests/logs/RegressionTests_hera.log | 2106 ++++++++---------
tests/logs/RegressionTests_hercules.log | 2052 ++++++++--------
tests/logs/RegressionTests_jet.log | 1460 ++++++------
tests/logs/RegressionTests_orion.log | 1743 +++++++-------
tests/logs/RegressionTests_wcoss2.log | 1330 +++++------
.../parm/diag_table/diag_table_gfsv16_3d_soil | 210 ++
tests/tests/control_CubedSphereGrid_parallel | 1 +
15 files changed, 7207 insertions(+), 6768 deletions(-)
create mode 100644 tests/parm/diag_table/diag_table_gfsv16_3d_soil
diff --git a/FV3 b/FV3
index 28bfc365eb..0fe9ba3020 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 28bfc365eb65364f1b4972a870837640cb7331a3
+Subproject commit 0fe9ba3020ad2f744ead7323bda414497aa33632
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index db8bf0ab30..dc476e9359 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240212
+export BL_DATE=20240213
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 5f291dc8c6..725944afe9 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Feb 12 17:34:36 UTC 2024
+Tue Feb 13 21:21:48 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_bit_base
Checking test bit_base control_p8_gnu results ....
Moving baseline bit_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 295.377764
- 0: The maximum resident set size (KB) = 1308520
+ 0: The total amount of wall time = 279.361825
+ 0: The maximum resident set size (KB) = 1308576
Test bit_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dbg_base
Checking test dbg_base control_p8_gnu results ....
Moving baseline dbg_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 905.836659
- 0: The maximum resident set size (KB) = 1289704
+ 0: The total amount of wall time = 892.068909
+ 0: The maximum resident set size (KB) = 1288180
Test dbg_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dcp
Checking test dcp control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.635355
- 0: The maximum resident set size (KB) = 1280580
+ 0: The total amount of wall time = 246.793051
+ 0: The maximum resident set size (KB) = 1282680
Test dcp control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_mpi
Checking test mpi control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 255.206853
- 0: The maximum resident set size (KB) = 1273300
+ 0: The total amount of wall time = 248.634230
+ 0: The maximum resident set size (KB) = 1280096
Test mpi control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_rst
Checking test rst control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 251.001418
- 0: The maximum resident set size (KB) = 1281992
+ 0: The total amount of wall time = 248.281693
+ 0: The maximum resident set size (KB) = 1282264
Test rst control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_std_base
Checking test std_base control_p8_gnu results ....
Moving baseline std_base control_p8_gnu files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 245.431368
- 0: The maximum resident set size (KB) = 1281712
+ 0: The total amount of wall time = 250.485530
+ 0: The maximum resident set size (KB) = 1281568
Test std_base control_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_thr
Checking test thr control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.171559
- 0: The maximum resident set size (KB) = 1291604
+ 0: The total amount of wall time = 248.484763
+ 0: The maximum resident set size (KB) = 1281196
Test thr control_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Feb 12 18:52:54 UTC 2024
-Elapsed time: 01h:18m:18s. Have a nice day!
+Wed Feb 14 00:35:01 UTC 2024
+Elapsed time: 03h:13m:14s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index d7a6ad9b62..31de475a3b 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Feb 12 19:53:38 UTC 2024
+Wed Feb 14 04:10:02 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_dbg_base
Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1226.601363
- 0: The maximum resident set size (KB) = 1406616
+ 0: The total amount of wall time = 1212.229695
+ 0: The maximum resident set size (KB) = 1415208
Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_rst
Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 381.635239
- 0: The maximum resident set size (KB) = 1404212
+ 0: The total amount of wall time = 378.073713
+ 0: The maximum resident set size (KB) = 1407348
Test rst cpld_control_nowave_noaero_p8_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_std_base
Checking test std_base cpld_control_nowave_noaero_p8_gnu results ....
Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 383.441742
- 0: The maximum resident set size (KB) = 1407432
+ 0: The total amount of wall time = 374.073820
+ 0: The maximum resident set size (KB) = 1404512
Test std_base cpld_control_nowave_noaero_p8_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Feb 12 21:05:36 UTC 2024
-Elapsed time: 01h:11m:59s. Have a nice day!
+Wed Feb 14 05:41:37 UTC 2024
+Elapsed time: 01h:31m:36s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 42b888c371..c9c7ed6a19 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Mon Feb 12 18:56:01 UTC 2024
+Wed Feb 14 01:29:21 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_dcp
Checking test dcp regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 518.010148
- 0: The maximum resident set size (KB) = 592116
+ 0: The total amount of wall time = 559.463910
+ 0: The maximum resident set size (KB) = 591668
Test dcp regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_std_base
Checking test std_base regional_control_gnu results ....
Moving baseline std_base regional_control_gnu files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 520.071220
- 0: The maximum resident set size (KB) = 589292
+ 0: The total amount of wall time = 508.581538
+ 0: The maximum resident set size (KB) = 592660
Test std_base regional_control_gnu PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_thr
Checking test thr regional_control_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 502.487646
- 0: The maximum resident set size (KB) = 592096
+ 0: The total amount of wall time = 511.135763
+ 0: The maximum resident set size (KB) = 589920
Test thr regional_control_gnu PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Feb 12 19:32:44 UTC 2024
-Elapsed time: 00h:36m:43s. Have a nice day!
+Wed Feb 14 02:06:37 UTC 2024
+Elapsed time: 00h:37m:19s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 56b4542381..6890dc893d 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,14 +1,14 @@
-Tue Feb 13 14:07:51 UTC 2024
+Tue Feb 13 20:55:05 UTC 2024
Start Regression test
-Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -16,45 +16,45 @@ Testing With Submodule Hashes:
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 183 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 526 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_faster_intel elapsed time 518 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 526 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 563 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 197 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 571 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 527 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_faster_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 452 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 544 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 569 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 620 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile ifi_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 961 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 902 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 581 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 901 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_mixedmode_intel
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 613 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 575 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 931 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 320.431229
-The maximum resident set size (KB) = 2973508
+The total amount of wall time = 320.583545
+The maximum resident set size (KB) = 2972576
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 901.292979
-The maximum resident set size (KB) = 1592148
+The total amount of wall time = 901.799342
+The maximum resident set size (KB) = 1588508
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_iau_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 969.922689
-The maximum resident set size (KB) = 1710552
+The total amount of wall time = 974.923853
+The maximum resident set size (KB) = 1720608
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 453.198730
-The maximum resident set size (KB) = 847968
+The total amount of wall time = 453.147966
+The maximum resident set size (KB) = 850788
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1053.880929
-The maximum resident set size (KB) = 1573768
+The total amount of wall time = 1050.571882
+The maximum resident set size (KB) = 1583444
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_gfsv17_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1404.844347
-The maximum resident set size (KB) = 1600052
+The total amount of wall time = 1399.707911
+The maximum resident set size (KB) = 1595160
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 363.720413
-The maximum resident set size (KB) = 3001592
+The total amount of wall time = 362.865109
+The maximum resident set size (KB) = 3004020
Test 007 cpld_control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 363.114406
-The maximum resident set size (KB) = 3003684
+The total amount of wall time = 364.769886
+The maximum resident set size (KB) = 3003128
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 213.666517
-The maximum resident set size (KB) = 3061748
+The total amount of wall time = 213.080535
+The maximum resident set size (KB) = 3059576
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_qr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.516087
-The maximum resident set size (KB) = 3026600
+The total amount of wall time = 365.772763
+The maximum resident set size (KB) = 3025532
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_qr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 217.989895
-The maximum resident set size (KB) = 3080876
+The total amount of wall time = 218.157201
+The maximum resident set size (KB) = 3079728
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_2threads_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 324.509045
-The maximum resident set size (KB) = 3315524
+The total amount of wall time = 324.432111
+The maximum resident set size (KB) = 3313180
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_decomp_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 356.915458
-The maximum resident set size (KB) = 2997384
+The total amount of wall time = 358.722397
+The maximum resident set size (KB) = 2998228
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 302.115277
-The maximum resident set size (KB) = 2925944
+The total amount of wall time = 302.284206
+The maximum resident set size (KB) = 2927044
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_ciceC_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 362.349738
-The maximum resident set size (KB) = 3002992
+The total amount of wall time = 365.707176
+The maximum resident set size (KB) = 3004176
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_s2sa_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_s2sa_p8_intel
Checking test 016 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 342.065720
-The maximum resident set size (KB) = 2974280
+The total amount of wall time = 342.533134
+The maximum resident set size (KB) = 2967192
Test 016 cpld_s2sa_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_intel
Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 269.199649
-The maximum resident set size (KB) = 1590444
+The total amount of wall time = 270.199657
+The maximum resident set size (KB) = 1589104
Test 017 cpld_control_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_nowave_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_nowave_noaero_p8_intel
Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 273.905327
-The maximum resident set size (KB) = 1641564
+The total amount of wall time = 275.006469
+The maximum resident set size (KB) = 1642404
Test 018 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_agrid_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_agrid_intel
Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 275.468269
-The maximum resident set size (KB) = 1634952
+The total amount of wall time = 276.189323
+The maximum resident set size (KB) = 1640476
Test 019 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_c48_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_c48_intel
Checking test 020 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 405.129974
-The maximum resident set size (KB) = 2659084
+The total amount of wall time = 406.266867
+The maximum resident set size (KB) = 2648452
Test 020 cpld_control_c48_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_faster_intel
Checking test 021 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 357.167762
-The maximum resident set size (KB) = 3001692
+The total amount of wall time = 356.457787
+The maximum resident set size (KB) = 3000956
Test 021 cpld_control_p8_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_pdlib_p8_intel
Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 917.343363
-The maximum resident set size (KB) = 1610376
+The total amount of wall time = 918.591947
+The maximum resident set size (KB) = 1610356
Test 022 cpld_control_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_pdlib_p8_intel
Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 457.688844
-The maximum resident set size (KB) = 906796
+The total amount of wall time = 459.042002
+The maximum resident set size (KB) = 911180
Test 023 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_pdlib_p8_intel
Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1066.336617
-The maximum resident set size (KB) = 1580956
+The total amount of wall time = 1067.175522
+The maximum resident set size (KB) = 1588248
Test 024 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_pdlib_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_pdlib_p8_intel
Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1485.769226
-The maximum resident set size (KB) = 1624436
+The total amount of wall time = 1492.573145
+The maximum resident set size (KB) = 1619396
Test 025 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_flake_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_flake_intel
Checking test 026 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 212.441596
-The maximum resident set size (KB) = 579916
+The total amount of wall time = 212.425640
+The maximum resident set size (KB) = 577640
Test 026 control_flake_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_intel
Checking test 027 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 130.833019
-The maximum resident set size (KB) = 530100
+The total amount of wall time = 131.386684
+The maximum resident set size (KB) = 526392
Test 027 control_CubedSphereGrid_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_parallel_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_parallel_intel
Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 135.932805
-The maximum resident set size (KB) = 536868
+The total amount of wall time = 136.694364
+The maximum resident set size (KB) = 537332
Test 028 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_latlon_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_latlon_intel
Checking test 029 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 132.064553
-The maximum resident set size (KB) = 528664
+The total amount of wall time = 132.333839
+The maximum resident set size (KB) = 528304
Test 029 control_latlon_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_intel
Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.664278
-The maximum resident set size (KB) = 531584
+The total amount of wall time = 134.767542
+The maximum resident set size (KB) = 528816
Test 030 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48_intel
Checking test 031 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 327.194725
-The maximum resident set size (KB) = 720624
+The total amount of wall time = 329.365162
+The maximum resident set size (KB) = 719448
Test 031 control_c48_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48.v2.sfc_intel
Checking test 032 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 327.193693
-The maximum resident set size (KB) = 722684
+The total amount of wall time = 329.463873
+The maximum resident set size (KB) = 719856
Test 032 control_c48.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c192_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c192_intel
Checking test 033 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 525.939866
-The maximum resident set size (KB) = 649380
+The total amount of wall time = 527.742681
+The maximum resident set size (KB) = 646284
Test 033 control_c192_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384_intel
Checking test 034 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 582.032478
-The maximum resident set size (KB) = 962208
+The total amount of wall time = 583.500948
+The maximum resident set size (KB) = 962448
Test 034 control_c384_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384gdas_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384gdas_intel
Checking test 035 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 512.289225
-The maximum resident set size (KB) = 1097588
+The total amount of wall time = 515.564583
+The maximum resident set size (KB) = 1097384
Test 035 control_c384gdas_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_intel
Checking test 036 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 88.602188
-The maximum resident set size (KB) = 534588
+The total amount of wall time = 87.837103
+The maximum resident set size (KB) = 538000
Test 036 control_stochy_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_restart_intel
Checking test 037 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 49.392489
-The maximum resident set size (KB) = 338832
+The total amount of wall time = 49.563804
+The maximum resident set size (KB) = 335200
Test 037 control_stochy_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_intel
Checking test 038 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 83.969680
-The maximum resident set size (KB) = 534360
+The total amount of wall time = 84.153988
+The maximum resident set size (KB) = 531396
Test 038 control_lndp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr4_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr4_intel
Checking test 039 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.774315
-The maximum resident set size (KB) = 529464
+The total amount of wall time = 132.889405
+The maximum resident set size (KB) = 527212
Test 039 control_iovr4_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr5_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr5_intel
Checking test 040 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.041501
-The maximum resident set size (KB) = 529144
+The total amount of wall time = 132.853333
+The maximum resident set size (KB) = 531036
Test 040 control_iovr5_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_intel
Checking test 041 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 162.704931
-The maximum resident set size (KB) = 1504752
+The total amount of wall time = 162.156825
+The maximum resident set size (KB) = 1509992
Test 041 control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8.v2.sfc_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8.v2.sfc_intel
Checking test 042 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 162.596674
-The maximum resident set size (KB) = 1515040
+The total amount of wall time = 161.953549
+The maximum resident set size (KB) = 1502732
Test 042 control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_ugwpv1_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_ugwpv1_intel
Checking test 043 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.365987
-The maximum resident set size (KB) = 1514192
+The total amount of wall time = 160.401269
+The maximum resident set size (KB) = 1516136
Test 043 control_p8_ugwpv1_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_intel
Checking test 044 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 91.789380
-The maximum resident set size (KB) = 697236
+The total amount of wall time = 90.183429
+The maximum resident set size (KB) = 694940
Test 044 control_restart_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_noqr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_noqr_p8_intel
Checking test 045 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 162.549796
-The maximum resident set size (KB) = 1500736
+The total amount of wall time = 162.797982
+The maximum resident set size (KB) = 1499940
Test 045 control_noqr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_noqr_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_noqr_p8_intel
Checking test 046 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 88.525005
-The maximum resident set size (KB) = 703548
+The total amount of wall time = 87.900642
+The maximum resident set size (KB) = 699552
Test 046 control_restart_noqr_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_decomp_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_decomp_p8_intel
Checking test 047 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 167.759858
-The maximum resident set size (KB) = 1505848
+The total amount of wall time = 166.882279
+The maximum resident set size (KB) = 1506664
Test 047 control_decomp_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_2threads_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_2threads_p8_intel
Checking test 048 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 143.619906
-The maximum resident set size (KB) = 1599820
+The total amount of wall time = 142.974058
+The maximum resident set size (KB) = 1588264
Test 048 control_2threads_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_lndp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_lndp_intel
Checking test 049 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 292.409155
-The maximum resident set size (KB) = 1511456
+The total amount of wall time = 292.615876
+The maximum resident set size (KB) = 1505996
Test 049 control_p8_lndp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_rrtmgp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_rrtmgp_intel
Checking test 050 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 217.311119
-The maximum resident set size (KB) = 1573920
+The total amount of wall time = 218.092373
+The maximum resident set size (KB) = 1561024
Test 050 control_p8_rrtmgp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_mynn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_mynn_intel
Checking test 051 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 164.852610
-The maximum resident set size (KB) = 1518368
+The total amount of wall time = 165.718800
+The maximum resident set size (KB) = 1513556
Test 051 control_p8_mynn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/merra2_thompson_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/merra2_thompson_intel
Checking test 052 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 197.178167
-The maximum resident set size (KB) = 1523776
+The total amount of wall time = 197.063639
+The maximum resident set size (KB) = 1510884
Test 052 merra2_thompson_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_intel
Checking test 053 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 284.982565
-The maximum resident set size (KB) = 615316
+The total amount of wall time = 281.547353
+The maximum resident set size (KB) = 612740
Test 053 regional_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_restart_intel
Checking test 054 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 153.047541
-The maximum resident set size (KB) = 781444
+The total amount of wall time = 154.229868
+The maximum resident set size (KB) = 779896
Test 054 regional_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_decomp_intel
Checking test 055 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 300.722561
-The maximum resident set size (KB) = 615492
+The total amount of wall time = 298.617670
+The maximum resident set size (KB) = 611504
Test 055 regional_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2threads_intel
Checking test 056 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 171.098769
-The maximum resident set size (KB) = 670840
+The total amount of wall time = 172.744636
+The maximum resident set size (KB) = 666676
Test 056 regional_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_noquilt_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 277.426436
-The maximum resident set size (KB) = 1146112
+The total amount of wall time = 276.876585
+The maximum resident set size (KB) = 1148844
Test 057 regional_noquilt_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2dwrtdecomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2dwrtdecomp_intel
Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 282.463321
-The maximum resident set size (KB) = 615608
+The total amount of wall time = 284.198888
+The maximum resident set size (KB) = 612640
Test 058 regional_2dwrtdecomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_wofs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_wofs_intel
Checking test 059 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 367.031967
-The maximum resident set size (KB) = 1588752
+The total amount of wall time = 372.331648
+The maximum resident set size (KB) = 1585356
Test 059 regional_wofs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_control_intel
Checking test 060 regional_ifi_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 315.180067
-The maximum resident set size (KB) = 613612
+The total amount of wall time = 314.278095
+The maximum resident set size (KB) = 611780
Test 060 regional_ifi_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_decomp_intel
Checking test 061 regional_ifi_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 328.839821
-The maximum resident set size (KB) = 609204
+The total amount of wall time = 330.518680
+The maximum resident set size (KB) = 611004
Test 061 regional_ifi_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_2threads_intel
Checking test 062 regional_ifi_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 188.608290
-The maximum resident set size (KB) = 667872
+The total amount of wall time = 191.814831
+The maximum resident set size (KB) = 663552
Test 062 regional_ifi_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 405.866851
-The maximum resident set size (KB) = 915444
+The total amount of wall time = 404.139433
+The maximum resident set size (KB) = 917148
Test 063 rap_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 238.550921
-The maximum resident set size (KB) = 1092396
+The total amount of wall time = 238.614743
+The maximum resident set size (KB) = 1099324
Test 064 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 420.264237
-The maximum resident set size (KB) = 917548
+The total amount of wall time = 420.342724
+The maximum resident set size (KB) = 917176
Test 065 rap_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 370.200398
-The maximum resident set size (KB) = 1002652
+The total amount of wall time = 369.944418
+The maximum resident set size (KB) = 1003028
Test 066 rap_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 207.820131
-The maximum resident set size (KB) = 788432
+The total amount of wall time = 208.230702
+The maximum resident set size (KB) = 787668
Test 067 rap_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 403.134456
-The maximum resident set size (KB) = 914648
+The total amount of wall time = 404.037357
+The maximum resident set size (KB) = 910668
Test 068 rap_sfcdiff_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 420.847383
-The maximum resident set size (KB) = 914024
+The total amount of wall time = 419.821399
+The maximum resident set size (KB) = 910936
Test 069 rap_sfcdiff_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 301.582506
-The maximum resident set size (KB) = 787784
+The total amount of wall time = 302.542040
+The maximum resident set size (KB) = 786160
Test 070 rap_sfcdiff_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 206.889690
-The maximum resident set size (KB) = 908760
+The total amount of wall time = 207.422949
+The maximum resident set size (KB) = 907440
Test 071 hrrr_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 211.263517
-The maximum resident set size (KB) = 912908
+The total amount of wall time = 211.266940
+The maximum resident set size (KB) = 908928
Test 072 hrrr_control_decomp_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 185.991832
-The maximum resident set size (KB) = 991112
+The total amount of wall time = 185.765973
+The maximum resident set size (KB) = 984068
Test 073 hrrr_control_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 109.222538
-The maximum resident set size (KB) = 740620
+The total amount of wall time = 109.444178
+The maximum resident set size (KB) = 743616
Test 074 hrrr_control_restart_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 396.621180
-The maximum resident set size (KB) = 910212
+The total amount of wall time = 396.973313
+The maximum resident set size (KB) = 903656
Test 075 rrfs_v1beta_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 484.017399
-The maximum resident set size (KB) = 1871832
+The total amount of wall time = 483.985501
+The maximum resident set size (KB) = 1871016
Test 076 rrfs_v1nssl_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 467.707890
-The maximum resident set size (KB) = 1856820
+The total amount of wall time = 468.624004
+The maximum resident set size (KB) = 1859480
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 335.608902
-The maximum resident set size (KB) = 602236
+The total amount of wall time = 336.283994
+The maximum resident set size (KB) = 606300
Test 078 control_csawmg_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 332.680240
-The maximum resident set size (KB) = 598800
+The total amount of wall time = 332.691438
+The maximum resident set size (KB) = 602368
Test 079 control_csawmgt_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_intel
Checking test 080 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 119.195700
-The maximum resident set size (KB) = 276264
+The total amount of wall time = 119.382718
+The maximum resident set size (KB) = 273604
Test 080 control_wam_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_faster_intel
Checking test 081 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 156.352379
-The maximum resident set size (KB) = 1501296
+The total amount of wall time = 156.497008
+The maximum resident set size (KB) = 1500872
Test 081 control_p8_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_faster_intel
Checking test 082 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 270.450826
-The maximum resident set size (KB) = 606332
+The total amount of wall time = 272.768730
+The maximum resident set size (KB) = 605424
Test 082 regional_control_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_debug_intel
Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 159.609238
-The maximum resident set size (KB) = 685224
+The total amount of wall time = 160.015649
+The maximum resident set size (KB) = 685740
Test 083 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 158.309180
-The maximum resident set size (KB) = 686520
+The total amount of wall time = 157.546243
+The maximum resident set size (KB) = 686840
Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_debug_intel
Checking test 085 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 178.698093
-The maximum resident set size (KB) = 692508
+The total amount of wall time = 179.804539
+The maximum resident set size (KB) = 692976
Test 085 control_stochy_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_debug_intel
Checking test 086 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 160.988509
-The maximum resident set size (KB) = 692676
+The total amount of wall time = 161.841649
+The maximum resident set size (KB) = 691400
Test 086 control_lndp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_debug_intel
Checking test 087 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 251.427731
-The maximum resident set size (KB) = 728560
+The total amount of wall time = 249.947359
+The maximum resident set size (KB) = 728084
Test 087 control_csawmg_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_debug_intel
Checking test 088 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 249.938562
-The maximum resident set size (KB) = 730192
+The total amount of wall time = 246.536305
+The maximum resident set size (KB) = 731928
Test 088 control_csawmgt_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_ras_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_ras_debug_intel
Checking test 089 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 163.200331
-The maximum resident set size (KB) = 700604
+The total amount of wall time = 162.918826
+The maximum resident set size (KB) = 699560
Test 089 control_ras_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_diag_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_diag_debug_intel
Checking test 090 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 162.505064
-The maximum resident set size (KB) = 746632
+The total amount of wall time = 164.525885
+The maximum resident set size (KB) = 750820
Test 090 control_diag_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_debug_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_debug_p8_intel
Checking test 091 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 168.875227
-The maximum resident set size (KB) = 1516996
+The total amount of wall time = 167.141659
+The maximum resident set size (KB) = 1519644
Test 091 control_debug_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_debug_intel
Checking test 092 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1047.615549
-The maximum resident set size (KB) = 630828
+The total amount of wall time = 1046.652034
+The maximum resident set size (KB) = 636352
Test 092 regional_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_intel
Checking test 093 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 300.926735
-The maximum resident set size (KB) = 1072836
+The total amount of wall time = 299.583165
+The maximum resident set size (KB) = 1072896
Test 093 rap_control_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_intel
Checking test 094 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 292.336573
-The maximum resident set size (KB) = 1072488
+The total amount of wall time = 293.074200
+The maximum resident set size (KB) = 1066068
Test 094 hrrr_control_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_gf_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_gf_debug_intel
Checking test 095 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 297.712497
-The maximum resident set size (KB) = 1073072
+The total amount of wall time = 298.226129
+The maximum resident set size (KB) = 1076576
Test 095 hrrr_gf_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_c3_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_c3_debug_intel
Checking test 096 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.914574
-The maximum resident set size (KB) = 1068504
+The total amount of wall time = 298.620112
+The maximum resident set size (KB) = 1076948
Test 096 hrrr_c3_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_drag_suite_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_drag_suite_debug_intel
Checking test 097 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.443865
-The maximum resident set size (KB) = 1076464
+The total amount of wall time = 300.449765
+The maximum resident set size (KB) = 1072792
Test 097 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_diag_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_diag_debug_intel
Checking test 098 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 309.790080
-The maximum resident set size (KB) = 1157412
+The total amount of wall time = 313.037681
+The maximum resident set size (KB) = 1155780
Test 098 rap_diag_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_cires_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_cires_ugwp_debug_intel
Checking test 099 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.445932
-The maximum resident set size (KB) = 1072360
+The total amount of wall time = 305.872024
+The maximum resident set size (KB) = 1075240
Test 099 rap_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_ugwp_debug_intel
Checking test 100 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 307.400872
-The maximum resident set size (KB) = 1075020
+The total amount of wall time = 305.344272
+The maximum resident set size (KB) = 1079696
Test 100 rap_unified_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_lndp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_lndp_debug_intel
Checking test 101 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.700496
-The maximum resident set size (KB) = 1075720
+The total amount of wall time = 301.838610
+The maximum resident set size (KB) = 1076408
Test 101 rap_lndp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_progcld_thompson_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_progcld_thompson_debug_intel
Checking test 102 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.236826
-The maximum resident set size (KB) = 1071340
+The total amount of wall time = 300.022365
+The maximum resident set size (KB) = 1072432
Test 102 rap_progcld_thompson_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_debug_intel
Checking test 103 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 294.315465
-The maximum resident set size (KB) = 1071780
+The total amount of wall time = 293.658661
+The maximum resident set size (KB) = 1074016
Test 103 rap_noah_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_debug_intel
Checking test 104 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.789750
-The maximum resident set size (KB) = 1070464
+The total amount of wall time = 299.824717
+The maximum resident set size (KB) = 1072920
Test 104 rap_sfcdiff_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 489.562697
-The maximum resident set size (KB) = 1068720
+The total amount of wall time = 490.771679
+The maximum resident set size (KB) = 1075128
Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_debug_intel
Checking test 106 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 294.369995
-The maximum resident set size (KB) = 1068972
+The total amount of wall time = 294.072021
+The maximum resident set size (KB) = 1064612
Test 106 rrfs_v1beta_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_clm_lake_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_clm_lake_debug_intel
Checking test 107 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 349.446992
-The maximum resident set size (KB) = 1074360
+The total amount of wall time = 351.370858
+The maximum resident set size (KB) = 1074324
Test 107 rap_clm_lake_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_flake_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_flake_debug_intel
Checking test 108 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.718569
-The maximum resident set size (KB) = 1073616
+The total amount of wall time = 302.887751
+The maximum resident set size (KB) = 1072304
Test 108 rap_flake_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_c96_no_nest_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_c96_no_nest_debug_intel
Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 522.815925
-The maximum resident set size (KB) = 1079040
+The total amount of wall time = 526.510557
+The maximum resident set size (KB) = 1078572
Test 109 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_debug_intel
Checking test 110 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 297.095886
-The maximum resident set size (KB) = 300960
+The total amount of wall time = 299.016847
+The maximum resident set size (KB) = 299136
Test 110 control_wam_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 227.717135
-The maximum resident set size (KB) = 956628
+The total amount of wall time = 226.914977
+The maximum resident set size (KB) = 960248
Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn32_phy32_intel
Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 334.510732
-The maximum resident set size (KB) = 797840
+The total amount of wall time = 335.157411
+The maximum resident set size (KB) = 794408
Test 112 rap_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_dyn32_phy32_intel
Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 176.871234
-The maximum resident set size (KB) = 790232
+The total amount of wall time = 175.437514
+The maximum resident set size (KB) = 791508
Test 113 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_dyn32_phy32_intel
Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 305.969456
-The maximum resident set size (KB) = 851304
+The total amount of wall time = 306.899439
+The maximum resident set size (KB) = 856812
Test 114 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_dyn32_phy32_intel
Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.583519
-The maximum resident set size (KB) = 842592
+The total amount of wall time = 160.316286
+The maximum resident set size (KB) = 846172
Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_dyn32_phy32_intel
Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 183.269289
-The maximum resident set size (KB) = 791796
+The total amount of wall time = 183.284931
+The maximum resident set size (KB) = 790480
Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_dyn32_phy32_intel
Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 250.430677
-The maximum resident set size (KB) = 691912
+The total amount of wall time = 250.436915
+The maximum resident set size (KB) = 692492
Test 117 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_dyn32_phy32_intel
Checking test 118 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 92.610297
-The maximum resident set size (KB) = 672292
+The total amount of wall time = 93.137371
+The maximum resident set size (KB) = 676932
Test 118 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_control_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_control_intel
Checking test 119 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 116.188624
-The maximum resident set size (KB) = 1004708
+The total amount of wall time = 116.922325
+The maximum resident set size (KB) = 1007600
Test 119 conus13km_control_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_2threads_intel
Checking test 120 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 58.206397
-The maximum resident set size (KB) = 1008820
+The total amount of wall time = 60.646438
+The maximum resident set size (KB) = 1006948
Test 120 conus13km_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_restart_mismatch_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_restart_mismatch_intel
Checking test 121 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 68.898752
-The maximum resident set size (KB) = 882308
+The total amount of wall time = 70.187236
+The maximum resident set size (KB) = 881616
Test 121 conus13km_restart_mismatch_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_intel
Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 228.217239
-The maximum resident set size (KB) = 819428
+The total amount of wall time = 229.114228
+The maximum resident set size (KB) = 818692
Test 122 rap_control_dyn64_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_dyn32_phy32_intel
Checking test 123 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 292.350903
-The maximum resident set size (KB) = 954032
+The total amount of wall time = 293.962733
+The maximum resident set size (KB) = 955588
Test 123 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_dyn32_phy32_intel
Checking test 124 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 285.466234
-The maximum resident set size (KB) = 951840
+The total amount of wall time = 287.342628
+The maximum resident set size (KB) = 950560
Test 124 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_intel
Checking test 125 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 893.174876
-The maximum resident set size (KB) = 1037772
+The total amount of wall time = 883.460989
+The maximum resident set size (KB) = 1036696
Test 125 conus13km_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_qr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_qr_intel
Checking test 126 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 901.328606
-The maximum resident set size (KB) = 712580
+The total amount of wall time = 888.108565
+The maximum resident set size (KB) = 706376
Test 126 conus13km_debug_qr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_2threads_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_2threads_intel
Checking test 127 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 512.860826
-The maximum resident set size (KB) = 1039008
+The total amount of wall time = 507.466675
+The maximum resident set size (KB) = 1036128
Test 127 conus13km_debug_2threads_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_radar_tten_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_radar_tten_debug_intel
Checking test 128 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 895.827338
-The maximum resident set size (KB) = 1107244
+The total amount of wall time = 884.270449
+The maximum resident set size (KB) = 1106296
Test 128 conus13km_radar_tten_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_debug_intel
Checking test 129 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.717674
-The maximum resident set size (KB) = 974716
+The total amount of wall time = 296.714289
+The maximum resident set size (KB) = 976420
Test 129 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_intel
Checking test 130 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 344.518833
-The maximum resident set size (KB) = 618280
+The total amount of wall time = 343.708225
+The maximum resident set size (KB) = 620344
Test 130 hafs_regional_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 312.656069
-The maximum resident set size (KB) = 975072
+The total amount of wall time = 310.750633
+The maximum resident set size (KB) = 971820
Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_intel
Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 427.083376
-The maximum resident set size (KB) = 668296
+The total amount of wall time = 427.135080
+The maximum resident set size (KB) = 666972
Test 132 hafs_regional_atm_ocn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_wav_intel
Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 751.195662
-The maximum resident set size (KB) = 697528
+The total amount of wall time = 750.280372
+The maximum resident set size (KB) = 697912
Test 133 hafs_regional_atm_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_wav_intel
Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 943.834402
-The maximum resident set size (KB) = 706868
+The total amount of wall time = 943.861252
+The maximum resident set size (KB) = 707740
Test 134 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_1nest_atm_intel
Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 316.450239
-The maximum resident set size (KB) = 391032
+The total amount of wall time = 318.300582
+The maximum resident set size (KB) = 391780
Test 135 hafs_regional_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_telescopic_2nests_atm_intel
Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 403.413783
-The maximum resident set size (KB) = 409532
+The total amount of wall time = 406.481503
+The maximum resident set size (KB) = 419540
Test 136 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_1nest_atm_intel
Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 172.569478
-The maximum resident set size (KB) = 284704
+The total amount of wall time = 172.062043
+The maximum resident set size (KB) = 287092
Test 137 hafs_global_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_multiple_4nests_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_multiple_4nests_atm_intel
Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 483.212421
-The maximum resident set size (KB) = 372920
+The total amount of wall time = 482.747395
+The maximum resident set size (KB) = 373076
Test 138 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_specified_moving_1nest_atm_intel
Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 219.339089
-The maximum resident set size (KB) = 416332
+The total amount of wall time = 220.258526
+The maximum resident set size (KB) = 417436
Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 205.521077
-The maximum resident set size (KB) = 418608
+The total amount of wall time = 205.579863
+The maximum resident set size (KB) = 417588
Test 140 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 263.366887
-The maximum resident set size (KB) = 486272
+The total amount of wall time = 263.044010
+The maximum resident set size (KB) = 493596
Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_storm_following_1nest_atm_intel
Checking test 142 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 90.549217
-The maximum resident set size (KB) = 321300
+The total amount of wall time = 90.653026
+The maximum resident set size (KB) = 312096
Test 142 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_nested_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_nested_intel
Checking test 143 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 239.859329
-The maximum resident set size (KB) = 686160
+The total amount of wall time = 236.838277
+The maximum resident set size (KB) = 678924
Test 143 gnv1_nested_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 814.470927
-The maximum resident set size (KB) = 502132
+The total amount of wall time = 814.688929
+The maximum resident set size (KB) = 507896
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 516.576260
-The maximum resident set size (KB) = 530244
+The total amount of wall time = 518.877349
+The maximum resident set size (KB) = 529744
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 528.709762
-The maximum resident set size (KB) = 717224
+The total amount of wall time = 523.529442
+The maximum resident set size (KB) = 713304
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 383.115405
-The maximum resident set size (KB) = 707136
+The total amount of wall time = 384.296917
+The maximum resident set size (KB) = 711192
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 396.820475
-The maximum resident set size (KB) = 657916
+The total amount of wall time = 391.242461
+The maximum resident set size (KB) = 662384
Test 148 hafs_regional_docn_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_oisst_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 395.778002
-The maximum resident set size (KB) = 639052
+The total amount of wall time = 399.081884
+The maximum resident set size (KB) = 651244
Test 149 hafs_regional_docn_oisst_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_datm_cdeps_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 945.419293
-The maximum resident set size (KB) = 889112
+The total amount of wall time = 948.178874
+The maximum resident set size (KB) = 882836
Test 150 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_intel
Checking test 151 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 143.012685
-The maximum resident set size (KB) = 749816
+The total amount of wall time = 142.737231
+The maximum resident set size (KB) = 739148
Test 151 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_restart_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_restart_cfsr_intel
Checking test 152 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 86.156702
-The maximum resident set size (KB) = 739564
+The total amount of wall time = 85.767235
+The maximum resident set size (KB) = 737496
Test 152 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_gefs_intel
Checking test 153 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.695417
-The maximum resident set size (KB) = 629496
+The total amount of wall time = 134.225087
+The maximum resident set size (KB) = 630348
Test 153 datm_cdeps_control_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_iau_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_iau_gefs_intel
Checking test 154 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 136.248477
-The maximum resident set size (KB) = 628208
+The total amount of wall time = 136.027695
+The maximum resident set size (KB) = 627288
Test 154 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_stochy_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_stochy_gefs_intel
Checking test 155 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 139.094410
-The maximum resident set size (KB) = 637792
+The total amount of wall time = 138.189035
+The maximum resident set size (KB) = 630032
Test 155 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_ciceC_cfsr_intel
Checking test 156 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 143.134562
-The maximum resident set size (KB) = 749684
+The total amount of wall time = 142.858978
+The maximum resident set size (KB) = 736528
Test 156 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_cfsr_intel
Checking test 157 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 143.261497
-The maximum resident set size (KB) = 751332
+The total amount of wall time = 143.675144
+The maximum resident set size (KB) = 750240
Test 157 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_gefs_intel
Checking test 158 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.663691
-The maximum resident set size (KB) = 630928
+The total amount of wall time = 134.471235
+The maximum resident set size (KB) = 629816
Test 158 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_cfsr_intel
Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 337.237935
-The maximum resident set size (KB) = 598288
+The total amount of wall time = 339.570269
+The maximum resident set size (KB) = 594880
Test 159 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_gefs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_gefs_intel
Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 338.187934
-The maximum resident set size (KB) = 581872
+The total amount of wall time = 337.599507
+The maximum resident set size (KB) = 578192
Test 160 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_multiple_files_cfsr_intel
Checking test 161 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.816363
-The maximum resident set size (KB) = 750292
+The total amount of wall time = 143.009275
+The maximum resident set size (KB) = 750628
Test 161 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_3072x1536_cfsr_intel
Checking test 162 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 261.035149
-The maximum resident set size (KB) = 2010712
+The total amount of wall time = 262.534235
+The maximum resident set size (KB) = 2008420
Test 162 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_gfs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_gfs_intel
Checking test 163 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 262.797641
-The maximum resident set size (KB) = 2002756
+The total amount of wall time = 262.895755
+The maximum resident set size (KB) = 2006316
Test 163 datm_cdeps_gfs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_faster_intel
Checking test 164 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.957460
-The maximum resident set size (KB) = 750104
+The total amount of wall time = 142.374074
+The maximum resident set size (KB) = 748508
Test 164 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_gswp3_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_gswp3_intel
Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 57.185813
-The maximum resident set size (KB) = 221464
+The total amount of wall time = 57.476005
+The maximum resident set size (KB) = 225536
Test 165 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_intel
Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 57.839392
-The maximum resident set size (KB) = 369372
+The total amount of wall time = 58.564024
+The maximum resident set size (KB) = 368616
Test 166 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_rst_intel
Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 42.316296
-The maximum resident set size (KB) = 373544
+The total amount of wall time = 43.292506
+The maximum resident set size (KB) = 369724
Test 167 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_sbs_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_sbs_intel
Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 272.868141
-The maximum resident set size (KB) = 1546444
+The total amount of wall time = 276.384205
+The maximum resident set size (KB) = 1551876
Test 168 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_intel
Checking test 169 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 273.885303
-The maximum resident set size (KB) = 1546224
+The total amount of wall time = 277.102019
+The maximum resident set size (KB) = 1552436
Test 169 control_p8_atmlnd_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_atmlnd_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_atmlnd_intel
Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 154.539803
-The maximum resident set size (KB) = 746436
+The total amount of wall time = 152.901236
+The maximum resident set size (KB) = 741672
Test 170 control_restart_p8_atmlnd_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmwav_control_noaero_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmwav_control_noaero_p8_intel
Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 99.355693
-The maximum resident set size (KB) = 1542124
+The total amount of wall time = 99.922005
+The maximum resident set size (KB) = 1545684
Test 171 atmwav_control_noaero_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_atmwav_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_atmwav_intel
Checking test 172 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 91.398439
-The maximum resident set size (KB) = 543620
+The total amount of wall time = 91.869972
+The maximum resident set size (KB) = 544992
Test 172 control_atmwav_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_intel
Checking test 173 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 237.485997
-The maximum resident set size (KB) = 2853732
+The total amount of wall time = 236.391729
+The maximum resident set size (KB) = 2855088
Test 173 atmaero_control_p8_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_intel
Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 276.392883
-The maximum resident set size (KB) = 2912172
+The total amount of wall time = 275.218701
+The maximum resident set size (KB) = 2910584
Test 174 atmaero_control_p8_rad_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_micro_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_micro_intel
Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 290.078744
-The maximum resident set size (KB) = 2926236
+The total amount of wall time = 290.955954
+The maximum resident set size (KB) = 2923376
Test 175 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_atmaq_debug_intel
+baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_atmaq_debug_intel
Checking test 176 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5840,12 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1314.650533
-The maximum resident set size (KB) = 4446796
+The total amount of wall time = 1320.468838
+The maximum resident set size (KB) = 4431444
Test 176 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 16:09:34 UTC 2024
-Elapsed time: 02h:01m:44s. Have a nice day!
+Tue Feb 13 22:50:28 UTC 2024
+Elapsed time: 01h:55m:24s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 94d295595d..a52b9fc8cf 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,60 +1,60 @@
-Mon 12 Feb 2024 01:36:18 PM MST
+Tue 13 Feb 2024 03:11:27 PM MST
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_intel elapsed time 680 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 1398 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 817 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 780 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 344 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 516 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 507 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 165 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 899 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 1050 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 457 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1174 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 972 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 722 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 344 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 1189 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1244 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 589 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 545 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 546 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 668 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_intel elapsed time 689 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 556 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 774 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 769 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 341 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 579 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 477 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 160 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 881 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 1018 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 1176 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 983 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 831 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 894 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 936 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 1254 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 615 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 1201 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 567 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 1156 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 666 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1321 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 288.602343
-The maximum resident set size (KB) = 3073956
+The total amount of wall time = 287.254314
+The maximum resident set size (KB) = 3072604
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 814.196932
-The maximum resident set size (KB) = 1687380
+The total amount of wall time = 813.470157
+The maximum resident set size (KB) = 1676184
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_iau_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 937.377291
-The maximum resident set size (KB) = 1823880
+The total amount of wall time = 910.181925
+The maximum resident set size (KB) = 1817456
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 476.203031
-The maximum resident set size (KB) = 952916
+The total amount of wall time = 441.345176
+The maximum resident set size (KB) = 956064
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 933.145973
-The maximum resident set size (KB) = 1655220
+The total amount of wall time = 934.102717
+The maximum resident set size (KB) = 1658572
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_gfsv17_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1287.378206
-The maximum resident set size (KB) = 1703508
+The total amount of wall time = 1297.227880
+The maximum resident set size (KB) = 1696772
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 331.920058
-The maximum resident set size (KB) = 3095304
+The total amount of wall time = 332.290618
+The maximum resident set size (KB) = 3094800
Test 007 cpld_control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 332.283151
-The maximum resident set size (KB) = 3095476
+The total amount of wall time = 329.571265
+The maximum resident set size (KB) = 3094048
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 196.217077
-The maximum resident set size (KB) = 3149996
+The total amount of wall time = 193.709056
+The maximum resident set size (KB) = 3149116
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_qr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 325.627887
-The maximum resident set size (KB) = 3128056
+The total amount of wall time = 325.601120
+The maximum resident set size (KB) = 3126328
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_qr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 223.557838
-The maximum resident set size (KB) = 3181580
+The total amount of wall time = 194.380642
+The maximum resident set size (KB) = 3179204
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_decomp_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_decomp_p8_intel
Checking test 012 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -829,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 325.031693
-The maximum resident set size (KB) = 3090352
+The total amount of wall time = 327.758742
+The maximum resident set size (KB) = 3089652
Test 012 cpld_decomp_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_p8_intel
Checking test 013 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -889,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 268.398233
-The maximum resident set size (KB) = 3386300
+The total amount of wall time = 269.560931
+The maximum resident set size (KB) = 3395808
Test 013 cpld_mpi_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_ciceC_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_ciceC_p8_intel
Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -961,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 328.715085
-The maximum resident set size (KB) = 3102656
+The total amount of wall time = 324.251159
+The maximum resident set size (KB) = 3099092
Test 014 cpld_control_ciceC_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c192_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c192_p8_intel
Checking test 015 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 588.682635
-The maximum resident set size (KB) = 3639424
+The total amount of wall time = 525.406322
+The maximum resident set size (KB) = 3634228
Test 015 cpld_control_c192_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_c192_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_c192_p8_intel
Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1081,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
-The total amount of wall time = 446.236767
-The maximum resident set size (KB) = 3617112
+The total amount of wall time = 351.476175
+The maximum resident set size (KB) = 3614552
Test 016 cpld_restart_c192_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_s2sa_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_s2sa_p8_intel
Checking test 017 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1139,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 309.203029
-The maximum resident set size (KB) = 3066608
+The total amount of wall time = 304.774265
+The maximum resident set size (KB) = 3062348
Test 017 cpld_s2sa_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_intel
Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1210,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 241.758081
-The maximum resident set size (KB) = 1678600
+The total amount of wall time = 241.190810
+The maximum resident set size (KB) = 1677764
Test 018 cpld_control_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_nowave_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_nowave_noaero_p8_intel
Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1279,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 247.043372
-The maximum resident set size (KB) = 1723372
+The total amount of wall time = 244.832020
+The maximum resident set size (KB) = 1722108
Test 019 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_p8_intel
Checking test 020 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1339,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 448.087267
-The maximum resident set size (KB) = 3146828
+The total amount of wall time = 456.601297
+The maximum resident set size (KB) = 3150724
Test 020 cpld_debug_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_noaero_p8_intel
Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1398,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 298.763897
-The maximum resident set size (KB) = 1697424
+The total amount of wall time = 301.016467
+The maximum resident set size (KB) = 1696460
Test 021 cpld_debug_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_agrid_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_agrid_intel
Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1467,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 243.589641
-The maximum resident set size (KB) = 1724812
+The total amount of wall time = 247.135439
+The maximum resident set size (KB) = 1721024
Test 022 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c48_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c48_intel
Checking test 023 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1524,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 388.455720
-The maximum resident set size (KB) = 2665152
+The total amount of wall time = 391.150267
+The maximum resident set size (KB) = 2665508
Test 023 cpld_control_c48_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1595,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 830.770867
-The maximum resident set size (KB) = 1697800
+The total amount of wall time = 832.000577
+The maximum resident set size (KB) = 1695256
Test 024 cpld_control_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1654,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 477.982337
-The maximum resident set size (KB) = 1012048
+The total amount of wall time = 436.875358
+The maximum resident set size (KB) = 1115432
Test 025 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1725,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 957.689695
-The maximum resident set size (KB) = 1668528
+The total amount of wall time = 950.678674
+The maximum resident set size (KB) = 1666736
Test 026 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_pdlib_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1784,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1352.203651
-The maximum resident set size (KB) = 1713100
+The total amount of wall time = 1348.056090
+The maximum resident set size (KB) = 1714360
Test 027 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_flake_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1802,14 +1802,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 202.034991
-The maximum resident set size (KB) = 665388
+The total amount of wall time = 197.885675
+The maximum resident set size (KB) = 666572
Test 028 control_flake_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1836,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 124.441774
-The maximum resident set size (KB) = 615936
+The total amount of wall time = 116.561731
+The maximum resident set size (KB) = 617504
Test 029 control_CubedSphereGrid_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1858,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 137.730464
-The maximum resident set size (KB) = 620336
+The total amount of wall time = 121.240894
+The maximum resident set size (KB) = 623180
Test 030 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_latlon_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1876,14 +1876,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 171.127843
-The maximum resident set size (KB) = 618024
+The total amount of wall time = 117.180024
+The maximum resident set size (KB) = 618180
Test 031 control_latlon_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1894,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 136.390977
-The maximum resident set size (KB) = 621092
+The total amount of wall time = 121.494351
+The maximum resident set size (KB) = 615772
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1940,14 +1940,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 310.765956
-The maximum resident set size (KB) = 729684
+The total amount of wall time = 310.447763
+The maximum resident set size (KB) = 728928
Test 033 control_c48_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1986,14 +1986,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 320.032655
-The maximum resident set size (KB) = 727880
+The total amount of wall time = 307.679009
+The maximum resident set size (KB) = 728796
Test 034 control_c48.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c192_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2004,14 +2004,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 491.553781
-The maximum resident set size (KB) = 738028
+The total amount of wall time = 462.463171
+The maximum resident set size (KB) = 734404
Test 035 control_c192_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2022,14 +2022,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 765.548261
-The maximum resident set size (KB) = 1053572
+The total amount of wall time = 492.477247
+The maximum resident set size (KB) = 1062296
Test 036 control_c384_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384gdas_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2072,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 511.921395
-The maximum resident set size (KB) = 1195448
+The total amount of wall time = 444.990483
+The maximum resident set size (KB) = 1197364
-Test 037 control_c384gdas_intel PASS
+Test 037 control_c384gdas_intel PASS Tries: 2
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2090,28 +2090,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 84.368241
-The maximum resident set size (KB) = 622972
+The total amount of wall time = 76.849499
+The maximum resident set size (KB) = 624776
Test 038 control_stochy_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 55.213178
-The maximum resident set size (KB) = 436564
+The total amount of wall time = 43.106187
+The maximum resident set size (KB) = 435120
Test 039 control_stochy_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2122,14 +2122,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 117.043323
-The maximum resident set size (KB) = 620120
+The total amount of wall time = 74.801693
+The maximum resident set size (KB) = 621904
Test 040 control_lndp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr4_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2144,14 +2144,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 167.870924
-The maximum resident set size (KB) = 615808
+The total amount of wall time = 117.990170
+The maximum resident set size (KB) = 616824
Test 041 control_iovr4_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr5_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2166,14 +2166,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 132.780874
-The maximum resident set size (KB) = 616668
+The total amount of wall time = 117.964044
+The maximum resident set size (KB) = 618400
Test 042 control_iovr5_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2220,14 +2220,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 151.182866
-The maximum resident set size (KB) = 1592816
+The total amount of wall time = 142.800335
+The maximum resident set size (KB) = 1591804
Test 043 control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8.v2.sfc_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2274,14 +2274,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 151.435672
-The maximum resident set size (KB) = 1601420
+The total amount of wall time = 142.134460
+The maximum resident set size (KB) = 1591764
Test 044 control_p8.v2.sfc_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_ugwpv1_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2328,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 156.573410
-The maximum resident set size (KB) = 1601464
+The total amount of wall time = 141.663756
+The maximum resident set size (KB) = 1596412
Test 045 control_p8_ugwpv1_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2374,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 82.133288
-The maximum resident set size (KB) = 791908
+The total amount of wall time = 78.345921
+The maximum resident set size (KB) = 792644
Test 046 control_restart_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_noqr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2428,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 144.799167
-The maximum resident set size (KB) = 1585932
+The total amount of wall time = 142.993127
+The maximum resident set size (KB) = 1583668
Test 047 control_noqr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_noqr_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2474,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 77.176710
-The maximum resident set size (KB) = 796552
+The total amount of wall time = 75.418276
+The maximum resident set size (KB) = 1233084
Test 048 control_restart_noqr_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_decomp_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2524,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 160.659227
-The maximum resident set size (KB) = 1590344
+The total amount of wall time = 146.173162
+The maximum resident set size (KB) = 1595912
Test 049 control_decomp_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_lndp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_lndp_intel
Checking test 050 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2550,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 288.334525
-The maximum resident set size (KB) = 1590840
+The total amount of wall time = 255.827887
+The maximum resident set size (KB) = 1593716
Test 050 control_p8_lndp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_rrtmgp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_rrtmgp_intel
Checking test 051 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2604,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 314.782282
-The maximum resident set size (KB) = 1648472
+The total amount of wall time = 189.288035
+The maximum resident set size (KB) = 1655748
Test 051 control_p8_rrtmgp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_mynn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_mynn_intel
Checking test 052 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2658,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 204.067715
-The maximum resident set size (KB) = 1600768
+The total amount of wall time = 143.920240
+The maximum resident set size (KB) = 1606076
Test 052 control_p8_mynn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/merra2_thompson_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/merra2_thompson_intel
Checking test 053 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2712,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 209.558273
-The maximum resident set size (KB) = 1605820
+The total amount of wall time = 171.463875
+The maximum resident set size (KB) = 1602292
Test 053 merra2_thompson_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_intel
Checking test 054 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2730,28 +2730,28 @@ Checking test 054 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 309.793229
-The maximum resident set size (KB) = 626840
+The total amount of wall time = 262.854666
+The maximum resident set size (KB) = 623168
Test 054 regional_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_restart_intel
Checking test 055 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 160.267760
-The maximum resident set size (KB) = 793720
+The total amount of wall time = 141.396684
+The maximum resident set size (KB) = 796584
Test 055 regional_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_decomp_intel
Checking test 056 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2762,14 +2762,14 @@ Checking test 056 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 360.013638
-The maximum resident set size (KB) = 627252
+The total amount of wall time = 275.916489
+The maximum resident set size (KB) = 625832
Test 056 regional_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_noquilt_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_noquilt_intel
Checking test 057 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2777,28 +2777,28 @@ Checking test 057 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 318.554664
-The maximum resident set size (KB) = 1156508
+The total amount of wall time = 257.381681
+The maximum resident set size (KB) = 1156736
Test 057 regional_noquilt_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_netcdf_parallel_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_netcdf_parallel_intel
Checking test 058 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 305.720100
-The maximum resident set size (KB) = 620564
+The total amount of wall time = 263.559213
+The maximum resident set size (KB) = 620612
Test 058 regional_netcdf_parallel_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_2dwrtdecomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_2dwrtdecomp_intel
Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2809,14 +2809,14 @@ Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 308.398466
-The maximum resident set size (KB) = 626556
+The total amount of wall time = 260.812041
+The maximum resident set size (KB) = 627064
Test 059 regional_2dwrtdecomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_wofs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_wofs_intel
Checking test 060 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2827,14 +2827,14 @@ Checking test 060 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 395.219570
-The maximum resident set size (KB) = 1596240
+The total amount of wall time = 328.778858
+The maximum resident set size (KB) = 1594792
Test 060 regional_wofs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_intel
Checking test 061 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2881,14 +2881,14 @@ Checking test 061 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 417.139771
-The maximum resident set size (KB) = 1007760
+The total amount of wall time = 356.929009
+The maximum resident set size (KB) = 1003840
Test 061 rap_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_intel
Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2899,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 205.921153
-The maximum resident set size (KB) = 1195768
+The total amount of wall time = 209.970037
+The maximum resident set size (KB) = 1191824
Test 062 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_decomp_intel
Checking test 063 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2953,14 +2953,14 @@ Checking test 063 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 499.315620
-The maximum resident set size (KB) = 1006488
+The total amount of wall time = 372.852716
+The maximum resident set size (KB) = 1004200
Test 063 rap_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_intel
Checking test 064 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2999,14 +2999,14 @@ Checking test 064 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 227.518708
-The maximum resident set size (KB) = 878812
+The total amount of wall time = 185.798213
+The maximum resident set size (KB) = 879780
Test 064 rap_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_intel
Checking test 065 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3053,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 387.246909
-The maximum resident set size (KB) = 1007368
+The total amount of wall time = 355.499946
+The maximum resident set size (KB) = 1004648
Test 065 rap_sfcdiff_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_decomp_intel
Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3107,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 456.217018
-The maximum resident set size (KB) = 1007816
+The total amount of wall time = 374.167272
+The maximum resident set size (KB) = 1004988
Test 066 rap_sfcdiff_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_restart_intel
Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 294.481127
-The maximum resident set size (KB) = 881392
+The total amount of wall time = 267.174430
+The maximum resident set size (KB) = 880868
Test 067 rap_sfcdiff_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_intel
Checking test 068 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 068 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 187.954364
-The maximum resident set size (KB) = 1003864
+The total amount of wall time = 183.993926
+The maximum resident set size (KB) = 1001636
Test 068 hrrr_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_intel
Checking test 069 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3261,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 205.126873
-The maximum resident set size (KB) = 1006420
+The total amount of wall time = 189.087480
+The maximum resident set size (KB) = 1000184
Test 069 hrrr_control_decomp_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_2threads_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_2threads_intel
Checking test 070 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3315,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 160.413069
-The maximum resident set size (KB) = 1087428
+The total amount of wall time = 160.563409
+The maximum resident set size (KB) = 1086684
Test 070 hrrr_control_2threads_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_intel
Checking test 071 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 102.313442
-The maximum resident set size (KB) = 835272
+The total amount of wall time = 97.735325
+The maximum resident set size (KB) = 833232
Test 071 hrrr_control_restart_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_intel
Checking test 072 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3383,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 403.713541
-The maximum resident set size (KB) = 996680
+The total amount of wall time = 349.772421
+The maximum resident set size (KB) = 1002044
Test 072 rrfs_v1beta_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_intel
Checking test 073 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3405,14 +3405,14 @@ Checking test 073 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 482.397635
-The maximum resident set size (KB) = 1960020
+The total amount of wall time = 433.501392
+The maximum resident set size (KB) = 1959088
Test 073 rrfs_v1nssl_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_nohailnoccn_intel
Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3427,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 419.172514
-The maximum resident set size (KB) = 1949072
+The total amount of wall time = 416.399889
+The maximum resident set size (KB) = 1947308
Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_intel
Checking test 075 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3445,14 +3445,14 @@ Checking test 075 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 305.898667
-The maximum resident set size (KB) = 689692
+The total amount of wall time = 305.189481
+The maximum resident set size (KB) = 689828
Test 075 control_csawmg_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_intel
Checking test 076 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3463,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 306.089390
-The maximum resident set size (KB) = 689164
+The total amount of wall time = 298.578545
+The maximum resident set size (KB) = 688216
Test 076 control_csawmgt_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_intel
Checking test 077 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3481,26 +3481,26 @@ Checking test 077 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 163.040855
-The maximum resident set size (KB) = 654060
+The total amount of wall time = 164.596704
+The maximum resident set size (KB) = 655364
Test 077 control_ras_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_intel
Checking test 078 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 104.626584
-The maximum resident set size (KB) = 381208
+The total amount of wall time = 104.408886
+The maximum resident set size (KB) = 381600
Test 078 control_wam_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_faster_intel
Checking test 079 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3547,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 144.889882
-The maximum resident set size (KB) = 1595648
+The total amount of wall time = 135.964840
+The maximum resident set size (KB) = 1599664
Test 079 control_p8_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_faster_intel
Checking test 080 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3565,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 323.096184
-The maximum resident set size (KB) = 629380
+The total amount of wall time = 248.143855
+The maximum resident set size (KB) = 624960
Test 080 regional_control_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_debug_intel
Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3599,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 145.177422
-The maximum resident set size (KB) = 795096
+The total amount of wall time = 145.917215
+The maximum resident set size (KB) = 794780
Test 081 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 141.945284
-The maximum resident set size (KB) = 795288
+The total amount of wall time = 140.354619
+The maximum resident set size (KB) = 790228
Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_debug_intel
Checking test 083 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 167.277840
-The maximum resident set size (KB) = 801296
+The total amount of wall time = 158.878128
+The maximum resident set size (KB) = 798644
Test 083 control_stochy_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_debug_intel
Checking test 084 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 150.997387
-The maximum resident set size (KB) = 801992
+The total amount of wall time = 142.957055
+The maximum resident set size (KB) = 798488
Test 084 control_lndp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_debug_intel
Checking test 085 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 225.445747
-The maximum resident set size (KB) = 837068
+The total amount of wall time = 224.583856
+The maximum resident set size (KB) = 833048
Test 085 control_csawmg_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_debug_intel
Checking test 086 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 225.115468
-The maximum resident set size (KB) = 836848
+The total amount of wall time = 224.450021
+The maximum resident set size (KB) = 834932
Test 086 control_csawmgt_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_debug_intel
Checking test 087 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 148.890614
-The maximum resident set size (KB) = 808844
+The total amount of wall time = 145.076383
+The maximum resident set size (KB) = 806452
Test 087 control_ras_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_diag_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_diag_debug_intel
Checking test 088 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 152.891124
-The maximum resident set size (KB) = 854444
+The total amount of wall time = 147.618483
+The maximum resident set size (KB) = 850876
-Test 088 control_diag_debug_intel PASS
+Test 088 control_diag_debug_intel PASS Tries: 2
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_debug_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_debug_p8_intel
Checking test 089 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 164.320659
-The maximum resident set size (KB) = 1632164
+The total amount of wall time = 149.410798
+The maximum resident set size (KB) = 1621016
Test 089 control_debug_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_debug_intel
Checking test 090 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 957.580876
-The maximum resident set size (KB) = 665856
+The total amount of wall time = 944.122716
+The maximum resident set size (KB) = 661380
Test 090 regional_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_intel
Checking test 091 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 280.137450
-The maximum resident set size (KB) = 1183164
+The total amount of wall time = 272.115364
+The maximum resident set size (KB) = 1175532
Test 091 rap_control_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_intel
Checking test 092 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 267.374479
-The maximum resident set size (KB) = 1173532
+The total amount of wall time = 261.245460
+The maximum resident set size (KB) = 1174580
Test 092 hrrr_control_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_gf_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_gf_debug_intel
Checking test 093 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 297.902826
-The maximum resident set size (KB) = 1179168
+The total amount of wall time = 266.651559
+The maximum resident set size (KB) = 1177592
Test 093 hrrr_gf_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_c3_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_c3_debug_intel
Checking test 094 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 270.386634
-The maximum resident set size (KB) = 1183592
+The total amount of wall time = 267.315434
+The maximum resident set size (KB) = 1179204
Test 094 hrrr_c3_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_drag_suite_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_drag_suite_debug_intel
Checking test 095 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 270.302507
-The maximum resident set size (KB) = 1182768
+The total amount of wall time = 267.705776
+The maximum resident set size (KB) = 1176796
Test 095 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_diag_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_diag_debug_intel
Checking test 096 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 283.259906
-The maximum resident set size (KB) = 1266396
+The total amount of wall time = 283.361639
+The maximum resident set size (KB) = 1263940
Test 096 rap_diag_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_cires_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_cires_ugwp_debug_intel
Checking test 097 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 275.841578
-The maximum resident set size (KB) = 1182244
+The total amount of wall time = 272.597051
+The maximum resident set size (KB) = 1177852
Test 097 rap_cires_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_ugwp_debug_intel
Checking test 098 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 273.776376
-The maximum resident set size (KB) = 1181452
+The total amount of wall time = 273.741989
+The maximum resident set size (KB) = 1178296
Test 098 rap_unified_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_lndp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_lndp_debug_intel
Checking test 099 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 270.128390
-The maximum resident set size (KB) = 1179364
+The total amount of wall time = 269.071855
+The maximum resident set size (KB) = 1179680
Test 099 rap_lndp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_progcld_thompson_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_progcld_thompson_debug_intel
Checking test 100 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.873664
-The maximum resident set size (KB) = 1179612
+The total amount of wall time = 281.137615
+The maximum resident set size (KB) = 1176468
Test 100 rap_progcld_thompson_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_debug_intel
Checking test 101 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.413581
-The maximum resident set size (KB) = 1176872
+The total amount of wall time = 262.781627
+The maximum resident set size (KB) = 1170608
Test 101 rap_noah_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_debug_intel
Checking test 102 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 267.450367
-The maximum resident set size (KB) = 1181404
+The total amount of wall time = 266.199180
+The maximum resident set size (KB) = 1179332
Test 102 rap_sfcdiff_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 437.998968
-The maximum resident set size (KB) = 1178544
+The total amount of wall time = 439.573070
+The maximum resident set size (KB) = 1176220
Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_debug_intel
Checking test 104 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 267.471450
-The maximum resident set size (KB) = 1175524
+The total amount of wall time = 265.933519
+The maximum resident set size (KB) = 1173608
Test 104 rrfs_v1beta_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_clm_lake_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_clm_lake_debug_intel
Checking test 105 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 336.511402
-The maximum resident set size (KB) = 1181144
+The total amount of wall time = 315.066589
+The maximum resident set size (KB) = 1180832
Test 105 rap_clm_lake_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_flake_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_flake_debug_intel
Checking test 106 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.971392
-The maximum resident set size (KB) = 1183748
+The total amount of wall time = 269.043588
+The maximum resident set size (KB) = 1181028
Test 106 rap_flake_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_c96_no_nest_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_c96_no_nest_debug_intel
Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -3997,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 465.482207
-The maximum resident set size (KB) = 1182972
+The total amount of wall time = 462.034280
+The maximum resident set size (KB) = 1177024
Test 107 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_debug_intel
Checking test 108 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 274.345175
-The maximum resident set size (KB) = 422312
+The total amount of wall time = 270.531881
+The maximum resident set size (KB) = 420028
Test 108 control_wam_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4027,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 212.965632
-The maximum resident set size (KB) = 1057376
+The total amount of wall time = 202.995920
+The maximum resident set size (KB) = 1053380
Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn32_phy32_intel
Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4081,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 297.864120
-The maximum resident set size (KB) = 881616
+The total amount of wall time = 298.089350
+The maximum resident set size (KB) = 879448
Test 110 rap_control_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_dyn32_phy32_intel
Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4135,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 156.884689
-The maximum resident set size (KB) = 881588
+The total amount of wall time = 161.175938
+The maximum resident set size (KB) = 877000
Test 111 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_dyn32_phy32_intel
Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4189,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 165.626405
-The maximum resident set size (KB) = 880152
+The total amount of wall time = 165.333934
+The maximum resident set size (KB) = 878356
Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_dyn32_phy32_intel
Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4235,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 222.089931
-The maximum resident set size (KB) = 795168
+The total amount of wall time = 227.422230
+The maximum resident set size (KB) = 792956
Test 113 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_dyn32_phy32_intel
Checking test 114 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 83.327707
-The maximum resident set size (KB) = 774912
+The total amount of wall time = 82.898710
+The maximum resident set size (KB) = 774584
Test 114 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_control_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_control_intel
Checking test 115 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4272,40 +4272,40 @@ Checking test 115 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 106.401035
-The maximum resident set size (KB) = 1085956
+The total amount of wall time = 114.050530
+The maximum resident set size (KB) = 1087448
Test 115 conus13km_control_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_2threads_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_2threads_intel
Checking test 116 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 48.632565
-The maximum resident set size (KB) = 1365176
+The total amount of wall time = 51.633947
+The maximum resident set size (KB) = 1087780
Test 116 conus13km_2threads_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_restart_mismatch_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_restart_mismatch_intel
Checking test 117 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 61.284476
-The maximum resident set size (KB) = 975664
+The total amount of wall time = 58.334294
+The maximum resident set size (KB) = 975668
Test 117 conus13km_restart_mismatch_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_intel
Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4352,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 210.883561
-The maximum resident set size (KB) = 905916
+The total amount of wall time = 209.677892
+The maximum resident set size (KB) = 907960
Test 118 rap_control_dyn64_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_dyn32_phy32_intel
Checking test 119 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 260.468033
-The maximum resident set size (KB) = 1052496
+The total amount of wall time = 260.797136
+The maximum resident set size (KB) = 1055904
Test 119 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_dyn32_phy32_intel
Checking test 120 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 254.759186
-The maximum resident set size (KB) = 1052188
+The total amount of wall time = 267.752256
+The maximum resident set size (KB) = 1056428
Test 120 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_debug_intel
Checking test 121 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4401,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 784.251934
-The maximum resident set size (KB) = 1130368
+The total amount of wall time = 791.728811
+The maximum resident set size (KB) = 1132840
Test 121 conus13km_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_radar_tten_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_radar_tten_debug_intel
Checking test 122 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 787.499656
-The maximum resident set size (KB) = 1197980
+The total amount of wall time = 813.435144
+The maximum resident set size (KB) = 1199980
Test 122 conus13km_radar_tten_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_debug_intel
Checking test 123 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 268.565882
-The maximum resident set size (KB) = 1083652
+The total amount of wall time = 269.869857
+The maximum resident set size (KB) = 1078316
Test 123 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_intel
Checking test 124 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 273.589214
-The maximum resident set size (KB) = 716596
+The total amount of wall time = 266.084321
+The maximum resident set size (KB) = 711920
Test 124 hafs_regional_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 312.596870
-The maximum resident set size (KB) = 1067424
+The total amount of wall time = 303.657054
+The maximum resident set size (KB) = 1064772
Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_intel
Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4470,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 379.850360
-The maximum resident set size (KB) = 778160
+The total amount of wall time = 380.660268
+The maximum resident set size (KB) = 776016
Test 126 hafs_regional_atm_ocn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_wav_intel
Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4486,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 646.873869
-The maximum resident set size (KB) = 791380
+The total amount of wall time = 650.137569
+The maximum resident set size (KB) = 795664
Test 127 hafs_regional_atm_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_wav_intel
Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4504,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 716.296851
-The maximum resident set size (KB) = 807876
+The total amount of wall time = 724.238413
+The maximum resident set size (KB) = 809044
Test 128 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_1nest_atm_intel
Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4533,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 266.794227
-The maximum resident set size (KB) = 1365176
+The total amount of wall time = 269.115433
+The maximum resident set size (KB) = 475676
Test 129 hafs_regional_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_telescopic_2nests_atm_intel
Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4549,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 333.562804
-The maximum resident set size (KB) = 497284
+The total amount of wall time = 335.884116
+The maximum resident set size (KB) = 493196
Test 130 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_1nest_atm_intel
Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4603,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 132.995751
-The maximum resident set size (KB) = 392268
+The total amount of wall time = 127.036100
+The maximum resident set size (KB) = 389448
Test 131 hafs_global_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_multiple_4nests_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_multiple_4nests_atm_intel
Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4692,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 370.955412
-The maximum resident set size (KB) = 456392
+The total amount of wall time = 375.246874
+The maximum resident set size (KB) = 457472
Test 132 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_specified_moving_1nest_atm_intel
Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4708,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 189.016256
-The maximum resident set size (KB) = 511904
+The total amount of wall time = 187.079160
+The maximum resident set size (KB) = 508036
Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_intel
Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4737,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 173.741243
-The maximum resident set size (KB) = 1233084
+The total amount of wall time = 174.805779
+The maximum resident set size (KB) = 511836
Test 134 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4753,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 217.563287
-The maximum resident set size (KB) = 586808
+The total amount of wall time = 222.392445
+The maximum resident set size (KB) = 587100
Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_storm_following_1nest_atm_intel
Checking test 136 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 64.779542
-The maximum resident set size (KB) = 427384
+The total amount of wall time = 66.240057
+The maximum resident set size (KB) = 429872
Test 136 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_nested_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_nested_intel
Checking test 137 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4821,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 192.661897
-The maximum resident set size (KB) = 784416
+The total amount of wall time = 197.748290
+The maximum resident set size (KB) = 783544
Test 137 gnv1_nested_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 732.193463
-The maximum resident set size (KB) = 611776
+The total amount of wall time = 719.803295
+The maximum resident set size (KB) = 611616
Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4853,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 419.068818
-The maximum resident set size (KB) = 626428
+The total amount of wall time = 424.211345
+The maximum resident set size (KB) = 623732
Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4871,14 +4871,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 422.708319
-The maximum resident set size (KB) = 681652
+The total amount of wall time = 424.242998
+The maximum resident set size (KB) = 677660
Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -4888,14 +4888,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 307.553309
-The maximum resident set size (KB) = 673860
+The total amount of wall time = 312.677914
+The maximum resident set size (KB) = 679512
Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_intel
Checking test 142 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4903,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 320.902519
-The maximum resident set size (KB) = 749688
+The total amount of wall time = 328.493783
+The maximum resident set size (KB) = 749004
Test 142 hafs_regional_docn_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_oisst_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_oisst_intel
Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4918,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 325.503921
-The maximum resident set size (KB) = 735064
+The total amount of wall time = 329.730264
+The maximum resident set size (KB) = 738300
Test 143 hafs_regional_docn_oisst_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_datm_cdeps_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_datm_cdeps_intel
Checking test 144 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 958.132693
-The maximum resident set size (KB) = 892076
+The total amount of wall time = 961.863712
+The maximum resident set size (KB) = 893760
Test 144 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_intel
Checking test 145 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 141.793267
-The maximum resident set size (KB) = 760576
+The total amount of wall time = 143.709114
+The maximum resident set size (KB) = 760508
Test 145 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_restart_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_restart_cfsr_intel
Checking test 146 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 85.265694
-The maximum resident set size (KB) = 749492
+The total amount of wall time = 87.967913
+The maximum resident set size (KB) = 748932
Test 146 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_gefs_intel
Checking test 147 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 134.524110
-The maximum resident set size (KB) = 641140
+The total amount of wall time = 134.874445
+The maximum resident set size (KB) = 640976
Test 147 datm_cdeps_control_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_iau_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_iau_gefs_intel
Checking test 148 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 136.665812
-The maximum resident set size (KB) = 639816
+The total amount of wall time = 137.946855
+The maximum resident set size (KB) = 724064
Test 148 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_stochy_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_stochy_gefs_intel
Checking test 149 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 137.937302
-The maximum resident set size (KB) = 639876
+The total amount of wall time = 137.770990
+The maximum resident set size (KB) = 641196
Test 149 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_ciceC_cfsr_intel
Checking test 150 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 143.269525
-The maximum resident set size (KB) = 760124
+The total amount of wall time = 142.112546
+The maximum resident set size (KB) = 760000
Test 150 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_cfsr_intel
Checking test 151 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.730302
-The maximum resident set size (KB) = 760396
+The total amount of wall time = 142.271849
+The maximum resident set size (KB) = 761236
Test 151 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_gefs_intel
Checking test 152 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 137.415426
-The maximum resident set size (KB) = 640580
+The total amount of wall time = 133.334822
+The maximum resident set size (KB) = 1233084
Test 152 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_cfsr_intel
Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5051,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 330.260535
-The maximum resident set size (KB) = 689340
+The total amount of wall time = 329.109469
+The maximum resident set size (KB) = 689436
Test 153 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_gefs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_gefs_intel
Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5067,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-The total amount of wall time = 329.095164
-The maximum resident set size (KB) = 674624
+The total amount of wall time = 327.403572
+The maximum resident set size (KB) = 669996
Test 154 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_multiple_files_cfsr_intel
Checking test 155 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 141.616972
-The maximum resident set size (KB) = 762216
+The total amount of wall time = 143.494820
+The maximum resident set size (KB) = 760780
Test 155 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_3072x1536_cfsr_intel
Checking test 156 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 228.600162
-The maximum resident set size (KB) = 2022960
+The total amount of wall time = 230.972903
+The maximum resident set size (KB) = 2019780
Test 156 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_gfs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_gfs_intel
Checking test 157 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 228.079068
-The maximum resident set size (KB) = 2020520
+The total amount of wall time = 230.700660
+The maximum resident set size (KB) = 2019700
Test 157 datm_cdeps_gfs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_debug_cfsr_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_debug_cfsr_intel
Checking test 158 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-The total amount of wall time = 300.854818
-The maximum resident set size (KB) = 745600
+The total amount of wall time = 300.017368
+The maximum resident set size (KB) = 732788
Test 158 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_faster_intel
Checking test 159 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-The total amount of wall time = 142.323304
-The maximum resident set size (KB) = 762756
+The total amount of wall time = 144.227402
+The maximum resident set size (KB) = 749192
Test 159 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_gswp3_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_gswp3_intel
Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5146,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-The total amount of wall time = 67.056311
-The maximum resident set size (KB) = 312788
+The total amount of wall time = 73.950560
+The maximum resident set size (KB) = 308924
Test 160 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_intel
Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5162,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 62.235638
-The maximum resident set size (KB) = 450668
+The total amount of wall time = 67.380854
+The maximum resident set size (KB) = 456020
Test 161 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_rst_intel
Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5178,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-The total amount of wall time = 40.095661
-The maximum resident set size (KB) = 449800
+The total amount of wall time = 37.293869
+The maximum resident set size (KB) = 449656
Test 162 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_sbs_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_sbs_intel
Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5274,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 499.137149
-The maximum resident set size (KB) = 1631368
+The total amount of wall time = 491.630899
+The maximum resident set size (KB) = 1632552
Test 163 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_intel
Checking test 164 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5370,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 543.898697
-The maximum resident set size (KB) = 1633272
+The total amount of wall time = 485.377504
+The maximum resident set size (KB) = 1627324
Test 164 control_p8_atmlnd_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_atmlnd_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_atmlnd_intel
Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5398,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 312.354665
-The maximum resident set size (KB) = 849704
+The total amount of wall time = 263.797583
+The maximum resident set size (KB) = 847728
Test 165 control_restart_p8_atmlnd_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmwav_control_noaero_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmwav_control_noaero_p8_intel
Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5448,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-The total amount of wall time = 84.268422
-The maximum resident set size (KB) = 1637212
+The total amount of wall time = 84.633226
+The maximum resident set size (KB) = 1633040
Test 166 atmwav_control_noaero_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_atmwav_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_atmwav_intel
Checking test 167 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5499,14 +5499,14 @@ Checking test 167 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
-The total amount of wall time = 78.798429
-The maximum resident set size (KB) = 635264
+The total amount of wall time = 80.485781
+The maximum resident set size (KB) = 636108
Test 167 control_atmwav_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_intel
Checking test 168 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5550,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 214.964561
-The maximum resident set size (KB) = 2944800
+The total amount of wall time = 207.113665
+The maximum resident set size (KB) = 2944472
Test 168 atmaero_control_p8_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_intel
Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5601,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 250.475437
-The maximum resident set size (KB) = 3002404
+The total amount of wall time = 246.420830
+The maximum resident set size (KB) = 2996652
Test 169 atmaero_control_p8_rad_intel PASS
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_micro_intel
+baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_micro_intel
Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5652,12 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 264.243751
-The maximum resident set size (KB) = 3011032
+The total amount of wall time = 258.597767
+The maximum resident set size (KB) = 3010708
Test 170 atmaero_control_p8_rad_micro_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Mon 12 Feb 2024 05:17:17 PM MST
-Elapsed time: 03h:41m:00s. Have a nice day!
+Tue 13 Feb 2024 04:43:31 PM MST
+Elapsed time: 01h:34m:31s. Have a nice day!
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 46faa843f1..0ff1aab4f1 100644
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,62 +1,62 @@
-Mon 12 Feb 2024 03:08:37 PM EST
+Tue 13 Feb 2024 09:10:06 PM EST
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 332 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 594 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 642 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 335 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 641 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 640 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 667 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 671 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 330 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 643 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 326 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 732 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 637 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 750 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 699 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 653 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 674 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 444 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1151 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1121 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_mixedmode_intel
+Compile hafsw_intel elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 661 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 778 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 455 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1137 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 973 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 793 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 411 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 429 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1138 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 302.927125
- 0: The maximum resident set size (KB) = 3072904
+ 0: The total amount of wall time = 305.691523
+ 0: The maximum resident set size (KB) = 3075132
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 778.782654
- 0: The maximum resident set size (KB) = 1694684
+ 0: The total amount of wall time = 768.833767
+ 0: The maximum resident set size (KB) = 1696664
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_iau_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 839.979536
- 0: The maximum resident set size (KB) = 1807284
+ 0: The total amount of wall time = 1142.230940
+ 0: The maximum resident set size (KB) = 1808912
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 377.871790
- 0: The maximum resident set size (KB) = 943668
+ 0: The total amount of wall time = 505.755914
+ 0: The maximum resident set size (KB) = 945668
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 860.154351
- 0: The maximum resident set size (KB) = 1668000
+ 0: The total amount of wall time = 855.073506
+ 0: The maximum resident set size (KB) = 1668456
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_gfsv17_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1418.880398
- 0: The maximum resident set size (KB) = 1699528
+ 0: The total amount of wall time = 1505.226571
+ 0: The maximum resident set size (KB) = 1698600
-Test 006 cpld_debug_gfsv17_intel PASS
+Test 006 cpld_debug_gfsv17_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 351.184679
- 0: The maximum resident set size (KB) = 3099592
+ 0: The total amount of wall time = 345.484112
+ 0: The maximum resident set size (KB) = 3099188
Test 007 cpld_control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 346.673313
- 0: The maximum resident set size (KB) = 3098656
+ 0: The total amount of wall time = 346.484339
+ 0: The maximum resident set size (KB) = 3098412
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 206.050893
- 0: The maximum resident set size (KB) = 3157164
+ 0: The total amount of wall time = 200.236786
+ 0: The maximum resident set size (KB) = 3157348
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_qr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 349.819580
- 0: The maximum resident set size (KB) = 3123012
+ 0: The total amount of wall time = 350.840908
+ 0: The maximum resident set size (KB) = 3122872
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_qr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 208.099039
- 0: The maximum resident set size (KB) = 3177580
+ 0: The total amount of wall time = 204.831802
+ 0: The maximum resident set size (KB) = 3177892
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_2threads_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 316.039625
- 0: The maximum resident set size (KB) = 3408160
+ 0: The total amount of wall time = 312.769607
+ 0: The maximum resident set size (KB) = 3413048
-Test 012 cpld_2threads_p8_intel PASS
+Test 012 cpld_2threads_p8_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_decomp_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 342.515186
- 0: The maximum resident set size (KB) = 3097900
+ 0: The total amount of wall time = 341.872196
+ 0: The maximum resident set size (KB) = 3097968
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 291.518774
- 0: The maximum resident set size (KB) = 3022580
+ 0: The total amount of wall time = 288.676367
+ 0: The maximum resident set size (KB) = 3022548
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_ciceC_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 345.252258
- 0: The maximum resident set size (KB) = 3099892
+ 0: The total amount of wall time = 345.661533
+ 0: The maximum resident set size (KB) = 3099624
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c192_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 585.770834
- 0: The maximum resident set size (KB) = 3269848
+ 0: The total amount of wall time = 579.815625
+ 0: The maximum resident set size (KB) = 3266076
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_c192_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 399.216434
- 0: The maximum resident set size (KB) = 3606524
+ 0: The total amount of wall time = 395.432614
+ 0: The maximum resident set size (KB) = 3602020
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_bmark_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 720.776891
- 0: The maximum resident set size (KB) = 4040212
+ 0: The total amount of wall time = 716.188991
+ 0: The maximum resident set size (KB) = 4039344
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_bmark_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 501.070542
- 0: The maximum resident set size (KB) = 4347312
+ 0: The total amount of wall time = 678.789231
+ 0: The maximum resident set size (KB) = 4343348
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_s2sa_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 334.481915
- 0: The maximum resident set size (KB) = 3067832
+ 0: The total amount of wall time = 330.572343
+ 0: The maximum resident set size (KB) = 3067636
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 253.647382
- 0: The maximum resident set size (KB) = 1687916
+ 0: The total amount of wall time = 250.697619
+ 0: The maximum resident set size (KB) = 1687700
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_nowave_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 262.694999
- 0: The maximum resident set size (KB) = 1731580
+ 0: The total amount of wall time = 263.137295
+ 0: The maximum resident set size (KB) = 1733072
-Test 022 cpld_control_nowave_noaero_p8_intel PASS
+Test 022 cpld_control_nowave_noaero_p8_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 483.815659
- 0: The maximum resident set size (KB) = 3131940
+ 0: The total amount of wall time = 490.819261
+ 0: The maximum resident set size (KB) = 3133160
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 326.948123
- 0: The maximum resident set size (KB) = 1696372
+ 0: The total amount of wall time = 317.936060
+ 0: The maximum resident set size (KB) = 1698516
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_agrid_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 266.580683
- 0: The maximum resident set size (KB) = 1730812
+ 0: The total amount of wall time = 262.472674
+ 0: The maximum resident set size (KB) = 1728840
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c48_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 407.023321
- 0: The maximum resident set size (KB) = 2662848
+ 0: The total amount of wall time = 405.134034
+ 0: The maximum resident set size (KB) = 2658784
Test 026 cpld_control_c48_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 341.208407
- 0: The maximum resident set size (KB) = 3099324
+ 0: The total amount of wall time = 338.750993
+ 0: The maximum resident set size (KB) = 3099228
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 846.791363
- 0: The maximum resident set size (KB) = 1702492
+ 0: The total amount of wall time = 1021.284459
+ 0: The maximum resident set size (KB) = 1702192
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 406.875815
- 0: The maximum resident set size (KB) = 1001544
+ 0: The total amount of wall time = 585.151313
+ 0: The maximum resident set size (KB) = 1001268
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1000.903957
- 0: The maximum resident set size (KB) = 1683420
+ 0: The total amount of wall time = 1342.774093
+ 0: The maximum resident set size (KB) = 1682980
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_pdlib_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1578.890446
- 0: The maximum resident set size (KB) = 1710936
+ 0: The total amount of wall time = 1741.623600
+ 0: The maximum resident set size (KB) = 1707796
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_flake_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 197.519177
- 0: The maximum resident set size (KB) = 671944
+ 0: The total amount of wall time = 194.802237
+ 0: The maximum resident set size (KB) = 672956
Test 032 control_flake_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 123.053283
- 0: The maximum resident set size (KB) = 617448
+ 0: The total amount of wall time = 122.228754
+ 0: The maximum resident set size (KB) = 616988
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 129.731258
- 0: The maximum resident set size (KB) = 625648
+ 0: The total amount of wall time = 127.524716
+ 0: The maximum resident set size (KB) = 625552
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_latlon_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 125.065822
- 0: The maximum resident set size (KB) = 620888
+ 0: The total amount of wall time = 125.476680
+ 0: The maximum resident set size (KB) = 620552
Test 035 control_latlon_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 125.926854
- 0: The maximum resident set size (KB) = 620424
+ 0: The total amount of wall time = 177.930057
+ 0: The maximum resident set size (KB) = 620536
-Test 036 control_wrtGauss_netcdf_parallel_intel PASS
+Test 036 control_wrtGauss_netcdf_parallel_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 335.703017
-0: The maximum resident set size (KB) = 726784
+0: The total amount of wall time = 329.882070
+0: The maximum resident set size (KB) = 721068
Test 037 control_c48_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 338.261876
-0: The maximum resident set size (KB) = 726516
+0: The total amount of wall time = 331.177350
+0: The maximum resident set size (KB) = 726680
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c192_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2248,32 +2248,18 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 499.433304
- 0: The maximum resident set size (KB) = 738224
+ 0: The total amount of wall time = 497.207383
+ 0: The maximum resident set size (KB) = 737264
Test 039 control_c192_intel PASS
+Test 040 control_c384_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384_intel
-Checking test 040 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 957.979812
- 0: The maximum resident set size (KB) = 1039552
-
-Test 040 control_c384_intel PASS
+Test 040 control_c384_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384gdas_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2316,14 +2302,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 830.731498
- 0: The maximum resident set size (KB) = 1184096
+ 0: The total amount of wall time = 826.416654
+ 0: The maximum resident set size (KB) = 1184372
Test 041 control_c384gdas_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2334,28 +2320,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 82.901248
- 0: The maximum resident set size (KB) = 624520
+ 0: The total amount of wall time = 84.192079
+ 0: The maximum resident set size (KB) = 626112
Test 042 control_stochy_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 47.155766
- 0: The maximum resident set size (KB) = 428748
+ 0: The total amount of wall time = 44.747256
+ 0: The maximum resident set size (KB) = 428572
Test 043 control_stochy_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2366,14 +2352,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 78.253560
- 0: The maximum resident set size (KB) = 625668
+ 0: The total amount of wall time = 77.269382
+ 0: The maximum resident set size (KB) = 625808
Test 044 control_lndp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr4_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2388,14 +2374,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 123.806765
- 0: The maximum resident set size (KB) = 620592
+ 0: The total amount of wall time = 124.492942
+ 0: The maximum resident set size (KB) = 620832
Test 045 control_iovr4_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr5_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2410,14 +2396,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 126.325534
- 0: The maximum resident set size (KB) = 620664
+ 0: The total amount of wall time = 124.386097
+ 0: The maximum resident set size (KB) = 620328
-Test 046 control_iovr5_intel PASS
+Test 046 control_iovr5_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2464,14 +2450,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 151.419395
- 0: The maximum resident set size (KB) = 1608264
+ 0: The total amount of wall time = 150.440335
+ 0: The maximum resident set size (KB) = 1608432
Test 047 control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8.v2.sfc_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2518,14 +2504,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 152.534138
- 0: The maximum resident set size (KB) = 1608052
+ 0: The total amount of wall time = 152.796471
+ 0: The maximum resident set size (KB) = 1608352
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_ugwpv1_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2572,14 +2558,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 145.477010
- 0: The maximum resident set size (KB) = 1610928
+ 0: The total amount of wall time = 147.777482
+ 0: The maximum resident set size (KB) = 1611064
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2618,14 +2604,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 81.836517
- 0: The maximum resident set size (KB) = 791548
+ 0: The total amount of wall time = 80.544323
+ 0: The maximum resident set size (KB) = 790948
-Test 050 control_restart_p8_intel PASS
+Test 050 control_restart_p8_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_noqr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2672,14 +2658,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 151.188883
- 0: The maximum resident set size (KB) = 1596436
+ 0: The total amount of wall time = 147.931967
+ 0: The maximum resident set size (KB) = 1596776
Test 051 control_noqr_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_noqr_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2718,64 +2704,18 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 82.527801
- 0: The maximum resident set size (KB) = 794208
+ 0: The total amount of wall time = 79.281512
+ 0: The maximum resident set size (KB) = 794372
Test 052 control_restart_noqr_p8_intel PASS
+Test 053 control_decomp_p8_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_decomp_p8_intel
-Checking test 053 control_decomp_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 154.031589
- 0: The maximum resident set size (KB) = 1595768
-
-Test 053 control_decomp_p8_intel PASS
+Test 053 control_decomp_p8_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_2threads_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2818,14 +2758,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 132.017941
- 0: The maximum resident set size (KB) = 1679112
+ 0: The total amount of wall time = 130.458684
+ 0: The maximum resident set size (KB) = 1691040
-Test 054 control_2threads_p8_intel PASS
+Test 054 control_2threads_p8_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_lndp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2844,14 +2784,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 272.862503
- 0: The maximum resident set size (KB) = 1607632
+ 0: The total amount of wall time = 268.619402
+ 0: The maximum resident set size (KB) = 1608368
Test 055 control_p8_lndp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_rrtmgp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2898,14 +2838,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 203.167872
- 0: The maximum resident set size (KB) = 1658756
+ 0: The total amount of wall time = 201.397866
+ 0: The maximum resident set size (KB) = 1659016
-Test 056 control_p8_rrtmgp_intel PASS
+Test 056 control_p8_rrtmgp_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_mynn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2952,14 +2892,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 151.587152
- 0: The maximum resident set size (KB) = 1614716
+ 0: The total amount of wall time = 150.308794
+ 0: The maximum resident set size (KB) = 1614192
Test 057 control_p8_mynn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/merra2_thompson_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3006,14 +2946,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 181.405361
- 0: The maximum resident set size (KB) = 1615360
+ 0: The total amount of wall time = 180.102046
+ 0: The maximum resident set size (KB) = 1615268
Test 058 merra2_thompson_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3024,28 +2964,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 270.299632
- 0: The maximum resident set size (KB) = 617240
+ 0: The total amount of wall time = 404.799517
+ 0: The maximum resident set size (KB) = 619056
-Test 059 regional_control_intel PASS
+Test 059 regional_control_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 141.768709
- 0: The maximum resident set size (KB) = 790840
+ 0: The total amount of wall time = 256.263821
+ 0: The maximum resident set size (KB) = 791744
Test 060 regional_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3056,14 +2996,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 284.199929
- 0: The maximum resident set size (KB) = 615692
+ 0: The total amount of wall time = 280.323348
+ 0: The maximum resident set size (KB) = 618076
-Test 061 regional_decomp_intel PASS
+Test 061 regional_decomp_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3074,14 +3014,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 159.089309
- 0: The maximum resident set size (KB) = 758484
+ 0: The total amount of wall time = 156.148607
+ 0: The maximum resident set size (KB) = 760288
-Test 062 regional_2threads_intel PASS
+Test 062 regional_2threads_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_noquilt_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3089,28 +3029,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 262.559269
- 0: The maximum resident set size (KB) = 1154816
+ 0: The total amount of wall time = 260.048109
+ 0: The maximum resident set size (KB) = 1156968
Test 063 regional_noquilt_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_netcdf_parallel_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 264.529098
- 0: The maximum resident set size (KB) = 616676
+ 0: The total amount of wall time = 261.697345
+ 0: The maximum resident set size (KB) = 618524
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2dwrtdecomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3121,14 +3061,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 266.981263
- 0: The maximum resident set size (KB) = 617492
+ 0: The total amount of wall time = 267.488333
+ 0: The maximum resident set size (KB) = 619408
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_wofs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3139,14 +3079,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 344.823623
- 0: The maximum resident set size (KB) = 1590864
+ 0: The total amount of wall time = 344.792952
+ 0: The maximum resident set size (KB) = 1593180
Test 066 regional_wofs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3193,14 +3133,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 379.138083
- 0: The maximum resident set size (KB) = 1009772
+ 0: The total amount of wall time = 374.990671
+ 0: The maximum resident set size (KB) = 1009724
-Test 067 rap_control_intel PASS
+Test 067 rap_control_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3211,14 +3151,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 223.992209
- 0: The maximum resident set size (KB) = 1186336
+ 0: The total amount of wall time = 222.258833
+ 0: The maximum resident set size (KB) = 1186660
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3265,14 +3205,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 385.420782
- 0: The maximum resident set size (KB) = 1009116
+ 0: The total amount of wall time = 385.268902
+ 0: The maximum resident set size (KB) = 1009264
Test 069 rap_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3319,14 +3259,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 338.823571
- 0: The maximum resident set size (KB) = 1100420
+ 0: The total amount of wall time = 344.578925
+ 0: The maximum resident set size (KB) = 1094888
Test 070 rap_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3365,68 +3305,18 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 187.548879
- 0: The maximum resident set size (KB) = 878392
+ 0: The total amount of wall time = 190.039475
+ 0: The maximum resident set size (KB) = 878836
-Test 071 rap_restart_intel PASS
+Test 071 rap_restart_intel PASS Tries: 2
+Test 072 rap_sfcdiff_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_intel
-Checking test 072 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 373.753296
- 0: The maximum resident set size (KB) = 1007572
+Test 072 rap_sfcdiff_intel FAIL
-Test 072 rap_sfcdiff_intel PASS
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3473,60 +3363,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 395.947137
- 0: The maximum resident set size (KB) = 1005552
+ 0: The total amount of wall time = 386.309726
+ 0: The maximum resident set size (KB) = 1005580
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_restart_intel
-Checking test 074 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 280.753318
- 0: The maximum resident set size (KB) = 878588
-
-Test 074 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3573,14 +3417,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 194.449018
- 0: The maximum resident set size (KB) = 1004824
+ 0: The total amount of wall time = 192.160358
+ 0: The maximum resident set size (KB) = 1004964
Test 075 hrrr_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3627,14 +3471,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.593185
- 0: The maximum resident set size (KB) = 1006600
+ 0: The total amount of wall time = 197.403073
+ 0: The maximum resident set size (KB) = 1006352
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3681,28 +3525,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 175.491061
- 0: The maximum resident set size (KB) = 1078392
+ 0: The total amount of wall time = 171.970249
+ 0: The maximum resident set size (KB) = 1086060
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 102.325676
- 0: The maximum resident set size (KB) = 836064
+ 0: The total amount of wall time = 102.080757
+ 0: The maximum resident set size (KB) = 836524
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3749,14 +3593,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 366.309554
- 0: The maximum resident set size (KB) = 1001900
+ 0: The total amount of wall time = 366.664268
+ 0: The maximum resident set size (KB) = 1001700
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3771,14 +3615,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 458.099433
- 0: The maximum resident set size (KB) = 1967676
+ 0: The total amount of wall time = 636.969061
+ 0: The maximum resident set size (KB) = 1967556
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3793,14 +3637,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 444.214178
- 0: The maximum resident set size (KB) = 1953212
+ 0: The total amount of wall time = 608.083869
+ 0: The maximum resident set size (KB) = 1951840
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3811,14 +3655,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 322.372971
- 0: The maximum resident set size (KB) = 694272
+ 0: The total amount of wall time = 320.651353
+ 0: The maximum resident set size (KB) = 696016
Test 082 control_csawmg_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3829,14 +3673,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 318.059281
- 0: The maximum resident set size (KB) = 692400
+ 0: The total amount of wall time = 317.540935
+ 0: The maximum resident set size (KB) = 693824
Test 083 control_csawmgt_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3847,26 +3691,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 179.057987
- 0: The maximum resident set size (KB) = 654528
+ 0: The total amount of wall time = 173.559690
+ 0: The maximum resident set size (KB) = 658336
Test 084 control_ras_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 117.671119
- 0: The maximum resident set size (KB) = 369744
+ 0: The total amount of wall time = 113.521558
+ 0: The maximum resident set size (KB) = 369824
-Test 085 control_wam_intel PASS
+Test 085 control_wam_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3913,14 +3757,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 146.214110
- 0: The maximum resident set size (KB) = 1605608
+ 0: The total amount of wall time = 146.659178
+ 0: The maximum resident set size (KB) = 1605112
Test 086 control_p8_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3931,14 +3775,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 258.941700
- 0: The maximum resident set size (KB) = 612944
+ 0: The total amount of wall time = 258.664904
+ 0: The maximum resident set size (KB) = 610840
Test 087 regional_control_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3965,364 +3809,354 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 149.309010
- 0: The maximum resident set size (KB) = 777520
+ 0: The total amount of wall time = 147.109219
+ 0: The maximum resident set size (KB) = 778928
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 152.074319
- 0: The maximum resident set size (KB) = 780672
+ 0: The total amount of wall time = 143.565967
+ 0: The maximum resident set size (KB) = 782964
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 165.412939
- 0: The maximum resident set size (KB) = 781892
+ 0: The total amount of wall time = 165.617790
+ 0: The maximum resident set size (KB) = 786300
Test 090 control_stochy_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.849615
- 0: The maximum resident set size (KB) = 788124
+ 0: The total amount of wall time = 311.505065
+ 0: The maximum resident set size (KB) = 789604
Test 091 control_lndp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.935812
- 0: The maximum resident set size (KB) = 824544
+ 0: The total amount of wall time = 338.750301
+ 0: The maximum resident set size (KB) = 826628
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 231.763595
- 0: The maximum resident set size (KB) = 824980
+ 0: The total amount of wall time = 393.335626
+ 0: The maximum resident set size (KB) = 827424
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 149.810305
- 0: The maximum resident set size (KB) = 794536
+ 0: The total amount of wall time = 276.828082
+ 0: The maximum resident set size (KB) = 796316
Test 094 control_ras_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_diag_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 151.903900
- 0: The maximum resident set size (KB) = 842952
+ 0: The total amount of wall time = 152.496023
+ 0: The maximum resident set size (KB) = 844720
-Test 095 control_diag_debug_intel PASS
+Test 095 control_diag_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_debug_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 155.202235
- 0: The maximum resident set size (KB) = 1620448
+ 0: The total amount of wall time = 305.388531
+ 0: The maximum resident set size (KB) = 1622656
Test 096 control_debug_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 985.541916
- 0: The maximum resident set size (KB) = 634488
+ 0: The total amount of wall time = 1183.753954
+ 0: The maximum resident set size (KB) = 636760
Test 097 regional_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.677914
- 0: The maximum resident set size (KB) = 1166348
+ 0: The total amount of wall time = 320.423499
+ 0: The maximum resident set size (KB) = 1168824
Test 098 rap_control_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.010908
- 0: The maximum resident set size (KB) = 1165252
+ 0: The total amount of wall time = 407.957992
+ 0: The maximum resident set size (KB) = 1167056
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_gf_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.337256
- 0: The maximum resident set size (KB) = 1167208
+ 0: The total amount of wall time = 277.547241
+ 0: The maximum resident set size (KB) = 1169220
-Test 100 hrrr_gf_debug_intel PASS
+Test 100 hrrr_gf_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_c3_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 272.665035
- 0: The maximum resident set size (KB) = 1167392
+ 0: The total amount of wall time = 316.786811
+ 0: The maximum resident set size (KB) = 1169672
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_drag_suite_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.856031
- 0: The maximum resident set size (KB) = 1166516
+ 0: The total amount of wall time = 323.700824
+ 0: The maximum resident set size (KB) = 1168456
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_diag_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 287.949256
- 0: The maximum resident set size (KB) = 1250884
+ 0: The total amount of wall time = 292.714612
+ 0: The maximum resident set size (KB) = 1253424
-Test 103 rap_diag_debug_intel PASS
+Test 103 rap_diag_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_cires_ugwp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.827298
- 0: The maximum resident set size (KB) = 1165892
+ 0: The total amount of wall time = 279.857804
+ 0: The maximum resident set size (KB) = 1168648
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_ugwp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 285.495745
- 0: The maximum resident set size (KB) = 1167272
+ 0: The total amount of wall time = 286.273871
+ 0: The maximum resident set size (KB) = 1170168
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_lndp_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 284.721260
- 0: The maximum resident set size (KB) = 1168560
+ 0: The total amount of wall time = 290.273669
+ 0: The maximum resident set size (KB) = 1170664
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_progcld_thompson_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 285.671011
- 0: The maximum resident set size (KB) = 1166600
+ 0: The total amount of wall time = 274.403870
+ 0: The maximum resident set size (KB) = 1168416
-Test 107 rap_progcld_thompson_debug_intel PASS
+Test 107 rap_progcld_thompson_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.201106
- 0: The maximum resident set size (KB) = 1166588
+ 0: The total amount of wall time = 329.956206
+ 0: The maximum resident set size (KB) = 1168972
Test 108 rap_noah_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.987808
- 0: The maximum resident set size (KB) = 1164832
-
-Test 109 rap_sfcdiff_debug_intel PASS
+ 0: The total amount of wall time = 320.061225
+ 0: The maximum resident set size (KB) = 1167408
+Test 109 rap_sfcdiff_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 463.855002
- 0: The maximum resident set size (KB) = 1166328
+Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
+Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.616546
- 0: The maximum resident set size (KB) = 1162948
+ 0: The total amount of wall time = 290.893886
+ 0: The maximum resident set size (KB) = 1165244
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_clm_lake_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 350.255271
- 0: The maximum resident set size (KB) = 1168520
+ 0: The total amount of wall time = 423.564715
+ 0: The maximum resident set size (KB) = 1170568
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_flake_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 277.386397
- 0: The maximum resident set size (KB) = 1166480
+ 0: The total amount of wall time = 357.070975
+ 0: The maximum resident set size (KB) = 1169220
Test 113 rap_flake_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_c96_no_nest_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4363,26 +4197,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 482.040307
- 0: The maximum resident set size (KB) = 1169788
+ 0: The total amount of wall time = 579.574524
+ 0: The maximum resident set size (KB) = 1171924
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 282.300366
- 0: The maximum resident set size (KB) = 392188
+ 0: The total amount of wall time = 377.715248
+ 0: The maximum resident set size (KB) = 397156
Test 115 control_wam_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4393,14 +4227,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 210.379853
- 0: The maximum resident set size (KB) = 1054000
+ 0: The total amount of wall time = 350.365334
+ 0: The maximum resident set size (KB) = 1051460
-Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
+Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4447,14 +4281,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 311.230220
- 0: The maximum resident set size (KB) = 889908
+ 0: The total amount of wall time = 505.217133
+ 0: The maximum resident set size (KB) = 890260
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4501,14 +4335,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.719359
- 0: The maximum resident set size (KB) = 886208
+ 0: The total amount of wall time = 192.505764
+ 0: The maximum resident set size (KB) = 886092
-Test 118 hrrr_control_dyn32_phy32_intel PASS
+Test 118 hrrr_control_dyn32_phy32_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4555,14 +4389,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 285.761538
- 0: The maximum resident set size (KB) = 951776
+ 0: The total amount of wall time = 460.999501
+ 0: The maximum resident set size (KB) = 948216
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4609,14 +4443,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 149.749961
- 0: The maximum resident set size (KB) = 938040
+ 0: The total amount of wall time = 283.500072
+ 0: The maximum resident set size (KB) = 938248
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4663,14 +4497,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 174.239272
- 0: The maximum resident set size (KB) = 888324
+ 0: The total amount of wall time = 291.961136
+ 0: The maximum resident set size (KB) = 888120
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4709,28 +4543,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.852459
- 0: The maximum resident set size (KB) = 785876
+ 0: The total amount of wall time = 294.893484
+ 0: The maximum resident set size (KB) = 783724
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 86.420440
- 0: The maximum resident set size (KB) = 767620
+ 0: The total amount of wall time = 159.013967
+ 0: The maximum resident set size (KB) = 765744
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_control_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4746,40 +4580,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 102.771843
- 0: The maximum resident set size (KB) = 1094692
+ 0: The total amount of wall time = 238.284184
+ 0: The maximum resident set size (KB) = 1097172
Test 124 conus13km_control_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 48.958585
- 0: The maximum resident set size (KB) = 1075768
+ 0: The total amount of wall time = 1424.056822
+ 0: The maximum resident set size (KB) = 1076040
Test 125 conus13km_2threads_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_restart_mismatch_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 61.268495
- 0: The maximum resident set size (KB) = 974156
+ 0: The total amount of wall time = 62.067107
+ 0: The maximum resident set size (KB) = 976684
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4826,42 +4660,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 217.332559
- 0: The maximum resident set size (KB) = 907816
+ 0: The total amount of wall time = 362.031692
+ 0: The maximum resident set size (KB) = 909668
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.738767
- 0: The maximum resident set size (KB) = 1047968
+ 0: The total amount of wall time = 300.916820
+ 0: The maximum resident set size (KB) = 1046288
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 266.749135
- 0: The maximum resident set size (KB) = 1048824
+ 0: The total amount of wall time = 358.335556
+ 0: The maximum resident set size (KB) = 1046684
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4875,14 +4709,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 803.448842
- 0: The maximum resident set size (KB) = 1128628
+ 0: The total amount of wall time = 985.912212
+ 0: The maximum resident set size (KB) = 1126976
Test 130 conus13km_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_qr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4896,81 +4730,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 818.086461
- 0: The maximum resident set size (KB) = 804036
+ 0: The total amount of wall time = 875.833694
+ 0: The maximum resident set size (KB) = 801960
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_2threads_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 466.891916
- 0: The maximum resident set size (KB) = 1110412
+ 0: The total amount of wall time = 538.071379
+ 0: The maximum resident set size (KB) = 1108132
-Test 132 conus13km_debug_2threads_intel PASS
+Test 132 conus13km_debug_2threads_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_radar_tten_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 792.170378
- 0: The maximum resident set size (KB) = 1194948
+ 0: The total amount of wall time = 1019.130042
+ 0: The maximum resident set size (KB) = 1192772
-Test 133 conus13km_radar_tten_debug_intel PASS
+Test 133 conus13km_radar_tten_debug_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.661010
- 0: The maximum resident set size (KB) = 1071368
+ 0: The total amount of wall time = 327.827868
+ 0: The maximum resident set size (KB) = 1071348
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 300.148342
- 0: The maximum resident set size (KB) = 706592
+ 0: The total amount of wall time = 394.859453
+ 0: The maximum resident set size (KB) = 709124
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 251.051048
- 0: The maximum resident set size (KB) = 1058064
+ 0: The total amount of wall time = 368.021818
+ 0: The maximum resident set size (KB) = 1059212
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4979,14 +4813,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 388.277073
- 0: The maximum resident set size (KB) = 754736
+ 0: The total amount of wall time = 563.980963
+ 0: The maximum resident set size (KB) = 754340
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4995,14 +4829,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 685.855015
- 0: The maximum resident set size (KB) = 780600
+ 0: The total amount of wall time = 818.485575
+ 0: The maximum resident set size (KB) = 786392
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5013,14 +4847,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 770.726858
- 0: The maximum resident set size (KB) = 797796
+ 0: The total amount of wall time = 970.221527
+ 0: The maximum resident set size (KB) = 796688
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5042,14 +4876,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 301.517361
- 0: The maximum resident set size (KB) = 475292
+ 0: The total amount of wall time = 299.241608
+ 0: The maximum resident set size (KB) = 476680
-Test 140 hafs_regional_1nest_atm_intel PASS
+Test 140 hafs_regional_1nest_atm_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5058,14 +4892,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 386.976865
- 0: The maximum resident set size (KB) = 501012
+ 0: The total amount of wall time = 538.506677
+ 0: The maximum resident set size (KB) = 500536
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5075,7 +4909,7 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
@@ -5085,8 +4919,8 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
@@ -5112,14 +4946,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 159.524217
- 0: The maximum resident set size (KB) = 373112
+ 0: The total amount of wall time = 325.402668
+ 0: The maximum resident set size (KB) = 372812
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_multiple_4nests_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5180,7 +5014,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
@@ -5201,14 +5035,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 457.175622
- 0: The maximum resident set size (KB) = 444220
+ 0: The total amount of wall time = 607.170594
+ 0: The maximum resident set size (KB) = 445928
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5217,14 +5051,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 208.436538
- 0: The maximum resident set size (KB) = 508064
+ 0: The total amount of wall time = 299.932452
+ 0: The maximum resident set size (KB) = 509036
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5246,14 +5080,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 195.268159
- 0: The maximum resident set size (KB) = 510856
+ 0: The total amount of wall time = 279.497011
+ 0: The maximum resident set size (KB) = 511356
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5262,28 +5096,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 250.207912
- 0: The maximum resident set size (KB) = 574432
+ 0: The total amount of wall time = 271.799715
+ 0: The maximum resident set size (KB) = 574688
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 88.835893
- 0: The maximum resident set size (KB) = 403776
+ 0: The total amount of wall time = 137.813885
+ 0: The maximum resident set size (KB) = 403504
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_nested_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5303,7 +5137,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -5320,9 +5154,9 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
@@ -5330,28 +5164,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 219.702752
- 0: The maximum resident set size (KB) = 768252
+ 0: The total amount of wall time = 301.671339
+ 0: The maximum resident set size (KB) = 766116
Test 148 gnv1_nested_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 751.119629
- 0: The maximum resident set size (KB) = 585096
+ 0: The total amount of wall time = 911.754544
+ 0: The maximum resident set size (KB) = 583688
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5362,14 +5196,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 439.600538
- 0: The maximum resident set size (KB) = 613948
+ 0: The total amount of wall time = 579.569841
+ 0: The maximum resident set size (KB) = 615088
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5380,14 +5214,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 449.792963
- 0: The maximum resident set size (KB) = 785092
+ 0: The total amount of wall time = 637.421633
+ 0: The maximum resident set size (KB) = 781440
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5397,14 +5231,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 346.560106
- 0: The maximum resident set size (KB) = 786376
+ 0: The total amount of wall time = 457.873896
+ 0: The maximum resident set size (KB) = 786932
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5412,14 +5246,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 344.507089
- 0: The maximum resident set size (KB) = 745888
+ 0: The total amount of wall time = 530.960101
+ 0: The maximum resident set size (KB) = 744864
-Test 153 hafs_regional_docn_intel PASS
+Test 153 hafs_regional_docn_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_oisst_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5427,131 +5261,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 348.439224
- 0: The maximum resident set size (KB) = 726700
+ 0: The total amount of wall time = 423.683802
+ 0: The maximum resident set size (KB) = 731512
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_datm_cdeps_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 961.511637
- 0: The maximum resident set size (KB) = 893560
+ 0: The total amount of wall time = 1206.080002
+ 0: The maximum resident set size (KB) = 893656
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 143.070089
- 0: The maximum resident set size (KB) = 756320
+ 0: The total amount of wall time = 152.296553
+ 0: The maximum resident set size (KB) = 756308
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_restart_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 83.957679
- 0: The maximum resident set size (KB) = 745068
+ 0: The total amount of wall time = 110.710474
+ 0: The maximum resident set size (KB) = 745016
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 133.636546
- 0: The maximum resident set size (KB) = 637100
+ 0: The total amount of wall time = 137.907340
+ 0: The maximum resident set size (KB) = 637348
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_iau_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 133.872790
- 0: The maximum resident set size (KB) = 638372
+ 0: The total amount of wall time = 240.138601
+ 0: The maximum resident set size (KB) = 637192
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_stochy_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 134.520275
- 0: The maximum resident set size (KB) = 641208
+ 0: The total amount of wall time = 241.081740
+ 0: The maximum resident set size (KB) = 641328
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 140.615348
- 0: The maximum resident set size (KB) = 756648
+ 0: The total amount of wall time = 233.542610
+ 0: The maximum resident set size (KB) = 744688
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.417190
- 0: The maximum resident set size (KB) = 756620
+ 0: The total amount of wall time = 233.547377
+ 0: The maximum resident set size (KB) = 756252
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 131.740235
- 0: The maximum resident set size (KB) = 639596
+ 0: The total amount of wall time = 225.922704
+ 0: The maximum resident set size (KB) = 637292
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5560,14 +5394,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 331.774573
- 0: The maximum resident set size (KB) = 692708
+ 0: The total amount of wall time = 547.149693
+ 0: The maximum resident set size (KB) = 692740
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_gefs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5576,77 +5410,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 334.080217
- 0: The maximum resident set size (KB) = 672480
+ 0: The total amount of wall time = 556.076418
+ 0: The maximum resident set size (KB) = 672508
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.473619
- 0: The maximum resident set size (KB) = 756536
+ 0: The total amount of wall time = 150.416845
+ 0: The maximum resident set size (KB) = 755880
-Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
+Test 166 datm_cdeps_multiple_files_cfsr_intel PASS Tries: 2
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 270.517374
- 0: The maximum resident set size (KB) = 2012740
+ 0: The total amount of wall time = 466.632408
+ 0: The maximum resident set size (KB) = 2013792
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_gfs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 271.745924
- 0: The maximum resident set size (KB) = 2014856
+ 0: The total amount of wall time = 381.303280
+ 0: The maximum resident set size (KB) = 2013628
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_debug_cfsr_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 317.691659
- 0: The maximum resident set size (KB) = 741016
+ 0: The total amount of wall time = 341.693430
+ 0: The maximum resident set size (KB) = 741424
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 141.298008
- 0: The maximum resident set size (KB) = 744568
+ 0: The total amount of wall time = 269.164372
+ 0: The maximum resident set size (KB) = 756768
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_gswp3_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5655,14 +5489,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 62.974753
- 0: The maximum resident set size (KB) = 310752
+ 0: The total amount of wall time = 66.017192
+ 0: The maximum resident set size (KB) = 319204
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5671,14 +5505,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 54.722769
- 0: The maximum resident set size (KB) = 456600
+ 0: The total amount of wall time = 160.974419
+ 0: The maximum resident set size (KB) = 456484
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5687,14 +5521,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 38.979705
- 0: The maximum resident set size (KB) = 456520
+ 0: The total amount of wall time = 39.498505
+ 0: The maximum resident set size (KB) = 456476
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_sbs_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5783,14 +5617,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 367.320142
- 0: The maximum resident set size (KB) = 1642564
+ 0: The total amount of wall time = 496.918911
+ 0: The maximum resident set size (KB) = 1642988
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5879,14 +5713,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 370.429712
- 0: The maximum resident set size (KB) = 1642432
+ 0: The total amount of wall time = 498.954219
+ 0: The maximum resident set size (KB) = 1642236
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_atmlnd_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5907,14 +5741,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 189.071405
- 0: The maximum resident set size (KB) = 837012
+ 0: The total amount of wall time = 190.940690
+ 0: The maximum resident set size (KB) = 836732
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmwav_control_noaero_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5957,14 +5791,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 89.306919
- 0: The maximum resident set size (KB) = 1651488
+ 0: The total amount of wall time = 182.940262
+ 0: The maximum resident set size (KB) = 1647332
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_atmwav_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6008,14 +5842,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 84.693035
- 0: The maximum resident set size (KB) = 639252
+ 0: The total amount of wall time = 175.565771
+ 0: The maximum resident set size (KB) = 638728
Test 178 control_atmwav_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6059,14 +5893,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 241.128453
- 0: The maximum resident set size (KB) = 2942768
+ 0: The total amount of wall time = 365.960012
+ 0: The maximum resident set size (KB) = 2943092
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6110,14 +5944,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 275.081228
- 0: The maximum resident set size (KB) = 3011556
+ 0: The total amount of wall time = 279.156469
+ 0: The maximum resident set size (KB) = 3011516
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_micro_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6161,14 +5995,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 292.094812
- 0: The maximum resident set size (KB) = 3018492
+ 0: The total amount of wall time = 337.781265
+ 0: The maximum resident set size (KB) = 3018336
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_atmaq_debug_intel
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6182,12 +6016,299 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1089.115372
- 0: The maximum resident set size (KB) = 4486556
+ 0: The total amount of wall time = 1087.640368
+ 0: The maximum resident set size (KB) = 4484540
Test 182 regional_atmaq_debug_intel PASS
+FAILED TESTS:
+control_c384_intel 040 failed in run_test
+control_decomp_p8_intel 053 failed in run_test
+rap_sfcdiff_intel 072 failed in run_test
+rap_noah_sfcdiff_cires_ugwp_debug_intel 110 failed in run_test
+
+REGRESSION TEST FAILED
+Tue 13 Feb 2024 10:52:07 PM EST
+Elapsed time: 01h:42m:06s. Have a nice day!
+Wed 14 Feb 2024 03:43:30 PM EST
+Start Regression test
+
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
+Testing With Submodule Hashes:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile atm_debug_dyn32_intel elapsed time 410 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_c384_intel
+Checking test 001 control_c384_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf012.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf012.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF12 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
+
+ 0: The total amount of wall time = 961.784505
+ 0: The maximum resident set size (KB) = 1040328
+
+Test 001 control_c384_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_decomp_p8_intel
+Checking test 002 control_decomp_p8_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf024.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf024.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF24 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF24 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+ 0: The total amount of wall time = 153.274697
+ 0: The maximum resident set size (KB) = 1595576
+
+Test 002 control_decomp_p8_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_sfcdiff_intel
+Checking test 003 rap_sfcdiff_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf009.nc .........OK
+ Comparing sfcf012.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf009.nc .........OK
+ Comparing atmf012.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF09 .........OK
+ Comparing GFSFLX.GrbF12 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF09 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+ 0: The total amount of wall time = 379.638130
+ 0: The maximum resident set size (KB) = 1006728
+
+Test 003 rap_sfcdiff_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_noah_sfcdiff_cires_ugwp_debug_intel
+Checking test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf001.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf001.nc .........OK
+
+ 0: The total amount of wall time = 449.445488
+ 0: The maximum resident set size (KB) = 1168284
+
+Test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
+
+
+REGRESSION TEST WAS SUCCESSFUL
+Wed 14 Feb 2024 04:15:50 PM EST
+Elapsed time: 00h:32m:25s. Have a nice day!
+Wed 14 Feb 2024 06:07:11 PM EST
+Start Regression test
+
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
+Testing With Submodule Hashes:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile rrfs_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_intel
+Checking test 001 rap_sfcdiff_intel results ....
+ Comparing sfcf000.nc .........OK
+ Comparing sfcf009.nc .........OK
+ Comparing sfcf012.nc .........OK
+ Comparing atmf000.nc .........OK
+ Comparing atmf009.nc .........OK
+ Comparing atmf012.nc .........OK
+ Comparing GFSFLX.GrbF00 .........OK
+ Comparing GFSFLX.GrbF09 .........OK
+ Comparing GFSFLX.GrbF12 .........OK
+ Comparing GFSPRS.GrbF00 .........OK
+ Comparing GFSPRS.GrbF09 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+ 0: The total amount of wall time = 374.833523
+ 0: The maximum resident set size (KB) = 1006704
+
+Test 001 rap_sfcdiff_intel PASS
+
+
+baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_restart_intel
+Checking test 002 rap_sfcdiff_restart_intel results ....
+ Comparing sfcf012.nc .........OK
+ Comparing atmf012.nc .........OK
+ Comparing GFSFLX.GrbF12 .........OK
+ Comparing GFSPRS.GrbF12 .........OK
+ Comparing RESTART/20210323.060000.coupler.res .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+
+ 0: The total amount of wall time = 277.608350
+ 0: The maximum resident set size (KB) = 878472
+
+Test 002 rap_sfcdiff_restart_intel PASS
+
REGRESSION TEST WAS SUCCESSFUL
-Mon 12 Feb 2024 04:57:55 PM EST
-Elapsed time: 01h:49m:24s. Have a nice day!
+Wed 14 Feb 2024 06:35:45 PM EST
+Elapsed time: 00h:28m:40s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 59585fcf13..36c189d20a 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,76 +1,76 @@
-Mon Feb 12 19:47:52 UTC 2024
+Tue Feb 13 22:05:05 UTC 2024
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 302 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaero_intel elapsed time 590 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 619 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 362 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 817 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 370 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 659 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 698 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 634 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 815 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 941 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 255 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 978 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_mixedmode_intel
+Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 595 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 640 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 609 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 377 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 808 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 382 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 672 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 677 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 669 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 685 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 124 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_gnu elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 134 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 732 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 303.568631
- 0: The maximum resident set size (KB) = 3165948
+ 0: The total amount of wall time = 306.162434
+ 0: The maximum resident set size (KB) = 3177916
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 953.189154
- 0: The maximum resident set size (KB) = 1734356
+ 0: The total amount of wall time = 968.998956
+ 0: The maximum resident set size (KB) = 1735588
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_iau_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1000.322970
- 0: The maximum resident set size (KB) = 1976656
+ 0: The total amount of wall time = 989.232112
+ 0: The maximum resident set size (KB) = 2013228
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 444.097126
- 0: The maximum resident set size (KB) = 1107408
+ 0: The total amount of wall time = 444.956503
+ 0: The maximum resident set size (KB) = 1105260
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1086.535581
- 0: The maximum resident set size (KB) = 1609592
+ 0: The total amount of wall time = 1077.253317
+ 0: The maximum resident set size (KB) = 1632176
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_gfsv17_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1323.801230
- 0: The maximum resident set size (KB) = 1674992
+ 0: The total amount of wall time = 1326.420367
+ 0: The maximum resident set size (KB) = 1676540
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 327.204219
- 0: The maximum resident set size (KB) = 3179344
+ 0: The total amount of wall time = 329.579588
+ 0: The maximum resident set size (KB) = 3153600
Test 007 cpld_control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 326.626342
- 0: The maximum resident set size (KB) = 3164020
+ 0: The total amount of wall time = 325.639483
+ 0: The maximum resident set size (KB) = 3198172
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 187.411107
- 0: The maximum resident set size (KB) = 3224904
+ 0: The total amount of wall time = 188.165361
+ 0: The maximum resident set size (KB) = 3216844
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_qr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 333.008969
- 0: The maximum resident set size (KB) = 3174304
+ 0: The total amount of wall time = 330.401607
+ 0: The maximum resident set size (KB) = 3222660
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_qr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 188.438442
- 0: The maximum resident set size (KB) = 3218256
+ 0: The total amount of wall time = 190.367743
+ 0: The maximum resident set size (KB) = 3263160
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_2threads_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 309.850329
- 0: The maximum resident set size (KB) = 3533288
+ 0: The total amount of wall time = 313.046528
+ 0: The maximum resident set size (KB) = 3538236
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_decomp_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 326.885583
- 0: The maximum resident set size (KB) = 3148300
+ 0: The total amount of wall time = 361.106015
+ 0: The maximum resident set size (KB) = 3190880
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 270.450727
- 0: The maximum resident set size (KB) = 3010424
+ 0: The total amount of wall time = 272.126792
+ 0: The maximum resident set size (KB) = 3036460
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_ciceC_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 325.063135
- 0: The maximum resident set size (KB) = 3167680
+ 0: The total amount of wall time = 332.067931
+ 0: The maximum resident set size (KB) = 3198452
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c192_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 564.525842
- 0: The maximum resident set size (KB) = 3314568
+ 0: The total amount of wall time = 574.382600
+ 0: The maximum resident set size (KB) = 3323308
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_c192_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 346.698895
- 0: The maximum resident set size (KB) = 3603972
+ 0: The total amount of wall time = 348.063826
+ 0: The maximum resident set size (KB) = 3601716
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_bmark_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 590.466204
- 0: The maximum resident set size (KB) = 4099700
+ 0: The total amount of wall time = 584.257718
+ 0: The maximum resident set size (KB) = 4104988
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_bmark_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 382.195540
- 0: The maximum resident set size (KB) = 4338092
+ 0: The total amount of wall time = 380.069043
+ 0: The maximum resident set size (KB) = 4311528
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_s2sa_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 305.352616
- 0: The maximum resident set size (KB) = 3144248
+ 0: The total amount of wall time = 309.495065
+ 0: The maximum resident set size (KB) = 3116144
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 259.907598
- 0: The maximum resident set size (KB) = 1711160
+ 0: The total amount of wall time = 259.170830
+ 0: The maximum resident set size (KB) = 1724868
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 250.773875
- 0: The maximum resident set size (KB) = 1783816
+ 0: The total amount of wall time = 248.373795
+ 0: The maximum resident set size (KB) = 1726384
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 475.895126
- 0: The maximum resident set size (KB) = 3236412
+ 0: The total amount of wall time = 468.095557
+ 0: The maximum resident set size (KB) = 3230788
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 319.001112
- 0: The maximum resident set size (KB) = 1746856
+ 0: The total amount of wall time = 329.356604
+ 0: The maximum resident set size (KB) = 1739652
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_agrid_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 247.510976
- 0: The maximum resident set size (KB) = 1773060
+ 0: The total amount of wall time = 252.680842
+ 0: The maximum resident set size (KB) = 1763624
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c48_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 552.228821
- 0: The maximum resident set size (KB) = 2814960
+ 0: The total amount of wall time = 547.558782
+ 0: The maximum resident set size (KB) = 2834556
Test 026 cpld_control_c48_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 303.688245
- 0: The maximum resident set size (KB) = 3196616
+ 0: The total amount of wall time = 312.226704
+ 0: The maximum resident set size (KB) = 3153648
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 962.426891
- 0: The maximum resident set size (KB) = 1721908
+ 0: The total amount of wall time = 970.148394
+ 0: The maximum resident set size (KB) = 1761512
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 443.116180
- 0: The maximum resident set size (KB) = 1168896
+ 0: The total amount of wall time = 446.820891
+ 0: The maximum resident set size (KB) = 1164280
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1105.827106
- 0: The maximum resident set size (KB) = 1660240
+ 0: The total amount of wall time = 1103.855854
+ 0: The maximum resident set size (KB) = 1663148
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1464.899827
- 0: The maximum resident set size (KB) = 1637188
+ 0: The total amount of wall time = 1451.515831
+ 0: The maximum resident set size (KB) = 1707568
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 185.666624
- 0: The maximum resident set size (KB) = 695552
+ 0: The total amount of wall time = 219.217790
+ 0: The maximum resident set size (KB) = 693864
Test 032 control_flake_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,21 +2094,21 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 133.157021
- 0: The maximum resident set size (KB) = 644768
+ 0: The total amount of wall time = 133.045207
+ 0: The maximum resident set size (KB) = 648436
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_sfcf024.nc .........OK
Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK
Comparing GFSFLX.GrbF00 .........OK
@@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 137.664995
- 0: The maximum resident set size (KB) = 656332
+ 0: The total amount of wall time = 139.205123
+ 0: The maximum resident set size (KB) = 656152
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_latlon_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 133.333064
- 0: The maximum resident set size (KB) = 644048
+ 0: The total amount of wall time = 134.140836
+ 0: The maximum resident set size (KB) = 641040
Test 035 control_latlon_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 136.337441
- 0: The maximum resident set size (KB) = 651576
+ 0: The total amount of wall time = 137.680870
+ 0: The maximum resident set size (KB) = 651660
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 371.232212
-0: The maximum resident set size (KB) = 867588
+0: The total amount of wall time = 372.313279
+0: The maximum resident set size (KB) = 873512
Test 037 control_c48_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 371.884923
-0: The maximum resident set size (KB) = 867128
+0: The total amount of wall time = 366.728143
+0: The maximum resident set size (KB) = 875888
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c192_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 525.577267
- 0: The maximum resident set size (KB) = 851348
+ 0: The total amount of wall time = 529.665888
+ 0: The maximum resident set size (KB) = 829532
Test 039 control_c192_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 521.524701
- 0: The maximum resident set size (KB) = 1284192
+ 0: The total amount of wall time = 535.347948
+ 0: The maximum resident set size (KB) = 1278920
Test 040 control_c384_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384gdas_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2301,9 +2301,9 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
@@ -2312,7 +2312,7 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
@@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 455.726821
- 0: The maximum resident set size (KB) = 1392736
+ 0: The total amount of wall time = 461.803514
+ 0: The maximum resident set size (KB) = 1372832
Test 041 control_c384gdas_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 87.357503
- 0: The maximum resident set size (KB) = 634836
+ 0: The total amount of wall time = 87.259183
+ 0: The maximum resident set size (KB) = 630120
Test 042 control_stochy_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 48.495107
- 0: The maximum resident set size (KB) = 502228
+ 0: The total amount of wall time = 48.160569
+ 0: The maximum resident set size (KB) = 486068
Test 043 control_stochy_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 82.318434
- 0: The maximum resident set size (KB) = 624068
+ 0: The total amount of wall time = 121.485822
+ 0: The maximum resident set size (KB) = 619644
Test 044 control_lndp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr4_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 135.208785
- 0: The maximum resident set size (KB) = 638444
+ 0: The total amount of wall time = 170.093964
+ 0: The maximum resident set size (KB) = 655032
Test 045 control_iovr4_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr5_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 134.345735
- 0: The maximum resident set size (KB) = 653424
+ 0: The total amount of wall time = 161.361556
+ 0: The maximum resident set size (KB) = 652584
Test 046 control_iovr5_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.594205
- 0: The maximum resident set size (KB) = 1622864
+ 0: The total amount of wall time = 198.270991
+ 0: The maximum resident set size (KB) = 1601308
Test 047 control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8.v2.sfc_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 163.006437
- 0: The maximum resident set size (KB) = 1621616
+ 0: The total amount of wall time = 188.680172
+ 0: The maximum resident set size (KB) = 1625576
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 157.787667
- 0: The maximum resident set size (KB) = 1610164
+ 0: The total amount of wall time = 192.767254
+ 0: The maximum resident set size (KB) = 1620224
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 85.998651
- 0: The maximum resident set size (KB) = 888408
+ 0: The total amount of wall time = 86.418564
+ 0: The maximum resident set size (KB) = 854284
Test 050 control_restart_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_noqr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 163.693315
- 0: The maximum resident set size (KB) = 1591828
+ 0: The total amount of wall time = 191.623950
+ 0: The maximum resident set size (KB) = 1603972
Test 051 control_noqr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_noqr_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 84.403239
- 0: The maximum resident set size (KB) = 927348
+ 0: The total amount of wall time = 85.065777
+ 0: The maximum resident set size (KB) = 919876
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_decomp_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 170.679636
- 0: The maximum resident set size (KB) = 1581408
+ 0: The total amount of wall time = 196.597206
+ 0: The maximum resident set size (KB) = 1596456
Test 053 control_decomp_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_2threads_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 153.170645
- 0: The maximum resident set size (KB) = 1711716
+ 0: The total amount of wall time = 155.241568
+ 0: The maximum resident set size (KB) = 1703448
Test 054 control_2threads_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_lndp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 297.100669
- 0: The maximum resident set size (KB) = 1614324
+ 0: The total amount of wall time = 300.378090
+ 0: The maximum resident set size (KB) = 1617272
Test 055 control_p8_lndp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_rrtmgp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 216.981714
- 0: The maximum resident set size (KB) = 1659248
+ 0: The total amount of wall time = 219.686115
+ 0: The maximum resident set size (KB) = 1688940
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_mynn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 167.649312
- 0: The maximum resident set size (KB) = 1622436
+ 0: The total amount of wall time = 167.553918
+ 0: The maximum resident set size (KB) = 1627868
Test 057 control_p8_mynn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/merra2_thompson_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.941312
- 0: The maximum resident set size (KB) = 1631404
+ 0: The total amount of wall time = 195.904406
+ 0: The maximum resident set size (KB) = 1597612
Test 058 merra2_thompson_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 294.643744
- 0: The maximum resident set size (KB) = 854884
+ 0: The total amount of wall time = 297.111104
+ 0: The maximum resident set size (KB) = 844020
Test 059 regional_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 151.959387
- 0: The maximum resident set size (KB) = 1010872
+ 0: The total amount of wall time = 152.647192
+ 0: The maximum resident set size (KB) = 1020648
Test 060 regional_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 315.897742
- 0: The maximum resident set size (KB) = 838892
+ 0: The total amount of wall time = 315.300011
+ 0: The maximum resident set size (KB) = 843540
Test 061 regional_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 179.599481
- 0: The maximum resident set size (KB) = 845384
+ 0: The total amount of wall time = 181.531408
+ 0: The maximum resident set size (KB) = 849288
Test 062 regional_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_noquilt_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 296.636309
- 0: The maximum resident set size (KB) = 1364268
+ 0: The total amount of wall time = 296.596214
+ 0: The maximum resident set size (KB) = 1338020
Test 063 regional_noquilt_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_netcdf_parallel_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 293.186553
- 0: The maximum resident set size (KB) = 847864
+ 0: The total amount of wall time = 295.692822
+ 0: The maximum resident set size (KB) = 824912
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2dwrtdecomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 296.877507
- 0: The maximum resident set size (KB) = 837296
+ 0: The total amount of wall time = 296.807985
+ 0: The maximum resident set size (KB) = 842696
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_wofs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 383.315807
- 0: The maximum resident set size (KB) = 1913356
+ 0: The total amount of wall time = 385.259392
+ 0: The maximum resident set size (KB) = 1879360
Test 066 regional_wofs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 451.071493
- 0: The maximum resident set size (KB) = 1101988
+ 0: The total amount of wall time = 447.735147
+ 0: The maximum resident set size (KB) = 1099376
Test 067 rap_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 233.343673
- 0: The maximum resident set size (KB) = 1290280
+ 0: The total amount of wall time = 235.685180
+ 0: The maximum resident set size (KB) = 1278088
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 470.379858
- 0: The maximum resident set size (KB) = 1023536
+ 0: The total amount of wall time = 469.659764
+ 0: The maximum resident set size (KB) = 1030576
Test 069 rap_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 420.615985
- 0: The maximum resident set size (KB) = 1184948
+ 0: The total amount of wall time = 420.896042
+ 0: The maximum resident set size (KB) = 1184648
Test 070 rap_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.809108
- 0: The maximum resident set size (KB) = 1101576
+ 0: The total amount of wall time = 229.408216
+ 0: The maximum resident set size (KB) = 1097416
Test 071 rap_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 449.820455
- 0: The maximum resident set size (KB) = 1097124
+ 0: The total amount of wall time = 447.562148
+ 0: The maximum resident set size (KB) = 1098228
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 471.768325
- 0: The maximum resident set size (KB) = 1046940
+ 0: The total amount of wall time = 470.716123
+ 0: The maximum resident set size (KB) = 1009520
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 335.061895
- 0: The maximum resident set size (KB) = 1132580
+ 0: The total amount of wall time = 336.116479
+ 0: The maximum resident set size (KB) = 1137972
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 226.550141
- 0: The maximum resident set size (KB) = 1029352
+ 0: The total amount of wall time = 225.478341
+ 0: The maximum resident set size (KB) = 1041296
Test 075 hrrr_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.635964
- 0: The maximum resident set size (KB) = 1011600
+ 0: The total amount of wall time = 233.152144
+ 0: The maximum resident set size (KB) = 1022816
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 207.131294
- 0: The maximum resident set size (KB) = 1106600
+ 0: The total amount of wall time = 207.935391
+ 0: The maximum resident set size (KB) = 1107352
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 118.578114
- 0: The maximum resident set size (KB) = 998860
+ 0: The total amount of wall time = 119.176374
+ 0: The maximum resident set size (KB) = 994600
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 441.309666
- 0: The maximum resident set size (KB) = 1057360
+ 0: The total amount of wall time = 440.927449
+ 0: The maximum resident set size (KB) = 1104044
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 532.712054
- 0: The maximum resident set size (KB) = 1991160
+ 0: The total amount of wall time = 533.500649
+ 0: The maximum resident set size (KB) = 1991272
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 515.792700
- 0: The maximum resident set size (KB) = 2058992
+ 0: The total amount of wall time = 516.732822
+ 0: The maximum resident set size (KB) = 2069664
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 342.511531
- 0: The maximum resident set size (KB) = 742316
+ 0: The total amount of wall time = 339.421327
+ 0: The maximum resident set size (KB) = 743976
Test 082 control_csawmg_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 332.865752
- 0: The maximum resident set size (KB) = 747268
+ 0: The total amount of wall time = 334.268638
+ 0: The maximum resident set size (KB) = 742284
Test 083 control_csawmgt_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.934976
- 0: The maximum resident set size (KB) = 743008
+ 0: The total amount of wall time = 185.300313
+ 0: The maximum resident set size (KB) = 723772
Test 084 control_ras_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 111.464977
- 0: The maximum resident set size (KB) = 645704
+ 0: The total amount of wall time = 112.819380
+ 0: The maximum resident set size (KB) = 624276
Test 085 control_wam_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 146.712933
- 0: The maximum resident set size (KB) = 1617784
+ 0: The total amount of wall time = 146.236272
+ 0: The maximum resident set size (KB) = 1596032
Test 086 control_p8_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 268.418882
- 0: The maximum resident set size (KB) = 849792
+ 0: The total amount of wall time = 268.452383
+ 0: The maximum resident set size (KB) = 820308
Test 087 regional_control_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 147.944081
- 0: The maximum resident set size (KB) = 812608
+ 0: The total amount of wall time = 144.759495
+ 0: The maximum resident set size (KB) = 808376
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.780840
- 0: The maximum resident set size (KB) = 810360
+ 0: The total amount of wall time = 148.056577
+ 0: The maximum resident set size (KB) = 782400
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 165.247123
- 0: The maximum resident set size (KB) = 787628
+ 0: The total amount of wall time = 170.621498
+ 0: The maximum resident set size (KB) = 814680
Test 090 control_stochy_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 148.794493
- 0: The maximum resident set size (KB) = 808316
+ 0: The total amount of wall time = 150.698374
+ 0: The maximum resident set size (KB) = 814644
Test 091 control_lndp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.898822
- 0: The maximum resident set size (KB) = 860616
+ 0: The total amount of wall time = 234.371275
+ 0: The maximum resident set size (KB) = 860512
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 225.749094
- 0: The maximum resident set size (KB) = 856096
+ 0: The total amount of wall time = 228.111782
+ 0: The maximum resident set size (KB) = 860092
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 149.399603
- 0: The maximum resident set size (KB) = 823456
+ 0: The total amount of wall time = 151.576216
+ 0: The maximum resident set size (KB) = 793132
Test 094 control_ras_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 158.692059
- 0: The maximum resident set size (KB) = 871544
+ 0: The total amount of wall time = 155.262698
+ 0: The maximum resident set size (KB) = 867480
Test 095 control_diag_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 159.327726
- 0: The maximum resident set size (KB) = 1607588
+ 0: The total amount of wall time = 153.030753
+ 0: The maximum resident set size (KB) = 1633432
Test 096 control_debug_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 972.216738
- 0: The maximum resident set size (KB) = 824100
+ 0: The total amount of wall time = 995.960551
+ 0: The maximum resident set size (KB) = 817920
Test 097 regional_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 277.800839
- 0: The maximum resident set size (KB) = 1196052
+ 0: The total amount of wall time = 275.491454
+ 0: The maximum resident set size (KB) = 1199824
Test 098 rap_control_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 270.255123
- 0: The maximum resident set size (KB) = 1172544
+ 0: The total amount of wall time = 268.612901
+ 0: The maximum resident set size (KB) = 1192940
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.250044
- 0: The maximum resident set size (KB) = 1194996
+ 0: The total amount of wall time = 271.402722
+ 0: The maximum resident set size (KB) = 1196360
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.502518
- 0: The maximum resident set size (KB) = 1199632
+ 0: The total amount of wall time = 278.037371
+ 0: The maximum resident set size (KB) = 1175036
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_drag_suite_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 272.516051
- 0: The maximum resident set size (KB) = 1206560
+ 0: The total amount of wall time = 270.615026
+ 0: The maximum resident set size (KB) = 1196244
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 285.163902
- 0: The maximum resident set size (KB) = 1277132
+ 0: The total amount of wall time = 290.502510
+ 0: The maximum resident set size (KB) = 1288436
Test 103 rap_diag_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_cires_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 279.347147
- 0: The maximum resident set size (KB) = 1203408
+ 0: The total amount of wall time = 277.043924
+ 0: The maximum resident set size (KB) = 1204060
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 281.243572
- 0: The maximum resident set size (KB) = 1195820
+ 0: The total amount of wall time = 283.104663
+ 0: The maximum resident set size (KB) = 1192512
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_lndp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 275.585512
- 0: The maximum resident set size (KB) = 1194036
+ 0: The total amount of wall time = 277.681121
+ 0: The maximum resident set size (KB) = 1198384
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.649882
- 0: The maximum resident set size (KB) = 1191084
+ 0: The total amount of wall time = 274.242241
+ 0: The maximum resident set size (KB) = 1185836
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 268.867286
- 0: The maximum resident set size (KB) = 1193312
+ 0: The total amount of wall time = 273.000390
+ 0: The maximum resident set size (KB) = 1173384
Test 108 rap_noah_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 273.640190
- 0: The maximum resident set size (KB) = 1198552
+ 0: The total amount of wall time = 276.460737
+ 0: The maximum resident set size (KB) = 1195484
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 450.997682
- 0: The maximum resident set size (KB) = 1193464
+ 0: The total amount of wall time = 451.967356
+ 0: The maximum resident set size (KB) = 1194252
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 270.737051
- 0: The maximum resident set size (KB) = 1186396
+ 0: The total amount of wall time = 270.708863
+ 0: The maximum resident set size (KB) = 1160852
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 333.464130
- 0: The maximum resident set size (KB) = 1197984
+ 0: The total amount of wall time = 352.376767
+ 0: The maximum resident set size (KB) = 1169504
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 271.043080
- 0: The maximum resident set size (KB) = 1195892
+ 0: The total amount of wall time = 273.928310
+ 0: The maximum resident set size (KB) = 1195328
Test 113 rap_flake_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 477.896260
- 0: The maximum resident set size (KB) = 1201416
+ 0: The total amount of wall time = 470.323268
+ 0: The maximum resident set size (KB) = 1202908
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 279.368314
- 0: The maximum resident set size (KB) = 481600
+ 0: The total amount of wall time = 276.074908
+ 0: The maximum resident set size (KB) = 513360
Test 115 control_wam_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 221.770194
- 0: The maximum resident set size (KB) = 1150316
+ 0: The total amount of wall time = 222.475271
+ 0: The maximum resident set size (KB) = 1162940
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 369.556851
- 0: The maximum resident set size (KB) = 1056244
+ 0: The total amount of wall time = 368.075415
+ 0: The maximum resident set size (KB) = 1020500
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 190.427715
- 0: The maximum resident set size (KB) = 979816
+ 0: The total amount of wall time = 192.241907
+ 0: The maximum resident set size (KB) = 959544
Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 349.946379
- 0: The maximum resident set size (KB) = 1082320
+ 0: The total amount of wall time = 351.161966
+ 0: The maximum resident set size (KB) = 1080448
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 176.550235
- 0: The maximum resident set size (KB) = 959496
+ 0: The total amount of wall time = 177.729941
+ 0: The maximum resident set size (KB) = 948624
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 202.692334
- 0: The maximum resident set size (KB) = 911664
+ 0: The total amount of wall time = 205.199349
+ 0: The maximum resident set size (KB) = 922672
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 276.438246
- 0: The maximum resident set size (KB) = 1032892
+ 0: The total amount of wall time = 276.234428
+ 0: The maximum resident set size (KB) = 1034432
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 99.778809
- 0: The maximum resident set size (KB) = 929844
+ 0: The total amount of wall time = 100.806208
+ 0: The maximum resident set size (KB) = 925616
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 114.704915
- 0: The maximum resident set size (KB) = 1162016
+ 0: The total amount of wall time = 112.828621
+ 0: The maximum resident set size (KB) = 1194604
Test 124 conus13km_control_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 43.219208
- 0: The maximum resident set size (KB) = 1118396
+ 0: The total amount of wall time = 45.110413
+ 0: The maximum resident set size (KB) = 1090944
Test 125 conus13km_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 61.579077
- 0: The maximum resident set size (KB) = 1101688
+ 0: The total amount of wall time = 61.418232
+ 0: The maximum resident set size (KB) = 1104032
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.480859
- 0: The maximum resident set size (KB) = 986272
+ 0: The total amount of wall time = 243.026396
+ 0: The maximum resident set size (KB) = 987972
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.150312
- 0: The maximum resident set size (KB) = 1081460
+ 0: The total amount of wall time = 268.347578
+ 0: The maximum resident set size (KB) = 1072192
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 265.922374
- 0: The maximum resident set size (KB) = 1072500
+ 0: The total amount of wall time = 263.556254
+ 0: The maximum resident set size (KB) = 1073740
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 822.722419
- 0: The maximum resident set size (KB) = 1219912
+ 0: The total amount of wall time = 819.902654
+ 0: The maximum resident set size (KB) = 1206660
Test 130 conus13km_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 814.866061
- 0: The maximum resident set size (KB) = 918584
+ 0: The total amount of wall time = 827.951578
+ 0: The maximum resident set size (KB) = 908752
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 459.507598
- 0: The maximum resident set size (KB) = 1148604
+ 0: The total amount of wall time = 459.311316
+ 0: The maximum resident set size (KB) = 1127864
Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 830.181302
- 0: The maximum resident set size (KB) = 1292668
+ 0: The total amount of wall time = 815.471007
+ 0: The maximum resident set size (KB) = 1298260
Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.638429
- 0: The maximum resident set size (KB) = 1119064
+ 0: The total amount of wall time = 275.023432
+ 0: The maximum resident set size (KB) = 1114132
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 271.319114
- 0: The maximum resident set size (KB) = 735252
+ 0: The total amount of wall time = 272.728122
+ 0: The maximum resident set size (KB) = 734208
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 335.526396
- 0: The maximum resident set size (KB) = 1106148
+ 0: The total amount of wall time = 340.316314
+ 0: The maximum resident set size (KB) = 1116340
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 396.155571
- 0: The maximum resident set size (KB) = 827180
+ 0: The total amount of wall time = 393.271755
+ 0: The maximum resident set size (KB) = 829884
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 763.044752
- 0: The maximum resident set size (KB) = 852124
+ 0: The total amount of wall time = 766.764748
+ 0: The maximum resident set size (KB) = 851056
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 871.959441
- 0: The maximum resident set size (KB) = 881404
+ 0: The total amount of wall time = 872.297813
+ 0: The maximum resident set size (KB) = 880940
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 310.160417
- 0: The maximum resident set size (KB) = 502844
+ 0: The total amount of wall time = 305.063069
+ 0: The maximum resident set size (KB) = 499900
Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 389.580576
- 0: The maximum resident set size (KB) = 521436
+ 0: The total amount of wall time = 370.430456
+ 0: The maximum resident set size (KB) = 519276
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5090,18 +5090,18 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
@@ -5116,7 +5116,7 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
@@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 156.092604
- 0: The maximum resident set size (KB) = 377028
+ 0: The total amount of wall time = 142.808134
+ 0: The maximum resident set size (KB) = 371724
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_multiple_4nests_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5160,12 +5160,12 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
@@ -5174,8 +5174,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
@@ -5196,9 +5196,9 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
@@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 413.646554
- 0: The maximum resident set size (KB) = 473780
+ 0: The total amount of wall time = 405.139106
+ 0: The maximum resident set size (KB) = 482556
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 214.551997
- 0: The maximum resident set size (KB) = 530400
+ 0: The total amount of wall time = 202.950076
+ 0: The maximum resident set size (KB) = 527260
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5256,18 +5256,18 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 206.391257
- 0: The maximum resident set size (KB) = 532260
+ 0: The total amount of wall time = 191.898417
+ 0: The maximum resident set size (KB) = 501616
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 241.659181
- 0: The maximum resident set size (KB) = 583064
+ 0: The total amount of wall time = 231.571873
+ 0: The maximum resident set size (KB) = 579512
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 62.026329
- 0: The maximum resident set size (KB) = 399936
+ 0: The total amount of wall time = 61.329785
+ 0: The maximum resident set size (KB) = 410592
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_nested_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5307,7 +5307,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
@@ -5315,7 +5315,7 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
@@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 224.890724
- 0: The maximum resident set size (KB) = 795792
+ 0: The total amount of wall time = 225.085301
+ 0: The maximum resident set size (KB) = 773060
Test 148 gnv1_nested_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 722.026750
- 0: The maximum resident set size (KB) = 548576
+ 0: The total amount of wall time = 730.627266
+ 0: The maximum resident set size (KB) = 566096
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 492.103995
- 0: The maximum resident set size (KB) = 624412
+ 0: The total amount of wall time = 501.588021
+ 0: The maximum resident set size (KB) = 666832
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 497.852704
- 0: The maximum resident set size (KB) = 739400
+ 0: The total amount of wall time = 501.186817
+ 0: The maximum resident set size (KB) = 712472
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 367.171305
- 0: The maximum resident set size (KB) = 725100
+ 0: The total amount of wall time = 369.989170
+ 0: The maximum resident set size (KB) = 725280
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 373.632735
- 0: The maximum resident set size (KB) = 792300
+ 0: The total amount of wall time = 360.104666
+ 0: The maximum resident set size (KB) = 821512
Test 153 hafs_regional_docn_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_oisst_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 358.388454
- 0: The maximum resident set size (KB) = 811556
+ 0: The total amount of wall time = 365.893227
+ 0: The maximum resident set size (KB) = 809828
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_datm_cdeps_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 950.899892
- 0: The maximum resident set size (KB) = 1219500
+ 0: The total amount of wall time = 953.706355
+ 0: The maximum resident set size (KB) = 1218248
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 153.853228
- 0: The maximum resident set size (KB) = 1123920
+ 0: The total amount of wall time = 189.001440
+ 0: The maximum resident set size (KB) = 1120900
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_restart_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 90.972188
- 0: The maximum resident set size (KB) = 1088780
+ 0: The total amount of wall time = 87.265260
+ 0: The maximum resident set size (KB) = 1082788
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 146.030170
- 0: The maximum resident set size (KB) = 1008768
+ 0: The total amount of wall time = 151.730363
+ 0: The maximum resident set size (KB) = 1007752
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_iau_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.345006
- 0: The maximum resident set size (KB) = 999632
+ 0: The total amount of wall time = 145.879436
+ 0: The maximum resident set size (KB) = 1009984
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_stochy_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.600625
- 0: The maximum resident set size (KB) = 1003720
+ 0: The total amount of wall time = 146.932874
+ 0: The maximum resident set size (KB) = 1010392
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.197015
- 0: The maximum resident set size (KB) = 1121144
+ 0: The total amount of wall time = 151.125900
+ 0: The maximum resident set size (KB) = 1116792
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.003110
- 0: The maximum resident set size (KB) = 1131948
+ 0: The total amount of wall time = 146.462636
+ 0: The maximum resident set size (KB) = 1128076
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 145.887089
- 0: The maximum resident set size (KB) = 1005404
+ 0: The total amount of wall time = 145.947523
+ 0: The maximum resident set size (KB) = 999268
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 356.695793
- 0: The maximum resident set size (KB) = 1052980
+ 0: The total amount of wall time = 363.063857
+ 0: The maximum resident set size (KB) = 1050356
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_gefs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 360.244361
- 0: The maximum resident set size (KB) = 1057408
+ 0: The total amount of wall time = 354.761206
+ 0: The maximum resident set size (KB) = 1034624
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 154.222800
- 0: The maximum resident set size (KB) = 1121736
+ 0: The total amount of wall time = 153.107517
+ 0: The maximum resident set size (KB) = 1120856
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 223.783340
- 0: The maximum resident set size (KB) = 2491360
+ 0: The total amount of wall time = 237.146043
+ 0: The maximum resident set size (KB) = 2479192
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_gfs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 223.247409
- 0: The maximum resident set size (KB) = 2484356
+ 0: The total amount of wall time = 221.421138
+ 0: The maximum resident set size (KB) = 2478172
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_debug_cfsr_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 354.179969
- 0: The maximum resident set size (KB) = 1043136
+ 0: The total amount of wall time = 351.095459
+ 0: The maximum resident set size (KB) = 1058080
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 149.295762
- 0: The maximum resident set size (KB) = 1131848
+ 0: The total amount of wall time = 150.920541
+ 0: The maximum resident set size (KB) = 1132024
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_gswp3_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 35.662665
- 0: The maximum resident set size (KB) = 252556
+ 0: The total amount of wall time = 37.105463
+ 0: The maximum resident set size (KB) = 250892
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 38.091672
- 0: The maximum resident set size (KB) = 319816
+ 0: The total amount of wall time = 39.542885
+ 0: The maximum resident set size (KB) = 320320
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 22.170708
- 0: The maximum resident set size (KB) = 315616
+ 0: The total amount of wall time = 23.025351
+ 0: The maximum resident set size (KB) = 314804
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_sbs_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 242.799798
- 0: The maximum resident set size (KB) = 1588680
+ 0: The total amount of wall time = 246.716362
+ 0: The maximum resident set size (KB) = 1590836
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 248.419274
- 0: The maximum resident set size (KB) = 1573676
+ 0: The total amount of wall time = 252.164238
+ 0: The maximum resident set size (KB) = 1585804
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_atmlnd_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 125.717673
- 0: The maximum resident set size (KB) = 894372
+ 0: The total amount of wall time = 125.134389
+ 0: The maximum resident set size (KB) = 896504
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmwav_control_noaero_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 92.732975
- 0: The maximum resident set size (KB) = 1655124
+ 0: The total amount of wall time = 96.948025
+ 0: The maximum resident set size (KB) = 1648620
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_atmwav_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 87.148476
- 0: The maximum resident set size (KB) = 668300
+ 0: The total amount of wall time = 91.828471
+ 0: The maximum resident set size (KB) = 664536
Test 178 control_atmwav_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 220.459272
- 0: The maximum resident set size (KB) = 3004436
+ 0: The total amount of wall time = 227.689705
+ 0: The maximum resident set size (KB) = 3018296
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 277.280527
- 0: The maximum resident set size (KB) = 3085148
+ 0: The total amount of wall time = 273.550039
+ 0: The maximum resident set size (KB) = 3077780
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_micro_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 290.237464
- 0: The maximum resident set size (KB) = 3095712
+ 0: The total amount of wall time = 294.145161
+ 0: The maximum resident set size (KB) = 3076980
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_atmaq_debug_intel
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6196,14 +6196,14 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1207.046141
- 0: The maximum resident set size (KB) = 4400692
+ 0: The total amount of wall time = 1213.370191
+ 0: The maximum resident set size (KB) = 4389792
Test 182 regional_atmaq_debug_intel PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_gnu
Checking test 183 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 681.675545
-0: The maximum resident set size (KB) = 794988
+0: The total amount of wall time = 688.205308
+0: The maximum resident set size (KB) = 792912
Test 183 control_c48_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_gnu
Checking test 184 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 236.825354
- 0: The maximum resident set size (KB) = 553272
+ 0: The total amount of wall time = 234.476749
+ 0: The maximum resident set size (KB) = 553528
Test 184 control_stochy_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_gnu
Checking test 185 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 281.241988
- 0: The maximum resident set size (KB) = 560788
+ 0: The total amount of wall time = 283.764946
+ 0: The maximum resident set size (KB) = 556652
Test 185 control_ras_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_gnu
Checking test 186 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 280.284469
- 0: The maximum resident set size (KB) = 1308004
+ 0: The total amount of wall time = 277.806156
+ 0: The maximum resident set size (KB) = 1307552
Test 186 control_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_gnu
Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 267.323340
- 0: The maximum resident set size (KB) = 1307348
+ 0: The total amount of wall time = 272.738007
+ 0: The maximum resident set size (KB) = 1312752
Test 187 control_p8_ugwpv1_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_gnu
Checking test 188 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 346.146210
- 0: The maximum resident set size (KB) = 599816
+ 0: The total amount of wall time = 340.912455
+ 0: The maximum resident set size (KB) = 601132
Test 188 control_flake_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_gnu
Checking test 189 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 689.690751
- 0: The maximum resident set size (KB) = 895100
+ 0: The total amount of wall time = 690.371459
+ 0: The maximum resident set size (KB) = 900684
Test 189 rap_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_gnu
Checking test 190 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 693.551294
- 0: The maximum resident set size (KB) = 898104
+ 0: The total amount of wall time = 695.688780
+ 0: The maximum resident set size (KB) = 901716
Test 190 rap_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_gnu
Checking test 191 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 611.268683
- 0: The maximum resident set size (KB) = 983768
+ 0: The total amount of wall time = 617.489798
+ 0: The maximum resident set size (KB) = 980016
Test 191 rap_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_gnu
Checking test 192 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 349.652861
- 0: The maximum resident set size (KB) = 625004
+ 0: The total amount of wall time = 356.741640
+ 0: The maximum resident set size (KB) = 624140
Test 192 rap_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_gnu
Checking test 193 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 684.575073
- 0: The maximum resident set size (KB) = 896844
+ 0: The total amount of wall time = 689.306122
+ 0: The maximum resident set size (KB) = 898992
Test 193 rap_sfcdiff_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_gnu
Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 692.956862
- 0: The maximum resident set size (KB) = 897036
+ 0: The total amount of wall time = 696.391226
+ 0: The maximum resident set size (KB) = 897384
Test 194 rap_sfcdiff_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_gnu
Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 514.611257
- 0: The maximum resident set size (KB) = 630024
+ 0: The total amount of wall time = 517.381590
+ 0: The maximum resident set size (KB) = 623932
Test 195 rap_sfcdiff_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_gnu
Checking test 196 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 347.599333
- 0: The maximum resident set size (KB) = 891568
+ 0: The total amount of wall time = 348.759366
+ 0: The maximum resident set size (KB) = 891576
Test 196 hrrr_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_noqr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_noqr_gnu
Checking test 197 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 346.276386
- 0: The maximum resident set size (KB) = 884948
+ 0: The total amount of wall time = 349.405197
+ 0: The maximum resident set size (KB) = 881776
Test 197 hrrr_control_noqr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_gnu
Checking test 198 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 304.725469
- 0: The maximum resident set size (KB) = 976560
+ 0: The total amount of wall time = 303.918514
+ 0: The maximum resident set size (KB) = 984328
Test 198 hrrr_control_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_gnu
Checking test 199 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 346.158226
- 0: The maximum resident set size (KB) = 892444
+ 0: The total amount of wall time = 351.623950
+ 0: The maximum resident set size (KB) = 897492
Test 199 hrrr_control_decomp_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_gnu
Checking test 200 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 201.082821
- 0: The maximum resident set size (KB) = 613028
+ 0: The total amount of wall time = 180.665847
+ 0: The maximum resident set size (KB) = 612808
Test 200 hrrr_control_restart_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_noqr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_noqr_gnu
Checking test 201 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 180.612869
- 0: The maximum resident set size (KB) = 707324
+ 0: The total amount of wall time = 178.922435
+ 0: The maximum resident set size (KB) = 705032
Test 201 hrrr_control_restart_noqr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_gnu
Checking test 202 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 669.572003
- 0: The maximum resident set size (KB) = 895348
+ 0: The total amount of wall time = 679.545568
+ 0: The maximum resident set size (KB) = 894672
Test 202 rrfs_v1beta_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_gnu
Checking test 203 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 83.770174
- 0: The maximum resident set size (KB) = 600416
+ 0: The total amount of wall time = 87.055437
+ 0: The maximum resident set size (KB) = 593248
Test 203 control_diag_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_gnu
Checking test 204 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 434.969481
- 0: The maximum resident set size (KB) = 602324
+ 0: The total amount of wall time = 445.636796
+ 0: The maximum resident set size (KB) = 595876
Test 204 regional_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_gnu
Checking test 205 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.029285
- 0: The maximum resident set size (KB) = 919844
+ 0: The total amount of wall time = 139.391328
+ 0: The maximum resident set size (KB) = 906260
Test 205 rap_control_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_gnu
Checking test 206 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 135.522272
- 0: The maximum resident set size (KB) = 911428
+ 0: The total amount of wall time = 139.619453
+ 0: The maximum resident set size (KB) = 902220
Test 206 hrrr_control_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_gnu
Checking test 207 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.930872
- 0: The maximum resident set size (KB) = 911460
+ 0: The total amount of wall time = 137.736098
+ 0: The maximum resident set size (KB) = 906700
Test 207 hrrr_gf_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_gnu
Checking test 208 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.866402
- 0: The maximum resident set size (KB) = 914132
+ 0: The total amount of wall time = 141.483182
+ 0: The maximum resident set size (KB) = 905752
Test 208 hrrr_c3_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_gnu
Checking test 209 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 150.728221
- 0: The maximum resident set size (KB) = 1005068
+ 0: The total amount of wall time = 154.912538
+ 0: The maximum resident set size (KB) = 991520
Test 209 rap_diag_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_gnu
Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 223.215254
- 0: The maximum resident set size (KB) = 873516
+ 0: The total amount of wall time = 224.830077
+ 0: The maximum resident set size (KB) = 870868
Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_gnu
Checking test 211 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 141.907998
- 0: The maximum resident set size (KB) = 885084
+ 0: The total amount of wall time = 142.457150
+ 0: The maximum resident set size (KB) = 909212
Test 211 rap_progcld_thompson_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_gnu
Checking test 212 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 139.755853
- 0: The maximum resident set size (KB) = 911388
+ 0: The total amount of wall time = 141.591540
+ 0: The maximum resident set size (KB) = 904240
Test 212 rrfs_v1beta_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_gnu
Checking test 213 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 79.026826
- 0: The maximum resident set size (KB) = 544284
+ 0: The total amount of wall time = 84.434006
+ 0: The maximum resident set size (KB) = 544460
Test 213 control_ras_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_gnu
Checking test 214 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 117.032905
- 0: The maximum resident set size (KB) = 543148
+ 0: The total amount of wall time = 122.999030
+ 0: The maximum resident set size (KB) = 538724
Test 214 control_stochy_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_gnu
Checking test 215 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 88.372124
- 0: The maximum resident set size (KB) = 1295696
+ 0: The total amount of wall time = 90.288640
+ 0: The maximum resident set size (KB) = 1276116
Test 215 control_debug_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_gnu
Checking test 216 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 138.439615
- 0: The maximum resident set size (KB) = 917516
+ 0: The total amount of wall time = 141.157374
+ 0: The maximum resident set size (KB) = 905656
Test 216 rap_flake_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_gnu
Checking test 217 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 157.204836
- 0: The maximum resident set size (KB) = 917908
+ 0: The total amount of wall time = 159.337129
+ 0: The maximum resident set size (KB) = 909784
Test 217 rap_clm_lake_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_gnu
Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.347977
- 0: The maximum resident set size (KB) = 917920
+ 0: The total amount of wall time = 241.112585
+ 0: The maximum resident set size (KB) = 919580
Test 218 gnv1_c96_no_nest_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_gnu
Checking test 219 control_wam_debug_gnu results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 137.421986
- 0: The maximum resident set size (KB) = 244972
+ 0: The total amount of wall time = 136.397136
+ 0: The maximum resident set size (KB) = 243708
Test 219 control_wam_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_gnu
Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 692.764510
- 0: The maximum resident set size (KB) = 750048
+ 0: The total amount of wall time = 701.163584
+ 0: The maximum resident set size (KB) = 749188
Test 220 rap_control_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_gnu
Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 355.454468
- 0: The maximum resident set size (KB) = 748012
+ 0: The total amount of wall time = 351.809217
+ 0: The maximum resident set size (KB) = 747952
Test 221 hrrr_control_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_gnu
Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 622.909581
- 0: The maximum resident set size (KB) = 804520
+ 0: The total amount of wall time = 621.928224
+ 0: The maximum resident set size (KB) = 806524
Test 222 rap_2threads_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_gnu
Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 305.705708
- 0: The maximum resident set size (KB) = 805892
+ 0: The total amount of wall time = 307.518689
+ 0: The maximum resident set size (KB) = 800100
Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_gnu
Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 352.538569
- 0: The maximum resident set size (KB) = 746216
+ 0: The total amount of wall time = 353.261201
+ 0: The maximum resident set size (KB) = 750032
Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_gnu
Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 517.257788
- 0: The maximum resident set size (KB) = 592932
+ 0: The total amount of wall time = 518.087953
+ 0: The maximum resident set size (KB) = 600172
Test 225 rap_restart_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_gnu
Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 185.821866
- 0: The maximum resident set size (KB) = 582260
+ 0: The total amount of wall time = 187.048900
+ 0: The maximum resident set size (KB) = 582988
Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_gnu
Checking test 227 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 241.101873
- 0: The maximum resident set size (KB) = 899848
+ 0: The total amount of wall time = 237.804391
+ 0: The maximum resident set size (KB) = 899928
Test 227 conus13km_control_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_gnu
Checking test 228 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 99.783553
- 0: The maximum resident set size (KB) = 937436
+ 0: The total amount of wall time = 100.544965
+ 0: The maximum resident set size (KB) = 935228
Test 228 conus13km_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_gnu
Checking test 229 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 127.730944
- 0: The maximum resident set size (KB) = 599308
+ 0: The total amount of wall time = 127.134943
+ 0: The maximum resident set size (KB) = 598668
Test 229 conus13km_restart_mismatch_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_gnu
Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 407.328008
- 0: The maximum resident set size (KB) = 787716
+ 0: The total amount of wall time = 404.788193
+ 0: The maximum resident set size (KB) = 789304
Test 230 rap_control_dyn64_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_gnu
Checking test 231 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 141.061955
- 0: The maximum resident set size (KB) = 763912
+ 0: The total amount of wall time = 138.906825
+ 0: The maximum resident set size (KB) = 762356
Test 231 rap_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_gnu
Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 138.516894
- 0: The maximum resident set size (KB) = 762000
+ 0: The total amount of wall time = 138.683647
+ 0: The maximum resident set size (KB) = 760040
Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_gnu
Checking test 233 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 415.930622
- 0: The maximum resident set size (KB) = 917172
+ 0: The total amount of wall time = 417.446415
+ 0: The maximum resident set size (KB) = 916864
Test 233 conus13km_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_gnu
Checking test 234 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 415.411982
- 0: The maximum resident set size (KB) = 637428
+ 0: The total amount of wall time = 413.994785
+ 0: The maximum resident set size (KB) = 634308
Test 234 conus13km_debug_qr_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_gnu
Checking test 235 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 250.018445
- 0: The maximum resident set size (KB) = 955564
+ 0: The total amount of wall time = 248.865783
+ 0: The maximum resident set size (KB) = 952708
Test 235 conus13km_debug_2threads_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_gnu
Checking test 236 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 415.685734
- 0: The maximum resident set size (KB) = 976656
+ 0: The total amount of wall time = 422.215745
+ 0: The maximum resident set size (KB) = 983396
Test 236 conus13km_radar_tten_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_gnu
Checking test 237 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 144.307142
- 0: The maximum resident set size (KB) = 792460
+ 0: The total amount of wall time = 141.860154
+ 0: The maximum resident set size (KB) = 786732
Test 237 rap_control_dyn64_phy32_debug_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_gnu
Checking test 238 cpld_control_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 630.737741
- 0: The maximum resident set size (KB) = 1508960
+ 0: The total amount of wall time = 624.600887
+ 0: The maximum resident set size (KB) = 1508816
Test 238 cpld_control_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_gnu
Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 376.902625
- 0: The maximum resident set size (KB) = 1405548
+ 0: The total amount of wall time = 375.478552
+ 0: The maximum resident set size (KB) = 1402492
Test 239 cpld_control_nowave_noaero_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_gnu
Checking test 240 cpld_debug_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 365.690517
- 0: The maximum resident set size (KB) = 1520780
+ 0: The total amount of wall time = 355.193204
+ 0: The maximum resident set size (KB) = 1519160
Test 240 cpld_debug_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_gnu
Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1309.292695
- 0: The maximum resident set size (KB) = 1381772
+ 0: The total amount of wall time = 1305.263114
+ 0: The maximum resident set size (KB) = 1377636
Test 241 cpld_control_pdlib_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_gnu
Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 762.149234
- 0: The maximum resident set size (KB) = 1387380
+ 0: The total amount of wall time = 761.740712
+ 0: The maximum resident set size (KB) = 1391124
Test 242 cpld_debug_pdlib_p8_gnu PASS
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_gnu
+baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_gnu
Checking test 243 datm_cdeps_control_cfsr_gnu results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 164.064629
- 0: The maximum resident set size (KB) = 695084
+ 0: The total amount of wall time = 175.601857
+ 0: The maximum resident set size (KB) = 700488
Test 243 datm_cdeps_control_cfsr_gnu PASS
REGRESSION TEST WAS SUCCESSFUL
-Mon Feb 12 21:38:25 UTC 2024
-Elapsed time: 01h:50m:34s. Have a nice day!
+Wed Feb 14 01:27:40 UTC 2024
+Elapsed time: 03h:22m:37s. Have a nice day!
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 52d0eb537b..1c31c7ef04 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,76 +1,76 @@
-Mon Feb 12 02:35:49 PM CST 2024
+Tue Feb 13 15:27:43 CST 2024
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 510 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 601 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 253 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 803 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 719 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 721 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 744 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 637 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 745 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 842 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 221 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 831 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 772 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 819 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 779 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 652 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 957 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 916 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 701 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1165 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 414 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 700 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1084 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1045 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 285 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 490 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1098 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_mixedmode_intel
+Compile atm_debug_dyn32_intel elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_debug_gnu elapsed time 531 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_dyn32_phy32_debug_gnu elapsed time 537 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_debug_gnu elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn64_phy32_gnu elapsed time 576 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaero_intel elapsed time 428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 209 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 403 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 599 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 336 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_gnu elapsed time 880 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 328 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 639 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 176 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 548 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 524 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_gnu elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 493 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_gnu elapsed time 959 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 640 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_gnu elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 179 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_gnu elapsed time 950 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 671 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_gnu elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_gnu elapsed time 970 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 684 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_gnu elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 451.823372
- 0: The maximum resident set size (KB) = 1889368
+ 0: The total amount of wall time = 437.888352
+ 0: The maximum resident set size (KB) = 1897992
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 783.487041
- 0: The maximum resident set size (KB) = 1765228
+ 0: The total amount of wall time = 874.181544
+ 0: The maximum resident set size (KB) = 1765068
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_iau_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 837.817324
- 0: The maximum resident set size (KB) = 2151536
+ 0: The total amount of wall time = 855.907654
+ 0: The maximum resident set size (KB) = 2156492
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 380.010740
- 0: The maximum resident set size (KB) = 1174540
+ 0: The total amount of wall time = 378.825787
+ 0: The maximum resident set size (KB) = 1189436
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 892.480567
- 0: The maximum resident set size (KB) = 1689272
+ 0: The total amount of wall time = 916.253251
+ 0: The maximum resident set size (KB) = 1689668
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_gfsv17_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1203.667275
- 0: The maximum resident set size (KB) = 1733732
+ 0: The total amount of wall time = 1219.029822
+ 0: The maximum resident set size (KB) = 1730396
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 446.297803
- 0: The maximum resident set size (KB) = 2077260
+ 0: The total amount of wall time = 452.148644
+ 0: The maximum resident set size (KB) = 2062320
Test 007 cpld_control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 461.152058
- 0: The maximum resident set size (KB) = 2057152
+ 0: The total amount of wall time = 444.970947
+ 0: The maximum resident set size (KB) = 2075400
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 254.110310
- 0: The maximum resident set size (KB) = 1978604
+ 0: The total amount of wall time = 258.335649
+ 0: The maximum resident set size (KB) = 1962816
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_qr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 458.574330
- 0: The maximum resident set size (KB) = 1992252
+ 0: The total amount of wall time = 454.842010
+ 0: The maximum resident set size (KB) = 1986628
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_qr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 266.614398
- 0: The maximum resident set size (KB) = 1747240
+ 0: The total amount of wall time = 319.217529
+ 0: The maximum resident set size (KB) = 1729840
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_2threads_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 550.067206
- 0: The maximum resident set size (KB) = 2493752
+ 0: The total amount of wall time = 539.659766
+ 0: The maximum resident set size (KB) = 2501924
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_decomp_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 476.512382
- 0: The maximum resident set size (KB) = 2057736
+ 0: The total amount of wall time = 448.604815
+ 0: The maximum resident set size (KB) = 2077108
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 401.178588
- 0: The maximum resident set size (KB) = 1883144
+ 0: The total amount of wall time = 382.464389
+ 0: The maximum resident set size (KB) = 1893244
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_ciceC_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 462.374245
- 0: The maximum resident set size (KB) = 2096304
+ 0: The total amount of wall time = 449.594208
+ 0: The maximum resident set size (KB) = 2075056
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c192_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 916.721771
- 0: The maximum resident set size (KB) = 2807628
+ 0: The total amount of wall time = 977.372712
+ 0: The maximum resident set size (KB) = 2810084
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_c192_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 347.504287
- 0: The maximum resident set size (KB) = 2923888
+ 0: The total amount of wall time = 345.344625
+ 0: The maximum resident set size (KB) = 2919944
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_bmark_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 527.530983
- 0: The maximum resident set size (KB) = 3626832
+ 0: The total amount of wall time = 521.869891
+ 0: The maximum resident set size (KB) = 3664192
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_bmark_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 361.132627
- 0: The maximum resident set size (KB) = 3611344
+ 0: The total amount of wall time = 391.132602
+ 0: The maximum resident set size (KB) = 3607392
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_s2sa_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 299.062655
- 0: The maximum resident set size (KB) = 2015620
+ 0: The total amount of wall time = 284.005064
+ 0: The maximum resident set size (KB) = 2023192
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 413.026049
- 0: The maximum resident set size (KB) = 1776820
+ 0: The total amount of wall time = 425.611750
+ 0: The maximum resident set size (KB) = 1772740
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_nowave_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 230.327785
- 0: The maximum resident set size (KB) = 1815740
+ 0: The total amount of wall time = 226.630814
+ 0: The maximum resident set size (KB) = 1827172
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 414.437688
- 0: The maximum resident set size (KB) = 2067420
+ 0: The total amount of wall time = 404.173642
+ 0: The maximum resident set size (KB) = 2039316
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 275.501105
- 0: The maximum resident set size (KB) = 1789356
+ 0: The total amount of wall time = 276.977445
+ 0: The maximum resident set size (KB) = 1782980
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_agrid_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 234.104777
- 0: The maximum resident set size (KB) = 1817736
+ 0: The total amount of wall time = 230.490661
+ 0: The maximum resident set size (KB) = 1824332
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c48_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 427.710294
- 0: The maximum resident set size (KB) = 2840708
+ 0: The total amount of wall time = 435.264082
+ 0: The maximum resident set size (KB) = 2833060
Test 026 cpld_control_c48_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 439.255864
- 0: The maximum resident set size (KB) = 2077380
+ 0: The total amount of wall time = 434.066483
+ 0: The maximum resident set size (KB) = 2096696
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 819.728581
- 0: The maximum resident set size (KB) = 1803056
+ 0: The total amount of wall time = 856.504774
+ 0: The maximum resident set size (KB) = 1825632
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 396.266881
- 0: The maximum resident set size (KB) = 1286388
+ 0: The total amount of wall time = 409.034960
+ 0: The maximum resident set size (KB) = 1304384
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 928.820630
- 0: The maximum resident set size (KB) = 1721252
+ 0: The total amount of wall time = 925.956399
+ 0: The maximum resident set size (KB) = 1721564
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_pdlib_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1286.314019
- 0: The maximum resident set size (KB) = 1764500
+ 0: The total amount of wall time = 1280.936967
+ 0: The maximum resident set size (KB) = 1780528
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 162.518769
- 0: The maximum resident set size (KB) = 705340
+ 0: The total amount of wall time = 173.789417
+ 0: The maximum resident set size (KB) = 724296
Test 032 control_flake_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2094,18 +2094,18 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 117.220259
- 0: The maximum resident set size (KB) = 659600
+ 0: The total amount of wall time = 118.806942
+ 0: The maximum resident set size (KB) = 661548
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
+ Comparing atmf000.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
Comparing cubed_sphere_grid_sfcf000.nc .........OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
@@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 125.322944
- 0: The maximum resident set size (KB) = 668656
+ 0: The total amount of wall time = 127.057585
+ 0: The maximum resident set size (KB) = 673924
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_latlon_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2134,32 +2134,32 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 116.347518
- 0: The maximum resident set size (KB) = 670628
+ 0: The total amount of wall time = 122.788113
+ 0: The maximum resident set size (KB) = 671632
Test 035 control_latlon_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
+ Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc .........OK
Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
+ Comparing atmf024.nc .........OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 119.598980
- 0: The maximum resident set size (KB) = 673448
+ 0: The total amount of wall time = 128.169366
+ 0: The maximum resident set size (KB) = 671440
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 340.966705
-0: The maximum resident set size (KB) = 870532
+0: The total amount of wall time = 341.554025
+0: The maximum resident set size (KB) = 867892
Test 037 control_c48_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 341.901668
-0: The maximum resident set size (KB) = 864788
+0: The total amount of wall time = 342.968618
+0: The maximum resident set size (KB) = 861532
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c192_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 468.140966
- 0: The maximum resident set size (KB) = 990168
+ 0: The total amount of wall time = 469.464101
+ 0: The maximum resident set size (KB) = 963520
Test 039 control_c192_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 483.806495
- 0: The maximum resident set size (KB) = 1451244
+ 0: The total amount of wall time = 578.703456
+ 0: The maximum resident set size (KB) = 1468452
Test 040 control_c384_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384gdas_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2323,21 +2323,21 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 417.955903
- 0: The maximum resident set size (KB) = 1551488
+ 0: The total amount of wall time = 470.768638
+ 0: The maximum resident set size (KB) = 1525024
Test 041 control_c384gdas_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 78.151974
- 0: The maximum resident set size (KB) = 679428
+ 0: The total amount of wall time = 84.258011
+ 0: The maximum resident set size (KB) = 686240
Test 042 control_stochy_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 44.506409
- 0: The maximum resident set size (KB) = 543916
+ 0: The total amount of wall time = 48.070790
+ 0: The maximum resident set size (KB) = 540836
Test 043 control_stochy_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 72.350384
- 0: The maximum resident set size (KB) = 662704
+ 0: The total amount of wall time = 79.709404
+ 0: The maximum resident set size (KB) = 675984
Test 044 control_lndp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr4_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 116.144709
- 0: The maximum resident set size (KB) = 666700
+ 0: The total amount of wall time = 123.287393
+ 0: The maximum resident set size (KB) = 668292
Test 045 control_iovr4_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr5_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 117.385820
- 0: The maximum resident set size (KB) = 663936
+ 0: The total amount of wall time = 125.240594
+ 0: The maximum resident set size (KB) = 667624
Test 046 control_iovr5_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 142.946430
- 0: The maximum resident set size (KB) = 1634152
+ 0: The total amount of wall time = 154.872088
+ 0: The maximum resident set size (KB) = 1654696
Test 047 control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 149.457964
- 0: The maximum resident set size (KB) = 1638208
+ 0: The total amount of wall time = 160.815227
+ 0: The maximum resident set size (KB) = 1638104
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 139.416227
- 0: The maximum resident set size (KB) = 1632740
+ 0: The total amount of wall time = 156.317750
+ 0: The maximum resident set size (KB) = 1650648
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 78.641960
- 0: The maximum resident set size (KB) = 929628
+ 0: The total amount of wall time = 77.005768
+ 0: The maximum resident set size (KB) = 927628
Test 050 control_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_noqr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 141.786512
- 0: The maximum resident set size (KB) = 1624048
+ 0: The total amount of wall time = 159.519558
+ 0: The maximum resident set size (KB) = 1639652
Test 051 control_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_noqr_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 77.637286
- 0: The maximum resident set size (KB) = 990728
+ 0: The total amount of wall time = 77.862759
+ 0: The maximum resident set size (KB) = 993836
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_decomp_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 149.273172
- 0: The maximum resident set size (KB) = 1622124
+ 0: The total amount of wall time = 165.836501
+ 0: The maximum resident set size (KB) = 1638004
Test 053 control_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_2threads_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 136.116915
- 0: The maximum resident set size (KB) = 1736152
+ 0: The total amount of wall time = 139.470851
+ 0: The maximum resident set size (KB) = 1734488
Test 054 control_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_lndp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 260.213517
- 0: The maximum resident set size (KB) = 1641020
+ 0: The total amount of wall time = 261.524588
+ 0: The maximum resident set size (KB) = 1649536
Test 055 control_p8_lndp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_rrtmgp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 198.070882
- 0: The maximum resident set size (KB) = 1710156
+ 0: The total amount of wall time = 201.379537
+ 0: The maximum resident set size (KB) = 1726624
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_mynn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 146.573683
- 0: The maximum resident set size (KB) = 1642184
+ 0: The total amount of wall time = 144.874225
+ 0: The maximum resident set size (KB) = 1660116
Test 057 control_p8_mynn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/merra2_thompson_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 171.456241
- 0: The maximum resident set size (KB) = 1663880
+ 0: The total amount of wall time = 169.586490
+ 0: The maximum resident set size (KB) = 1664904
Test 058 merra2_thompson_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 259.633951
- 0: The maximum resident set size (KB) = 959536
+ 0: The total amount of wall time = 265.141018
+ 0: The maximum resident set size (KB) = 964112
Test 059 regional_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 139.219117
- 0: The maximum resident set size (KB) = 1109672
+ 0: The total amount of wall time = 139.297537
+ 0: The maximum resident set size (KB) = 1110492
Test 060 regional_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 273.319411
- 0: The maximum resident set size (KB) = 948460
+ 0: The total amount of wall time = 278.723377
+ 0: The maximum resident set size (KB) = 949084
Test 061 regional_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 161.847975
- 0: The maximum resident set size (KB) = 915912
+ 0: The total amount of wall time = 169.687880
+ 0: The maximum resident set size (KB) = 916976
Test 062 regional_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_noquilt_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 250.977806
- 0: The maximum resident set size (KB) = 1491020
+ 0: The total amount of wall time = 255.691738
+ 0: The maximum resident set size (KB) = 1493988
Test 063 regional_noquilt_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 259.553735
- 0: The maximum resident set size (KB) = 959712
+ 0: The total amount of wall time = 267.741805
+ 0: The maximum resident set size (KB) = 961376
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2dwrtdecomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 261.383526
- 0: The maximum resident set size (KB) = 957184
+ 0: The total amount of wall time = 266.429814
+ 0: The maximum resident set size (KB) = 960056
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_wofs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 324.421182
- 0: The maximum resident set size (KB) = 2082948
+ 0: The total amount of wall time = 329.961121
+ 0: The maximum resident set size (KB) = 2097012
Test 066 regional_wofs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 379.742196
- 0: The maximum resident set size (KB) = 1225884
+ 0: The total amount of wall time = 388.185731
+ 0: The maximum resident set size (KB) = 1202548
Test 067 rap_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 215.790207
- 0: The maximum resident set size (KB) = 1423432
+ 0: The total amount of wall time = 216.592905
+ 0: The maximum resident set size (KB) = 1408896
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 406.547752
- 0: The maximum resident set size (KB) = 1127368
+ 0: The total amount of wall time = 405.107729
+ 0: The maximum resident set size (KB) = 1123200
Test 069 rap_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 360.956121
- 0: The maximum resident set size (KB) = 1376068
+ 0: The total amount of wall time = 363.684866
+ 0: The maximum resident set size (KB) = 1378300
Test 070 rap_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 197.135055
- 0: The maximum resident set size (KB) = 1132988
+ 0: The total amount of wall time = 199.531913
+ 0: The maximum resident set size (KB) = 1134500
Test 071 rap_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 381.916787
- 0: The maximum resident set size (KB) = 1200984
+ 0: The total amount of wall time = 383.315239
+ 0: The maximum resident set size (KB) = 1186604
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 404.106020
- 0: The maximum resident set size (KB) = 1152168
+ 0: The total amount of wall time = 404.632152
+ 0: The maximum resident set size (KB) = 1158544
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 284.430079
- 0: The maximum resident set size (KB) = 1197900
+ 0: The total amount of wall time = 287.255854
+ 0: The maximum resident set size (KB) = 1233548
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 194.480464
- 0: The maximum resident set size (KB) = 1080892
+ 0: The total amount of wall time = 198.285536
+ 0: The maximum resident set size (KB) = 1091536
Test 075 hrrr_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 199.963608
- 0: The maximum resident set size (KB) = 1046196
+ 0: The total amount of wall time = 204.039737
+ 0: The maximum resident set size (KB) = 1039496
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 179.669285
- 0: The maximum resident set size (KB) = 1122176
+ 0: The total amount of wall time = 180.204479
+ 0: The maximum resident set size (KB) = 1124796
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 103.070538
- 0: The maximum resident set size (KB) = 1023032
+ 0: The total amount of wall time = 102.200774
+ 0: The maximum resident set size (KB) = 1023448
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 372.842344
- 0: The maximum resident set size (KB) = 1182788
+ 0: The total amount of wall time = 373.485813
+ 0: The maximum resident set size (KB) = 1196116
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 447.510074
- 0: The maximum resident set size (KB) = 2008324
+ 0: The total amount of wall time = 453.798762
+ 0: The maximum resident set size (KB) = 2009056
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 438.584415
- 0: The maximum resident set size (KB) = 2204660
+ 0: The total amount of wall time = 441.694584
+ 0: The maximum resident set size (KB) = 2182848
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 297.202958
- 0: The maximum resident set size (KB) = 824780
+ 0: The total amount of wall time = 297.608365
+ 0: The maximum resident set size (KB) = 848712
Test 082 control_csawmg_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 293.619005
- 0: The maximum resident set size (KB) = 812024
+ 0: The total amount of wall time = 298.535042
+ 0: The maximum resident set size (KB) = 806476
Test 083 control_csawmgt_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 161.707212
- 0: The maximum resident set size (KB) = 804772
+ 0: The total amount of wall time = 163.356069
+ 0: The maximum resident set size (KB) = 846068
Test 084 control_ras_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wam_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 104.166406
- 0: The maximum resident set size (KB) = 778964
+ 0: The total amount of wall time = 101.620319
+ 0: The maximum resident set size (KB) = 778368
Test 085 control_wam_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 127.818467
- 0: The maximum resident set size (KB) = 1643476
+ 0: The total amount of wall time = 127.298750
+ 0: The maximum resident set size (KB) = 1641608
Test 086 control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 238.523916
- 0: The maximum resident set size (KB) = 959356
+ 0: The total amount of wall time = 239.005327
+ 0: The maximum resident set size (KB) = 959132
Test 087 regional_control_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 125.782640
- 0: The maximum resident set size (KB) = 819084
+ 0: The total amount of wall time = 127.239321
+ 0: The maximum resident set size (KB) = 825760
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
+ Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
- Comparing atmf000.nc ............ALT CHECK......OK
+ Comparing atmf000.nc .........OK
Comparing atmf001.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 127.994595
- 0: The maximum resident set size (KB) = 819952
+ 0: The total amount of wall time = 127.357888
+ 0: The maximum resident set size (KB) = 832044
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 143.153287
- 0: The maximum resident set size (KB) = 827488
+ 0: The total amount of wall time = 141.638703
+ 0: The maximum resident set size (KB) = 834244
Test 090 control_stochy_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 126.544030
- 0: The maximum resident set size (KB) = 827372
+ 0: The total amount of wall time = 127.899569
+ 0: The maximum resident set size (KB) = 830036
Test 091 control_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 194.499395
- 0: The maximum resident set size (KB) = 869788
+ 0: The total amount of wall time = 198.772881
+ 0: The maximum resident set size (KB) = 870380
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 192.764425
- 0: The maximum resident set size (KB) = 875248
+ 0: The total amount of wall time = 193.252752
+ 0: The maximum resident set size (KB) = 873952
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 130.002758
- 0: The maximum resident set size (KB) = 837256
+ 0: The total amount of wall time = 129.214266
+ 0: The maximum resident set size (KB) = 850172
Test 094 control_ras_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 133.513938
- 0: The maximum resident set size (KB) = 885620
+ 0: The total amount of wall time = 133.937645
+ 0: The maximum resident set size (KB) = 889924
Test 095 control_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 140.720409
- 0: The maximum resident set size (KB) = 1656892
+ 0: The total amount of wall time = 134.889526
+ 0: The maximum resident set size (KB) = 1655804
Test 096 control_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 829.274606
- 0: The maximum resident set size (KB) = 892732
+ 0: The total amount of wall time = 833.663040
+ 0: The maximum resident set size (KB) = 904516
Test 097 regional_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.527061
- 0: The maximum resident set size (KB) = 1210304
+ 0: The total amount of wall time = 232.480235
+ 0: The maximum resident set size (KB) = 1215312
Test 098 rap_control_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 227.264416
- 0: The maximum resident set size (KB) = 1212192
+ 0: The total amount of wall time = 226.142135
+ 0: The maximum resident set size (KB) = 1212992
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.100184
- 0: The maximum resident set size (KB) = 1220684
+ 0: The total amount of wall time = 232.270614
+ 0: The maximum resident set size (KB) = 1224340
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 231.184425
- 0: The maximum resident set size (KB) = 1231276
+ 0: The total amount of wall time = 234.184599
+ 0: The maximum resident set size (KB) = 1224576
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_drag_suite_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.787908
- 0: The maximum resident set size (KB) = 1224388
+ 0: The total amount of wall time = 233.224511
+ 0: The maximum resident set size (KB) = 1214164
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 240.458386
- 0: The maximum resident set size (KB) = 1297844
+ 0: The total amount of wall time = 244.302640
+ 0: The maximum resident set size (KB) = 1306548
Test 103 rap_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 235.120548
- 0: The maximum resident set size (KB) = 1221280
+ 0: The total amount of wall time = 236.748197
+ 0: The maximum resident set size (KB) = 1215648
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 239.889945
- 0: The maximum resident set size (KB) = 1214292
+ 0: The total amount of wall time = 238.897417
+ 0: The maximum resident set size (KB) = 1225476
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_lndp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 234.519153
- 0: The maximum resident set size (KB) = 1220196
+ 0: The total amount of wall time = 233.775045
+ 0: The maximum resident set size (KB) = 1213840
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 232.861170
- 0: The maximum resident set size (KB) = 1221332
+ 0: The total amount of wall time = 232.700914
+ 0: The maximum resident set size (KB) = 1231344
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 227.819438
- 0: The maximum resident set size (KB) = 1218328
+ 0: The total amount of wall time = 229.445153
+ 0: The maximum resident set size (KB) = 1209692
Test 108 rap_noah_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 233.096337
- 0: The maximum resident set size (KB) = 1220268
+ 0: The total amount of wall time = 231.528662
+ 0: The maximum resident set size (KB) = 1219104
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 376.561220
- 0: The maximum resident set size (KB) = 1218744
+ 0: The total amount of wall time = 384.608919
+ 0: The maximum resident set size (KB) = 1228024
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 225.766613
- 0: The maximum resident set size (KB) = 1214064
+ 0: The total amount of wall time = 226.569478
+ 0: The maximum resident set size (KB) = 1214816
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.147903
- 0: The maximum resident set size (KB) = 1224352
+ 0: The total amount of wall time = 304.549934
+ 0: The maximum resident set size (KB) = 1231760
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.552976
- 0: The maximum resident set size (KB) = 1212004
+ 0: The total amount of wall time = 237.239561
+ 0: The maximum resident set size (KB) = 1215940
Test 113 rap_flake_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 400.873320
- 0: The maximum resident set size (KB) = 1220204
+ 0: The total amount of wall time = 406.741596
+ 0: The maximum resident set size (KB) = 1216796
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 199.680414
- 0: The maximum resident set size (KB) = 1309708
+ 0: The total amount of wall time = 186.050043
+ 0: The maximum resident set size (KB) = 1276152
Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_intel
Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 315.328400
- 0: The maximum resident set size (KB) = 1142588
+ 0: The total amount of wall time = 317.073044
+ 0: The maximum resident set size (KB) = 1147356
Test 116 rap_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_intel
Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.941527
- 0: The maximum resident set size (KB) = 1044892
+ 0: The total amount of wall time = 165.138313
+ 0: The maximum resident set size (KB) = 1014072
Test 117 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_intel
Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 311.950802
- 0: The maximum resident set size (KB) = 1295056
+ 0: The total amount of wall time = 299.018973
+ 0: The maximum resident set size (KB) = 1272956
Test 118 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_intel
Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 155.379397
- 0: The maximum resident set size (KB) = 1034512
+ 0: The total amount of wall time = 161.091018
+ 0: The maximum resident set size (KB) = 1044888
Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_intel
Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 171.440603
- 0: The maximum resident set size (KB) = 1035132
+ 0: The total amount of wall time = 173.038878
+ 0: The maximum resident set size (KB) = 987688
Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_intel
Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 235.193640
- 0: The maximum resident set size (KB) = 1089964
+ 0: The total amount of wall time = 240.518454
+ 0: The maximum resident set size (KB) = 1134604
Test 121 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_intel
Checking test 122 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 87.134745
- 0: The maximum resident set size (KB) = 962400
+ 0: The total amount of wall time = 88.162058
+ 0: The maximum resident set size (KB) = 965284
Test 122 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_intel
Checking test 123 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 106.720304
- 0: The maximum resident set size (KB) = 1300616
+ 0: The total amount of wall time = 103.587863
+ 0: The maximum resident set size (KB) = 1307224
Test 123 conus13km_control_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_intel
Checking test 124 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 44.354665
- 0: The maximum resident set size (KB) = 1201024
+ 0: The total amount of wall time = 41.732275
+ 0: The maximum resident set size (KB) = 1208312
Test 124 conus13km_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_intel
Checking test 125 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 57.671850
- 0: The maximum resident set size (KB) = 1163784
+ 0: The total amount of wall time = 55.604468
+ 0: The maximum resident set size (KB) = 1154932
Test 125 conus13km_restart_mismatch_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_intel
Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 214.198639
- 0: The maximum resident set size (KB) = 1097568
+ 0: The total amount of wall time = 214.456741
+ 0: The maximum resident set size (KB) = 1101080
Test 126 rap_control_dyn64_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_intel
Checking test 127 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 229.496279
- 0: The maximum resident set size (KB) = 1095320
+ 0: The total amount of wall time = 227.769448
+ 0: The maximum resident set size (KB) = 1096280
Test 127 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_intel
Checking test 128 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 221.393731
- 0: The maximum resident set size (KB) = 1098620
+ 0: The total amount of wall time = 225.377390
+ 0: The maximum resident set size (KB) = 1099504
Test 128 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_intel
Checking test 129 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 697.576904
- 0: The maximum resident set size (KB) = 1347488
+ 0: The total amount of wall time = 693.796136
+ 0: The maximum resident set size (KB) = 1345492
Test 129 conus13km_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_intel
Checking test 130 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 712.898446
- 0: The maximum resident set size (KB) = 995268
+ 0: The total amount of wall time = 717.082360
+ 0: The maximum resident set size (KB) = 985956
Test 130 conus13km_debug_qr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_intel
Checking test 131 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 405.093150
- 0: The maximum resident set size (KB) = 1245404
+ 0: The total amount of wall time = 402.194526
+ 0: The maximum resident set size (KB) = 1237648
Test 131 conus13km_debug_2threads_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_intel
Checking test 132 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 706.565714
- 0: The maximum resident set size (KB) = 1416416
+ 0: The total amount of wall time = 702.156892
+ 0: The maximum resident set size (KB) = 1407040
Test 132 conus13km_radar_tten_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_intel
Checking test 133 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 233.120107
- 0: The maximum resident set size (KB) = 1144896
+ 0: The total amount of wall time = 232.341265
+ 0: The maximum resident set size (KB) = 1152276
Test 133 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_intel
Checking test 134 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 324.134135
- 0: The maximum resident set size (KB) = 867448
+ 0: The total amount of wall time = 319.880213
+ 0: The maximum resident set size (KB) = 885040
Test 134 hafs_regional_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 299.811518
- 0: The maximum resident set size (KB) = 1281516
+ 0: The total amount of wall time = 299.262357
+ 0: The maximum resident set size (KB) = 1288556
Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_intel
Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 384.082116
- 0: The maximum resident set size (KB) = 954740
+ 0: The total amount of wall time = 380.659094
+ 0: The maximum resident set size (KB) = 950716
Test 136 hafs_regional_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_wav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_wav_intel
Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 834.316678
- 0: The maximum resident set size (KB) = 1014528
+ 0: The total amount of wall time = 829.964413
+ 0: The maximum resident set size (KB) = 972020
Test 137 hafs_regional_atm_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_wav_intel
Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 889.318521
- 0: The maximum resident set size (KB) = 1018204
+ 0: The total amount of wall time = 893.334177
+ 0: The maximum resident set size (KB) = 1008888
Test 138 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_1nest_atm_intel
Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5033,25 +5033,25 @@ Checking test 139 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 315.474492
- 0: The maximum resident set size (KB) = 604820
+ 0: The total amount of wall time = 331.543285
+ 0: The maximum resident set size (KB) = 607020
Test 139 hafs_regional_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_telescopic_2nests_atm_intel
Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 413.920523
- 0: The maximum resident set size (KB) = 619996
+ 0: The total amount of wall time = 419.339445
+ 0: The maximum resident set size (KB) = 617456
Test 140 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_1nest_atm_intel
Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5087,26 +5087,26 @@ Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
@@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 166.823503
- 0: The maximum resident set size (KB) = 433484
+ 0: The total amount of wall time = 166.302451
+ 0: The maximum resident set size (KB) = 438460
Test 141 hafs_global_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_multiple_4nests_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_multiple_4nests_atm_intel
Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5141,14 +5141,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.coupler.res .........OK
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
@@ -5156,12 +5156,12 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -5171,13 +5171,13 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
@@ -5188,11 +5188,11 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
@@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 463.133874
- 0: The maximum resident set size (KB) = 542580
+ 0: The total amount of wall time = 483.770165
+ 0: The maximum resident set size (KB) = 546352
Test 142 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_specified_moving_1nest_atm_intel
Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 228.262745
- 0: The maximum resident set size (KB) = 617732
+ 0: The total amount of wall time = 235.551186
+ 0: The maximum resident set size (KB) = 623288
Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5239,23 +5239,23 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 217.938963
- 0: The maximum resident set size (KB) = 619936
+ 0: The total amount of wall time = 216.995328
+ 0: The maximum resident set size (KB) = 622432
Test 144 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5264,42 +5264,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 280.162490
- 0: The maximum resident set size (KB) = 685828
+ 0: The total amount of wall time = 297.687869
+ 0: The maximum resident set size (KB) = 676236
Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_storm_following_1nest_atm_intel
Checking test 146 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 78.540171
- 0: The maximum resident set size (KB) = 451104
+ 0: The total amount of wall time = 79.283162
+ 0: The maximum resident set size (KB) = 451492
Test 146 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 676.364143
- 0: The maximum resident set size (KB) = 636996
+ 0: The total amount of wall time = 679.564047
+ 0: The maximum resident set size (KB) = 632904
Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5310,14 +5310,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 963.542316
- 0: The maximum resident set size (KB) = 747144
+ 0: The total amount of wall time = 972.161645
+ 0: The maximum resident set size (KB) = 749480
Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5328,14 +5328,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 1039.318020
- 0: The maximum resident set size (KB) = 841392
+ 0: The total amount of wall time = 1036.834964
+ 0: The maximum resident set size (KB) = 808984
Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5345,14 +5345,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 618.068101
- 0: The maximum resident set size (KB) = 832012
+ 0: The total amount of wall time = 639.200203
+ 0: The maximum resident set size (KB) = 833588
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_intel
Checking test 151 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5360,14 +5360,14 @@ Checking test 151 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 324.611754
- 0: The maximum resident set size (KB) = 936884
+ 0: The total amount of wall time = 341.959765
+ 0: The maximum resident set size (KB) = 953852
Test 151 hafs_regional_docn_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_oisst_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_oisst_intel
Checking test 152 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5375,131 +5375,131 @@ Checking test 152 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 328.495838
- 0: The maximum resident set size (KB) = 928916
+ 0: The total amount of wall time = 340.439543
+ 0: The maximum resident set size (KB) = 936416
Test 152 hafs_regional_docn_oisst_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_datm_cdeps_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_datm_cdeps_intel
Checking test 153 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 975.713199
- 0: The maximum resident set size (KB) = 1341288
+ 0: The total amount of wall time = 982.682875
+ 0: The maximum resident set size (KB) = 1338020
Test 153 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_intel
Checking test 154 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.496421
- 0: The maximum resident set size (KB) = 1131496
+ 0: The total amount of wall time = 123.766433
+ 0: The maximum resident set size (KB) = 1141460
Test 154 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_restart_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_restart_cfsr_intel
Checking test 155 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 74.615006
- 0: The maximum resident set size (KB) = 1091708
+ 0: The total amount of wall time = 77.117248
+ 0: The maximum resident set size (KB) = 1090324
Test 155 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_gefs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_gefs_intel
Checking test 156 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 117.480557
- 0: The maximum resident set size (KB) = 1013700
+ 0: The total amount of wall time = 122.111663
+ 0: The maximum resident set size (KB) = 1023092
Test 156 datm_cdeps_control_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_iau_gefs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_iau_gefs_intel
Checking test 157 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 120.175501
- 0: The maximum resident set size (KB) = 1006792
+ 0: The total amount of wall time = 120.758062
+ 0: The maximum resident set size (KB) = 1016880
Test 157 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_stochy_gefs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_stochy_gefs_intel
Checking test 158 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 119.361014
- 0: The maximum resident set size (KB) = 1002272
+ 0: The total amount of wall time = 121.401423
+ 0: The maximum resident set size (KB) = 1012620
Test 158 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_ciceC_cfsr_intel
Checking test 159 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.936189
- 0: The maximum resident set size (KB) = 1147940
+ 0: The total amount of wall time = 124.760673
+ 0: The maximum resident set size (KB) = 1144692
Test 159 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_cfsr_intel
Checking test 160 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 120.559403
- 0: The maximum resident set size (KB) = 1148308
+ 0: The total amount of wall time = 125.566252
+ 0: The maximum resident set size (KB) = 1151772
Test 160 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_gefs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_gefs_intel
Checking test 161 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 117.235872
- 0: The maximum resident set size (KB) = 1013792
+ 0: The total amount of wall time = 119.276869
+ 0: The maximum resident set size (KB) = 1003560
Test 161 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_cfsr_intel
Checking test 162 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5508,14 +5508,14 @@ Checking test 162 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 285.435487
- 0: The maximum resident set size (KB) = 1157008
+ 0: The total amount of wall time = 306.912649
+ 0: The maximum resident set size (KB) = 1157404
Test 162 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_gefs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_gefs_intel
Checking test 163 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5524,77 +5524,77 @@ Checking test 163 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 282.435475
- 0: The maximum resident set size (KB) = 1148160
+ 0: The total amount of wall time = 297.418474
+ 0: The maximum resident set size (KB) = 1155600
Test 163 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_multiple_files_cfsr_intel
Checking test 164 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 125.206900
- 0: The maximum resident set size (KB) = 1149528
+ 0: The total amount of wall time = 122.715134
+ 0: The maximum resident set size (KB) = 1155500
Test 164 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_3072x1536_cfsr_intel
Checking test 165 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 175.291794
- 0: The maximum resident set size (KB) = 2438792
+ 0: The total amount of wall time = 178.475650
+ 0: The maximum resident set size (KB) = 2383908
Test 165 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_gfs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_gfs_intel
Checking test 166 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 180.006985
- 0: The maximum resident set size (KB) = 2377084
+ 0: The total amount of wall time = 182.093891
+ 0: The maximum resident set size (KB) = 2462080
Test 166 datm_cdeps_gfs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_debug_cfsr_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_debug_cfsr_intel
Checking test 167 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 301.226193
- 0: The maximum resident set size (KB) = 1075328
+ 0: The total amount of wall time = 304.262564
+ 0: The maximum resident set size (KB) = 1070708
Test 167 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_faster_intel
Checking test 168 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 122.741765
- 0: The maximum resident set size (KB) = 1137512
+ 0: The total amount of wall time = 123.853572
+ 0: The maximum resident set size (KB) = 1153504
Test 168 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_gswp3_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_gswp3_intel
Checking test 169 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5603,14 +5603,14 @@ Checking test 169 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 46.105725
- 0: The maximum resident set size (KB) = 329128
+ 0: The total amount of wall time = 54.556217
+ 0: The maximum resident set size (KB) = 339208
Test 169 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_intel
Checking test 170 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5619,14 +5619,14 @@ Checking test 170 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 44.455630
- 0: The maximum resident set size (KB) = 557844
+ 0: The total amount of wall time = 50.246439
+ 0: The maximum resident set size (KB) = 556460
Test 170 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_rst_intel
Checking test 171 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5635,14 +5635,14 @@ Checking test 171 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 34.204514
- 0: The maximum resident set size (KB) = 563280
+ 0: The total amount of wall time = 34.788009
+ 0: The maximum resident set size (KB) = 558684
Test 171 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_sbs_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_sbs_intel
Checking test 172 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5731,14 +5731,14 @@ Checking test 172 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 344.546305
- 0: The maximum resident set size (KB) = 1634600
+ 0: The total amount of wall time = 393.686892
+ 0: The maximum resident set size (KB) = 1646876
Test 172 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_intel
Checking test 173 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5827,14 +5827,14 @@ Checking test 173 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 347.393013
- 0: The maximum resident set size (KB) = 1644492
+ 0: The total amount of wall time = 391.185936
+ 0: The maximum resident set size (KB) = 1640980
Test 173 control_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_atmlnd_intel
Checking test 174 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5855,14 +5855,14 @@ Checking test 174 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 183.711025
- 0: The maximum resident set size (KB) = 948208
+ 0: The total amount of wall time = 197.423635
+ 0: The maximum resident set size (KB) = 943504
Test 174 control_restart_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmwav_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmwav_control_noaero_p8_intel
Checking test 175 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5905,14 +5905,14 @@ Checking test 175 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 82.007732
- 0: The maximum resident set size (KB) = 1703500
+ 0: The total amount of wall time = 87.123010
+ 0: The maximum resident set size (KB) = 1690380
Test 175 atmwav_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_atmwav_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_atmwav_intel
Checking test 176 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5956,14 +5956,14 @@ Checking test 176 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 81.983347
- 0: The maximum resident set size (KB) = 682412
+ 0: The total amount of wall time = 85.909148
+ 0: The maximum resident set size (KB) = 693668
Test 176 control_atmwav_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_intel
Checking test 177 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6007,14 +6007,14 @@ Checking test 177 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 201.812942
- 0: The maximum resident set size (KB) = 1792108
+ 0: The total amount of wall time = 207.900695
+ 0: The maximum resident set size (KB) = 1786704
Test 177 atmaero_control_p8_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_intel
Checking test 178 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6058,14 +6058,14 @@ Checking test 178 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 246.158755
- 0: The maximum resident set size (KB) = 1802676
+ 0: The total amount of wall time = 248.446801
+ 0: The maximum resident set size (KB) = 1810340
Test 178 atmaero_control_p8_rad_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_micro_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_micro_intel
Checking test 179 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6109,14 +6109,14 @@ Checking test 179 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 257.884852
- 0: The maximum resident set size (KB) = 1834884
+ 0: The total amount of wall time = 262.880486
+ 0: The maximum resident set size (KB) = 1818912
Test 179 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_atmaq_debug_intel
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_atmaq_debug_intel
Checking test 180 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6130,14 +6130,14 @@ Checking test 180 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 978.115169
- 0: The maximum resident set size (KB) = 4593772
+ 0: The total amount of wall time = 995.403334
+ 0: The maximum resident set size (KB) = 4589524
Test 180 regional_atmaq_debug_intel PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_gnu
Checking test 181 control_c48_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6176,14 +6176,14 @@ Checking test 181 control_c48_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 562.407920
-0: The maximum resident set size (KB) = 861728
+0: The total amount of wall time = 563.126826
+0: The maximum resident set size (KB) = 856372
Test 181 control_c48_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_gnu
Checking test 182 control_stochy_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6194,14 +6194,14 @@ Checking test 182 control_stochy_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 126.449389
- 0: The maximum resident set size (KB) = 730208
+ 0: The total amount of wall time = 128.952842
+ 0: The maximum resident set size (KB) = 727584
Test 182 control_stochy_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_gnu
Checking test 183 control_ras_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6212,14 +6212,14 @@ Checking test 183 control_ras_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 223.435886
- 0: The maximum resident set size (KB) = 729576
+ 0: The total amount of wall time = 218.740789
+ 0: The maximum resident set size (KB) = 730840
Test 183 control_ras_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_gnu
Checking test 184 control_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6266,14 +6266,14 @@ Checking test 184 control_p8_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 210.478077
- 0: The maximum resident set size (KB) = 1508236
+ 0: The total amount of wall time = 210.224228
+ 0: The maximum resident set size (KB) = 1508732
Test 184 control_p8_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_gnu
Checking test 185 control_p8_ugwpv1_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6320,14 +6320,14 @@ Checking test 185 control_p8_ugwpv1_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 201.030465
- 0: The maximum resident set size (KB) = 1509384
+ 0: The total amount of wall time = 202.932154
+ 0: The maximum resident set size (KB) = 1509904
Test 185 control_p8_ugwpv1_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_gnu
Checking test 186 control_flake_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6338,14 +6338,14 @@ Checking test 186 control_flake_gnu results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 253.293231
- 0: The maximum resident set size (KB) = 809676
+ 0: The total amount of wall time = 256.130493
+ 0: The maximum resident set size (KB) = 806960
Test 186 control_flake_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_gnu
Checking test 187 rap_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6392,14 +6392,14 @@ Checking test 187 rap_control_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 458.109550
- 0: The maximum resident set size (KB) = 1085788
+ 0: The total amount of wall time = 451.330519
+ 0: The maximum resident set size (KB) = 1091208
Test 187 rap_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_gnu
Checking test 188 rap_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6446,14 +6446,14 @@ Checking test 188 rap_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 457.975421
- 0: The maximum resident set size (KB) = 1084668
+ 0: The total amount of wall time = 458.959764
+ 0: The maximum resident set size (KB) = 1088776
Test 188 rap_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_gnu
Checking test 189 rap_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -6500,14 +6500,14 @@ Checking test 189 rap_2threads_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 419.861946
- 0: The maximum resident set size (KB) = 1120928
+ 0: The total amount of wall time = 420.439109
+ 0: The maximum resident set size (KB) = 1149668
Test 189 rap_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_gnu
Checking test 190 rap_restart_gnu results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -6546,14 +6546,14 @@ Checking test 190 rap_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 229.989517
- 0: The maximum resident set size (KB) = 891592
+ 0: The total amount of wall time = 229.913596
+ 0: The maximum resident set size (KB) = 885032
Test 190 rap_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_gnu
Checking test 191 rap_sfcdiff_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6600,14 +6600,14 @@ Checking test 191 rap_sfcdiff_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 447.159703
- 0: The maximum resident set size (KB) = 1084764
+ 0: The total amount of wall time = 463.113479
+ 0: The maximum resident set size (KB) = 1087380
Test 191 rap_sfcdiff_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_gnu
Checking test 192 rap_sfcdiff_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6654,14 +6654,14 @@ Checking test 192 rap_sfcdiff_decomp_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 457.859465
- 0: The maximum resident set size (KB) = 1084528
+ 0: The total amount of wall time = 464.314001
+ 0: The maximum resident set size (KB) = 1089012
Test 192 rap_sfcdiff_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_gnu
Checking test 193 rap_sfcdiff_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -6700,14 +6700,14 @@ Checking test 193 rap_sfcdiff_restart_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 333.801555
- 0: The maximum resident set size (KB) = 885360
+ 0: The total amount of wall time = 332.598656
+ 0: The maximum resident set size (KB) = 883832
Test 193 rap_sfcdiff_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_gnu
Checking test 194 hrrr_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6754,14 +6754,14 @@ Checking test 194 hrrr_control_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 230.559443
- 0: The maximum resident set size (KB) = 1072176
+ 0: The total amount of wall time = 236.622943
+ 0: The maximum resident set size (KB) = 1077468
Test 194 hrrr_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_noqr_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_noqr_gnu
Checking test 195 hrrr_control_noqr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6808,14 +6808,14 @@ Checking test 195 hrrr_control_noqr_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 234.509912
- 0: The maximum resident set size (KB) = 1137940
+ 0: The total amount of wall time = 235.403588
+ 0: The maximum resident set size (KB) = 1137576
Test 195 hrrr_control_noqr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_gnu
Checking test 196 hrrr_control_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6862,14 +6862,14 @@ Checking test 196 hrrr_control_2threads_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 210.340335
- 0: The maximum resident set size (KB) = 1026960
+ 0: The total amount of wall time = 213.903469
+ 0: The maximum resident set size (KB) = 1047692
Test 196 hrrr_control_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_gnu
Checking test 197 hrrr_control_decomp_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6916,42 +6916,42 @@ Checking test 197 hrrr_control_decomp_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 233.094716
- 0: The maximum resident set size (KB) = 1070540
+ 0: The total amount of wall time = 233.791135
+ 0: The maximum resident set size (KB) = 1072556
Test 197 hrrr_control_decomp_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_gnu
Checking test 198 hrrr_control_restart_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 116.893900
- 0: The maximum resident set size (KB) = 877896
+ 0: The total amount of wall time = 118.627056
+ 0: The maximum resident set size (KB) = 881496
Test 198 hrrr_control_restart_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_noqr_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_noqr_gnu
Checking test 199 hrrr_control_restart_noqr_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 115.499942
- 0: The maximum resident set size (KB) = 932900
+ 0: The total amount of wall time = 118.462913
+ 0: The maximum resident set size (KB) = 932008
Test 199 hrrr_control_restart_noqr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_gnu
Checking test 200 rrfs_v1beta_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -6998,224 +6998,224 @@ Checking test 200 rrfs_v1beta_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 450.897627
- 0: The maximum resident set size (KB) = 1074076
+ 0: The total amount of wall time = 449.021288
+ 0: The maximum resident set size (KB) = 1085288
Test 200 rrfs_v1beta_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_gnu
Checking test 201 control_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 71.600716
- 0: The maximum resident set size (KB) = 774652
+ 0: The total amount of wall time = 69.200372
+ 0: The maximum resident set size (KB) = 770844
Test 201 control_diag_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_gnu
Checking test 202 regional_debug_gnu results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 373.713261
- 0: The maximum resident set size (KB) = 924384
+ 0: The total amount of wall time = 377.156934
+ 0: The maximum resident set size (KB) = 921560
Test 202 regional_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_gnu
Checking test 203 rap_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 115.568370
- 0: The maximum resident set size (KB) = 1098296
+ 0: The total amount of wall time = 114.576153
+ 0: The maximum resident set size (KB) = 1100672
Test 203 rap_control_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_gnu
Checking test 204 hrrr_control_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 113.490563
- 0: The maximum resident set size (KB) = 1089352
+ 0: The total amount of wall time = 110.673883
+ 0: The maximum resident set size (KB) = 1084332
Test 204 hrrr_control_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_gnu
Checking test 205 hrrr_gf_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 114.840029
- 0: The maximum resident set size (KB) = 1090928
+ 0: The total amount of wall time = 115.786205
+ 0: The maximum resident set size (KB) = 1088028
Test 205 hrrr_gf_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_gnu
Checking test 206 hrrr_c3_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 115.127629
- 0: The maximum resident set size (KB) = 1101068
+ 0: The total amount of wall time = 111.138244
+ 0: The maximum resident set size (KB) = 1092616
Test 206 hrrr_c3_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_gnu
Checking test 207 rap_diag_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 121.168447
- 0: The maximum resident set size (KB) = 1267304
+ 0: The total amount of wall time = 122.113608
+ 0: The maximum resident set size (KB) = 1265044
Test 207 rap_diag_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_gnu
Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 180.172818
- 0: The maximum resident set size (KB) = 1094248
+ 0: The total amount of wall time = 185.147772
+ 0: The maximum resident set size (KB) = 1090592
Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_gnu
Checking test 209 rap_progcld_thompson_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 113.917695
- 0: The maximum resident set size (KB) = 1098148
+ 0: The total amount of wall time = 120.514499
+ 0: The maximum resident set size (KB) = 1097060
Test 209 rap_progcld_thompson_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_gnu
Checking test 210 rrfs_v1beta_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 113.555284
- 0: The maximum resident set size (KB) = 1090400
+ 0: The total amount of wall time = 114.877696
+ 0: The maximum resident set size (KB) = 1093384
Test 210 rrfs_v1beta_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_gnu
Checking test 211 control_ras_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 67.098186
- 0: The maximum resident set size (KB) = 724572
+ 0: The total amount of wall time = 63.907110
+ 0: The maximum resident set size (KB) = 721796
Test 211 control_ras_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_gnu
Checking test 212 control_stochy_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 73.337569
- 0: The maximum resident set size (KB) = 724176
+ 0: The total amount of wall time = 74.901388
+ 0: The maximum resident set size (KB) = 723000
Test 212 control_stochy_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_gnu
Checking test 213 control_debug_p8_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 74.128440
- 0: The maximum resident set size (KB) = 1507316
+ 0: The total amount of wall time = 81.051961
+ 0: The maximum resident set size (KB) = 1500556
Test 213 control_debug_p8_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_gnu
Checking test 214 rap_flake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 113.201113
- 0: The maximum resident set size (KB) = 1107424
+ 0: The total amount of wall time = 112.491500
+ 0: The maximum resident set size (KB) = 1092684
Test 214 rap_flake_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_gnu
Checking test 215 rap_clm_lake_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 123.714615
- 0: The maximum resident set size (KB) = 1102944
+ 0: The total amount of wall time = 127.679090
+ 0: The maximum resident set size (KB) = 1094048
Test 215 rap_clm_lake_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_gnu
Checking test 216 gnv1_c96_no_nest_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7256,14 +7256,14 @@ Checking test 216 gnv1_c96_no_nest_debug_gnu results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 191.315302
- 0: The maximum resident set size (KB) = 1100892
+ 0: The total amount of wall time = 200.545789
+ 0: The maximum resident set size (KB) = 1100544
Test 216 gnv1_c96_no_nest_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_gnu
Checking test 217 rap_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7310,14 +7310,14 @@ Checking test 217 rap_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 435.176866
- 0: The maximum resident set size (KB) = 963976
+ 0: The total amount of wall time = 429.953691
+ 0: The maximum resident set size (KB) = 962488
Test 217 rap_control_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_gnu
Checking test 218 hrrr_control_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7364,14 +7364,14 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 222.575669
- 0: The maximum resident set size (KB) = 953520
+ 0: The total amount of wall time = 226.310231
+ 0: The maximum resident set size (KB) = 955820
Test 218 hrrr_control_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_gnu
Checking test 219 rap_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7418,14 +7418,14 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 394.702233
- 0: The maximum resident set size (KB) = 968160
+ 0: The total amount of wall time = 390.828922
+ 0: The maximum resident set size (KB) = 998460
Test 219 rap_2threads_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_gnu
Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7472,14 +7472,14 @@ Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 202.404189
- 0: The maximum resident set size (KB) = 893360
+ 0: The total amount of wall time = 201.202874
+ 0: The maximum resident set size (KB) = 872020
Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_gnu
Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7526,14 +7526,14 @@ Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 224.330151
- 0: The maximum resident set size (KB) = 951496
+ 0: The total amount of wall time = 222.730813
+ 0: The maximum resident set size (KB) = 953576
Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_gnu
Checking test 222 rap_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -7572,28 +7572,28 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 320.306204
- 0: The maximum resident set size (KB) = 856744
+ 0: The total amount of wall time = 321.277583
+ 0: The maximum resident set size (KB) = 860768
Test 222 rap_restart_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_gnu
Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 115.277208
- 0: The maximum resident set size (KB) = 855976
+ 0: The total amount of wall time = 111.256666
+ 0: The maximum resident set size (KB) = 857124
Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_gnu
Checking test 224 conus13km_control_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7609,40 +7609,40 @@ Checking test 224 conus13km_control_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 152.926750
- 0: The maximum resident set size (KB) = 1270380
+ 0: The total amount of wall time = 147.609195
+ 0: The maximum resident set size (KB) = 1268964
Test 224 conus13km_control_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_gnu
Checking test 225 conus13km_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 58.148834
- 0: The maximum resident set size (KB) = 1178076
+ 0: The total amount of wall time = 70.638012
+ 0: The maximum resident set size (KB) = 1177256
Test 225 conus13km_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_gnu
Checking test 226 conus13km_restart_mismatch_gnu results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 78.144792
- 0: The maximum resident set size (KB) = 935668
+ 0: The total amount of wall time = 82.444567
+ 0: The maximum resident set size (KB) = 944856
Test 226 conus13km_restart_mismatch_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_gnu
Checking test 227 rap_control_dyn64_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -7689,42 +7689,42 @@ Checking test 227 rap_control_dyn64_phy32_gnu results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 255.829008
- 0: The maximum resident set size (KB) = 989516
+ 0: The total amount of wall time = 254.112351
+ 0: The maximum resident set size (KB) = 988508
Test 227 rap_control_dyn64_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_gnu
Checking test 228 rap_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 112.127121
- 0: The maximum resident set size (KB) = 976768
+ 0: The total amount of wall time = 110.983948
+ 0: The maximum resident set size (KB) = 976308
Test 228 rap_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_gnu
Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 108.850939
- 0: The maximum resident set size (KB) = 966744
+ 0: The total amount of wall time = 108.601448
+ 0: The maximum resident set size (KB) = 970300
Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_gnu
Checking test 230 conus13km_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7738,14 +7738,14 @@ Checking test 230 conus13km_debug_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 323.770786
- 0: The maximum resident set size (KB) = 1279396
+ 0: The total amount of wall time = 322.248191
+ 0: The maximum resident set size (KB) = 1283340
Test 230 conus13km_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_gnu
Checking test 231 conus13km_debug_qr_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -7759,54 +7759,54 @@ Checking test 231 conus13km_debug_qr_gnu results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 340.840468
- 0: The maximum resident set size (KB) = 971656
+ 0: The total amount of wall time = 337.325667
+ 0: The maximum resident set size (KB) = 973308
Test 231 conus13km_debug_qr_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_gnu
Checking test 232 conus13km_debug_2threads_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 191.519083
- 0: The maximum resident set size (KB) = 1187968
+ 0: The total amount of wall time = 194.866941
+ 0: The maximum resident set size (KB) = 1191440
Test 232 conus13km_debug_2threads_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_gnu
Checking test 233 conus13km_radar_tten_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 322.923830
- 0: The maximum resident set size (KB) = 1350024
+ 0: The total amount of wall time = 328.741249
+ 0: The maximum resident set size (KB) = 1349176
Test 233 conus13km_radar_tten_debug_gnu PASS
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_gnu
+baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu
+working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_gnu
Checking test 234 rap_control_dyn64_phy32_debug_gnu results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 114.511763
- 0: The maximum resident set size (KB) = 1002056
+ 0: The total amount of wall time = 117.402626
+ 0: The maximum resident set size (KB) = 1000200
Test 234 rap_control_dyn64_phy32_debug_gnu PASS
REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 02:57:32 AM CST 2024
-Elapsed time: 12h:21m:45s. Have a nice day!
+Tue Feb 13 17:50:43 CST 2024
+Elapsed time: 02h:23m:03s. Have a nice day!
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index c3f73d0673..131777ec7c 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,56 +1,56 @@
-Mon Feb 12 21:36:05 UTC 2024
+Tue Feb 13 22:06:29 UTC 2024
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 2039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atm_faster_dyn32_intel elapsed time 1847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmaero_intel elapsed time 1797 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atml_intel elapsed time 2229 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmw_intel elapsed time 1862 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmwm_intel elapsed time 1827 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile csawmg_intel elapsed time 1819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atm_debug_dyn32_intel elapsed time 421 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 1977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atm_faster_dyn32_intel elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmaero_intel elapsed time 1827 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atml_intel elapsed time 2220 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmw_intel elapsed time 1847 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile atmwm_intel elapsed time 1824 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile csawmg_intel elapsed time 1858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 493 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafs_all_intel elapsed time 1835 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafsw_intel elapsed time 1968 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 2535 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_intel elapsed time 1800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_intel elapsed time 1891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile s2s_aoflux_intel elapsed time 1915 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 532 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafs_all_intel elapsed time 1942 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile hafsw_intel elapsed time 2010 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn32_phy32_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+Compile s2s_aoflux_intel elapsed time 1916 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
Compile s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 343 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 2184 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 324 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 2315 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 3316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 536 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 5517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 2344 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_mixedmode_intel
+Compile s2sw_debug_intel elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 2104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 2904 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 2246 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 3032 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 5527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -115,14 +115,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 534.782062
- 0: The maximum resident set size (KB) = 1751836
+ 0: The total amount of wall time = 428.106728
+ 0: The maximum resident set size (KB) = 1760040
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -186,14 +186,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1230.188918
- 0: The maximum resident set size (KB) = 1636516
+ 0: The total amount of wall time = 1234.472812
+ 0: The maximum resident set size (KB) = 1637172
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_iau_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -239,14 +239,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1334.672577
- 0: The maximum resident set size (KB) = 1866968
+ 0: The total amount of wall time = 1328.242245
+ 0: The maximum resident set size (KB) = 1853780
-Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2
+Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -299,14 +299,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 599.499592
- 0: The maximum resident set size (KB) = 983572
+ 0: The total amount of wall time = 618.249105
+ 0: The maximum resident set size (KB) = 975816
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_gfsv17_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -370,14 +370,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1426.469561
- 0: The maximum resident set size (KB) = 1610028
+ 0: The total amount of wall time = 1437.722109
+ 0: The maximum resident set size (KB) = 1626564
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_intel
Checking test 006 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -442,14 +442,14 @@ Checking test 006 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 491.753492
- 0: The maximum resident set size (KB) = 1790460
+ 0: The total amount of wall time = 465.499320
+ 0: The maximum resident set size (KB) = 1807368
Test 006 cpld_control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8.v2.sfc_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8.v2.sfc_intel
Checking test 007 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -514,14 +514,14 @@ Checking test 007 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 478.170698
- 0: The maximum resident set size (KB) = 1792156
+ 0: The total amount of wall time = 461.766353
+ 0: The maximum resident set size (KB) = 1800652
Test 007 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_p8_intel
Checking test 008 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -574,14 +574,14 @@ Checking test 008 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 293.603567
- 0: The maximum resident set size (KB) = 1696248
+ 0: The total amount of wall time = 283.621669
+ 0: The maximum resident set size (KB) = 1691528
Test 008 cpld_restart_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_qr_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_qr_p8_intel
Checking test 009 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -646,14 +646,14 @@ Checking test 009 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 564.552994
- 0: The maximum resident set size (KB) = 1825052
+ 0: The total amount of wall time = 481.883916
+ 0: The maximum resident set size (KB) = 1820636
Test 009 cpld_control_qr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_qr_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_qr_p8_intel
Checking test 010 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -706,14 +706,14 @@ Checking test 010 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 305.745305
- 0: The maximum resident set size (KB) = 1715528
+ 0: The total amount of wall time = 304.624469
+ 0: The maximum resident set size (KB) = 1713348
Test 010 cpld_restart_qr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_2threads_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_2threads_p8_intel
Checking test 011 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -766,14 +766,14 @@ Checking test 011 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 436.673774
- 0: The maximum resident set size (KB) = 2206236
+ 0: The total amount of wall time = 448.961949
+ 0: The maximum resident set size (KB) = 2203392
Test 011 cpld_2threads_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_decomp_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_decomp_p8_intel
Checking test 012 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -826,14 +826,14 @@ Checking test 012 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 457.465121
- 0: The maximum resident set size (KB) = 1778628
+ 0: The total amount of wall time = 470.756992
+ 0: The maximum resident set size (KB) = 1789400
Test 012 cpld_decomp_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_p8_intel
Checking test 013 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -886,14 +886,14 @@ Checking test 013 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 387.756619
- 0: The maximum resident set size (KB) = 1751480
+ 0: The total amount of wall time = 411.808347
+ 0: The maximum resident set size (KB) = 1755232
Test 013 cpld_mpi_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_ciceC_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_ciceC_p8_intel
Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -958,14 +958,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 487.231050
- 0: The maximum resident set size (KB) = 1791472
+ 0: The total amount of wall time = 465.533393
+ 0: The maximum resident set size (KB) = 1803176
Test 014 cpld_control_ciceC_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_s2sa_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_s2sa_p8_intel
Checking test 015 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1016,14 +1016,14 @@ Checking test 015 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 431.756247
- 0: The maximum resident set size (KB) = 1758056
+ 0: The total amount of wall time = 428.550608
+ 0: The maximum resident set size (KB) = 1768592
Test 015 cpld_s2sa_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_intel
Checking test 016 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1087,14 +1087,14 @@ Checking test 016 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 358.569615
- 0: The maximum resident set size (KB) = 1647968
+ 0: The total amount of wall time = 388.072112
+ 0: The maximum resident set size (KB) = 1636684
Test 016 cpld_control_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_nowave_noaero_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_nowave_noaero_p8_intel
Checking test 017 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 347.086253
- 0: The maximum resident set size (KB) = 1690144
+ 0: The total amount of wall time = 367.239966
+ 0: The maximum resident set size (KB) = 1682884
Test 017 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_p8_intel
Checking test 018 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1216,14 +1216,14 @@ Checking test 018 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 637.913018
- 0: The maximum resident set size (KB) = 1818084
+ 0: The total amount of wall time = 639.767942
+ 0: The maximum resident set size (KB) = 1818484
Test 018 cpld_debug_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_noaero_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_noaero_p8_intel
Checking test 019 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1275,14 +1275,14 @@ Checking test 019 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 423.784444
- 0: The maximum resident set size (KB) = 1653324
+ 0: The total amount of wall time = 432.569234
+ 0: The maximum resident set size (KB) = 1652628
Test 019 cpld_debug_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_agrid_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_agrid_intel
Checking test 020 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1344,14 +1344,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 362.460804
- 0: The maximum resident set size (KB) = 1688728
+ 0: The total amount of wall time = 352.667681
+ 0: The maximum resident set size (KB) = 1697232
Test 020 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_c48_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_c48_intel
Checking test 021 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1401,14 +1401,14 @@ Checking test 021 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 769.214714
- 0: The maximum resident set size (KB) = 2781404
+ 0: The total amount of wall time = 769.192221
+ 0: The maximum resident set size (KB) = 2778724
Test 021 cpld_control_c48_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_faster_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_faster_intel
Checking test 022 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1473,14 +1473,14 @@ Checking test 022 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 423.335587
- 0: The maximum resident set size (KB) = 1816108
+ 0: The total amount of wall time = 512.516485
+ 0: The maximum resident set size (KB) = 1815400
Test 022 cpld_control_p8_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_pdlib_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_pdlib_p8_intel
Checking test 023 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1544,14 +1544,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1246.127718
- 0: The maximum resident set size (KB) = 1665064
+ 0: The total amount of wall time = 1252.772762
+ 0: The maximum resident set size (KB) = 1666960
Test 023 cpld_control_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_pdlib_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_pdlib_p8_intel
Checking test 024 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1603,14 +1603,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 617.156240
- 0: The maximum resident set size (KB) = 1029984
+ 0: The total amount of wall time = 627.079437
+ 0: The maximum resident set size (KB) = 1027224
Test 024 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_pdlib_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_pdlib_p8_intel
Checking test 025 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1674,14 +1674,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1346.369940
- 0: The maximum resident set size (KB) = 1652932
+ 0: The total amount of wall time = 1502.863638
+ 0: The maximum resident set size (KB) = 1635456
Test 025 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_pdlib_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_pdlib_p8_intel
Checking test 026 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1733,14 +1733,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1911.438958
- 0: The maximum resident set size (KB) = 1669388
+ 0: The total amount of wall time = 1938.562927
+ 0: The maximum resident set size (KB) = 1673760
Test 026 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_flake_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_flake_intel
Checking test 027 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1751,14 +1751,14 @@ Checking test 027 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 286.222758
- 0: The maximum resident set size (KB) = 642372
+ 0: The total amount of wall time = 294.059572
+ 0: The maximum resident set size (KB) = 646344
Test 027 control_flake_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_intel
Checking test 028 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1785,14 +1785,14 @@ Checking test 028 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 187.681016
- 0: The maximum resident set size (KB) = 589304
+ 0: The total amount of wall time = 217.984223
+ 0: The maximum resident set size (KB) = 594980
Test 028 control_CubedSphereGrid_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_parallel_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_parallel_intel
Checking test 029 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1800,21 +1800,21 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results ....
Comparing atmf024.nc .........OK
Comparing cubed_sphere_grid_sfcf000.nc .........OK
Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
+ Comparing cubed_sphere_grid_atmf024.nc .........OK
Comparing GFSFLX.GrbF00 .........OK
Comparing GFSFLX.GrbF24 .........OK
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 203.384104
- 0: The maximum resident set size (KB) = 599528
+ 0: The total amount of wall time = 227.675308
+ 0: The maximum resident set size (KB) = 592904
Test 029 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_latlon_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_latlon_intel
Checking test 030 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1825,14 +1825,14 @@ Checking test 030 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 209.873735
- 0: The maximum resident set size (KB) = 597932
+ 0: The total amount of wall time = 215.090885
+ 0: The maximum resident set size (KB) = 596860
Test 030 control_latlon_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_intel
Checking test 031 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1843,14 +1843,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 214.792128
- 0: The maximum resident set size (KB) = 591220
+ 0: The total amount of wall time = 216.803775
+ 0: The maximum resident set size (KB) = 599764
Test 031 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48_intel
Checking test 032 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1889,14 +1889,14 @@ Checking test 032 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 606.579441
-0: The maximum resident set size (KB) = 842612
+0: The total amount of wall time = 602.373429
+0: The maximum resident set size (KB) = 849348
Test 032 control_c48_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48.v2.sfc_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48.v2.sfc_intel
Checking test 033 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1935,14 +1935,14 @@ Checking test 033 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 606.975364
-0: The maximum resident set size (KB) = 844904
+0: The total amount of wall time = 605.497812
+0: The maximum resident set size (KB) = 846408
Test 033 control_c48.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c192_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c192_intel
Checking test 034 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1953,14 +1953,14 @@ Checking test 034 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 752.567605
- 0: The maximum resident set size (KB) = 727536
+ 0: The total amount of wall time = 765.277079
+ 0: The maximum resident set size (KB) = 724512
Test 034 control_c192_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384_intel
Checking test 035 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -1971,14 +1971,14 @@ Checking test 035 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 1019.889235
- 0: The maximum resident set size (KB) = 891060
+ 0: The total amount of wall time = 1022.072042
+ 0: The maximum resident set size (KB) = 900384
Test 035 control_c384_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384gdas_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384gdas_intel
Checking test 036 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -1990,45 +1990,45 @@ Checking test 036 control_c384gdas_intel results ....
Comparing GFSPRS.GrbF06 .........OK
Comparing RESTART/20210322.060000.coupler.res .........OK
Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 874.560142
- 0: The maximum resident set size (KB) = 1018424
+ 0: The total amount of wall time = 929.851752
+ 0: The maximum resident set size (KB) = 1022636
Test 036 control_c384gdas_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_intel
Checking test 037 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2039,28 +2039,28 @@ Checking test 037 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 125.015567
- 0: The maximum resident set size (KB) = 601880
+ 0: The total amount of wall time = 139.297600
+ 0: The maximum resident set size (KB) = 598852
Test 037 control_stochy_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_restart_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_restart_intel
Checking test 038 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 69.934029
- 0: The maximum resident set size (KB) = 428924
+ 0: The total amount of wall time = 76.713317
+ 0: The maximum resident set size (KB) = 431932
Test 038 control_stochy_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_intel
Checking test 039 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2071,14 +2071,14 @@ Checking test 039 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 116.805499
- 0: The maximum resident set size (KB) = 596772
+ 0: The total amount of wall time = 134.387228
+ 0: The maximum resident set size (KB) = 597496
Test 039 control_lndp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr4_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr4_intel
Checking test 040 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2093,14 +2093,14 @@ Checking test 040 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 213.949351
- 0: The maximum resident set size (KB) = 593408
+ 0: The total amount of wall time = 209.365755
+ 0: The maximum resident set size (KB) = 590860
Test 040 control_iovr4_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr5_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr5_intel
Checking test 041 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2115,14 +2115,14 @@ Checking test 041 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 208.976749
- 0: The maximum resident set size (KB) = 596468
+ 0: The total amount of wall time = 209.250823
+ 0: The maximum resident set size (KB) = 595660
Test 041 control_iovr5_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_intel
Checking test 042 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2169,14 +2169,14 @@ Checking test 042 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 230.259030
- 0: The maximum resident set size (KB) = 1558272
+ 0: The total amount of wall time = 242.335049
+ 0: The maximum resident set size (KB) = 1570384
Test 042 control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8.v2.sfc_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8.v2.sfc_intel
Checking test 043 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2223,14 +2223,14 @@ Checking test 043 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.546037
- 0: The maximum resident set size (KB) = 1565240
+ 0: The total amount of wall time = 240.935650
+ 0: The maximum resident set size (KB) = 1569536
Test 043 control_p8.v2.sfc_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_ugwpv1_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_ugwpv1_intel
Checking test 044 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2277,14 +2277,14 @@ Checking test 044 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 221.330175
- 0: The maximum resident set size (KB) = 1575000
+ 0: The total amount of wall time = 244.369269
+ 0: The maximum resident set size (KB) = 1570384
Test 044 control_p8_ugwpv1_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_intel
Checking test 045 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2323,14 +2323,14 @@ Checking test 045 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 124.103869
- 0: The maximum resident set size (KB) = 810300
+ 0: The total amount of wall time = 123.232688
+ 0: The maximum resident set size (KB) = 813224
Test 045 control_restart_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_noqr_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_noqr_p8_intel
Checking test 046 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2377,14 +2377,14 @@ Checking test 046 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 223.966687
- 0: The maximum resident set size (KB) = 1549348
+ 0: The total amount of wall time = 235.400317
+ 0: The maximum resident set size (KB) = 1545972
Test 046 control_noqr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_noqr_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_noqr_p8_intel
Checking test 047 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2423,14 +2423,14 @@ Checking test 047 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 120.227079
- 0: The maximum resident set size (KB) = 835180
+ 0: The total amount of wall time = 115.787462
+ 0: The maximum resident set size (KB) = 836744
Test 047 control_restart_noqr_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_decomp_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_decomp_p8_intel
Checking test 048 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2473,14 +2473,14 @@ Checking test 048 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 237.362702
- 0: The maximum resident set size (KB) = 1548184
+ 0: The total amount of wall time = 250.225493
+ 0: The maximum resident set size (KB) = 1564548
Test 048 control_decomp_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_2threads_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_2threads_p8_intel
Checking test 049 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2523,14 +2523,14 @@ Checking test 049 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 223.751944
- 0: The maximum resident set size (KB) = 1645176
+ 0: The total amount of wall time = 227.797386
+ 0: The maximum resident set size (KB) = 1663432
Test 049 control_2threads_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_lndp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_lndp_intel
Checking test 050 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2549,14 +2549,14 @@ Checking test 050 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 417.231482
- 0: The maximum resident set size (KB) = 1560648
+ 0: The total amount of wall time = 439.092017
+ 0: The maximum resident set size (KB) = 1568156
Test 050 control_p8_lndp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_rrtmgp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_rrtmgp_intel
Checking test 051 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2603,14 +2603,14 @@ Checking test 051 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 298.422724
- 0: The maximum resident set size (KB) = 1635200
+ 0: The total amount of wall time = 322.024555
+ 0: The maximum resident set size (KB) = 1628036
Test 051 control_p8_rrtmgp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_mynn_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_mynn_intel
Checking test 052 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2657,14 +2657,14 @@ Checking test 052 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.568739
- 0: The maximum resident set size (KB) = 1580556
+ 0: The total amount of wall time = 242.210664
+ 0: The maximum resident set size (KB) = 1577980
Test 052 control_p8_mynn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/merra2_thompson_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/merra2_thompson_intel
Checking test 053 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2711,14 +2711,14 @@ Checking test 053 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 267.610727
- 0: The maximum resident set size (KB) = 1585996
+ 0: The total amount of wall time = 286.232530
+ 0: The maximum resident set size (KB) = 1581064
Test 053 merra2_thompson_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_intel
Checking test 054 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2729,28 +2729,28 @@ Checking test 054 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 430.572297
- 0: The maximum resident set size (KB) = 758916
+ 0: The total amount of wall time = 465.059233
+ 0: The maximum resident set size (KB) = 754924
Test 054 regional_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_restart_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_restart_intel
Checking test 055 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 219.037545
- 0: The maximum resident set size (KB) = 935416
+ 0: The total amount of wall time = 232.631079
+ 0: The maximum resident set size (KB) = 924908
Test 055 regional_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_decomp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_decomp_intel
Checking test 056 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2761,14 +2761,14 @@ Checking test 056 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 455.034196
- 0: The maximum resident set size (KB) = 748772
+ 0: The total amount of wall time = 480.682582
+ 0: The maximum resident set size (KB) = 750780
Test 056 regional_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2threads_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2threads_intel
Checking test 057 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2779,28 +2779,28 @@ Checking test 057 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 264.108947
- 0: The maximum resident set size (KB) = 750308
+ 0: The total amount of wall time = 300.688659
+ 0: The maximum resident set size (KB) = 747208
Test 057 regional_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_netcdf_parallel_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_netcdf_parallel_intel
Checking test 058 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc ............ALT CHECK......OK
+ Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 416.634061
- 0: The maximum resident set size (KB) = 752540
+ 0: The total amount of wall time = 462.175279
+ 0: The maximum resident set size (KB) = 759244
Test 058 regional_netcdf_parallel_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2dwrtdecomp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2dwrtdecomp_intel
Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2811,14 +2811,14 @@ Checking test 059 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 426.296210
- 0: The maximum resident set size (KB) = 756220
+ 0: The total amount of wall time = 460.849069
+ 0: The maximum resident set size (KB) = 753572
Test 059 regional_2dwrtdecomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_intel
Checking test 060 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2865,14 +2865,14 @@ Checking test 060 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 595.012302
- 0: The maximum resident set size (KB) = 979152
+ 0: The total amount of wall time = 622.549939
+ 0: The maximum resident set size (KB) = 982332
Test 060 rap_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_intel
Checking test 061 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2883,14 +2883,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 336.578899
- 0: The maximum resident set size (KB) = 1203488
+ 0: The total amount of wall time = 378.262347
+ 0: The maximum resident set size (KB) = 1191512
Test 061 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_decomp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_decomp_intel
Checking test 062 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2937,14 +2937,14 @@ Checking test 062 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 636.071325
- 0: The maximum resident set size (KB) = 971688
+ 0: The total amount of wall time = 646.654023
+ 0: The maximum resident set size (KB) = 974212
Test 062 rap_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_intel
Checking test 063 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2991,14 +2991,14 @@ Checking test 063 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 579.475226
- 0: The maximum resident set size (KB) = 1061520
+ 0: The total amount of wall time = 596.444166
+ 0: The maximum resident set size (KB) = 1076012
Test 063 rap_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_intel
Checking test 064 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3037,14 +3037,14 @@ Checking test 064 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 320.380683
- 0: The maximum resident set size (KB) = 983312
+ 0: The total amount of wall time = 311.632937
+ 0: The maximum resident set size (KB) = 978004
Test 064 rap_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_intel
Checking test 065 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3091,14 +3091,14 @@ Checking test 065 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 607.543247
- 0: The maximum resident set size (KB) = 981920
+ 0: The total amount of wall time = 615.912751
+ 0: The maximum resident set size (KB) = 975292
Test 065 rap_sfcdiff_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_decomp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_decomp_intel
Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3145,14 +3145,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 631.456578
- 0: The maximum resident set size (KB) = 961208
+ 0: The total amount of wall time = 655.084638
+ 0: The maximum resident set size (KB) = 974472
Test 066 rap_sfcdiff_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_restart_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_restart_intel
Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3191,14 +3191,14 @@ Checking test 067 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 467.410399
- 0: The maximum resident set size (KB) = 990640
+ 0: The total amount of wall time = 459.124533
+ 0: The maximum resident set size (KB) = 984396
Test 067 rap_sfcdiff_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_intel
Checking test 068 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3245,14 +3245,14 @@ Checking test 068 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 307.642296
- 0: The maximum resident set size (KB) = 974528
+ 0: The total amount of wall time = 306.594831
+ 0: The maximum resident set size (KB) = 971332
Test 068 hrrr_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_intel
Checking test 069 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3299,14 +3299,14 @@ Checking test 069 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 318.398241
- 0: The maximum resident set size (KB) = 965840
+ 0: The total amount of wall time = 312.725531
+ 0: The maximum resident set size (KB) = 969396
Test 069 hrrr_control_decomp_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_intel
Checking test 070 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3353,28 +3353,28 @@ Checking test 070 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 282.476061
- 0: The maximum resident set size (KB) = 1051404
+ 0: The total amount of wall time = 280.229414
+ 0: The maximum resident set size (KB) = 1038324
Test 070 hrrr_control_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_intel
Checking test 071 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 163.094490
- 0: The maximum resident set size (KB) = 912224
+ 0: The total amount of wall time = 162.782106
+ 0: The maximum resident set size (KB) = 903328
Test 071 hrrr_control_restart_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_intel
Checking test 072 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3421,14 +3421,14 @@ Checking test 072 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 601.257205
- 0: The maximum resident set size (KB) = 969496
+ 0: The total amount of wall time = 592.940855
+ 0: The maximum resident set size (KB) = 972816
Test 072 rrfs_v1beta_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_intel
Checking test 073 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3443,14 +3443,14 @@ Checking test 073 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 760.476294
- 0: The maximum resident set size (KB) = 1927008
+ 0: The total amount of wall time = 736.322287
+ 0: The maximum resident set size (KB) = 1930496
Test 073 rrfs_v1nssl_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_nohailnoccn_intel
Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3465,14 +3465,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 732.994073
- 0: The maximum resident set size (KB) = 1924848
+ 0: The total amount of wall time = 727.459835
+ 0: The maximum resident set size (KB) = 1926020
Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_intel
Checking test 075 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3483,14 +3483,14 @@ Checking test 075 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 476.475224
- 0: The maximum resident set size (KB) = 683096
+ 0: The total amount of wall time = 472.259244
+ 0: The maximum resident set size (KB) = 686476
Test 075 control_csawmg_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_intel
Checking test 076 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3501,14 +3501,14 @@ Checking test 076 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 463.147967
- 0: The maximum resident set size (KB) = 682252
+ 0: The total amount of wall time = 473.776226
+ 0: The maximum resident set size (KB) = 689928
Test 076 control_csawmgt_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_intel
Checking test 077 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3519,26 +3519,26 @@ Checking test 077 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 264.195431
- 0: The maximum resident set size (KB) = 653372
+ 0: The total amount of wall time = 267.668097
+ 0: The maximum resident set size (KB) = 651156
Test 077 control_ras_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_intel
Checking test 078 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 159.515892
- 0: The maximum resident set size (KB) = 488696
+ 0: The total amount of wall time = 182.392103
+ 0: The maximum resident set size (KB) = 495612
Test 078 control_wam_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_faster_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_faster_intel
Checking test 079 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3585,14 +3585,14 @@ Checking test 079 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 211.100612
- 0: The maximum resident set size (KB) = 1568516
+ 0: The total amount of wall time = 203.712492
+ 0: The maximum resident set size (KB) = 1565176
Test 079 control_p8_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_faster_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_faster_intel
Checking test 080 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3603,14 +3603,14 @@ Checking test 080 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 388.027608
- 0: The maximum resident set size (KB) = 755708
+ 0: The total amount of wall time = 381.544236
+ 0: The maximum resident set size (KB) = 751508
Test 080 regional_control_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_debug_intel
Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3637,364 +3637,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 197.949405
- 0: The maximum resident set size (KB) = 748288
+ 0: The total amount of wall time = 195.382809
+ 0: The maximum resident set size (KB) = 755236
Test 081 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 195.934017
- 0: The maximum resident set size (KB) = 749784
+ 0: The total amount of wall time = 193.667470
+ 0: The maximum resident set size (KB) = 751360
Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_debug_intel
Checking test 083 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 216.788547
- 0: The maximum resident set size (KB) = 755992
+ 0: The total amount of wall time = 213.827979
+ 0: The maximum resident set size (KB) = 757576
Test 083 control_stochy_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_debug_intel
Checking test 084 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 192.031486
- 0: The maximum resident set size (KB) = 752912
+ 0: The total amount of wall time = 195.171345
+ 0: The maximum resident set size (KB) = 754920
Test 084 control_lndp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_debug_intel
Checking test 085 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 304.862940
- 0: The maximum resident set size (KB) = 802476
+ 0: The total amount of wall time = 306.173514
+ 0: The maximum resident set size (KB) = 805012
Test 085 control_csawmg_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_debug_intel
Checking test 086 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 300.893166
- 0: The maximum resident set size (KB) = 804564
+ 0: The total amount of wall time = 299.189282
+ 0: The maximum resident set size (KB) = 799672
Test 086 control_csawmgt_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_debug_intel
Checking test 087 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 192.756996
- 0: The maximum resident set size (KB) = 764108
+ 0: The total amount of wall time = 196.074184
+ 0: The maximum resident set size (KB) = 765948
Test 087 control_ras_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_diag_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_diag_debug_intel
Checking test 088 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 196.879806
- 0: The maximum resident set size (KB) = 816552
+ 0: The total amount of wall time = 201.393334
+ 0: The maximum resident set size (KB) = 811344
Test 088 control_diag_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_debug_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_debug_p8_intel
Checking test 089 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 216.684691
- 0: The maximum resident set size (KB) = 1578496
+ 0: The total amount of wall time = 209.134500
+ 0: The maximum resident set size (KB) = 1580264
Test 089 control_debug_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_debug_intel
Checking test 090 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 1294.906142
- 0: The maximum resident set size (KB) = 764884
+ 0: The total amount of wall time = 1294.571150
+ 0: The maximum resident set size (KB) = 767456
Test 090 regional_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_intel
Checking test 091 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 362.037117
- 0: The maximum resident set size (KB) = 1142484
+ 0: The total amount of wall time = 352.739697
+ 0: The maximum resident set size (KB) = 1143984
Test 091 rap_control_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_intel
Checking test 092 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 353.948917
- 0: The maximum resident set size (KB) = 1126728
+ 0: The total amount of wall time = 351.954139
+ 0: The maximum resident set size (KB) = 1129848
Test 092 hrrr_control_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_gf_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_gf_debug_intel
Checking test 093 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 358.088782
- 0: The maximum resident set size (KB) = 1138236
+ 0: The total amount of wall time = 356.503727
+ 0: The maximum resident set size (KB) = 1143808
Test 093 hrrr_gf_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_c3_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_c3_debug_intel
Checking test 094 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 361.937057
- 0: The maximum resident set size (KB) = 1146536
+ 0: The total amount of wall time = 365.500152
+ 0: The maximum resident set size (KB) = 1132220
Test 094 hrrr_c3_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_drag_suite_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_drag_suite_debug_intel
Checking test 095 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 373.384664
- 0: The maximum resident set size (KB) = 1133048
+ 0: The total amount of wall time = 361.455609
+ 0: The maximum resident set size (KB) = 1143240
Test 095 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_diag_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_diag_debug_intel
Checking test 096 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 375.569447
- 0: The maximum resident set size (KB) = 1227640
+ 0: The total amount of wall time = 370.133226
+ 0: The maximum resident set size (KB) = 1225384
Test 096 rap_diag_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_cires_ugwp_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_cires_ugwp_debug_intel
Checking test 097 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 372.837048
- 0: The maximum resident set size (KB) = 1140416
+ 0: The total amount of wall time = 367.080624
+ 0: The maximum resident set size (KB) = 1132336
Test 097 rap_cires_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_ugwp_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_ugwp_debug_intel
Checking test 098 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 369.619346
- 0: The maximum resident set size (KB) = 1154948
+ 0: The total amount of wall time = 359.902877
+ 0: The maximum resident set size (KB) = 1145848
Test 098 rap_unified_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_lndp_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_lndp_debug_intel
Checking test 099 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 362.167227
- 0: The maximum resident set size (KB) = 1139720
+ 0: The total amount of wall time = 355.104906
+ 0: The maximum resident set size (KB) = 1142676
Test 099 rap_lndp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_progcld_thompson_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_progcld_thompson_debug_intel
Checking test 100 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 366.477841
- 0: The maximum resident set size (KB) = 1149552
+ 0: The total amount of wall time = 358.139613
+ 0: The maximum resident set size (KB) = 1147216
Test 100 rap_progcld_thompson_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_debug_intel
Checking test 101 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 351.444512
- 0: The maximum resident set size (KB) = 1138908
+ 0: The total amount of wall time = 349.353756
+ 0: The maximum resident set size (KB) = 1131740
Test 101 rap_noah_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_debug_intel
Checking test 102 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 369.048524
- 0: The maximum resident set size (KB) = 1140032
+ 0: The total amount of wall time = 354.419121
+ 0: The maximum resident set size (KB) = 1146220
Test 102 rap_sfcdiff_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 584.564107
- 0: The maximum resident set size (KB) = 1145208
+ 0: The total amount of wall time = 585.497395
+ 0: The maximum resident set size (KB) = 1131680
Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_debug_intel
Checking test 104 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 354.524565
- 0: The maximum resident set size (KB) = 1134284
+ 0: The total amount of wall time = 346.524844
+ 0: The maximum resident set size (KB) = 1139112
Test 104 rrfs_v1beta_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_clm_lake_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_clm_lake_debug_intel
Checking test 105 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 482.702399
- 0: The maximum resident set size (KB) = 1143736
+ 0: The total amount of wall time = 446.655388
+ 0: The maximum resident set size (KB) = 1143224
Test 105 rap_clm_lake_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_flake_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_flake_debug_intel
Checking test 106 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 362.257679
- 0: The maximum resident set size (KB) = 1139584
+ 0: The total amount of wall time = 355.722393
+ 0: The maximum resident set size (KB) = 1148008
Test 106 rap_flake_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_c96_no_nest_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_c96_no_nest_debug_intel
Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4035,26 +4035,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 621.988842
- 0: The maximum resident set size (KB) = 1144000
+ 0: The total amount of wall time = 623.542340
+ 0: The maximum resident set size (KB) = 1149448
Test 107 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_debug_intel
Checking test 108 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 368.732194
- 0: The maximum resident set size (KB) = 431620
+ 0: The total amount of wall time = 359.428519
+ 0: The maximum resident set size (KB) = 433748
Test 108 control_wam_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4065,14 +4065,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 307.325745
- 0: The maximum resident set size (KB) = 1080112
+ 0: The total amount of wall time = 343.766126
+ 0: The maximum resident set size (KB) = 1079348
Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn32_phy32_intel
Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4119,14 +4119,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 493.646222
- 0: The maximum resident set size (KB) = 897736
+ 0: The total amount of wall time = 533.275621
+ 0: The maximum resident set size (KB) = 897372
Test 110 rap_control_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_dyn32_phy32_intel
Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4173,14 +4173,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 254.459983
- 0: The maximum resident set size (KB) = 869524
+ 0: The total amount of wall time = 290.676863
+ 0: The maximum resident set size (KB) = 864312
Test 111 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_dyn32_phy32_intel
Checking test 112 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4227,14 +4227,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 474.654727
- 0: The maximum resident set size (KB) = 935216
+ 0: The total amount of wall time = 516.032694
+ 0: The maximum resident set size (KB) = 943856
Test 112 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_dyn32_phy32_intel
Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4281,14 +4281,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 243.951425
- 0: The maximum resident set size (KB) = 900808
+ 0: The total amount of wall time = 286.869536
+ 0: The maximum resident set size (KB) = 893000
Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_dyn32_phy32_intel
Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4335,14 +4335,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 273.511755
- 0: The maximum resident set size (KB) = 858584
+ 0: The total amount of wall time = 313.685081
+ 0: The maximum resident set size (KB) = 852292
Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_dyn32_phy32_intel
Checking test 115 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4381,28 +4381,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 371.795143
- 0: The maximum resident set size (KB) = 895716
+ 0: The total amount of wall time = 371.283402
+ 0: The maximum resident set size (KB) = 890876
Test 115 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_dyn32_phy32_intel
Checking test 116 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 135.689696
- 0: The maximum resident set size (KB) = 846412
+ 0: The total amount of wall time = 137.386903
+ 0: The maximum resident set size (KB) = 842772
Test 116 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_control_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_control_intel
Checking test 117 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4418,40 +4418,40 @@ Checking test 117 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 166.741815
- 0: The maximum resident set size (KB) = 1094164
+ 0: The total amount of wall time = 160.536175
+ 0: The maximum resident set size (KB) = 1094780
Test 117 conus13km_control_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_2threads_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_2threads_intel
Checking test 118 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 71.137121
- 0: The maximum resident set size (KB) = 1045464
+ 0: The total amount of wall time = 72.572251
+ 0: The maximum resident set size (KB) = 1045064
Test 118 conus13km_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_restart_mismatch_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_restart_mismatch_intel
Checking test 119 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 90.363616
- 0: The maximum resident set size (KB) = 1009008
+ 0: The total amount of wall time = 90.220163
+ 0: The maximum resident set size (KB) = 1015708
Test 119 conus13km_restart_mismatch_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_intel
Checking test 120 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4498,42 +4498,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 337.286470
- 0: The maximum resident set size (KB) = 894768
+ 0: The total amount of wall time = 332.349144
+ 0: The maximum resident set size (KB) = 894392
Test 120 rap_control_dyn64_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_dyn32_phy32_intel
Checking test 121 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 347.118740
- 0: The maximum resident set size (KB) = 1024996
+ 0: The total amount of wall time = 348.227973
+ 0: The maximum resident set size (KB) = 1014940
Test 121 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_dyn32_phy32_intel
Checking test 122 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 341.435940
- 0: The maximum resident set size (KB) = 1015840
+ 0: The total amount of wall time = 339.975464
+ 0: The maximum resident set size (KB) = 1014704
Test 122 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_intel
Checking test 123 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4547,14 +4547,14 @@ Checking test 123 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1087.950847
- 0: The maximum resident set size (KB) = 1129212
+ 0: The total amount of wall time = 1078.617766
+ 0: The maximum resident set size (KB) = 1129708
Test 123 conus13km_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_qr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_qr_intel
Checking test 124 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4568,97 +4568,85 @@ Checking test 124 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 1097.144274
- 0: The maximum resident set size (KB) = 844612
+ 0: The total amount of wall time = 1086.949583
+ 0: The maximum resident set size (KB) = 844356
Test 124 conus13km_debug_qr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_2threads_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_2threads_intel
Checking test 125 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 625.508257
- 0: The maximum resident set size (KB) = 1082896
+ 0: The total amount of wall time = 637.005964
+ 0: The maximum resident set size (KB) = 1073244
Test 125 conus13km_debug_2threads_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_radar_tten_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_radar_tten_debug_intel
Checking test 126 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 1090.871099
- 0: The maximum resident set size (KB) = 1189200
+ 0: The total amount of wall time = 1080.027581
+ 0: The maximum resident set size (KB) = 1191248
Test 126 conus13km_radar_tten_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_debug_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_debug_intel
Checking test 127 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 358.218954
- 0: The maximum resident set size (KB) = 1052784
+ 0: The total amount of wall time = 354.388561
+ 0: The maximum resident set size (KB) = 1059404
Test 127 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_intel
Checking test 128 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 440.317584
- 0: The maximum resident set size (KB) = 708940
+ 0: The total amount of wall time = 476.717845
+ 0: The maximum resident set size (KB) = 707808
Test 128 hafs_regional_atm_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 426.575343
- 0: The maximum resident set size (KB) = 1076816
+ 0: The total amount of wall time = 425.227955
+ 0: The maximum resident set size (KB) = 1087020
Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS
+Test 130 hafs_regional_atm_ocn_intel FAIL
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_intel
-Checking test 130 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 554.398133
- 0: The maximum resident set size (KB) = 769104
-
-Test 130 hafs_regional_atm_ocn_intel PASS
+Test 130 hafs_regional_atm_ocn_intel FAIL
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_wav_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_wav_intel
Checking test 131 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4667,14 +4655,14 @@ Checking test 131 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 980.919386
- 0: The maximum resident set size (KB) = 806804
+ 0: The total amount of wall time = 990.821542
+ 0: The maximum resident set size (KB) = 804264
Test 131 hafs_regional_atm_wav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_wav_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_ocn_wav_intel
Checking test 132 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4685,14 +4673,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 1079.750200
- 0: The maximum resident set size (KB) = 817652
+ 0: The total amount of wall time = 1079.639482
+ 0: The maximum resident set size (KB) = 821332
Test 132 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_nested_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_nested_intel
Checking test 133 gnv1_nested_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4704,8 +4692,8 @@ Checking test 133 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
@@ -4714,39 +4702,39 @@ Checking test 133 gnv1_nested_intel results ....
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 381.266198
- 0: The maximum resident set size (KB) = 769868
+ 0: The total amount of wall time = 410.179977
+ 0: The maximum resident set size (KB) = 763276
Test 133 gnv1_nested_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_intel
Checking test 134 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4754,14 +4742,14 @@ Checking test 134 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 583.656699
- 0: The maximum resident set size (KB) = 768212
+ 0: The total amount of wall time = 574.086147
+ 0: The maximum resident set size (KB) = 763520
Test 134 hafs_regional_docn_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_oisst_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_oisst_intel
Checking test 135 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4769,118 +4757,118 @@ Checking test 135 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 551.298794
- 0: The maximum resident set size (KB) = 750556
+ 0: The total amount of wall time = 561.841074
+ 0: The maximum resident set size (KB) = 747004
Test 135 hafs_regional_docn_oisst_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_intel
Checking test 136 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 205.916667
- 0: The maximum resident set size (KB) = 1037632
+ 0: The total amount of wall time = 207.068092
+ 0: The maximum resident set size (KB) = 1034420
Test 136 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_restart_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_restart_cfsr_intel
Checking test 137 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 125.908070
- 0: The maximum resident set size (KB) = 1017344
+ 0: The total amount of wall time = 121.050281
+ 0: The maximum resident set size (KB) = 1007432
Test 137 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_gefs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_gefs_intel
Checking test 138 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 200.714077
- 0: The maximum resident set size (KB) = 913544
+ 0: The total amount of wall time = 204.004465
+ 0: The maximum resident set size (KB) = 913884
Test 138 datm_cdeps_control_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_iau_gefs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_iau_gefs_intel
Checking test 139 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 204.003941
- 0: The maximum resident set size (KB) = 907476
+ 0: The total amount of wall time = 206.478686
+ 0: The maximum resident set size (KB) = 914100
Test 139 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_stochy_gefs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_stochy_gefs_intel
Checking test 140 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 203.927272
- 0: The maximum resident set size (KB) = 912740
+ 0: The total amount of wall time = 208.415550
+ 0: The maximum resident set size (KB) = 914816
Test 140 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_ciceC_cfsr_intel
Checking test 141 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 207.831267
- 0: The maximum resident set size (KB) = 1036912
+ 0: The total amount of wall time = 207.675031
+ 0: The maximum resident set size (KB) = 1041088
Test 141 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_cfsr_intel
Checking test 142 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 208.755974
- 0: The maximum resident set size (KB) = 1038776
+ 0: The total amount of wall time = 207.260765
+ 0: The maximum resident set size (KB) = 1042384
Test 142 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_gefs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_gefs_intel
Checking test 143 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 201.449011
- 0: The maximum resident set size (KB) = 911748
+ 0: The total amount of wall time = 204.051323
+ 0: The maximum resident set size (KB) = 914296
Test 143 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_cfsr_intel
Checking test 144 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4889,14 +4877,14 @@ Checking test 144 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 479.046727
- 0: The maximum resident set size (KB) = 878704
+ 0: The total amount of wall time = 470.466933
+ 0: The maximum resident set size (KB) = 872692
Test 144 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_gefs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_gefs_intel
Checking test 145 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -4905,77 +4893,77 @@ Checking test 145 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 467.773115
- 0: The maximum resident set size (KB) = 833532
+ 0: The total amount of wall time = 469.482267
+ 0: The maximum resident set size (KB) = 831800
Test 145 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_multiple_files_cfsr_intel
Checking test 146 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 206.298024
- 0: The maximum resident set size (KB) = 1039060
+ 0: The total amount of wall time = 205.678663
+ 0: The maximum resident set size (KB) = 1041052
Test 146 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_3072x1536_cfsr_intel
Checking test 147 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 288.865062
- 0: The maximum resident set size (KB) = 2393528
+ 0: The total amount of wall time = 306.289101
+ 0: The maximum resident set size (KB) = 2386896
Test 147 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_gfs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_gfs_intel
Checking test 148 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 326.031952
- 0: The maximum resident set size (KB) = 2400924
+ 0: The total amount of wall time = 293.490128
+ 0: The maximum resident set size (KB) = 2340200
Test 148 datm_cdeps_gfs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_debug_cfsr_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_debug_cfsr_intel
Checking test 149 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 462.707412
- 0: The maximum resident set size (KB) = 983568
+ 0: The total amount of wall time = 459.473457
+ 0: The maximum resident set size (KB) = 983740
Test 149 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_faster_intel
Checking test 150 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 205.142029
- 0: The maximum resident set size (KB) = 1034996
+ 0: The total amount of wall time = 238.194888
+ 0: The maximum resident set size (KB) = 1036176
Test 150 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_gswp3_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_gswp3_intel
Checking test 151 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -4984,14 +4972,14 @@ Checking test 151 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 83.281912
- 0: The maximum resident set size (KB) = 229072
+ 0: The total amount of wall time = 108.031724
+ 0: The maximum resident set size (KB) = 228376
Test 151 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_intel
Checking test 152 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5000,14 +4988,14 @@ Checking test 152 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 78.268524
- 0: The maximum resident set size (KB) = 248892
+ 0: The total amount of wall time = 91.316552
+ 0: The maximum resident set size (KB) = 248364
Test 152 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_rst_intel
Checking test 153 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5016,14 +5004,14 @@ Checking test 153 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 47.332999
- 0: The maximum resident set size (KB) = 244912
+ 0: The total amount of wall time = 39.165795
+ 0: The maximum resident set size (KB) = 245560
Test 153 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_sbs_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_sbs_intel
Checking test 154 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5112,14 +5100,14 @@ Checking test 154 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 852.187129
- 0: The maximum resident set size (KB) = 1589464
+ 0: The total amount of wall time = 692.889115
+ 0: The maximum resident set size (KB) = 1594420
Test 154 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_intel
Checking test 155 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5208,14 +5196,14 @@ Checking test 155 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 789.772449
- 0: The maximum resident set size (KB) = 1589472
+ 0: The total amount of wall time = 683.986966
+ 0: The maximum resident set size (KB) = 1582664
Test 155 control_p8_atmlnd_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_atmlnd_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_atmlnd_intel
Checking test 156 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5236,14 +5224,14 @@ Checking test 156 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 331.709767
- 0: The maximum resident set size (KB) = 857560
+ 0: The total amount of wall time = 343.651554
+ 0: The maximum resident set size (KB) = 853348
Test 156 control_restart_p8_atmlnd_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmwav_control_noaero_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmwav_control_noaero_p8_intel
Checking test 157 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5286,14 +5274,14 @@ Checking test 157 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 126.989919
- 0: The maximum resident set size (KB) = 1591356
+ 0: The total amount of wall time = 127.277317
+ 0: The maximum resident set size (KB) = 1590272
Test 157 atmwav_control_noaero_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_atmwav_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_atmwav_intel
Checking test 158 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5337,14 +5325,14 @@ Checking test 158 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 125.291813
- 0: The maximum resident set size (KB) = 601844
+ 0: The total amount of wall time = 152.366863
+ 0: The maximum resident set size (KB) = 603188
Test 158 control_atmwav_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_intel
Checking test 159 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5388,14 +5376,14 @@ Checking test 159 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 332.964639
- 0: The maximum resident set size (KB) = 1687164
+ 0: The total amount of wall time = 297.366017
+ 0: The maximum resident set size (KB) = 1685880
Test 159 atmaero_control_p8_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_intel
Checking test 160 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5439,14 +5427,14 @@ Checking test 160 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 404.525502
- 0: The maximum resident set size (KB) = 1698704
+ 0: The total amount of wall time = 379.443106
+ 0: The maximum resident set size (KB) = 1712780
-Test 160 atmaero_control_p8_rad_intel PASS
+Test 160 atmaero_control_p8_rad_intel PASS Tries: 2
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_micro_intel
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_micro_intel
Checking test 161 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5490,12 +5478,52 @@ Checking test 161 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 424.769735
- 0: The maximum resident set size (KB) = 1722428
+ 0: The total amount of wall time = 388.582436
+ 0: The maximum resident set size (KB) = 1725884
Test 161 atmaero_control_p8_rad_micro_intel PASS
+FAILED TESTS:
+hafs_regional_atm_ocn_intel 130 failed in run_test
+
+REGRESSION TEST FAILED
+Wed Feb 14 02:08:12 UTC 2024
+Elapsed time: 04h:01m:43s. Have a nice day!
+Wed Feb 14 02:14:51 UTC 2024
+Start Regression test
+
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
+Testing With Submodule Hashes:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile hafsw_intel elapsed time 1956 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+
+baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_302887/hafs_regional_atm_ocn_intel
+Checking test 001 hafs_regional_atm_ocn_intel results ....
+ Comparing atmf006.nc .........OK
+ Comparing sfcf006.nc .........OK
+ Comparing archv.2019_241_06.a .........OK
+ Comparing archs.2019_241_06.a .........OK
+ Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
+ Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
+
+ 0: The total amount of wall time = 552.777055
+ 0: The maximum resident set size (KB) = 764200
+
+Test 001 hafs_regional_atm_ocn_intel PASS
+
REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 01:18:49 UTC 2024
-Elapsed time: 03h:42m:45s. Have a nice day!
+Wed Feb 14 03:03:11 UTC 2024
+Elapsed time: 00h:48m:22s. Have a nice day!
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index e0179741c8..e6d4990e53 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,62 +1,62 @@
-Tue Feb 13 07:21:08 CST 2024
+Tue Feb 13 19:40:41 CST 2024
Start Regression test
-Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 207 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 655 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 755 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 424 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 205 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmw_intel elapsed time 698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmwm_intel elapsed time 787 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile datm_cdeps_debug_intel elapsed time 237 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile datm_cdeps_intel elapsed time 415 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 770 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 898 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 309 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 816 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 825 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 828 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 835 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 358 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1230 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 289 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1331 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_mixedmode_intel
+Compile hafs_all_intel elapsed time 759 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 757 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 795 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 941 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 744 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 968 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 319 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 1150 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1176 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 937 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_debug_intel elapsed time 300 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1074 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 320.137770
- 0: The maximum resident set size (KB) = 3183292
+ 0: The total amount of wall time = 301.535495
+ 0: The maximum resident set size (KB) = 3179084
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 976.818741
- 0: The maximum resident set size (KB) = 1742672
+ 0: The total amount of wall time = 974.980836
+ 0: The maximum resident set size (KB) = 1741024
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_iau_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1040.753397
- 0: The maximum resident set size (KB) = 2026528
+ 0: The total amount of wall time = 1054.768539
+ 0: The maximum resident set size (KB) = 2017916
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 482.902179
- 0: The maximum resident set size (KB) = 1108260
+ 0: The total amount of wall time = 471.097118
+ 0: The maximum resident set size (KB) = 1108868
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1164.770831
- 0: The maximum resident set size (KB) = 1657560
+ 0: The total amount of wall time = 1153.528751
+ 0: The maximum resident set size (KB) = 1643500
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_gfsv17_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1374.497143
- 0: The maximum resident set size (KB) = 1690716
+ 0: The total amount of wall time = 1380.424891
+ 0: The maximum resident set size (KB) = 1681692
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 340.202045
- 0: The maximum resident set size (KB) = 3209212
+ 0: The total amount of wall time = 326.555609
+ 0: The maximum resident set size (KB) = 3209740
Test 007 cpld_control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 340.271358
- 0: The maximum resident set size (KB) = 3211404
+ 0: The total amount of wall time = 324.692990
+ 0: The maximum resident set size (KB) = 3215900
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 191.803666
- 0: The maximum resident set size (KB) = 3254740
+ 0: The total amount of wall time = 191.987744
+ 0: The maximum resident set size (KB) = 3252180
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_qr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 340.472232
- 0: The maximum resident set size (KB) = 3242128
+ 0: The total amount of wall time = 326.013376
+ 0: The maximum resident set size (KB) = 3239592
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_qr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 192.945679
- 0: The maximum resident set size (KB) = 3273608
+ 0: The total amount of wall time = 200.568233
+ 0: The maximum resident set size (KB) = 3269664
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_2threads_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 372.238535
- 0: The maximum resident set size (KB) = 3556092
+ 0: The total amount of wall time = 355.299746
+ 0: The maximum resident set size (KB) = 3554336
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_decomp_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 333.537062
- 0: The maximum resident set size (KB) = 3205596
+ 0: The total amount of wall time = 328.622754
+ 0: The maximum resident set size (KB) = 3207056
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 296.900474
- 0: The maximum resident set size (KB) = 3068824
+ 0: The total amount of wall time = 269.503791
+ 0: The maximum resident set size (KB) = 3068272
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_ciceC_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 334.226686
- 0: The maximum resident set size (KB) = 3211628
+ 0: The total amount of wall time = 325.232715
+ 0: The maximum resident set size (KB) = 3213624
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c192_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c192_p8_intel
Checking test 016 cpld_control_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 616.960230
- 0: The maximum resident set size (KB) = 3337716
+ 0: The total amount of wall time = 595.455407
+ 0: The maximum resident set size (KB) = 3259364
Test 016 cpld_control_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_c192_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_c192_p8_intel
Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing sfcf030.tile1.nc .........OK
Comparing sfcf030.tile2.nc .........OK
@@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results ....
Comparing 20210323.120000.out_grd.ww3 .........OK
Comparing 20210323.120000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 365.798148
- 0: The maximum resident set size (KB) = 3621536
+ 0: The total amount of wall time = 384.019087
+ 0: The maximum resident set size (KB) = 3546764
Test 017 cpld_restart_c192_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_bmark_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_bmark_p8_intel
Checking test 018 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 655.426186
- 0: The maximum resident set size (KB) = 4126352
+ 0: The total amount of wall time = 638.338330
+ 0: The maximum resident set size (KB) = 4123728
Test 018 cpld_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_bmark_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_bmark_p8_intel
Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 406.394888
- 0: The maximum resident set size (KB) = 4374104
+ 0: The total amount of wall time = 441.359999
+ 0: The maximum resident set size (KB) = 4368600
Test 019 cpld_restart_bmark_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_s2sa_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_s2sa_p8_intel
Checking test 020 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 318.934259
- 0: The maximum resident set size (KB) = 3174240
+ 0: The total amount of wall time = 304.805018
+ 0: The maximum resident set size (KB) = 3175164
Test 020 cpld_s2sa_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_intel
Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 273.590493
- 0: The maximum resident set size (KB) = 1733960
+ 0: The total amount of wall time = 256.703064
+ 0: The maximum resident set size (KB) = 1724568
Test 021 cpld_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_nowave_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_nowave_noaero_p8_intel
Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 265.003925
- 0: The maximum resident set size (KB) = 1782116
+ 0: The total amount of wall time = 247.090018
+ 0: The maximum resident set size (KB) = 1782448
Test 022 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_p8_intel
Checking test 023 cpld_debug_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 517.927542
- 0: The maximum resident set size (KB) = 3245532
+ 0: The total amount of wall time = 502.349347
+ 0: The maximum resident set size (KB) = 3248244
Test 023 cpld_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_noaero_p8_intel
Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 352.849740
- 0: The maximum resident set size (KB) = 1753388
+ 0: The total amount of wall time = 344.755866
+ 0: The maximum resident set size (KB) = 1755776
Test 024 cpld_debug_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_agrid_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_agrid_intel
Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 266.353843
- 0: The maximum resident set size (KB) = 1780576
+ 0: The total amount of wall time = 245.304519
+ 0: The maximum resident set size (KB) = 1780988
Test 025 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c48_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c48_intel
Checking test 026 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 485.509805
- 0: The maximum resident set size (KB) = 2833696
+ 0: The total amount of wall time = 473.527220
+ 0: The maximum resident set size (KB) = 2825808
Test 026 cpld_control_c48_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_faster_intel
Checking test 027 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 315.741561
- 0: The maximum resident set size (KB) = 3210468
+ 0: The total amount of wall time = 333.172205
+ 0: The maximum resident set size (KB) = 3207816
Test 027 cpld_control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_pdlib_p8_intel
Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 981.770244
- 0: The maximum resident set size (KB) = 1771984
+ 0: The total amount of wall time = 977.209337
+ 0: The maximum resident set size (KB) = 1779632
Test 028 cpld_control_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_pdlib_p8_intel
Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 503.765702
- 0: The maximum resident set size (KB) = 1164720
+ 0: The total amount of wall time = 478.275910
+ 0: The maximum resident set size (KB) = 1169596
Test 029 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_pdlib_p8_intel
Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1094.704687
- 0: The maximum resident set size (KB) = 1679976
+ 0: The total amount of wall time = 1101.840624
+ 0: The maximum resident set size (KB) = 1667832
Test 030 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_pdlib_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_pdlib_p8_intel
Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
- 0: The total amount of wall time = 1489.069965
- 0: The maximum resident set size (KB) = 1720612
+ 0: The total amount of wall time = 1484.231567
+ 0: The maximum resident set size (KB) = 1707192
Test 031 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_flake_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_flake_intel
Checking test 032 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 206.006941
- 0: The maximum resident set size (KB) = 703636
+ 0: The total amount of wall time = 205.290697
+ 0: The maximum resident set size (KB) = 703408
Test 032 control_flake_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_intel
Checking test 033 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
- 0: The total amount of wall time = 141.920380
- 0: The maximum resident set size (KB) = 647620
+ 0: The total amount of wall time = 138.789268
+ 0: The maximum resident set size (KB) = 652048
Test 033 control_CubedSphereGrid_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_parallel_intel
Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 148.580511
- 0: The maximum resident set size (KB) = 650364
+ 0: The total amount of wall time = 150.138908
+ 0: The maximum resident set size (KB) = 654884
Test 034 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_latlon_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_latlon_intel
Checking test 035 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 143.877974
- 0: The maximum resident set size (KB) = 648308
+ 0: The total amount of wall time = 145.746665
+ 0: The maximum resident set size (KB) = 598520
Test 035 control_latlon_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_intel
Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 146.092259
- 0: The maximum resident set size (KB) = 648664
+ 0: The total amount of wall time = 143.687698
+ 0: The maximum resident set size (KB) = 651128
Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48_intel
Checking test 037 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 353.688719
-0: The maximum resident set size (KB) = 876488
+0: The total amount of wall time = 348.566627
+0: The maximum resident set size (KB) = 862692
Test 037 control_c48_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48.v2.sfc_intel
Checking test 038 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-0: The total amount of wall time = 355.015281
-0: The maximum resident set size (KB) = 871244
+0: The total amount of wall time = 351.363973
+0: The maximum resident set size (KB) = 872188
Test 038 control_c48.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c192_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c192_intel
Checking test 039 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 544.880487
- 0: The maximum resident set size (KB) = 852544
+ 0: The total amount of wall time = 536.023905
+ 0: The maximum resident set size (KB) = 857416
Test 039 control_c192_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384_intel
Checking test 040 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 601.418782
- 0: The maximum resident set size (KB) = 1242232
+ 0: The total amount of wall time = 603.759118
+ 0: The maximum resident set size (KB) = 1245304
Test 040 control_c384_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384gdas_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384gdas_intel
Checking test 041 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2288,17 +2288,17 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
@@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 542.340370
- 0: The maximum resident set size (KB) = 1354860
+ 0: The total amount of wall time = 536.538698
+ 0: The maximum resident set size (KB) = 1308248
Test 041 control_c384gdas_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_intel
Checking test 042 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 95.657819
- 0: The maximum resident set size (KB) = 658584
+ 0: The total amount of wall time = 236.088814
+ 0: The maximum resident set size (KB) = 659164
Test 042 control_stochy_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_restart_intel
Checking test 043 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 52.409910
- 0: The maximum resident set size (KB) = 506568
+ 0: The total amount of wall time = 51.087111
+ 0: The maximum resident set size (KB) = 499604
Test 043 control_stochy_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_intel
Checking test 044 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 91.197690
- 0: The maximum resident set size (KB) = 649152
+ 0: The total amount of wall time = 89.825266
+ 0: The maximum resident set size (KB) = 649260
Test 044 control_lndp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr4_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr4_intel
Checking test 045 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 144.944760
- 0: The maximum resident set size (KB) = 653948
+ 0: The total amount of wall time = 143.342597
+ 0: The maximum resident set size (KB) = 599720
Test 045 control_iovr4_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr5_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr5_intel
Checking test 046 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 144.120040
- 0: The maximum resident set size (KB) = 654868
+ 0: The total amount of wall time = 139.612058
+ 0: The maximum resident set size (KB) = 646880
Test 046 control_iovr5_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_intel
Checking test 047 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 175.744714
- 0: The maximum resident set size (KB) = 1634244
+ 0: The total amount of wall time = 177.132743
+ 0: The maximum resident set size (KB) = 1627744
Test 047 control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8.v2.sfc_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8.v2.sfc_intel
Checking test 048 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.258009
- 0: The maximum resident set size (KB) = 1633372
+ 0: The total amount of wall time = 176.627299
+ 0: The maximum resident set size (KB) = 1628272
Test 048 control_p8.v2.sfc_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_ugwpv1_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_ugwpv1_intel
Checking test 049 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 164.634120
- 0: The maximum resident set size (KB) = 1637332
+ 0: The total amount of wall time = 162.648454
+ 0: The maximum resident set size (KB) = 1626672
Test 049 control_p8_ugwpv1_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_intel
Checking test 050 control_restart_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 93.817179
- 0: The maximum resident set size (KB) = 887880
+ 0: The total amount of wall time = 90.237566
+ 0: The maximum resident set size (KB) = 888596
Test 050 control_restart_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_noqr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_noqr_p8_intel
Checking test 051 control_noqr_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf021.nc ............ALT CHECK......OK
@@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 168.838200
- 0: The maximum resident set size (KB) = 1609924
+ 0: The total amount of wall time = 172.399677
+ 0: The maximum resident set size (KB) = 1617304
Test 051 control_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_noqr_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_noqr_p8_intel
Checking test 052 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc ............ALT CHECK......OK
Comparing atmf024.nc ............ALT CHECK......OK
@@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 88.086273
- 0: The maximum resident set size (KB) = 930232
+ 0: The total amount of wall time = 88.759681
+ 0: The maximum resident set size (KB) = 926672
Test 052 control_restart_noqr_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_decomp_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_decomp_p8_intel
Checking test 053 control_decomp_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 171.440079
- 0: The maximum resident set size (KB) = 1613048
+ 0: The total amount of wall time = 172.092008
+ 0: The maximum resident set size (KB) = 1615132
Test 053 control_decomp_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_2threads_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_2threads_p8_intel
Checking test 054 control_2threads_p8_intel results ....
Comparing sfcf000.nc ............ALT CHECK......OK
Comparing sfcf024.nc ............ALT CHECK......OK
@@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 173.265497
- 0: The maximum resident set size (KB) = 1722552
+ 0: The total amount of wall time = 178.386978
+ 0: The maximum resident set size (KB) = 1714152
Test 054 control_2threads_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_lndp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_lndp_intel
Checking test 055 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
- 0: The total amount of wall time = 304.616880
- 0: The maximum resident set size (KB) = 1632628
+ 0: The total amount of wall time = 307.189829
+ 0: The maximum resident set size (KB) = 1618456
Test 055 control_p8_lndp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_rrtmgp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_rrtmgp_intel
Checking test 056 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 226.478061
- 0: The maximum resident set size (KB) = 1691784
+ 0: The total amount of wall time = 229.876717
+ 0: The maximum resident set size (KB) = 1687228
Test 056 control_p8_rrtmgp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_mynn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_mynn_intel
Checking test 057 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 169.165263
- 0: The maximum resident set size (KB) = 1636764
+ 0: The total amount of wall time = 167.886708
+ 0: The maximum resident set size (KB) = 1628684
Test 057 control_p8_mynn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/merra2_thompson_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/merra2_thompson_intel
Checking test 058 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 198.388047
- 0: The maximum resident set size (KB) = 1640672
+ 0: The total amount of wall time = 200.169508
+ 0: The maximum resident set size (KB) = 1644112
Test 058 merra2_thompson_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_intel
Checking test 059 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 300.787254
- 0: The maximum resident set size (KB) = 856192
+ 0: The total amount of wall time = 302.599084
+ 0: The maximum resident set size (KB) = 856200
Test 059 regional_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_restart_intel
Checking test 060 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 154.257351
- 0: The maximum resident set size (KB) = 1021732
+ 0: The total amount of wall time = 160.401540
+ 0: The maximum resident set size (KB) = 1023744
Test 060 regional_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_decomp_intel
Checking test 061 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 322.155953
- 0: The maximum resident set size (KB) = 846760
+ 0: The total amount of wall time = 318.727468
+ 0: The maximum resident set size (KB) = 848060
Test 061 regional_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2threads_intel
Checking test 062 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 210.109307
- 0: The maximum resident set size (KB) = 843420
+ 0: The total amount of wall time = 213.331729
+ 0: The maximum resident set size (KB) = 842564
Test 062 regional_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_noquilt_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_noquilt_intel
Checking test 063 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
- 0: The total amount of wall time = 296.505225
- 0: The maximum resident set size (KB) = 1360944
+ 0: The total amount of wall time = 294.509183
+ 0: The maximum resident set size (KB) = 1364140
Test 063 regional_noquilt_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_netcdf_parallel_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_netcdf_parallel_intel
Checking test 064 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
- 0: The total amount of wall time = 301.588209
- 0: The maximum resident set size (KB) = 856660
+ 0: The total amount of wall time = 293.990290
+ 0: The maximum resident set size (KB) = 855428
Test 064 regional_netcdf_parallel_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2dwrtdecomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2dwrtdecomp_intel
Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 301.572668
- 0: The maximum resident set size (KB) = 855720
+ 0: The total amount of wall time = 296.906280
+ 0: The maximum resident set size (KB) = 852100
Test 065 regional_2dwrtdecomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_wofs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_wofs_intel
Checking test 066 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 388.610672
- 0: The maximum resident set size (KB) = 1921536
+ 0: The total amount of wall time = 385.584485
+ 0: The maximum resident set size (KB) = 1921680
Test 066 regional_wofs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_intel
Checking test 067 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 455.002541
- 0: The maximum resident set size (KB) = 1101696
+ 0: The total amount of wall time = 454.379619
+ 0: The maximum resident set size (KB) = 1109460
Test 067 rap_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_intel
Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 278.679811
- 0: The maximum resident set size (KB) = 1295948
+ 0: The total amount of wall time = 275.976213
+ 0: The maximum resident set size (KB) = 1303044
Test 068 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_decomp_intel
Checking test 069 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 475.513808
- 0: The maximum resident set size (KB) = 1031808
+ 0: The total amount of wall time = 476.816352
+ 0: The maximum resident set size (KB) = 1028124
Test 069 rap_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_intel
Checking test 070 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 463.205573
- 0: The maximum resident set size (KB) = 1181644
+ 0: The total amount of wall time = 466.628534
+ 0: The maximum resident set size (KB) = 1182704
Test 070 rap_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_intel
Checking test 071 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 231.790556
- 0: The maximum resident set size (KB) = 1101304
+ 0: The total amount of wall time = 232.608853
+ 0: The maximum resident set size (KB) = 1098420
Test 071 rap_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_intel
Checking test 072 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 449.987491
- 0: The maximum resident set size (KB) = 1098676
+ 0: The total amount of wall time = 451.386579
+ 0: The maximum resident set size (KB) = 1099996
Test 072 rap_sfcdiff_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_decomp_intel
Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 476.195657
- 0: The maximum resident set size (KB) = 1035948
+ 0: The total amount of wall time = 477.216399
+ 0: The maximum resident set size (KB) = 1023840
Test 073 rap_sfcdiff_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_restart_intel
Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 340.521897
- 0: The maximum resident set size (KB) = 1136416
+ 0: The total amount of wall time = 340.230630
+ 0: The maximum resident set size (KB) = 1135196
Test 074 rap_sfcdiff_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_intel
Checking test 075 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 228.874974
- 0: The maximum resident set size (KB) = 1031240
+ 0: The total amount of wall time = 228.662743
+ 0: The maximum resident set size (KB) = 1039932
Test 075 hrrr_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_intel
Checking test 076 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 234.722682
- 0: The maximum resident set size (KB) = 1025744
+ 0: The total amount of wall time = 237.099533
+ 0: The maximum resident set size (KB) = 1019136
Test 076 hrrr_control_decomp_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_intel
Checking test 077 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 196.696297
- 0: The maximum resident set size (KB) = 1108096
+ 0: The total amount of wall time = 193.806730
+ 0: The maximum resident set size (KB) = 1111304
Test 077 hrrr_control_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_intel
Checking test 078 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 120.963484
- 0: The maximum resident set size (KB) = 1000016
+ 0: The total amount of wall time = 120.266180
+ 0: The maximum resident set size (KB) = 1000480
Test 078 hrrr_control_restart_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_intel
Checking test 079 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 445.826785
- 0: The maximum resident set size (KB) = 1104644
+ 0: The total amount of wall time = 444.578004
+ 0: The maximum resident set size (KB) = 1090636
Test 079 rrfs_v1beta_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_intel
Checking test 080 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 540.880889
- 0: The maximum resident set size (KB) = 1996392
+ 0: The total amount of wall time = 539.862203
+ 0: The maximum resident set size (KB) = 1995360
Test 080 rrfs_v1nssl_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_nohailnoccn_intel
Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 524.891853
- 0: The maximum resident set size (KB) = 2074640
+ 0: The total amount of wall time = 528.734531
+ 0: The maximum resident set size (KB) = 2067700
Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_intel
Checking test 082 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 347.602505
- 0: The maximum resident set size (KB) = 750596
+ 0: The total amount of wall time = 348.666453
+ 0: The maximum resident set size (KB) = 709872
Test 082 control_csawmg_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_intel
Checking test 083 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 340.345273
- 0: The maximum resident set size (KB) = 749620
+ 0: The total amount of wall time = 340.256091
+ 0: The maximum resident set size (KB) = 750524
Test 083 control_csawmgt_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_intel
Checking test 084 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
- 0: The total amount of wall time = 186.574288
- 0: The maximum resident set size (KB) = 739860
+ 0: The total amount of wall time = 190.111149
+ 0: The maximum resident set size (KB) = 741976
Test 084 control_ras_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_intel
Checking test 085 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
- 0: The total amount of wall time = 114.072251
- 0: The maximum resident set size (KB) = 656612
+ 0: The total amount of wall time = 117.836898
+ 0: The maximum resident set size (KB) = 659492
Test 085 control_wam_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_faster_intel
Checking test 086 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 151.246167
- 0: The maximum resident set size (KB) = 1632840
+ 0: The total amount of wall time = 147.710157
+ 0: The maximum resident set size (KB) = 1634152
Test 086 control_p8_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_faster_intel
Checking test 087 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 270.600584
- 0: The maximum resident set size (KB) = 850360
+ 0: The total amount of wall time = 269.950099
+ 0: The maximum resident set size (KB) = 851480
Test 087 regional_control_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_debug_intel
Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
- 0: The total amount of wall time = 158.781980
- 0: The maximum resident set size (KB) = 817936
+ 0: The total amount of wall time = 162.342462
+ 0: The maximum resident set size (KB) = 817468
Test 088 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 147.984889
- 0: The maximum resident set size (KB) = 813672
+ 0: The total amount of wall time = 158.582992
+ 0: The maximum resident set size (KB) = 761260
Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_debug_intel
Checking test 090 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 184.036182
- 0: The maximum resident set size (KB) = 812488
+ 0: The total amount of wall time = 179.328922
+ 0: The maximum resident set size (KB) = 817520
Test 090 control_stochy_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_debug_intel
Checking test 091 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 162.001549
- 0: The maximum resident set size (KB) = 816176
+ 0: The total amount of wall time = 158.282236
+ 0: The maximum resident set size (KB) = 815488
Test 091 control_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_debug_intel
Checking test 092 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 238.795480
- 0: The maximum resident set size (KB) = 866976
+ 0: The total amount of wall time = 242.121993
+ 0: The maximum resident set size (KB) = 862520
Test 092 control_csawmg_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_debug_intel
Checking test 093 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 235.943895
- 0: The maximum resident set size (KB) = 864720
+ 0: The total amount of wall time = 235.562702
+ 0: The maximum resident set size (KB) = 860060
Test 093 control_csawmgt_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_debug_intel
Checking test 094 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 160.796367
- 0: The maximum resident set size (KB) = 827464
+ 0: The total amount of wall time = 159.786021
+ 0: The maximum resident set size (KB) = 828620
Test 094 control_ras_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_diag_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_diag_debug_intel
Checking test 095 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 161.813592
- 0: The maximum resident set size (KB) = 874568
+ 0: The total amount of wall time = 161.567847
+ 0: The maximum resident set size (KB) = 870248
Test 095 control_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_debug_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_debug_p8_intel
Checking test 096 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 163.643867
- 0: The maximum resident set size (KB) = 1639572
+ 0: The total amount of wall time = 165.609448
+ 0: The maximum resident set size (KB) = 1643948
Test 096 control_debug_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_debug_intel
Checking test 097 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
- 0: The total amount of wall time = 997.857687
- 0: The maximum resident set size (KB) = 842436
+ 0: The total amount of wall time = 1029.052233
+ 0: The maximum resident set size (KB) = 842300
Test 097 regional_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_intel
Checking test 098 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 278.848999
- 0: The maximum resident set size (KB) = 1200748
+ 0: The total amount of wall time = 290.234996
+ 0: The maximum resident set size (KB) = 1208800
Test 098 rap_control_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_intel
Checking test 099 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 281.894333
- 0: The maximum resident set size (KB) = 1205652
+ 0: The total amount of wall time = 281.196024
+ 0: The maximum resident set size (KB) = 1201560
Test 099 hrrr_control_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_gf_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_gf_debug_intel
Checking test 100 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 283.903194
- 0: The maximum resident set size (KB) = 1200536
+ 0: The total amount of wall time = 298.043240
+ 0: The maximum resident set size (KB) = 1144964
Test 100 hrrr_gf_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_c3_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_c3_debug_intel
Checking test 101 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 280.577737
- 0: The maximum resident set size (KB) = 1197872
+ 0: The total amount of wall time = 295.484683
+ 0: The maximum resident set size (KB) = 1195980
Test 101 hrrr_c3_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_drag_suite_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_drag_suite_debug_intel
Checking test 102 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 298.876541
- 0: The maximum resident set size (KB) = 1203680
+ 0: The total amount of wall time = 285.614768
+ 0: The maximum resident set size (KB) = 1203704
Test 102 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_diag_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_diag_debug_intel
Checking test 103 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 302.671210
- 0: The maximum resident set size (KB) = 1284240
+ 0: The total amount of wall time = 297.461129
+ 0: The maximum resident set size (KB) = 1290176
Test 103 rap_diag_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_cires_ugwp_debug_intel
Checking test 104 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 293.559141
- 0: The maximum resident set size (KB) = 1202408
+ 0: The total amount of wall time = 291.470095
+ 0: The maximum resident set size (KB) = 1199732
Test 104 rap_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_ugwp_debug_intel
Checking test 105 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 296.039251
- 0: The maximum resident set size (KB) = 1210684
+ 0: The total amount of wall time = 294.313429
+ 0: The maximum resident set size (KB) = 1198352
Test 105 rap_unified_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_lndp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_lndp_debug_intel
Checking test 106 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 291.733280
- 0: The maximum resident set size (KB) = 1203416
+ 0: The total amount of wall time = 314.634665
+ 0: The maximum resident set size (KB) = 1150932
Test 106 rap_lndp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_progcld_thompson_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_progcld_thompson_debug_intel
Checking test 107 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 285.473001
- 0: The maximum resident set size (KB) = 1203888
+ 0: The total amount of wall time = 286.027627
+ 0: The maximum resident set size (KB) = 1211628
Test 107 rap_progcld_thompson_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_debug_intel
Checking test 108 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 281.147913
- 0: The maximum resident set size (KB) = 1194952
+ 0: The total amount of wall time = 279.674781
+ 0: The maximum resident set size (KB) = 1198516
Test 108 rap_noah_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_debug_intel
Checking test 109 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.344693
- 0: The maximum resident set size (KB) = 1201816
+ 0: The total amount of wall time = 287.094300
+ 0: The maximum resident set size (KB) = 1202684
Test 109 rap_sfcdiff_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 471.073616
- 0: The maximum resident set size (KB) = 1198576
+ 0: The total amount of wall time = 474.631970
+ 0: The maximum resident set size (KB) = 1188640
Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_debug_intel
Checking test 111 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 276.476746
- 0: The maximum resident set size (KB) = 1195068
+ 0: The total amount of wall time = 282.726763
+ 0: The maximum resident set size (KB) = 1202944
Test 111 rrfs_v1beta_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_clm_lake_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_clm_lake_debug_intel
Checking test 112 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 337.077867
- 0: The maximum resident set size (KB) = 1203376
+ 0: The total amount of wall time = 356.573609
+ 0: The maximum resident set size (KB) = 1206544
Test 112 rap_clm_lake_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_flake_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_flake_debug_intel
Checking test 113 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 288.719924
- 0: The maximum resident set size (KB) = 1202444
+ 0: The total amount of wall time = 292.796758
+ 0: The maximum resident set size (KB) = 1203280
Test 113 rap_flake_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_c96_no_nest_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_c96_no_nest_debug_intel
Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 483.587321
- 0: The maximum resident set size (KB) = 1199812
+ 0: The total amount of wall time = 498.216245
+ 0: The maximum resident set size (KB) = 1204652
Test 114 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_debug_intel
Checking test 115 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
- 0: The total amount of wall time = 291.105171
- 0: The maximum resident set size (KB) = 505868
+ 0: The total amount of wall time = 286.764877
+ 0: The maximum resident set size (KB) = 515624
Test 115 control_wam_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
- 0: The total amount of wall time = 259.393839
- 0: The maximum resident set size (KB) = 1167240
+ 0: The total amount of wall time = 263.599302
+ 0: The maximum resident set size (KB) = 1168112
Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn32_phy32_intel
Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 378.838074
- 0: The maximum resident set size (KB) = 1049032
+ 0: The total amount of wall time = 374.977947
+ 0: The maximum resident set size (KB) = 990992
Test 117 rap_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_dyn32_phy32_intel
Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 193.249031
- 0: The maximum resident set size (KB) = 993904
+ 0: The total amount of wall time = 194.241147
+ 0: The maximum resident set size (KB) = 989448
Test 118 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_dyn32_phy32_intel
Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 397.779542
- 0: The maximum resident set size (KB) = 1086992
+ 0: The total amount of wall time = 391.465469
+ 0: The maximum resident set size (KB) = 1088532
Test 119 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_dyn32_phy32_intel
Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.259225
- 0: The maximum resident set size (KB) = 965660
+ 0: The total amount of wall time = 168.650345
+ 0: The maximum resident set size (KB) = 960700
Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_dyn32_phy32_intel
Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 211.174262
- 0: The maximum resident set size (KB) = 936728
+ 0: The total amount of wall time = 208.189304
+ 0: The maximum resident set size (KB) = 932732
Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_dyn32_phy32_intel
Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 278.525637
- 0: The maximum resident set size (KB) = 1037772
+ 0: The total amount of wall time = 284.767218
+ 0: The maximum resident set size (KB) = 1034380
Test 122 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_dyn32_phy32_intel
Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
- 0: The total amount of wall time = 102.169043
- 0: The maximum resident set size (KB) = 923184
+ 0: The total amount of wall time = 107.453722
+ 0: The maximum resident set size (KB) = 933064
Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_control_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_control_intel
Checking test 124 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 114.477522
- 0: The maximum resident set size (KB) = 1202640
+ 0: The total amount of wall time = 113.741949
+ 0: The maximum resident set size (KB) = 1198248
Test 124 conus13km_control_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_2threads_intel
Checking test 125 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 50.636063
- 0: The maximum resident set size (KB) = 1121968
+ 0: The total amount of wall time = 56.689549
+ 0: The maximum resident set size (KB) = 1123316
Test 125 conus13km_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_restart_mismatch_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_restart_mismatch_intel
Checking test 126 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
- 0: The total amount of wall time = 68.473048
- 0: The maximum resident set size (KB) = 1064972
+ 0: The total amount of wall time = 71.324885
+ 0: The maximum resident set size (KB) = 1112256
Test 126 conus13km_restart_mismatch_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_intel
Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 245.460714
- 0: The maximum resident set size (KB) = 995000
+ 0: The total amount of wall time = 244.166162
+ 0: The maximum resident set size (KB) = 996080
Test 127 rap_control_dyn64_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_dyn32_phy32_intel
Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 277.674209
- 0: The maximum resident set size (KB) = 1084072
+ 0: The total amount of wall time = 281.122094
+ 0: The maximum resident set size (KB) = 1081220
Test 128 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_dyn32_phy32_intel
Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 274.174193
- 0: The maximum resident set size (KB) = 1084692
+ 0: The total amount of wall time = 273.077148
+ 0: The maximum resident set size (KB) = 1078984
Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_intel
Checking test 130 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
- 0: The total amount of wall time = 858.046640
- 0: The maximum resident set size (KB) = 1228476
+ 0: The total amount of wall time = 883.616506
+ 0: The maximum resident set size (KB) = 1232096
Test 130 conus13km_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_qr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_qr_intel
Checking test 131 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
- 0: The total amount of wall time = 886.257909
- 0: The maximum resident set size (KB) = 923892
+ 0: The total amount of wall time = 877.481632
+ 0: The maximum resident set size (KB) = 930760
Test 131 conus13km_debug_qr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_2threads_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_2threads_intel
Checking test 132 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 487.724543
- 0: The maximum resident set size (KB) = 1153664
+ 0: The total amount of wall time = 512.702983
+ 0: The maximum resident set size (KB) = 1100960
Test 132 conus13km_debug_2threads_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_radar_tten_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_radar_tten_debug_intel
Checking test 133 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 880.303019
- 0: The maximum resident set size (KB) = 1293376
+ 0: The total amount of wall time = 864.228547
+ 0: The maximum resident set size (KB) = 1292208
Test 133 conus13km_radar_tten_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_debug_intel
Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
- 0: The total amount of wall time = 291.813123
- 0: The maximum resident set size (KB) = 1117312
+ 0: The total amount of wall time = 293.173758
+ 0: The maximum resident set size (KB) = 1123684
Test 134 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_intel
Checking test 135 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
- 0: The total amount of wall time = 326.815762
- 0: The maximum resident set size (KB) = 739728
+ 0: The total amount of wall time = 328.596464
+ 0: The maximum resident set size (KB) = 738476
Test 135 hafs_regional_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
- 0: The total amount of wall time = 351.147113
- 0: The maximum resident set size (KB) = 1119708
+ 0: The total amount of wall time = 364.630257
+ 0: The maximum resident set size (KB) = 1120072
Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_intel
Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 412.286472
- 0: The maximum resident set size (KB) = 828212
+ 0: The total amount of wall time = 411.993723
+ 0: The maximum resident set size (KB) = 783524
Test 137 hafs_regional_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_wav_intel
Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 772.792483
- 0: The maximum resident set size (KB) = 863476
+ 0: The total amount of wall time = 791.269515
+ 0: The maximum resident set size (KB) = 860592
Test 138 hafs_regional_atm_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_wav_intel
Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 864.136423
- 0: The maximum resident set size (KB) = 886000
+ 0: The total amount of wall time = 875.524976
+ 0: The maximum resident set size (KB) = 884624
Test 139 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_1nest_atm_intel
Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 371.077882
- 0: The maximum resident set size (KB) = 500792
+ 0: The total amount of wall time = 365.464749
+ 0: The maximum resident set size (KB) = 499320
Test 140 hafs_regional_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_telescopic_2nests_atm_intel
Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
- 0: The total amount of wall time = 442.028429
- 0: The maximum resident set size (KB) = 521768
+ 0: The total amount of wall time = 443.561957
+ 0: The maximum resident set size (KB) = 486292
Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_1nest_atm_intel
Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5075,18 +5075,18 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
@@ -5112,14 +5112,14 @@ Checking test 142 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 184.650281
- 0: The maximum resident set size (KB) = 370728
+ 0: The total amount of wall time = 182.443505
+ 0: The maximum resident set size (KB) = 373596
Test 142 hafs_global_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_multiple_4nests_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_multiple_4nests_atm_intel
Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5151,15 +5151,15 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
@@ -5177,14 +5177,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
@@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
- 0: The total amount of wall time = 473.950464
- 0: The maximum resident set size (KB) = 467056
+ 0: The total amount of wall time = 491.611369
+ 0: The maximum resident set size (KB) = 479896
Test 143 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_specified_moving_1nest_atm_intel
Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
- 0: The total amount of wall time = 243.959253
- 0: The maximum resident set size (KB) = 532552
+ 0: The total amount of wall time = 243.768041
+ 0: The maximum resident set size (KB) = 528900
Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- 0: The total amount of wall time = 230.519592
- 0: The maximum resident set size (KB) = 531148
+ 0: The total amount of wall time = 235.248058
+ 0: The maximum resident set size (KB) = 527440
Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5262,96 +5262,96 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
- 0: The total amount of wall time = 318.111875
- 0: The maximum resident set size (KB) = 594608
+ 0: The total amount of wall time = 319.007158
+ 0: The maximum resident set size (KB) = 543232
Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_storm_following_1nest_atm_intel
Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
- 0: The total amount of wall time = 73.974122
- 0: The maximum resident set size (KB) = 405436
+ 0: The total amount of wall time = 84.376151
+ 0: The maximum resident set size (KB) = 402088
Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_nested_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_nested_intel
Checking test 148 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
+ Comparing atmf006.nc ............ALT CHECK......NOT OK
+ Comparing sfcf006.nc ............ALT CHECK......NOT OK
+ Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK
+ Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK
Comparing RESTART/20200825.180000.coupler.res .........OK
Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 265.992543
- 0: The maximum resident set size (KB) = 809036
-
-Test 148 gnv1_nested_intel PASS Tries: 2
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK
+ Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK
+
+ 0: The total amount of wall time = 289.137622
+ 0: The maximum resident set size (KB) = 803856
+
+Test 148 gnv1_nested_intel FAIL Tries: 2
+
+
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
- 0: The total amount of wall time = 791.890844
- 0: The maximum resident set size (KB) = 578968
+ 0: The total amount of wall time = 1249.711129
+ 0: The maximum resident set size (KB) = 574500
Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 574.391096
- 0: The maximum resident set size (KB) = 676728
+ 0: The total amount of wall time = 577.595540
+ 0: The maximum resident set size (KB) = 672492
Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 567.054858
- 0: The maximum resident set size (KB) = 711308
+ 0: The total amount of wall time = 581.714316
+ 0: The maximum resident set size (KB) = 716316
Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
- 0: The total amount of wall time = 414.011432
- 0: The maximum resident set size (KB) = 731488
+ 0: The total amount of wall time = 457.182550
+ 0: The maximum resident set size (KB) = 643412
Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_intel
Checking test 153 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 377.463284
- 0: The maximum resident set size (KB) = 830280
+ 0: The total amount of wall time = 373.592859
+ 0: The maximum resident set size (KB) = 831768
Test 153 hafs_regional_docn_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_oisst_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_oisst_intel
Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
- 0: The total amount of wall time = 375.348019
- 0: The maximum resident set size (KB) = 817940
+ 0: The total amount of wall time = 384.377249
+ 0: The maximum resident set size (KB) = 815344
Test 154 hafs_regional_docn_oisst_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_datm_cdeps_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_datm_cdeps_intel
Checking test 155 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
- 0: The total amount of wall time = 961.509856
- 0: The maximum resident set size (KB) = 1211824
+ 0: The total amount of wall time = 948.326176
+ 0: The maximum resident set size (KB) = 1209820
Test 155 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_intel
Checking test 156 datm_cdeps_control_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 155.659234
- 0: The maximum resident set size (KB) = 1100676
+ 0: The total amount of wall time = 152.647059
+ 0: The maximum resident set size (KB) = 1138652
Test 156 datm_cdeps_control_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_restart_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_restart_cfsr_intel
Checking test 157 datm_cdeps_restart_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 94.960814
- 0: The maximum resident set size (KB) = 1088100
+ 0: The total amount of wall time = 88.683271
+ 0: The maximum resident set size (KB) = 1091432
Test 157 datm_cdeps_restart_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_gefs_intel
Checking test 158 datm_cdeps_control_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.088906
- 0: The maximum resident set size (KB) = 1011320
+ 0: The total amount of wall time = 147.245503
+ 0: The maximum resident set size (KB) = 1015548
Test 158 datm_cdeps_control_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_iau_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_iau_gefs_intel
Checking test 159 datm_cdeps_iau_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.868252
- 0: The maximum resident set size (KB) = 1008800
+ 0: The total amount of wall time = 148.886800
+ 0: The maximum resident set size (KB) = 1013800
Test 159 datm_cdeps_iau_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_stochy_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_stochy_gefs_intel
Checking test 160 datm_cdeps_stochy_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 148.832993
- 0: The maximum resident set size (KB) = 1020416
+ 0: The total amount of wall time = 148.175446
+ 0: The maximum resident set size (KB) = 1019588
Test 160 datm_cdeps_stochy_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_ciceC_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_ciceC_cfsr_intel
Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 149.837693
- 0: The maximum resident set size (KB) = 1144264
+ 0: The total amount of wall time = 153.317638
+ 0: The maximum resident set size (KB) = 1131700
Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_cfsr_intel
Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 152.743569
- 0: The maximum resident set size (KB) = 1139092
+ 0: The total amount of wall time = 147.508235
+ 0: The maximum resident set size (KB) = 1116288
Test 162 datm_cdeps_bulk_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_gefs_intel
Checking test 163 datm_cdeps_bulk_gefs_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 144.103990
- 0: The maximum resident set size (KB) = 1014016
+ 0: The total amount of wall time = 148.047303
+ 0: The maximum resident set size (KB) = 1019492
Test 163 datm_cdeps_bulk_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_cfsr_intel
Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 348.519925
- 0: The maximum resident set size (KB) = 1060008
+ 0: The total amount of wall time = 353.523564
+ 0: The maximum resident set size (KB) = 1058268
Test 164 datm_cdeps_mx025_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_gefs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_gefs_intel
Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/20111001.120000.MOM.res.nc .........OK
Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
@@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel results ....
Comparing RESTART/iced.2011-10-01-43200.nc .........OK
Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
- 0: The total amount of wall time = 338.533738
- 0: The maximum resident set size (KB) = 1046004
+ 0: The total amount of wall time = 345.307426
+ 0: The maximum resident set size (KB) = 1001192
Test 165 datm_cdeps_mx025_gefs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_multiple_files_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_multiple_files_cfsr_intel
Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 147.239029
- 0: The maximum resident set size (KB) = 1128924
+ 0: The total amount of wall time = 153.115196
+ 0: The maximum resident set size (KB) = 1137200
Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_3072x1536_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_3072x1536_cfsr_intel
Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 216.424833
- 0: The maximum resident set size (KB) = 2452904
+ 0: The total amount of wall time = 217.054180
+ 0: The maximum resident set size (KB) = 2403708
Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_gfs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_gfs_intel
Checking test 168 datm_cdeps_gfs_intel results ....
Comparing RESTART/20210323.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 208.716914
- 0: The maximum resident set size (KB) = 2491112
+ 0: The total amount of wall time = 217.555488
+ 0: The maximum resident set size (KB) = 2469852
Test 168 datm_cdeps_gfs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_debug_cfsr_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_debug_cfsr_intel
Checking test 169 datm_cdeps_debug_cfsr_intel results ....
Comparing RESTART/20111001.060000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-01-21600.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
- 0: The total amount of wall time = 372.658357
- 0: The maximum resident set size (KB) = 1073980
+ 0: The total amount of wall time = 362.860271
+ 0: The maximum resident set size (KB) = 1063896
Test 169 datm_cdeps_debug_cfsr_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_faster_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_faster_intel
Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
Comparing RESTART/20111002.000000.MOM.res.nc .........OK
Comparing RESTART/iced.2011-10-02-00000.nc .........OK
Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
- 0: The total amount of wall time = 150.238847
- 0: The maximum resident set size (KB) = 1117860
+ 0: The total amount of wall time = 153.275664
+ 0: The maximum resident set size (KB) = 1139668
Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_gswp3_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_gswp3_intel
Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
@@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
- 0: The total amount of wall time = 42.544200
- 0: The maximum resident set size (KB) = 258140
+ 0: The total amount of wall time = 51.538648
+ 0: The maximum resident set size (KB) = 260780
Test 171 datm_cdeps_lnd_gswp3_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_intel
Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 44.188053
- 0: The maximum resident set size (KB) = 319844
+ 0: The total amount of wall time = 54.342466
+ 0: The maximum resident set size (KB) = 326276
Test 172 datm_cdeps_lnd_era5_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_rst_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_rst_intel
Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
@@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
- 0: The total amount of wall time = 26.864296
- 0: The maximum resident set size (KB) = 324004
+ 0: The total amount of wall time = 31.364450
+ 0: The maximum resident set size (KB) = 322284
Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_sbs_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_sbs_intel
Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 248.860392
- 0: The maximum resident set size (KB) = 1610064
+ 0: The total amount of wall time = 263.329875
+ 0: The maximum resident set size (KB) = 1611364
Test 174 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_intel
Checking test 175 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 248.172545
- 0: The maximum resident set size (KB) = 1601908
+ 0: The total amount of wall time = 264.134060
+ 0: The maximum resident set size (KB) = 1606780
Test 175 control_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_atmlnd_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_atmlnd_intel
Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
- 0: The total amount of wall time = 128.325973
- 0: The maximum resident set size (KB) = 905048
+ 0: The total amount of wall time = 125.990273
+ 0: The maximum resident set size (KB) = 900868
Test 176 control_restart_p8_atmlnd_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmwav_control_noaero_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmwav_control_noaero_p8_intel
Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results ....
Comparing 20210322.180000.out_grd.ww3 .........OK
Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
- 0: The total amount of wall time = 96.368620
- 0: The maximum resident set size (KB) = 1662076
+ 0: The total amount of wall time = 105.534816
+ 0: The maximum resident set size (KB) = 1659924
Test 177 atmwav_control_noaero_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_atmwav_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_atmwav_intel
Checking test 178 control_atmwav_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
Comparing 20210322.180000.restart.glo_1deg .........OK
- 0: The total amount of wall time = 94.819646
- 0: The maximum resident set size (KB) = 675536
+ 0: The total amount of wall time = 96.788507
+ 0: The maximum resident set size (KB) = 676480
Test 178 control_atmwav_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_intel
Checking test 179 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 227.627200
- 0: The maximum resident set size (KB) = 3027264
+ 0: The total amount of wall time = 239.493134
+ 0: The maximum resident set size (KB) = 3024016
Test 179 atmaero_control_p8_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_intel
Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 278.310815
- 0: The maximum resident set size (KB) = 3090976
+ 0: The total amount of wall time = 292.670045
+ 0: The maximum resident set size (KB) = 3089668
Test 180 atmaero_control_p8_rad_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_micro_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_micro_intel
Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 301.730404
- 0: The maximum resident set size (KB) = 3109836
+ 0: The total amount of wall time = 302.777064
+ 0: The maximum resident set size (KB) = 3104452
Test 181 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_atmaq_debug_intel
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_atmaq_debug_intel
Checking test 182 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -6182,12 +6182,91 @@ Checking test 182 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
- 0: The total amount of wall time = 1275.399529
- 0: The maximum resident set size (KB) = 4574848
+ 0: The total amount of wall time = 1300.410865
+ 0: The maximum resident set size (KB) = 4580096
Test 182 regional_atmaq_debug_intel PASS
+FAILED TESTS:
+148 gnv1_nested_intel failed in check_result
+gnv1_nested_intel 148 failed in run_test
+
+REGRESSION TEST FAILED
+Wed Feb 14 02:59:29 CST 2024
+Elapsed time: 07h:18m:50s. Have a nice day!
+Wed Feb 14 08:25:16 CST 2024
+Start Regression test
+
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
+Testing With Submodule Hashes:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+Compile hafsw_intel elapsed time 881 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
+working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_294699/gnv1_nested_intel
+Checking test 001 gnv1_nested_intel results ....
+ Comparing atmf006.nc .........OK
+ Comparing sfcf006.nc .........OK
+ Comparing atm.nest02.f006.nc .........OK
+ Comparing sfc.nest02.f006.nc .........OK
+ Comparing RESTART/20200825.180000.coupler.res .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
+ Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
+ Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
+ Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
+ Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
+
+ 0: The total amount of wall time = 284.447630
+ 0: The maximum resident set size (KB) = 802428
+
+Test 001 gnv1_nested_intel PASS Tries: 2
+
REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 08:55:49 CST 2024
-Elapsed time: 01h:34m:42s. Have a nice day!
+Wed Feb 14 09:00:56 CST 2024
+Elapsed time: 00h:35m:41s. Have a nice day!
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index acadb652df..a8a4b54def 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,54 +1,54 @@
-Tue Feb 13 14:08:04 UTC 2024
+Tue Feb 13 20:56:17 UTC 2024
Start Regression test
-Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f
+Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
Testing With Submodule Hashes:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (remotes/origin/HEAD)
+ b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 986 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 574 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 1532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 1139 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 1184 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 828 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 950 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 859 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1263 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 950 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1926 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 614 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 675 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1085 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_mixedmode_intel
+Compile atmaero_intel elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atmaq_debug_intel elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atmaq_intel elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_debug_dyn32_intel elapsed time 927 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile atm_dyn32_intel elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atm_faster_dyn32_intel elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile atml_intel elapsed time 921 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile csawmg_intel elapsed time 1170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_all_intel elapsed time 933 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafs_mom6w_intel elapsed time 709 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_debug_intel elapsed time 361 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile hafsw_faster_intel elapsed time 759 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile hafsw_intel elapsed time 832 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_debug_intel elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn32_phy32_faster_intel elapsed time 1053 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn32_phy32_intel elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_dyn64_phy32_debug_intel elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile rrfs_dyn64_phy32_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile rrfs_intel elapsed time 1296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+Compile s2s_aoflux_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2s_intel elapsed time 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_intel elapsed time 907 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_debug_intel elapsed time 287 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2swa_32bit_pdlib_intel elapsed time 705 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_faster_intel elapsed time 1279 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2swa_intel elapsed time 1393 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_intel elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile s2sw_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
+Compile s2sw_pdlib_intel elapsed time 1439 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
+Compile wam_debug_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
+Compile wam_intel elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
+
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_mixedmode_intel
Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 331.863056
-The maximum resident set size (KB) = 2979448
+The total amount of wall time = 329.457449
+The maximum resident set size (KB) = 2971044
Test 001 cpld_control_p8_mixedmode_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_intel
Checking test 002 cpld_control_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 930.280986
-The maximum resident set size (KB) = 1592472
+The total amount of wall time = 915.125525
+The maximum resident set size (KB) = 1595356
Test 002 cpld_control_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_iau_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_iau_intel
Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results ....
Comparing 20210323.120000.out_pnt.ww3 .........OK
Comparing 20210323.120000.out_grd.ww3 .........OK
-The total amount of wall time = 988.600915
-The maximum resident set size (KB) = 1709036
+The total amount of wall time = 997.808037
+The maximum resident set size (KB) = 1709916
Test 003 cpld_control_gfsv17_iau_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_gfsv17_intel
Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile1.nc .........OK
@@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 511.775827
-The maximum resident set size (KB) = 844884
+The total amount of wall time = 470.189352
+The maximum resident set size (KB) = 845676
Test 004 cpld_restart_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_gfsv17_intel
Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1058.114943
-The maximum resident set size (KB) = 1574192
+The total amount of wall time = 1066.801900
+The maximum resident set size (KB) = 1567592
Test 005 cpld_mpi_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_gfsv17_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_gfsv17_intel
Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1434.523120
-The maximum resident set size (KB) = 1600708
+The total amount of wall time = 1416.465302
+The maximum resident set size (KB) = 1603992
Test 006 cpld_debug_gfsv17_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_intel
Checking test 007 cpld_control_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 366.520247
-The maximum resident set size (KB) = 3004848
+The total amount of wall time = 368.621338
+The maximum resident set size (KB) = 3004160
Test 007 cpld_control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8.v2.sfc_intel
Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 374.641217
-The maximum resident set size (KB) = 3004676
+The total amount of wall time = 365.650165
+The maximum resident set size (KB) = 3003280
Test 008 cpld_control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_p8_intel
Checking test 009 cpld_restart_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 220.776679
-The maximum resident set size (KB) = 3061304
+The total amount of wall time = 220.617873
+The maximum resident set size (KB) = 3067660
Test 009 cpld_restart_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_qr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_qr_p8_intel
Checking test 010 cpld_control_qr_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 373.110410
-The maximum resident set size (KB) = 3030140
+The total amount of wall time = 371.869084
+The maximum resident set size (KB) = 3027368
Test 010 cpld_control_qr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_qr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_qr_p8_intel
Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 223.330382
-The maximum resident set size (KB) = 3081576
+The total amount of wall time = 227.395411
+The maximum resident set size (KB) = 3080028
Test 011 cpld_restart_qr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_2threads_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_2threads_p8_intel
Checking test 012 cpld_2threads_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 328.492173
-The maximum resident set size (KB) = 3314268
+The total amount of wall time = 330.381081
+The maximum resident set size (KB) = 3318488
Test 012 cpld_2threads_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_decomp_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_decomp_p8_intel
Checking test 013 cpld_decomp_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 364.404786
-The maximum resident set size (KB) = 3000836
+The total amount of wall time = 364.001102
+The maximum resident set size (KB) = 2997096
Test 013 cpld_decomp_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_p8_intel
Checking test 014 cpld_mpi_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 311.264276
-The maximum resident set size (KB) = 2924920
+The total amount of wall time = 308.580036
+The maximum resident set size (KB) = 2923452
Test 014 cpld_mpi_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_ciceC_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_ciceC_p8_intel
Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 372.575156
-The maximum resident set size (KB) = 3001148
+The total amount of wall time = 366.990523
+The maximum resident set size (KB) = 3002992
Test 015 cpld_control_ciceC_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_bmark_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_bmark_p8_intel
Checking test 016 cpld_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 756.229756
-The maximum resident set size (KB) = 3952788
+The total amount of wall time = 763.623435
+The maximum resident set size (KB) = 3957120
Test 016 cpld_bmark_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_bmark_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_bmark_p8_intel
Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing sfcf006.nc .........OK
Comparing atmf006.nc .........OK
@@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results ....
Comparing 20130401.060000.out_pnt.ww3 .........OK
Comparing 20130401.060000.out_grd.ww3 .........OK
-The total amount of wall time = 535.396418
-The maximum resident set size (KB) = 4245336
+The total amount of wall time = 540.980220
+The maximum resident set size (KB) = 4253632
Test 017 cpld_restart_bmark_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_s2sa_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_s2sa_p8_intel
Checking test 018 cpld_s2sa_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 345.947134
-The maximum resident set size (KB) = 2968192
+The total amount of wall time = 351.731756
+The maximum resident set size (KB) = 2969680
Test 018 cpld_s2sa_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_intel
Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 275.784359
-The maximum resident set size (KB) = 1584180
+The total amount of wall time = 273.246572
+The maximum resident set size (KB) = 1591812
Test 019 cpld_control_noaero_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_nowave_noaero_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_nowave_noaero_p8_intel
Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 281.338276
-The maximum resident set size (KB) = 1633792
+The total amount of wall time = 278.832067
+The maximum resident set size (KB) = 1635008
Test 020 cpld_control_nowave_noaero_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_agrid_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_agrid_intel
Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 278.570462
-The maximum resident set size (KB) = 1633692
+The total amount of wall time = 280.325052
+The maximum resident set size (KB) = 1634760
Test 021 cpld_control_noaero_p8_agrid_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_c48_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_c48_intel
Checking test 022 cpld_control_c48_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel results ....
Comparing RESTART/iced.2021-03-23-21600.nc .........OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-The total amount of wall time = 407.756080
-The maximum resident set size (KB) = 2645008
+The total amount of wall time = 418.314915
+The maximum resident set size (KB) = 2650180
Test 022 cpld_control_c48_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_faster_intel
Checking test 023 cpld_control_p8_faster_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 358.611900
-The maximum resident set size (KB) = 3002248
+The total amount of wall time = 367.397222
+The maximum resident set size (KB) = 3002092
Test 023 cpld_control_p8_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_pdlib_p8_intel
Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 931.577332
-The maximum resident set size (KB) = 1596928
+The total amount of wall time = 934.716069
+The maximum resident set size (KB) = 1608900
Test 024 cpld_control_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_pdlib_p8_intel
Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 472.299588
-The maximum resident set size (KB) = 896532
+The total amount of wall time = 478.797496
+The maximum resident set size (KB) = 900020
Test 025 cpld_restart_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_pdlib_p8_intel
Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing sfcf021.tile1.nc .........OK
Comparing sfcf021.tile2.nc .........OK
@@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results ....
Comparing 20210323.060000.out_pnt.ww3 .........OK
Comparing 20210323.060000.out_grd.ww3 .........OK
-The total amount of wall time = 1086.726641
-The maximum resident set size (KB) = 1572716
+The total amount of wall time = 1083.391522
+The maximum resident set size (KB) = 1585180
Test 026 cpld_mpi_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_pdlib_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_pdlib_p8_intel
Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing sfcf003.tile1.nc .........OK
Comparing sfcf003.tile2.nc .........OK
@@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results ....
Comparing 20210322.090000.out_pnt.ww3 .........OK
Comparing 20210322.090000.out_grd.ww3 .........OK
-The total amount of wall time = 1502.550695
-The maximum resident set size (KB) = 1617084
+The total amount of wall time = 1493.649751
+The maximum resident set size (KB) = 1622384
Test 027 cpld_debug_pdlib_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_flake_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_flake_intel
Checking test 028 control_flake_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 213.407031
-The maximum resident set size (KB) = 573496
+The total amount of wall time = 214.400844
+The maximum resident set size (KB) = 573988
Test 028 control_flake_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_intel
Checking test 029 control_CubedSphereGrid_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results ....
Comparing atmf024.tile5.nc .........OK
Comparing atmf024.tile6.nc .........OK
-The total amount of wall time = 133.640254
-The maximum resident set size (KB) = 523944
+The total amount of wall time = 132.972562
+The maximum resident set size (KB) = 521276
Test 029 control_CubedSphereGrid_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_parallel_intel
Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 139.287643
-The maximum resident set size (KB) = 527888
+The total amount of wall time = 141.212648
+The maximum resident set size (KB) = 526704
Test 030 control_CubedSphereGrid_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_latlon_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_latlon_intel
Checking test 031 control_latlon_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 133.985086
-The maximum resident set size (KB) = 523464
+The total amount of wall time = 134.857626
+The maximum resident set size (KB) = 524092
Test 031 control_latlon_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_intel
Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 135.308739
-The maximum resident set size (KB) = 523760
+The total amount of wall time = 137.418331
+The maximum resident set size (KB) = 526616
Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48_intel
Checking test 033 control_c48_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 330.959389
-The maximum resident set size (KB) = 718740
+The total amount of wall time = 333.592096
+The maximum resident set size (KB) = 717112
Test 033 control_c48_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48.v2.sfc_intel
Checking test 034 control_c48.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 327.277723
-The maximum resident set size (KB) = 714672
+The total amount of wall time = 328.720224
+The maximum resident set size (KB) = 716440
Test 034 control_c48.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c192_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c192_intel
Checking test 035 control_c192_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 529.573246
-The maximum resident set size (KB) = 638152
+The total amount of wall time = 529.668191
+The maximum resident set size (KB) = 640132
Test 035 control_c192_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384_intel
Checking test 036 control_c384_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 599.185011
-The maximum resident set size (KB) = 949244
+The total amount of wall time = 629.797197
+The maximum resident set size (KB) = 952916
Test 036 control_c384_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384gdas_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384gdas_intel
Checking test 037 control_c384gdas_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf006.nc .........OK
@@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results ....
Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 532.690549
-The maximum resident set size (KB) = 1093316
+The total amount of wall time = 547.581361
+The maximum resident set size (KB) = 1093116
Test 037 control_c384gdas_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_intel
Checking test 038 control_stochy_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 89.197198
-The maximum resident set size (KB) = 532184
+The total amount of wall time = 91.065977
+The maximum resident set size (KB) = 531320
Test 038 control_stochy_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_restart_intel
Checking test 039 control_stochy_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 50.901170
-The maximum resident set size (KB) = 327960
+The total amount of wall time = 50.389895
+The maximum resident set size (KB) = 333432
Test 039 control_stochy_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_intel
Checking test 040 control_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf012.nc .........OK
@@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 86.524647
-The maximum resident set size (KB) = 528408
+The total amount of wall time = 84.923118
+The maximum resident set size (KB) = 533912
Test 040 control_lndp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr4_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr4_intel
Checking test 041 control_iovr4_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 134.482418
-The maximum resident set size (KB) = 523260
+The total amount of wall time = 135.357882
+The maximum resident set size (KB) = 525600
Test 041 control_iovr4_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr5_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr5_intel
Checking test 042 control_iovr5_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results ....
Comparing GFSPRS.GrbF21 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 135.336665
-The maximum resident set size (KB) = 526612
+The total amount of wall time = 137.210152
+The maximum resident set size (KB) = 525788
Test 042 control_iovr5_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_intel
Checking test 043 control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 166.203829
-The maximum resident set size (KB) = 1502800
+The total amount of wall time = 164.561276
+The maximum resident set size (KB) = 1509544
Test 043 control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8.v2.sfc_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8.v2.sfc_intel
Checking test 044 control_p8.v2.sfc_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 167.847954
-The maximum resident set size (KB) = 1507972
+The total amount of wall time = 165.199652
+The maximum resident set size (KB) = 1499432
Test 044 control_p8.v2.sfc_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_ugwpv1_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_ugwpv1_intel
Checking test 045 control_p8_ugwpv1_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 161.687212
-The maximum resident set size (KB) = 1495372
+The total amount of wall time = 161.744955
+The maximum resident set size (KB) = 1511016
Test 045 control_p8_ugwpv1_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_intel
Checking test 046 control_restart_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 91.093186
-The maximum resident set size (KB) = 695152
+The total amount of wall time = 91.919863
+The maximum resident set size (KB) = 685864
Test 046 control_restart_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_noqr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_noqr_p8_intel
Checking test 047 control_noqr_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 169.859551
-The maximum resident set size (KB) = 1489324
+The total amount of wall time = 165.373090
+The maximum resident set size (KB) = 1489272
Test 047 control_noqr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_noqr_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_noqr_p8_intel
Checking test 048 control_restart_noqr_p8_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-The total amount of wall time = 90.499336
-The maximum resident set size (KB) = 695748
+The total amount of wall time = 91.345866
+The maximum resident set size (KB) = 697124
Test 048 control_restart_noqr_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_decomp_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_decomp_p8_intel
Checking test 049 control_decomp_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 169.821968
-The maximum resident set size (KB) = 1496728
+The total amount of wall time = 169.341980
+The maximum resident set size (KB) = 1500340
Test 049 control_decomp_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_2threads_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_2threads_p8_intel
Checking test 050 control_2threads_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 146.911854
-The maximum resident set size (KB) = 1591180
+The total amount of wall time = 146.392199
+The maximum resident set size (KB) = 1588536
Test 050 control_2threads_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_lndp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_lndp_intel
Checking test 051 control_p8_lndp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results ....
Comparing GFSPRS.GrbF24 .........OK
Comparing GFSPRS.GrbF48 .........OK
-The total amount of wall time = 297.043958
-The maximum resident set size (KB) = 1498888
+The total amount of wall time = 295.237804
+The maximum resident set size (KB) = 1497160
Test 051 control_p8_lndp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_rrtmgp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_rrtmgp_intel
Checking test 052 control_p8_rrtmgp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 223.402010
-The maximum resident set size (KB) = 1563876
+The total amount of wall time = 220.698043
+The maximum resident set size (KB) = 1553816
Test 052 control_p8_rrtmgp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_mynn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_mynn_intel
Checking test 053 control_p8_mynn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 170.789872
-The maximum resident set size (KB) = 1514112
+The total amount of wall time = 167.783667
+The maximum resident set size (KB) = 1515868
Test 053 control_p8_mynn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/merra2_thompson_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/merra2_thompson_intel
Checking test 054 merra2_thompson_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 204.396620
-The maximum resident set size (KB) = 1515348
+The total amount of wall time = 201.082056
+The maximum resident set size (KB) = 1513680
Test 054 merra2_thompson_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_intel
Checking test 055 regional_control_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 292.955178
-The maximum resident set size (KB) = 606100
+The total amount of wall time = 289.593049
+The maximum resident set size (KB) = 606708
Test 055 regional_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_restart_intel
Checking test 056 regional_restart_intel results ....
Comparing dynf006.nc .........OK
Comparing phyf006.nc .........OK
Comparing PRSLEV.GrbF06 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 155.492101
-The maximum resident set size (KB) = 779516
+The total amount of wall time = 159.399463
+The maximum resident set size (KB) = 780488
Test 056 regional_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_decomp_intel
Checking test 057 regional_decomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 307.857793
-The maximum resident set size (KB) = 605888
+The total amount of wall time = 307.435087
+The maximum resident set size (KB) = 607256
Test 057 regional_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2threads_intel
Checking test 058 regional_2threads_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 181.747232
-The maximum resident set size (KB) = 657948
+The total amount of wall time = 177.156835
+The maximum resident set size (KB) = 659388
Test 058 regional_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_noquilt_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_noquilt_intel
Checking test 059 regional_noquilt_intel results ....
Comparing atmos_4xdaily.nc .........OK
Comparing fv3_history2d.nc .........OK
@@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel results ....
Comparing RESTART/fv_core.res.tile1_new.nc .........OK
Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-The total amount of wall time = 283.600928
-The maximum resident set size (KB) = 1145312
+The total amount of wall time = 279.602604
+The maximum resident set size (KB) = 1141992
Test 059 regional_noquilt_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_netcdf_parallel_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_netcdf_parallel_intel
Checking test 060 regional_netcdf_parallel_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf006.nc .........OK
-The total amount of wall time = 286.948719
-The maximum resident set size (KB) = 608952
+The total amount of wall time = 292.727447
+The maximum resident set size (KB) = 607064
Test 060 regional_netcdf_parallel_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2dwrtdecomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2dwrtdecomp_intel
Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 287.745601
-The maximum resident set size (KB) = 608372
+The total amount of wall time = 289.398405
+The maximum resident set size (KB) = 609276
Test 061 regional_2dwrtdecomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_wofs_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_wofs_intel
Checking test 062 regional_wofs_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 384.983069
-The maximum resident set size (KB) = 1580848
+The total amount of wall time = 409.445515
+The maximum resident set size (KB) = 1578212
Test 062 regional_wofs_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_intel
Checking test 063 rap_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 405.722503
-The maximum resident set size (KB) = 916712
+The total amount of wall time = 410.338009
+The maximum resident set size (KB) = 920936
Test 063 rap_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_intel
Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 242.649556
-The maximum resident set size (KB) = 1095884
+The total amount of wall time = 241.772100
+The maximum resident set size (KB) = 1097516
Test 064 regional_spp_sppt_shum_skeb_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_decomp_intel
Checking test 065 rap_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 421.811077
-The maximum resident set size (KB) = 917640
+The total amount of wall time = 425.915912
+The maximum resident set size (KB) = 916880
Test 065 rap_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_intel
Checking test 066 rap_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 368.279718
-The maximum resident set size (KB) = 1010928
+The total amount of wall time = 371.714893
+The maximum resident set size (KB) = 1010916
Test 066 rap_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_intel
Checking test 067 rap_restart_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
@@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 208.777322
-The maximum resident set size (KB) = 785068
+The total amount of wall time = 209.368309
+The maximum resident set size (KB) = 787660
Test 067 rap_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_intel
Checking test 068 rap_sfcdiff_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 408.653594
-The maximum resident set size (KB) = 912504
+The total amount of wall time = 407.332610
+The maximum resident set size (KB) = 918480
Test 068 rap_sfcdiff_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_decomp_intel
Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 421.519770
-The maximum resident set size (KB) = 915048
+The total amount of wall time = 425.020834
+The maximum resident set size (KB) = 913772
Test 069 rap_sfcdiff_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_restart_intel
Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 302.817813
-The maximum resident set size (KB) = 785600
+The total amount of wall time = 305.208277
+The maximum resident set size (KB) = 784272
Test 070 rap_sfcdiff_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_intel
Checking test 071 hrrr_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 208.652600
-The maximum resident set size (KB) = 910760
+The total amount of wall time = 211.238137
+The maximum resident set size (KB) = 908564
Test 071 hrrr_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_intel
Checking test 072 hrrr_control_decomp_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 213.227628
-The maximum resident set size (KB) = 907536
+The total amount of wall time = 214.646837
+The maximum resident set size (KB) = 909172
Test 072 hrrr_control_decomp_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_intel
Checking test 073 hrrr_control_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 186.148913
-The maximum resident set size (KB) = 991784
+The total amount of wall time = 188.989521
+The maximum resident set size (KB) = 993336
Test 073 hrrr_control_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_intel
Checking test 074 hrrr_control_restart_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 109.707657
-The maximum resident set size (KB) = 741100
+The total amount of wall time = 110.490743
+The maximum resident set size (KB) = 741580
Test 074 hrrr_control_restart_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_intel
Checking test 075 rrfs_v1beta_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 398.210105
-The maximum resident set size (KB) = 911776
+The total amount of wall time = 399.653333
+The maximum resident set size (KB) = 909444
Test 075 rrfs_v1beta_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_intel
Checking test 076 rrfs_v1nssl_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 485.793754
-The maximum resident set size (KB) = 1872736
+The total amount of wall time = 488.590260
+The maximum resident set size (KB) = 1874712
Test 076 rrfs_v1nssl_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_nohailnoccn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_nohailnoccn_intel
Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
Comparing GFSPRS.GrbF09 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 470.553367
-The maximum resident set size (KB) = 1859924
+The total amount of wall time = 471.900454
+The maximum resident set size (KB) = 1862596
Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_intel
Checking test 078 control_csawmg_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 339.604589
-The maximum resident set size (KB) = 599140
+The total amount of wall time = 338.065704
+The maximum resident set size (KB) = 596512
Test 078 control_csawmg_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_intel
Checking test 079 control_csawmgt_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 333.273528
-The maximum resident set size (KB) = 594992
+The total amount of wall time = 336.679038
+The maximum resident set size (KB) = 596352
Test 079 control_csawmgt_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_intel
Checking test 080 control_ras_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results ....
Comparing GFSPRS.GrbF00 .........OK
Comparing GFSPRS.GrbF24 .........OK
-The total amount of wall time = 184.374528
-The maximum resident set size (KB) = 560764
+The total amount of wall time = 184.721866
+The maximum resident set size (KB) = 561572
Test 080 control_ras_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_intel
Checking test 081 control_wam_intel results ....
Comparing sfcf024.nc .........OK
Comparing atmf024.nc .........OK
-The total amount of wall time = 121.504900
-The maximum resident set size (KB) = 271740
+The total amount of wall time = 121.009893
+The maximum resident set size (KB) = 272776
Test 081 control_wam_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_faster_intel
Checking test 082 control_p8_faster_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf021.nc .........OK
@@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 170.040326
-The maximum resident set size (KB) = 1501620
+The total amount of wall time = 161.975328
+The maximum resident set size (KB) = 1504956
Test 082 control_p8_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_faster_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_faster_intel
Checking test 083 regional_control_faster_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf006.nc .........OK
@@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF06 .........OK
-The total amount of wall time = 287.418651
-The maximum resident set size (KB) = 609532
+The total amount of wall time = 283.981035
+The maximum resident set size (KB) = 610684
Test 083 regional_control_faster_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_debug_intel
Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results ....
Comparing atmf001.tile5.nc .........OK
Comparing atmf001.tile6.nc .........OK
-The total amount of wall time = 161.768232
-The maximum resident set size (KB) = 686488
+The total amount of wall time = 160.630431
+The maximum resident set size (KB) = 688756
Test 084 control_CubedSphereGrid_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_debug_intel
Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 158.667011
-The maximum resident set size (KB) = 690672
+The total amount of wall time = 158.871953
+The maximum resident set size (KB) = 689884
Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_debug_intel
Checking test 086 control_stochy_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 181.218504
-The maximum resident set size (KB) = 690636
+The total amount of wall time = 181.484643
+The maximum resident set size (KB) = 688880
Test 086 control_stochy_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_debug_intel
Checking test 087 control_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 162.306687
-The maximum resident set size (KB) = 693552
+The total amount of wall time = 163.081272
+The maximum resident set size (KB) = 692596
Test 087 control_lndp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_debug_intel
Checking test 088 control_csawmg_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 252.986938
-The maximum resident set size (KB) = 733916
+The total amount of wall time = 251.748787
+The maximum resident set size (KB) = 730708
Test 088 control_csawmg_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_debug_intel
Checking test 089 control_csawmgt_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 248.302778
-The maximum resident set size (KB) = 734092
+The total amount of wall time = 248.344384
+The maximum resident set size (KB) = 730964
Test 089 control_csawmgt_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_debug_intel
Checking test 090 control_ras_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 166.072806
-The maximum resident set size (KB) = 703268
+The total amount of wall time = 165.276975
+The maximum resident set size (KB) = 705064
Test 090 control_ras_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_diag_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_diag_debug_intel
Checking test 091 control_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 168.661862
-The maximum resident set size (KB) = 747428
+The total amount of wall time = 167.192686
+The maximum resident set size (KB) = 746564
Test 091 control_diag_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_debug_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_debug_p8_intel
Checking test 092 control_debug_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 168.512682
-The maximum resident set size (KB) = 1518856
+The total amount of wall time = 168.593384
+The maximum resident set size (KB) = 1519076
Test 092 control_debug_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_debug_intel
Checking test 093 regional_debug_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
Comparing phyf000.nc .........OK
Comparing phyf001.nc .........OK
-The total amount of wall time = 1055.399361
-The maximum resident set size (KB) = 633448
+The total amount of wall time = 1066.856512
+The maximum resident set size (KB) = 629600
Test 093 regional_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_intel
Checking test 094 rap_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 303.544779
-The maximum resident set size (KB) = 1073204
+The total amount of wall time = 301.779372
+The maximum resident set size (KB) = 1075308
Test 094 rap_control_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_intel
Checking test 095 hrrr_control_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 295.099265
-The maximum resident set size (KB) = 1069120
+The total amount of wall time = 295.778703
+The maximum resident set size (KB) = 1070848
Test 095 hrrr_control_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_gf_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_gf_debug_intel
Checking test 096 hrrr_gf_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 300.824493
-The maximum resident set size (KB) = 1074276
+The total amount of wall time = 302.218082
+The maximum resident set size (KB) = 1070948
Test 096 hrrr_gf_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_c3_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_c3_debug_intel
Checking test 097 hrrr_c3_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 302.807577
-The maximum resident set size (KB) = 1070544
+The total amount of wall time = 303.616359
+The maximum resident set size (KB) = 1077440
Test 097 hrrr_c3_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_drag_suite_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_drag_suite_debug_intel
Checking test 098 rap_unified_drag_suite_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 302.122005
-The maximum resident set size (KB) = 1072124
+The total amount of wall time = 303.308680
+The maximum resident set size (KB) = 1076344
Test 098 rap_unified_drag_suite_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_diag_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_diag_debug_intel
Checking test 099 rap_diag_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 313.007019
-The maximum resident set size (KB) = 1159744
+The total amount of wall time = 317.922053
+The maximum resident set size (KB) = 1155636
Test 099 rap_diag_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_cires_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_cires_ugwp_debug_intel
Checking test 100 rap_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 311.834487
-The maximum resident set size (KB) = 1074140
+The total amount of wall time = 308.973760
+The maximum resident set size (KB) = 1076912
Test 100 rap_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_ugwp_debug_intel
Checking test 101 rap_unified_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 310.511767
-The maximum resident set size (KB) = 1076956
+The total amount of wall time = 311.026485
+The maximum resident set size (KB) = 1075560
Test 101 rap_unified_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_lndp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_lndp_debug_intel
Checking test 102 rap_lndp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 306.109317
-The maximum resident set size (KB) = 1079104
+The total amount of wall time = 305.383239
+The maximum resident set size (KB) = 1075928
Test 102 rap_lndp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_progcld_thompson_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_progcld_thompson_debug_intel
Checking test 103 rap_progcld_thompson_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.315894
-The maximum resident set size (KB) = 1073260
+The total amount of wall time = 302.741453
+The maximum resident set size (KB) = 1077264
Test 103 rap_progcld_thompson_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_debug_intel
Checking test 104 rap_noah_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 298.365451
-The maximum resident set size (KB) = 1068892
+The total amount of wall time = 294.837008
+The maximum resident set size (KB) = 1073164
Test 104 rap_noah_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_debug_intel
Checking test 105 rap_sfcdiff_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 306.555887
-The maximum resident set size (KB) = 1074148
+The total amount of wall time = 304.036555
+The maximum resident set size (KB) = 1072336
Test 105 rap_sfcdiff_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_sfcdiff_cires_ugwp_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_sfcdiff_cires_ugwp_debug_intel
Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 497.072433
-The maximum resident set size (KB) = 1068848
+The total amount of wall time = 492.553809
+The maximum resident set size (KB) = 1076192
Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_debug_intel
Checking test 107 rrfs_v1beta_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 301.915862
-The maximum resident set size (KB) = 1067668
+The total amount of wall time = 298.032419
+The maximum resident set size (KB) = 1069732
Test 107 rrfs_v1beta_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_clm_lake_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_clm_lake_debug_intel
Checking test 108 rap_clm_lake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 356.387245
-The maximum resident set size (KB) = 1078344
+The total amount of wall time = 352.917507
+The maximum resident set size (KB) = 1076212
Test 108 rap_clm_lake_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_flake_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_flake_debug_intel
Checking test 109 rap_flake_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 305.996573
-The maximum resident set size (KB) = 1077284
+The total amount of wall time = 301.551968
+The maximum resident set size (KB) = 1076008
Test 109 rap_flake_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/gnv1_c96_no_nest_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/gnv1_c96_no_nest_debug_intel
Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results ....
Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 535.652666
-The maximum resident set size (KB) = 1076836
+The total amount of wall time = 523.092725
+The maximum resident set size (KB) = 1078752
Test 110 gnv1_c96_no_nest_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_debug_intel
Checking test 111 control_wam_debug_intel results ....
Comparing sfcf019.nc .........OK
Comparing atmf019.nc .........OK
-The total amount of wall time = 298.765315
-The maximum resident set size (KB) = 300624
+The total amount of wall time = 303.613563
+The maximum resident set size (KB) = 297748
Test 111 control_wam_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing dynf000.nc .........OK
Comparing dynf001.nc .........OK
@@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
Comparing NATLEV.GrbF00 .........OK
Comparing NATLEV.GrbF01 .........OK
-The total amount of wall time = 230.588524
-The maximum resident set size (KB) = 953000
+The total amount of wall time = 229.960894
+The maximum resident set size (KB) = 955568
Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn32_phy32_intel
Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 337.326050
-The maximum resident set size (KB) = 796180
+The total amount of wall time = 341.630584
+The maximum resident set size (KB) = 790648
Test 113 rap_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_dyn32_phy32_intel
Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 178.905085
-The maximum resident set size (KB) = 783112
+The total amount of wall time = 178.772819
+The maximum resident set size (KB) = 789348
Test 114 hrrr_control_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_dyn32_phy32_intel
Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 310.614336
-The maximum resident set size (KB) = 852672
+The total amount of wall time = 307.071625
+The maximum resident set size (KB) = 851684
Test 115 rap_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_dyn32_phy32_intel
Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 159.617650
-The maximum resident set size (KB) = 840160
+The total amount of wall time = 160.312016
+The maximum resident set size (KB) = 842460
Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_dyn32_phy32_intel
Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 185.643781
-The maximum resident set size (KB) = 789440
+The total amount of wall time = 185.773661
+The maximum resident set size (KB) = 788012
Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_dyn32_phy32_intel
Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
@@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 253.106647
-The maximum resident set size (KB) = 688544
+The total amount of wall time = 249.761858
+The maximum resident set size (KB) = 685740
Test 118 rap_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_dyn32_phy32_intel
Checking test 119 hrrr_control_restart_dyn32_phy32_intel results ....
Comparing sfcf012.nc .........OK
Comparing atmf012.nc .........OK
Comparing GFSFLX.GrbF12 .........OK
Comparing GFSPRS.GrbF12 .........OK
-The total amount of wall time = 93.502140
-The maximum resident set size (KB) = 670152
+The total amount of wall time = 94.800100
+The maximum resident set size (KB) = 672828
Test 119 hrrr_control_restart_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_control_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_control_intel
Checking test 120 conus13km_control_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 131.034625
-The maximum resident set size (KB) = 1006496
+The total amount of wall time = 120.458608
+The maximum resident set size (KB) = 1001904
Test 120 conus13km_control_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_2threads_intel
Checking test 121 conus13km_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 60.720676
-The maximum resident set size (KB) = 1007992
+The total amount of wall time = 63.708613
+The maximum resident set size (KB) = 1006300
Test 121 conus13km_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_restart_mismatch_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_restart_mismatch_intel
Checking test 122 conus13km_restart_mismatch_intel results ....
Comparing sfcf002.nc .........OK
Comparing atmf002.nc .........OK
-The total amount of wall time = 69.331365
-The maximum resident set size (KB) = 883324
+The total amount of wall time = 70.556962
+The maximum resident set size (KB) = 881612
Test 122 conus13km_restart_mismatch_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_intel
Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf009.nc .........OK
@@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results ....
Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 236.334234
-The maximum resident set size (KB) = 810948
+The total amount of wall time = 231.102342
+The maximum resident set size (KB) = 808800
Test 123 rap_control_dyn64_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_dyn32_phy32_intel
Checking test 124 rap_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 299.528702
-The maximum resident set size (KB) = 946132
+The total amount of wall time = 293.406693
+The maximum resident set size (KB) = 953444
Test 124 rap_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_dyn32_phy32_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_dyn32_phy32_intel
Checking test 125 hrrr_control_debug_dyn32_phy32_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 292.755949
-The maximum resident set size (KB) = 954084
+The total amount of wall time = 287.858761
+The maximum resident set size (KB) = 950340
Test 125 hrrr_control_debug_dyn32_phy32_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_intel
Checking test 126 conus13km_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc .........OK
Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-The total amount of wall time = 897.482195
-The maximum resident set size (KB) = 1038980
+The total amount of wall time = 878.284115
+The maximum resident set size (KB) = 1032908
Test 126 conus13km_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_qr_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_qr_intel
Checking test 127 conus13km_debug_qr_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results ....
Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-The total amount of wall time = 904.198403
-The maximum resident set size (KB) = 711580
+The total amount of wall time = 890.943396
+The maximum resident set size (KB) = 706196
Test 127 conus13km_debug_qr_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_2threads_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_2threads_intel
Checking test 128 conus13km_debug_2threads_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 515.369189
-The maximum resident set size (KB) = 1039352
+The total amount of wall time = 512.752532
+The maximum resident set size (KB) = 1038256
Test 128 conus13km_debug_2threads_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_radar_tten_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_radar_tten_debug_intel
Checking test 129 conus13km_radar_tten_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 905.178589
-The maximum resident set size (KB) = 1098940
+The total amount of wall time = 891.230808
+The maximum resident set size (KB) = 1099020
Test 129 conus13km_radar_tten_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_debug_intel
Checking test 130 rap_control_dyn64_phy32_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atmf000.nc .........OK
Comparing atmf001.nc .........OK
-The total amount of wall time = 302.613106
-The maximum resident set size (KB) = 973616
+The total amount of wall time = 306.260542
+The maximum resident set size (KB) = 978604
Test 130 rap_control_dyn64_phy32_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_intel
Checking test 131 hafs_regional_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing HURPRS.GrbF06 .........OK
-The total amount of wall time = 353.649348
-The maximum resident set size (KB) = 614244
+The total amount of wall time = 362.041813
+The maximum resident set size (KB) = 615168
Test 131 hafs_regional_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_thompson_gfdlsf_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_thompson_gfdlsf_intel
Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
-The total amount of wall time = 329.437837
-The maximum resident set size (KB) = 963172
+The total amount of wall time = 362.816354
+The maximum resident set size (KB) = 967296
Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_intel
Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 425.789147
-The maximum resident set size (KB) = 659588
+The total amount of wall time = 451.226496
+The maximum resident set size (KB) = 663968
Test 133 hafs_regional_atm_ocn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_wav_intel
Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 754.119878
-The maximum resident set size (KB) = 686160
+The total amount of wall time = 773.805636
+The maximum resident set size (KB) = 699364
Test 134 hafs_regional_atm_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_wav_intel
Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 941.578158
-The maximum resident set size (KB) = 704864
+The total amount of wall time = 950.462122
+The maximum resident set size (KB) = 705936
Test 135 hafs_regional_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_1nest_atm_intel
Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 321.936508
-The maximum resident set size (KB) = 389092
+The total amount of wall time = 329.945797
+The maximum resident set size (KB) = 390916
Test 136 hafs_regional_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_telescopic_2nests_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_telescopic_2nests_atm_intel
Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
Comparing atm.nest03.f006.nc .........OK
Comparing sfc.nest03.f006.nc .........OK
-The total amount of wall time = 410.299541
-The maximum resident set size (KB) = 405160
+The total amount of wall time = 424.056544
+The maximum resident set size (KB) = 403680
Test 137 hafs_regional_telescopic_2nests_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_1nest_atm_intel
Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 176.905599
-The maximum resident set size (KB) = 281040
+The total amount of wall time = 183.370516
+The maximum resident set size (KB) = 282692
Test 138 hafs_global_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_multiple_4nests_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_multiple_4nests_atm_intel
Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-The total amount of wall time = 492.900377
-The maximum resident set size (KB) = 376844
+The total amount of wall time = 533.029334
+The maximum resident set size (KB) = 370648
Test 139 hafs_global_multiple_4nests_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_specified_moving_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_specified_moving_1nest_atm_intel
Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
Comparing HURPRS.GrbF06 .........OK
Comparing HURPRS.GrbF06.nest02 .........OK
-The total amount of wall time = 224.126547
-The maximum resident set size (KB) = 413184
+The total amount of wall time = 236.033646
+The maximum resident set size (KB) = 420680
Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_intel
Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-The total amount of wall time = 210.963513
-The maximum resident set size (KB) = 413076
+The total amount of wall time = 222.784444
+The maximum resident set size (KB) = 423636
Test 141 hafs_regional_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_intel
Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
Comparing archv.2020_238_18.a .........OK
Comparing archs.2020_238_18.a .........OK
-The total amount of wall time = 279.097440
-The maximum resident set size (KB) = 488400
+The total amount of wall time = 281.563093
+The maximum resident set size (KB) = 486356
Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_storm_following_1nest_atm_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_storm_following_1nest_atm_intel
Checking test 143 hafs_global_storm_following_1nest_atm_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
Comparing atm.nest02.f006.nc .........OK
Comparing sfc.nest02.f006.nc .........OK
-The total amount of wall time = 96.254248
-The maximum resident set size (KB) = 315000
+The total amount of wall time = 103.904984
+The maximum resident set size (KB) = 312176
Test 143 hafs_global_storm_following_1nest_atm_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
Comparing atmf001.nc .........OK
Comparing sfcf001.nc .........OK
Comparing atm.nest02.f001.nc .........OK
Comparing sfc.nest02.f001.nc .........OK
-The total amount of wall time = 825.697003
-The maximum resident set size (KB) = 509060
+The total amount of wall time = 820.616990
+The maximum resident set size (KB) = 499728
Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 525.917581
-The maximum resident set size (KB) = 530736
+The total amount of wall time = 545.584197
+The maximum resident set size (KB) = 530336
Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r
Comparing 20200825.180000.out_grd.ww3 .........OK
Comparing 20200825.180000.out_pnt.ww3 .........OK
-The total amount of wall time = 540.934501
-The maximum resident set size (KB) = 711364
+The total amount of wall time = 539.742323
+The maximum resident set size (KB) = 709488
Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
Comparing atmf003.nc .........OK
Comparing sfcf003.nc .........OK
@@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res
Comparing 20200825.150000.out_grd.ww3 .........OK
Comparing 20200825.150000.out_pnt.ww3 .........OK
-The total amount of wall time = 391.536720
-The maximum resident set size (KB) = 711812
+The total amount of wall time = 395.034358
+The maximum resident set size (KB) = 710156
Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_intel
Checking test 148 hafs_regional_docn_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 401.565907
-The maximum resident set size (KB) = 657504
+The total amount of wall time = 420.771629
+The maximum resident set size (KB) = 653444
Test 148 hafs_regional_docn_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_oisst_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_oisst_intel
Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing atmf006.nc .........OK
Comparing sfcf006.nc .........OK
@@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel results ....
Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-The total amount of wall time = 397.116334
-The maximum resident set size (KB) = 631908
+The total amount of wall time = 425.538250
+The maximum resident set size (KB) = 642652
Test 149 hafs_regional_docn_oisst_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_datm_cdeps_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_datm_cdeps_intel
Checking test 150 hafs_regional_datm_cdeps_intel results ....
Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-The total amount of wall time = 951.527204
-The maximum resident set size (KB) = 881208
+The total amount of wall time = 952.679601
+The maximum resident set size (KB) = 881048
Test 150 hafs_regional_datm_cdeps_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_sbs_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_sbs_intel
Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 278.121137
-The maximum resident set size (KB) = 1540412
+The total amount of wall time = 283.442813
+The maximum resident set size (KB) = 1552624
Test 151 control_p8_atmlnd_sbs_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_intel
Checking test 152 control_p8_atmlnd_intel results ....
Comparing sfcf000.tile1.nc .........OK
Comparing sfcf000.tile2.nc .........OK
@@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 278.964452
-The maximum resident set size (KB) = 1542860
+The total amount of wall time = 284.467436
+The maximum resident set size (KB) = 1537904
Test 152 control_p8_atmlnd_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_atmlnd_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_atmlnd_intel
Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing sfcf024.tile1.nc .........OK
Comparing sfcf024.tile2.nc .........OK
@@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results ....
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-The total amount of wall time = 155.160197
-The maximum resident set size (KB) = 743224
+The total amount of wall time = 156.243371
+The maximum resident set size (KB) = 738544
Test 153 control_restart_p8_atmlnd_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_intel
Checking test 154 atmaero_control_p8_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 241.471847
-The maximum resident set size (KB) = 2849432
+The total amount of wall time = 245.700323
+The maximum resident set size (KB) = 2854944
Test 154 atmaero_control_p8_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_intel
Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 279.536510
-The maximum resident set size (KB) = 2911716
+The total amount of wall time = 281.685079
+The maximum resident set size (KB) = 2913048
Test 155 atmaero_control_p8_rad_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_micro_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_micro_intel
Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf024.nc .........OK
@@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-The total amount of wall time = 294.213178
-The maximum resident set size (KB) = 2924264
+The total amount of wall time = 297.673172
+The maximum resident set size (KB) = 2925768
Test 156 atmaero_control_p8_rad_micro_intel PASS
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_atmaq_debug_intel
+baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
+working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_atmaq_debug_intel
Checking test 157 regional_atmaq_debug_intel results ....
Comparing sfcf000.nc .........OK
Comparing sfcf001.nc .........OK
@@ -5533,12 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results ....
Comparing RESTART/20190801.130000.phy_data.nc .........OK
Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-The total amount of wall time = 1342.376959
-The maximum resident set size (KB) = 4445612
+The total amount of wall time = 1339.534722
+The maximum resident set size (KB) = 4436092
Test 157 regional_atmaq_debug_intel PASS
REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 15:25:48 UTC 2024
-Elapsed time: 01h:17m:44s. Have a nice day!
+Tue Feb 13 22:27:49 UTC 2024
+Elapsed time: 01h:31m:33s. Have a nice day!
diff --git a/tests/parm/diag_table/diag_table_gfsv16_3d_soil b/tests/parm/diag_table/diag_table_gfsv16_3d_soil
new file mode 100644
index 0000000000..cc4a869f6d
--- /dev/null
+++ b/tests/parm/diag_table/diag_table_gfsv16_3d_soil
@@ -0,0 +1,210 @@
+20210322.06Z.C96.64bit.non-mono
+2021 03 22 06 0 0
+
+"fv3_history", 0, "hours", 1, "hours", "time"
+"fv3_history2d", 0, "hours", 1, "hours", "time"
+
+#
+###
+# FV3 variabls needed for NGGPS evaluation
+###
+"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2
+#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2
+#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2
+
+"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2
+#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2
+
+"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilt", "soilt" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilw", "soilw" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soill", "soill", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2
+
+"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2
+
+#=============================================================================================
+#
+#====> This file can be used with diag_manager/v2.0a (or higher) <====
+#
+#
+# FORMATS FOR FILE ENTRIES (not all input values are used)
+# ------------------------
+#
+#"file_name", output_freq, "output_units", format, "time_units", "long_name",
+#
+#
+#output_freq: > 0 output frequency in "output_units"
+# = 0 output frequency every time step
+# =-1 output frequency at end of run
+#
+#output_units = units used for output frequency
+# (years, months, days, minutes, hours, seconds)
+#
+#time_units = units used to label the time axis
+# (days, minutes, hours, seconds)
+#
+#
+# FORMAT FOR FIELD ENTRIES (not all input values are used)
+# ------------------------
+#
+#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing
+#
+#time_avg = .true. or .false.
+#
+#packing = 1 double precision
+# = 2 float
+# = 4 packed 16-bit integers
+# = 8 packed 1-byte (not tested?)
diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel
index 3063c0db11..eec8725429 100644
--- a/tests/tests/control_CubedSphereGrid_parallel
+++ b/tests/tests/control_CubedSphereGrid_parallel
@@ -42,3 +42,4 @@ export WRITE_DOPOST=.true.
export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v16
export INPUT_NML=control.nml.IN
+export DIAG_TABLE=diag_table_gfsv16_3d_soil
From 698866272846e8c0f8f61ddb1b20d6463460cd63 Mon Sep 17 00:00:00 2001
From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com>
Date: Wed, 21 Feb 2024 16:37:31 -0500
Subject: [PATCH 04/33] Re-work testing verification, fail file naming
consistency, remove lsf support, simplify RT logs. (#2061)
* UFSWM
* Re-work test verification in rt.sh for developers to use in PR process. (Closes #2058)
* fail_ file name upgraded to use compile/test name instead of number.
* Regression test logs do not clearly indicate when a test fails to run. (Closes #1821)
* New test_changes.list file:
* Verification of what tests change for each PR.
* Used with './rt.sh -c -b test_changes.list` to help create new baselines for each PR.
---
.github/pull_request_template.md | 198 +-
modulefiles/ufs_derecho.intel.lua | 2 +-
tests/compile.sh | 8 +-
tests/fv3_conf/compile_qsub.IN_acorn | 2 +-
tests/fv3_conf/compile_qsub.IN_derecho | 2 +-
tests/fv3_conf/compile_qsub.IN_wcoss2 | 2 +-
tests/fv3_conf/compile_slurm.IN_gaea | 2 +-
tests/fv3_conf/compile_slurm.IN_hera | 2 +-
tests/fv3_conf/compile_slurm.IN_hercules | 2 +-
tests/fv3_conf/compile_slurm.IN_jet | 2 +-
tests/fv3_conf/compile_slurm.IN_noaacloud | 2 +-
tests/fv3_conf/compile_slurm.IN_orion | 2 +-
tests/fv3_conf/compile_slurm.IN_s4 | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 434 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 158 +-
.../OpnReqTests_regional_control_hera.log | 74 +-
tests/logs/RegressionTests_acorn.log | 6120 +-----------
tests/logs/RegressionTests_derecho.log | 5927 +-----------
tests/logs/RegressionTests_gaea.log | 6592 +------------
tests/logs/RegressionTests_hera.log | 8603 +----------------
tests/logs/RegressionTests_hercules.log | 8172 +---------------
tests/logs/RegressionTests_jet.log | 5812 +----------
tests/logs/RegressionTests_orion.log | 6550 +------------
tests/logs/RegressionTests_wcoss2.log | 5782 +----------
tests/opnReqTest | 16 +-
tests/rt.sh | 702 +-
tests/rt_utils.sh | 136 +-
tests/run_compile.sh | 34 +-
tests/run_test.sh | 48 +-
tests/test_changes.list | 0
30 files changed, 3486 insertions(+), 51902 deletions(-)
create mode 100644 tests/test_changes.list
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 37214bf9aa..f287387a35 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -1,93 +1,144 @@
## Commit Queue Requirements:
-
+
- [ ] Fill out all sections of this template.
- [ ] All sub component pull requests have been reviewed by their code managers.
-- [ ] Run the full RT suite (compared to current baselines) on either Hera/Derecho/Hercules AND have committed the log to my PR branch.
-- [ ] Add list of all failed regression tests in "Regression Tests" section.
-
-## PR Information
+- [ ] Run the full Intel+GNU RT suite (compared to current baselines) on either Hera/Derecho/Hercules
+- [ ] Commit 'test_changes.list' from previous step
+---
+## Description:
+
-### Description
-
-### Commit Message
+### Commit Message:
+```
+* UFSWM -
+ * AQM -
+ * CDEPS -
+ * CICE -
+ * CMEPS -
+ * CMakeModules -
+ * FV3 -
+ * ccpp-physics -
+ * atmos_cubed_sphere -
+ * GOCART -
+ * HYCOM -
+ * MOM6 -
+ * NOAHMP -
+ * WW3 -
+ * stochastic_physics -
+```
+### Priority:
+
+* Critical Bugfix: Reason
+* High: Reason
+* Normal
-### Priority
-- [ ] Critical Bugfix (This PR contains a critical bug fix and should be prioritized.)
-- [ ] High (This PR contains a feature or fix needed for a time-sensitive project (eg, retrospectives, implementations))
-- [ ] Normal
-
-### Blocking Dependencies
-
+## Git Tracking
+### UFSWM:
+
+* Closes #
+* None
-### Git Issues Fixed By This PR
-
+### Sub component Pull Requests:
+
+* AQM:
+* CDEPS:
+* CICE:
+* CMEPS:
+* CMakeModules:
+* FV3:
+ * ccpp-physics:
+ * atmos_cubed_sphere:
+* GOCART:
+* HYCOM:
+* MOM6:
+* NOAHMP:
+* WW3:
+* stochastic_physics:
+* None
+### UFSWM Blocking Dependencies:
+
+* Blocked by #
+* None
+---
## Changes
-
-### Subcomponent (with links)
-
-
-- [ ] AQM
-- [ ] CDEPS
-- [ ] CICE
-- [ ] CMEPS
-- [ ] CMakeModules
-- [ ] FV3
-- [ ] GOCART
-- [ ] HYCOM
-- [ ] MOM6
-- [ ] NOAHMP
-- [ ] WW3
-- [ ] stochastic_physics
-- [ ] none
+* PR Adds New Tests/Baselines.
+* PR Updates/Changes Baselines.
+* No Baseline Changes.
-### Input data
-- [ ] No changes are expected to input data.
-- [ ] Changes are expected to input data:
- - [ ] New input data.
- - [ ] Updated input data.
-
-### Regression Tests:
-- [ ] No changes are expected to any regression test.
-- [ ] Changes are expected to the following tests:
-FAILED REGRESSION TESTS
-
-
-
+### Input data Changes:
+
+* None.
+* New input data.
+* Updated input data.
-### Libraries
-
-- [ ] Not Needed
-- [ ] Needed
- - [ ] Create separate issue in [JCSDA/spack-stack](https://github.com/JCSDA/spack-stack) asking for update to library. Include library name, library version.
- - [ ] Add issue link from JCSDA/spack-stack following this item
+### Library Changes/Upgrades:
+
+* Required
+ * Library names w/versions:
+ * Git Stack Issue (JCSDA/spack-stack#)
+* No Updates
+
+---
-### Testing Log:
+## Testing Log:
- RDHPCS
- [ ] Hera
- [ ] Orion
@@ -98,8 +149,5 @@ Please list all individual issue titles addressed with github links at the end i
- WCOSS2
- [ ] Dogwood/Cactus
- [ ] Acorn
-- CI
- - [ ] Completed
-- opnReqTest
- - [ ] N/A
- - [ ] Log attached to comment
\ No newline at end of file
+- [ ] CI
+- [ ] opnReqTest (complete task if unnecessary)
\ No newline at end of file
diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua
index 3bf89ee9fe..a7998b036e 100644
--- a/modulefiles/ufs_derecho.intel.lua
+++ b/modulefiles/ufs_derecho.intel.lua
@@ -3,7 +3,7 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel
]])
setenv("LMOD_TMOD_FIND_FIRST","yes")
-prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles")
+prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles")
load("ecflow/5.8.4")
load("mysql/8.0.33")
diff --git a/tests/compile.sh b/tests/compile.sh
index 284fb51cc0..3cf536428b 100755
--- a/tests/compile.sh
+++ b/tests/compile.sh
@@ -24,20 +24,20 @@ fi
readonly ARGC=$#
if [[ $ARGC -lt 2 ]]; then
- echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_NR ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]"
+ echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]"
echo Valid MACHINE_IDs:
echo $( ls -1 ../cmake/configure_* | sed s:.*configure_::g | sed s:\.cmake:: ) | fold -sw72
exit 1
else
MACHINE_ID=$1
MAKE_OPT=${2:-}
- COMPILE_NR=${3:+_$3}
+ COMPILE_ID=${3:+_$3}
RT_COMPILER=${4:-intel}
clean_before=${5:-YES}
clean_after=${6:-YES}
fi
-BUILD_NAME=fv3${COMPILE_NR}
+BUILD_NAME=fv3${COMPILE_ID}
PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )}
BUILD_DIR=${BUILD_DIR:-$(pwd)/build_${BUILD_NAME}}
@@ -131,4 +131,4 @@ fi
elapsed=$SECONDS
echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished"
-echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_NR}_time.log
+echo "Compile ${COMPILE_ID/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_ID}_time.log
diff --git a/tests/fv3_conf/compile_qsub.IN_acorn b/tests/fv3_conf/compile_qsub.IN_acorn
index 12aaa9247f..feb553c13f 100644
--- a/tests/fv3_conf/compile_qsub.IN_acorn
+++ b/tests/fv3_conf/compile_qsub.IN_acorn
@@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_qsub.IN_derecho b/tests/fv3_conf/compile_qsub.IN_derecho
index 6744d25935..66a6672c03 100644
--- a/tests/fv3_conf/compile_qsub.IN_derecho
+++ b/tests/fv3_conf/compile_qsub.IN_derecho
@@ -13,7 +13,7 @@ echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
module purge
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2
index 12aaa9247f..feb553c13f 100644
--- a/tests/fv3_conf/compile_qsub.IN_wcoss2
+++ b/tests/fv3_conf/compile_qsub.IN_wcoss2
@@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea
index 8c942053fc..97aceeebae 100644
--- a/tests/fv3_conf/compile_slurm.IN_gaea
+++ b/tests/fv3_conf/compile_slurm.IN_gaea
@@ -15,7 +15,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera
index 0c1fb4dbff..aa84ba5b00 100644
--- a/tests/fv3_conf/compile_slurm.IN_hera
+++ b/tests/fv3_conf/compile_slurm.IN_hera
@@ -13,7 +13,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_hercules b/tests/fv3_conf/compile_slurm.IN_hercules
index f0eeee484b..619ca76905 100644
--- a/tests/fv3_conf/compile_slurm.IN_hercules
+++ b/tests/fv3_conf/compile_slurm.IN_hercules
@@ -14,7 +14,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet
index e0e4591e2a..88149c43ac 100644
--- a/tests/fv3_conf/compile_slurm.IN_jet
+++ b/tests/fv3_conf/compile_slurm.IN_jet
@@ -14,7 +14,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_noaacloud b/tests/fv3_conf/compile_slurm.IN_noaacloud
index b9c4ca4146..c5a08095c4 100644
--- a/tests/fv3_conf/compile_slurm.IN_noaacloud
+++ b/tests/fv3_conf/compile_slurm.IN_noaacloud
@@ -11,7 +11,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion
index f0eeee484b..619ca76905 100644
--- a/tests/fv3_conf/compile_slurm.IN_orion
+++ b/tests/fv3_conf/compile_slurm.IN_orion
@@ -14,7 +14,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/fv3_conf/compile_slurm.IN_s4 b/tests/fv3_conf/compile_slurm.IN_s4
index 0c1fb4dbff..aa84ba5b00 100644
--- a/tests/fv3_conf/compile_slurm.IN_s4
+++ b/tests/fv3_conf/compile_slurm.IN_s4
@@ -13,7 +13,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
echo "Compile started: " `date`
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER]
+@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
echo "Compile ended: " `date`
echo -n " $( date +%s )," >> job_timestamp.txt
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 725944afe9..641bb1eb78 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,11 +1,11 @@
-Tue Feb 13 21:21:48 UTC 2024
+Fri Feb 16 23:35:21 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_bit_base
-Checking test bit_base control_p8_gnu results ....
-Moving baseline bit_base control_p8_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/bit_base_bit_base
+Checking test bit_base results ....
+Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
Moving sfcf021.nc .........OK
Moving sfcf024.nc .........OK
@@ -51,16 +51,16 @@ Moving baseline bit_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 279.361825
- 0: The maximum resident set size (KB) = 1308576
+ 0: The total amount of wall time = 286.838063
+ 0: The maximum resident set size (KB) = 1310900
-Test bit_base control_p8_gnu PASS
+Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dbg_base
-Checking test dbg_base control_p8_gnu results ....
-Moving baseline dbg_base control_p8_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dbg_base_dbg_base
+Checking test dbg_base results ....
+Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
Moving sfcf021.nc .........OK
Moving sfcf024.nc .........OK
@@ -106,178 +106,178 @@ Moving baseline dbg_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 892.068909
- 0: The maximum resident set size (KB) = 1288180
+ 0: The total amount of wall time = 901.459527
+ 0: The maximum resident set size (KB) = 1284480
-Test dbg_base control_p8_gnu PASS
+Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dcp
-Checking test dcp control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dcp_dcp
+Checking test dcp results ....
+ Comparing sfcf000.nc .....USING NCCMP......OK
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf000.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF00 .....USING CMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF00 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 246.793051
- 0: The maximum resident set size (KB) = 1282680
+ 0: The total amount of wall time = 252.691945
+ 0: The maximum resident set size (KB) = 1279076
-Test dcp control_p8_gnu PASS
+Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_mpi
-Checking test mpi control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/mpi_mpi
+Checking test mpi results ....
+ Comparing sfcf000.nc .....USING NCCMP......OK
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf000.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF00 .....USING CMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF00 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 248.634230
- 0: The maximum resident set size (KB) = 1280096
+ 0: The total amount of wall time = 252.381682
+ 0: The maximum resident set size (KB) = 1281444
-Test mpi control_p8_gnu PASS
+Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_rst
-Checking test rst control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/rst_rst
+Checking test rst results ....
+ Comparing sfcf000.nc .....USING NCCMP......OK
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf000.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF00 .....USING CMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF00 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 248.281693
- 0: The maximum resident set size (KB) = 1282264
+ 0: The total amount of wall time = 250.909525
+ 0: The maximum resident set size (KB) = 1280000
-Test rst control_p8_gnu PASS
+Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_std_base
-Checking test std_base control_p8_gnu results ....
-Moving baseline std_base control_p8_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
Moving sfcf000.nc .........OK
Moving sfcf021.nc .........OK
Moving sfcf024.nc .........OK
@@ -323,65 +323,65 @@ Moving baseline std_base control_p8_gnu files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 250.485530
- 0: The maximum resident set size (KB) = 1281568
+ 0: The total amount of wall time = 255.556867
+ 0: The maximum resident set size (KB) = 1284028
-Test std_base control_p8_gnu PASS
+Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_thr
-Checking test thr control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/thr_thr
+Checking test thr results ....
+ Comparing sfcf000.nc .....USING NCCMP......OK
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf000.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF00 .....USING CMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF00 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 248.484763
- 0: The maximum resident set size (KB) = 1281196
+ 0: The total amount of wall time = 261.471265
+ 0: The maximum resident set size (KB) = 1280040
-Test thr control_p8_gnu PASS
+Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 14 00:35:01 UTC 2024
-Elapsed time: 03h:13m:14s. Have a nice day!
+Sat Feb 17 10:33:22 UTC 2024
+Elapsed time: 10h:58m:02s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 31de475a3b..98e09e571e 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,11 +1,11 @@
-Wed Feb 14 04:10:02 UTC 2024
+Mon Feb 19 14:50:19 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_dbg_base
-Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results ....
-Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/dbg_base_dbg_base
+Checking test dbg_base results ....
+Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
Moving sfcf021.tile2.nc .........OK
Moving sfcf021.tile3.nc .........OK
@@ -66,85 +66,85 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1212.229695
- 0: The maximum resident set size (KB) = 1415208
+ 0: The total amount of wall time = 1252.713120
+ 0: The maximum resident set size (KB) = 1390364
-Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS
+Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_rst
-Checking test rst cpld_control_nowave_noaero_p8_gnu results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/rst_rst
+Checking test rst results ....
+ Comparing sfcf021.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile6.nc .....USING NCCMP......OK
+ Comparing atmf021.tile1.nc .....USING NCCMP......OK
+ Comparing atmf021.tile2.nc .....USING NCCMP......OK
+ Comparing atmf021.tile3.nc .....USING NCCMP......OK
+ Comparing atmf021.tile4.nc .....USING NCCMP......OK
+ Comparing atmf021.tile5.nc .....USING NCCMP......OK
+ Comparing atmf021.tile6.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile6.nc .....USING NCCMP......OK
+ Comparing atmf024.tile1.nc .....USING NCCMP......OK
+ Comparing atmf024.tile2.nc .....USING NCCMP......OK
+ Comparing atmf024.tile3.nc .....USING NCCMP......OK
+ Comparing atmf024.tile4.nc .....USING NCCMP......OK
+ Comparing atmf024.tile5.nc .....USING NCCMP......OK
+ Comparing atmf024.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK
+ Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 378.073713
- 0: The maximum resident set size (KB) = 1407348
+ 0: The total amount of wall time = 384.439726
+ 0: The maximum resident set size (KB) = 1385248
-Test rst cpld_control_nowave_noaero_p8_gnu PASS
+Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_std_base
-Checking test std_base cpld_control_nowave_noaero_p8_gnu results ....
-Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
Moving sfcf021.tile2.nc .........OK
Moving sfcf021.tile3.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 374.073820
- 0: The maximum resident set size (KB) = 1404512
+ 0: The total amount of wall time = 385.798138
+ 0: The maximum resident set size (KB) = 1402428
-Test std_base cpld_control_nowave_noaero_p8_gnu PASS
+Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 14 05:41:37 UTC 2024
-Elapsed time: 01h:31m:36s. Have a nice day!
+Mon Feb 19 15:48:40 UTC 2024
+Elapsed time: 00h:58m:22s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index c9c7ed6a19..e5ae1412cf 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,29 +1,29 @@
-Wed Feb 14 01:29:21 UTC 2024
+Mon Feb 19 14:05:32 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_dcp
-Checking test dcp regional_control_gnu results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/dcp_dcp
+Checking test dcp results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 559.463910
- 0: The maximum resident set size (KB) = 591668
+ 0: The total amount of wall time = 514.940897
+ 0: The maximum resident set size (KB) = 588032
-Test dcp regional_control_gnu PASS
+Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_std_base
-Checking test std_base regional_control_gnu results ....
-Moving baseline std_base regional_control_gnu files ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
Moving dynf000.nc .........OK
Moving dynf006.nc .........OK
Moving phyf000.nc .........OK
@@ -33,29 +33,29 @@ Moving baseline std_base regional_control_gnu files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 508.581538
- 0: The maximum resident set size (KB) = 592660
+ 0: The total amount of wall time = 514.782298
+ 0: The maximum resident set size (KB) = 587896
-Test std_base regional_control_gnu PASS
+Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_thr
-Checking test thr regional_control_gnu results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 511.135763
- 0: The maximum resident set size (KB) = 589920
-
-Test thr regional_control_gnu PASS
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/thr_thr
+Checking test thr results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
+
+ 0: The total amount of wall time = 515.415577
+ 0: The maximum resident set size (KB) = 587940
+
+Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 14 02:06:37 UTC 2024
-Elapsed time: 00h:37m:19s. Have a nice day!
+Mon Feb 19 14:42:44 UTC 2024
+Elapsed time: 00h:37m:13s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 6890dc893d..1949d65587 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,5851 +1,297 @@
-Tue Feb 13 20:55:05 UTC 2024
-Start Regression test
+====START OF ACORN REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+681a70733ad51929905514527b6d5a497cd17776
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 527 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_faster_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 452 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 544 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 569 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile ifi_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 613 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 575 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 931 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 320.583545
-The maximum resident set size (KB) = 2972576
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 901.799342
-The maximum resident set size (KB) = 1588508
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
-The total amount of wall time = 974.923853
-The maximum resident set size (KB) = 1720608
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 453.147966
-The maximum resident set size (KB) = 850788
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1050.571882
-The maximum resident set size (KB) = 1583444
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1399.707911
-The maximum resident set size (KB) = 1595160
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 362.865109
-The maximum resident set size (KB) = 3004020
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 364.769886
-The maximum resident set size (KB) = 3003128
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 213.080535
-The maximum resident set size (KB) = 3059576
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 365.772763
-The maximum resident set size (KB) = 3025532
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 218.157201
-The maximum resident set size (KB) = 3079728
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 324.432111
-The maximum resident set size (KB) = 3313180
-
-Test 012 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 358.722397
-The maximum resident set size (KB) = 2998228
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 302.284206
-The maximum resident set size (KB) = 2927044
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 365.707176
-The maximum resident set size (KB) = 3004176
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_s2sa_p8_intel
-Checking test 016 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 342.533134
-The maximum resident set size (KB) = 2967192
-
-Test 016 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_intel
-Checking test 017 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 270.199657
-The maximum resident set size (KB) = 1589104
-
-Test 017 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_nowave_noaero_p8_intel
-Checking test 018 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 275.006469
-The maximum resident set size (KB) = 1642404
-
-Test 018 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_agrid_intel
-Checking test 019 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 276.189323
-The maximum resident set size (KB) = 1640476
-
-Test 019 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_c48_intel
-Checking test 020 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 406.266867
-The maximum resident set size (KB) = 2648452
-
-Test 020 cpld_control_c48_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_faster_intel
-Checking test 021 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 356.457787
-The maximum resident set size (KB) = 3000956
-
-Test 021 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_pdlib_p8_intel
-Checking test 022 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 918.591947
-The maximum resident set size (KB) = 1610356
-
-Test 022 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_pdlib_p8_intel
-Checking test 023 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 459.042002
-The maximum resident set size (KB) = 911180
-
-Test 023 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_pdlib_p8_intel
-Checking test 024 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1067.175522
-The maximum resident set size (KB) = 1588248
-
-Test 024 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_pdlib_p8_intel
-Checking test 025 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1492.573145
-The maximum resident set size (KB) = 1619396
-
-Test 025 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_flake_intel
-Checking test 026 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 212.425640
-The maximum resident set size (KB) = 577640
-
-Test 026 control_flake_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_intel
-Checking test 027 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
-The total amount of wall time = 131.386684
-The maximum resident set size (KB) = 526392
-
-Test 027 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_parallel_intel
-Checking test 028 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 136.694364
-The maximum resident set size (KB) = 537332
-
-Test 028 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_latlon_intel
-Checking test 029 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 132.333839
-The maximum resident set size (KB) = 528304
-
-Test 029 control_latlon_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_intel
-Checking test 030 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 134.767542
-The maximum resident set size (KB) = 528816
-
-Test 030 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48_intel
-Checking test 031 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 329.365162
-The maximum resident set size (KB) = 719448
-
-Test 031 control_c48_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48.v2.sfc_intel
-Checking test 032 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 329.463873
-The maximum resident set size (KB) = 719856
-
-Test 032 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c192_intel
-Checking test 033 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 527.742681
-The maximum resident set size (KB) = 646284
-
-Test 033 control_c192_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384_intel
-Checking test 034 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 583.500948
-The maximum resident set size (KB) = 962448
-
-Test 034 control_c384_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384gdas_intel
-Checking test 035 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 515.564583
-The maximum resident set size (KB) = 1097384
-
-Test 035 control_c384gdas_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_intel
-Checking test 036 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 87.837103
-The maximum resident set size (KB) = 538000
-
-Test 036 control_stochy_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_restart_intel
-Checking test 037 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 49.563804
-The maximum resident set size (KB) = 335200
-
-Test 037 control_stochy_restart_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_intel
-Checking test 038 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 84.153988
-The maximum resident set size (KB) = 531396
-
-Test 038 control_lndp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr4_intel
-Checking test 039 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 132.889405
-The maximum resident set size (KB) = 527212
-
-Test 039 control_iovr4_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr5_intel
-Checking test 040 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 132.853333
-The maximum resident set size (KB) = 531036
-
-Test 040 control_iovr5_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_intel
-Checking test 041 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 162.156825
-The maximum resident set size (KB) = 1509992
-
-Test 041 control_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8.v2.sfc_intel
-Checking test 042 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 161.953549
-The maximum resident set size (KB) = 1502732
-
-Test 042 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_ugwpv1_intel
-Checking test 043 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 160.401269
-The maximum resident set size (KB) = 1516136
-
-Test 043 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_intel
-Checking test 044 control_restart_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 90.183429
-The maximum resident set size (KB) = 694940
-
-Test 044 control_restart_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_noqr_p8_intel
-Checking test 045 control_noqr_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 162.797982
-The maximum resident set size (KB) = 1499940
-
-Test 045 control_noqr_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_noqr_p8_intel
-Checking test 046 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 87.900642
-The maximum resident set size (KB) = 699552
-
-Test 046 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_decomp_p8_intel
-Checking test 047 control_decomp_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 166.882279
-The maximum resident set size (KB) = 1506664
-
-Test 047 control_decomp_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_2threads_p8_intel
-Checking test 048 control_2threads_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 142.974058
-The maximum resident set size (KB) = 1588264
-
-Test 048 control_2threads_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_lndp_intel
-Checking test 049 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
-The total amount of wall time = 292.615876
-The maximum resident set size (KB) = 1505996
-
-Test 049 control_p8_lndp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_rrtmgp_intel
-Checking test 050 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 218.092373
-The maximum resident set size (KB) = 1561024
-
-Test 050 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_mynn_intel
-Checking test 051 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 165.718800
-The maximum resident set size (KB) = 1513556
-
-Test 051 control_p8_mynn_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/merra2_thompson_intel
-Checking test 052 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 197.063639
-The maximum resident set size (KB) = 1510884
-
-Test 052 merra2_thompson_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_intel
-Checking test 053 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 281.547353
-The maximum resident set size (KB) = 612740
-
-Test 053 regional_control_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_restart_intel
-Checking test 054 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 154.229868
-The maximum resident set size (KB) = 779896
-
-Test 054 regional_restart_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_decomp_intel
-Checking test 055 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 298.617670
-The maximum resident set size (KB) = 611504
-
-Test 055 regional_decomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2threads_intel
-Checking test 056 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 172.744636
-The maximum resident set size (KB) = 666676
-
-Test 056 regional_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_noquilt_intel
-Checking test 057 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
-The total amount of wall time = 276.876585
-The maximum resident set size (KB) = 1148844
-
-Test 057 regional_noquilt_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2dwrtdecomp_intel
-Checking test 058 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 284.198888
-The maximum resident set size (KB) = 612640
-
-Test 058 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_wofs_intel
-Checking test 059 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 372.331648
-The maximum resident set size (KB) = 1585356
-
-Test 059 regional_wofs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_control_intel
-Checking test 060 regional_ifi_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 314.278095
-The maximum resident set size (KB) = 611780
-
-Test 060 regional_ifi_control_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_decomp_intel
-Checking test 061 regional_ifi_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 330.518680
-The maximum resident set size (KB) = 611004
-
-Test 061 regional_ifi_decomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_2threads_intel
-Checking test 062 regional_ifi_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 191.814831
-The maximum resident set size (KB) = 663552
-
-Test 062 regional_ifi_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_intel
-Checking test 063 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 404.139433
-The maximum resident set size (KB) = 917148
-
-Test 063 rap_control_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_intel
-Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 238.614743
-The maximum resident set size (KB) = 1099324
-
-Test 064 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_decomp_intel
-Checking test 065 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 420.342724
-The maximum resident set size (KB) = 917176
-
-Test 065 rap_decomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_intel
-Checking test 066 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 369.944418
-The maximum resident set size (KB) = 1003028
-
-Test 066 rap_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_intel
-Checking test 067 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 208.230702
-The maximum resident set size (KB) = 787668
-
-Test 067 rap_restart_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_intel
-Checking test 068 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 404.037357
-The maximum resident set size (KB) = 910668
-
-Test 068 rap_sfcdiff_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_decomp_intel
-Checking test 069 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 419.821399
-The maximum resident set size (KB) = 910936
-
-Test 069 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_restart_intel
-Checking test 070 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 302.542040
-The maximum resident set size (KB) = 786160
-
-Test 070 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_intel
-Checking test 071 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 207.422949
-The maximum resident set size (KB) = 907440
-
-Test 071 hrrr_control_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_intel
-Checking test 072 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 211.266940
-The maximum resident set size (KB) = 908928
-
-Test 072 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_intel
-Checking test 073 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 185.765973
-The maximum resident set size (KB) = 984068
-
-Test 073 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_intel
-Checking test 074 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 109.444178
-The maximum resident set size (KB) = 743616
-
-Test 074 hrrr_control_restart_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_intel
-Checking test 075 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 396.973313
-The maximum resident set size (KB) = 903656
-
-Test 075 rrfs_v1beta_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_intel
-Checking test 076 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 483.985501
-The maximum resident set size (KB) = 1871016
-
-Test 076 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_nohailnoccn_intel
-Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 468.624004
-The maximum resident set size (KB) = 1859480
-
-Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_intel
-Checking test 078 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 336.283994
-The maximum resident set size (KB) = 606300
-
-Test 078 control_csawmg_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_intel
-Checking test 079 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 332.691438
-The maximum resident set size (KB) = 602368
-
-Test 079 control_csawmgt_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_intel
-Checking test 080 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
-The total amount of wall time = 119.382718
-The maximum resident set size (KB) = 273604
-
-Test 080 control_wam_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_faster_intel
-Checking test 081 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 156.497008
-The maximum resident set size (KB) = 1500872
-
-Test 081 control_p8_faster_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_faster_intel
-Checking test 082 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 272.768730
-The maximum resident set size (KB) = 605424
-
-Test 082 regional_control_faster_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_debug_intel
-Checking test 083 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
-The total amount of wall time = 160.015649
-The maximum resident set size (KB) = 685740
-
-Test 083 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 157.546243
-The maximum resident set size (KB) = 686840
-
-Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_debug_intel
-Checking test 085 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 179.804539
-The maximum resident set size (KB) = 692976
-
-Test 085 control_stochy_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_debug_intel
-Checking test 086 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 161.841649
-The maximum resident set size (KB) = 691400
-
-Test 086 control_lndp_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_debug_intel
-Checking test 087 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 249.947359
-The maximum resident set size (KB) = 728084
-
-Test 087 control_csawmg_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_debug_intel
-Checking test 088 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 246.536305
-The maximum resident set size (KB) = 731928
-
-Test 088 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_ras_debug_intel
-Checking test 089 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 162.918826
-The maximum resident set size (KB) = 699560
-
-Test 089 control_ras_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_diag_debug_intel
-Checking test 090 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 164.525885
-The maximum resident set size (KB) = 750820
-
-Test 090 control_diag_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_debug_p8_intel
-Checking test 091 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 167.141659
-The maximum resident set size (KB) = 1519644
-
-Test 091 control_debug_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_debug_intel
-Checking test 092 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
-The total amount of wall time = 1046.652034
-The maximum resident set size (KB) = 636352
-
-Test 092 regional_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_intel
-Checking test 093 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 299.583165
-The maximum resident set size (KB) = 1072896
-
-Test 093 rap_control_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_intel
-Checking test 094 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 293.074200
-The maximum resident set size (KB) = 1066068
-
-Test 094 hrrr_control_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_gf_debug_intel
-Checking test 095 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 298.226129
-The maximum resident set size (KB) = 1076576
-
-Test 095 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_c3_debug_intel
-Checking test 096 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 298.620112
-The maximum resident set size (KB) = 1076948
-
-Test 096 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_drag_suite_debug_intel
-Checking test 097 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 300.449765
-The maximum resident set size (KB) = 1072792
-
-Test 097 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_diag_debug_intel
-Checking test 098 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 313.037681
-The maximum resident set size (KB) = 1155780
-
-Test 098 rap_diag_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_cires_ugwp_debug_intel
-Checking test 099 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 305.872024
-The maximum resident set size (KB) = 1075240
-
-Test 099 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_ugwp_debug_intel
-Checking test 100 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 305.344272
-The maximum resident set size (KB) = 1079696
-
-Test 100 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_lndp_debug_intel
-Checking test 101 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 301.838610
-The maximum resident set size (KB) = 1076408
-
-Test 101 rap_lndp_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_progcld_thompson_debug_intel
-Checking test 102 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 300.022365
-The maximum resident set size (KB) = 1072432
-
-Test 102 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_debug_intel
-Checking test 103 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 293.658661
-The maximum resident set size (KB) = 1074016
-
-Test 103 rap_noah_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_debug_intel
-Checking test 104 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 299.824717
-The maximum resident set size (KB) = 1072920
-
-Test 104 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 490.771679
-The maximum resident set size (KB) = 1075128
-
-Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_debug_intel
-Checking test 106 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 294.072021
-The maximum resident set size (KB) = 1064612
-
-Test 106 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_clm_lake_debug_intel
-Checking test 107 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 351.370858
-The maximum resident set size (KB) = 1074324
-
-Test 107 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_flake_debug_intel
-Checking test 108 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 302.887751
-The maximum resident set size (KB) = 1072304
-
-Test 108 rap_flake_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_c96_no_nest_debug_intel
-Checking test 109 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 526.510557
-The maximum resident set size (KB) = 1078572
-
-Test 109 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_debug_intel
-Checking test 110 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
-The total amount of wall time = 299.016847
-The maximum resident set size (KB) = 299136
-
-Test 110 control_wam_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 226.914977
-The maximum resident set size (KB) = 960248
-
-Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn32_phy32_intel
-Checking test 112 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 335.157411
-The maximum resident set size (KB) = 794408
-
-Test 112 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_dyn32_phy32_intel
-Checking test 113 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 175.437514
-The maximum resident set size (KB) = 791508
-
-Test 113 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_dyn32_phy32_intel
-Checking test 114 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 306.899439
-The maximum resident set size (KB) = 856812
-
-Test 114 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 160.316286
-The maximum resident set size (KB) = 846172
-
-Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 183.284931
-The maximum resident set size (KB) = 790480
-
-Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_dyn32_phy32_intel
-Checking test 117 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 250.436915
-The maximum resident set size (KB) = 692492
-
-Test 117 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_dyn32_phy32_intel
-Checking test 118 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 93.137371
-The maximum resident set size (KB) = 676932
-
-Test 118 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_control_intel
-Checking test 119 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 116.922325
-The maximum resident set size (KB) = 1007600
-
-Test 119 conus13km_control_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_2threads_intel
-Checking test 120 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 60.646438
-The maximum resident set size (KB) = 1006948
-
-Test 120 conus13km_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_restart_mismatch_intel
-Checking test 121 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
-The total amount of wall time = 70.187236
-The maximum resident set size (KB) = 881616
-
-Test 121 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_intel
-Checking test 122 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 229.114228
-The maximum resident set size (KB) = 818692
-
-Test 122 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_dyn32_phy32_intel
-Checking test 123 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 293.962733
-The maximum resident set size (KB) = 955588
-
-Test 123 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_dyn32_phy32_intel
-Checking test 124 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 287.342628
-The maximum resident set size (KB) = 950560
-
-Test 124 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_intel
-Checking test 125 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 883.460989
-The maximum resident set size (KB) = 1036696
-
-Test 125 conus13km_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_qr_intel
-Checking test 126 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
-The total amount of wall time = 888.108565
-The maximum resident set size (KB) = 706376
-
-Test 126 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_2threads_intel
-Checking test 127 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 507.466675
-The maximum resident set size (KB) = 1036128
-
-Test 127 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_radar_tten_debug_intel
-Checking test 128 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 884.270449
-The maximum resident set size (KB) = 1106296
-
-Test 128 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_debug_intel
-Checking test 129 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 296.714289
-The maximum resident set size (KB) = 976420
-
-Test 129 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_intel
-Checking test 130 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
-The total amount of wall time = 343.708225
-The maximum resident set size (KB) = 620344
-
-Test 130 hafs_regional_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
-The total amount of wall time = 310.750633
-The maximum resident set size (KB) = 971820
-
-Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_intel
-Checking test 132 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 427.135080
-The maximum resident set size (KB) = 666972
-
-Test 132 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_wav_intel
-Checking test 133 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 750.280372
-The maximum resident set size (KB) = 697912
-
-Test 133 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_wav_intel
-Checking test 134 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 943.861252
-The maximum resident set size (KB) = 707740
-
-Test 134 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_1nest_atm_intel
-Checking test 135 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 318.300582
-The maximum resident set size (KB) = 391780
-
-Test 135 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_telescopic_2nests_atm_intel
-Checking test 136 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
-The total amount of wall time = 406.481503
-The maximum resident set size (KB) = 419540
-
-Test 136 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_1nest_atm_intel
-Checking test 137 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 172.062043
-The maximum resident set size (KB) = 287092
-
-Test 137 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_multiple_4nests_atm_intel
-Checking test 138 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
-The total amount of wall time = 482.747395
-The maximum resident set size (KB) = 373076
-
-Test 138 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
-The total amount of wall time = 220.258526
-The maximum resident set size (KB) = 417436
-
-Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_intel
-Checking test 140 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 205.579863
-The maximum resident set size (KB) = 417588
-
-Test 140 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
-The total amount of wall time = 263.044010
-The maximum resident set size (KB) = 493596
-
-Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_storm_following_1nest_atm_intel
-Checking test 142 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
-The total amount of wall time = 90.653026
-The maximum resident set size (KB) = 312096
-
-Test 142 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_nested_intel
-Checking test 143 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 236.838277
-The maximum resident set size (KB) = 678924
-
-Test 143 gnv1_nested_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
-The total amount of wall time = 814.688929
-The maximum resident set size (KB) = 507896
-
-Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 518.877349
-The maximum resident set size (KB) = 529744
-
-Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 523.529442
-The maximum resident set size (KB) = 713304
-
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 384.296917
-The maximum resident set size (KB) = 711192
-
-Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_intel
-Checking test 148 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 391.242461
-The maximum resident set size (KB) = 662384
-
-Test 148 hafs_regional_docn_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_oisst_intel
-Checking test 149 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 399.081884
-The maximum resident set size (KB) = 651244
-
-Test 149 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_datm_cdeps_intel
-Checking test 150 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
-The total amount of wall time = 948.178874
-The maximum resident set size (KB) = 882836
-
-Test 150 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_intel
-Checking test 151 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 142.737231
-The maximum resident set size (KB) = 739148
-
-Test 151 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_restart_cfsr_intel
-Checking test 152 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 85.767235
-The maximum resident set size (KB) = 737496
-
-Test 152 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_gefs_intel
-Checking test 153 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 134.225087
-The maximum resident set size (KB) = 630348
-
-Test 153 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_iau_gefs_intel
-Checking test 154 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 136.027695
-The maximum resident set size (KB) = 627288
-
-Test 154 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_stochy_gefs_intel
-Checking test 155 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 138.189035
-The maximum resident set size (KB) = 630032
-
-Test 155 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_ciceC_cfsr_intel
-Checking test 156 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 142.858978
-The maximum resident set size (KB) = 736528
-
-Test 156 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_cfsr_intel
-Checking test 157 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 143.675144
-The maximum resident set size (KB) = 750240
-
-Test 157 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_gefs_intel
-Checking test 158 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 134.471235
-The maximum resident set size (KB) = 629816
-
-Test 158 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_cfsr_intel
-Checking test 159 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
-The total amount of wall time = 339.570269
-The maximum resident set size (KB) = 594880
-
-Test 159 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_gefs_intel
-Checking test 160 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
-The total amount of wall time = 337.599507
-The maximum resident set size (KB) = 578192
-
-Test 160 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_multiple_files_cfsr_intel
-Checking test 161 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 143.009275
-The maximum resident set size (KB) = 750628
-
-Test 161 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_3072x1536_cfsr_intel
-Checking test 162 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 262.534235
-The maximum resident set size (KB) = 2008420
-
-Test 162 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_gfs_intel
-Checking test 163 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 262.895755
-The maximum resident set size (KB) = 2006316
-
-Test 163 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_faster_intel
-Checking test 164 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 142.374074
-The maximum resident set size (KB) = 748508
-
-Test 164 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_gswp3_intel
-Checking test 165 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
-The total amount of wall time = 57.476005
-The maximum resident set size (KB) = 225536
-
-Test 165 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_intel
-Checking test 166 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
-The total amount of wall time = 58.564024
-The maximum resident set size (KB) = 368616
-
-Test 166 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_rst_intel
-Checking test 167 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
-The total amount of wall time = 43.292506
-The maximum resident set size (KB) = 369724
-
-Test 167 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_sbs_intel
-Checking test 168 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 276.384205
-The maximum resident set size (KB) = 1551876
-
-Test 168 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_intel
-Checking test 169 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 277.102019
-The maximum resident set size (KB) = 1552436
-
-Test 169 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_atmlnd_intel
-Checking test 170 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 152.901236
-The maximum resident set size (KB) = 741672
-
-Test 170 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmwav_control_noaero_p8_intel
-Checking test 171 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
-The total amount of wall time = 99.922005
-The maximum resident set size (KB) = 1545684
-
-Test 171 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_atmwav_intel
-Checking test 172 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
-The total amount of wall time = 91.869972
-The maximum resident set size (KB) = 544992
-
-Test 172 control_atmwav_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_intel
-Checking test 173 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 236.391729
-The maximum resident set size (KB) = 2855088
-
-Test 173 atmaero_control_p8_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_intel
-Checking test 174 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 275.218701
-The maximum resident set size (KB) = 2910584
-
-Test 174 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_micro_intel
-Checking test 175 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 290.955954
-The maximum resident set size (KB) = 2923376
-
-Test 175 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_atmaq_debug_intel
-Checking test 176 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
- Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-
-The total amount of wall time = 1320.468838
-The maximum resident set size (KB) = 4431444
-
-Test 176 regional_atmaq_debug_intel PASS
-REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 22:50:28 UTC 2024
-Elapsed time: 01h:55m:24s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_93964
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [10:30, 10:13]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:37, 01:21](2973 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:44, 17:13]
+PASS -- TEST 'cpld_control_gfsv17_intel' [45:51, 01:24](1593 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:19, 01:23](1720 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:07, 01:23](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:53, 01:41](1570 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:30]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [58:48, 02:08](1607 MB)
+
+PASS -- COMPILE 's2swa_intel' [10:30, 10:12]
+PASS -- TEST 'cpld_control_p8_intel' [53:37, 00:52](3004 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:37, 01:41](2999 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [38:53, 01:18](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [53:37, 01:46](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [37:44, 00:53](3077 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [53:37, 01:15](3315 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [53:37, 01:43](2997 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [53:38, 01:36](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:37, 01:37](3003 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [53:37, 01:06](2967 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:30, 09:53]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [53:37, 00:53](1588 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:37, 01:01](1637 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:28, 09:11]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:39, 01:00](1635 MB)
+
+PASS -- COMPILE 's2s_intel' [12:34, 11:41]
+PASS -- TEST 'cpld_control_c48_intel' [51:32, 01:12](2650 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:40, 15:01]
+PASS -- TEST 'cpld_control_p8_faster_intel' [48:25, 01:38](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:40, 15:29]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:13, 00:46](1609 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:14, 01:20](912 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 01:24](1589 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 03:37]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:51, 01:07](1617 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:13]
+PASS -- TEST 'control_flake_intel' [50:21, 00:15](576 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [50:21, 01:04](526 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:21, 01:09](531 MB)
+PASS -- TEST 'control_latlon_intel' [50:21, 00:38](526 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:21, 00:40](530 MB)
+PASS -- TEST 'control_c48_intel' [50:20, 01:02](722 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [50:20, 01:14](721 MB)
+PASS -- TEST 'control_c192_intel' [50:21, 01:13](642 MB)
+PASS -- TEST 'control_c384_intel' [50:25, 00:57](956 MB)
+PASS -- TEST 'control_c384gdas_intel' [50:25, 01:43](1099 MB)
+PASS -- TEST 'control_stochy_intel' [50:21, 01:07](537 MB)
+PASS -- TEST 'control_stochy_restart_intel' [31:14, 00:48](337 MB)
+PASS -- TEST 'control_lndp_intel' [50:21, 01:10](532 MB)
+PASS -- TEST 'control_iovr4_intel' [50:21, 00:35](529 MB)
+PASS -- TEST 'control_iovr5_intel' [50:21, 00:40](528 MB)
+PASS -- TEST 'control_p8_intel' [50:21, 01:26](1507 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [47:00, 01:04](1501 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [44:51, 01:03](1513 MB)
+PASS -- TEST 'control_restart_p8_intel' [29:23, 01:04](696 MB)
+PASS -- TEST 'control_noqr_p8_intel' [42:24, 00:58](1495 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [28:06, 00:50](703 MB)
+PASS -- TEST 'control_decomp_p8_intel' [39:45, 01:10](1501 MB)
+PASS -- TEST 'control_2threads_p8_intel' [39:42, 01:33](1590 MB)
+PASS -- TEST 'control_p8_lndp_intel' [38:29, 01:06](1512 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [36:46, 01:48](1559 MB)
+PASS -- TEST 'control_p8_mynn_intel' [34:15, 00:55](1512 MB)
+PASS -- TEST 'merra2_thompson_intel' [34:12, 01:17](1514 MB)
+PASS -- TEST 'regional_control_intel' [33:32, 00:26](609 MB)
+PASS -- TEST 'regional_restart_intel' [27:43, 00:46](783 MB)
+PASS -- TEST 'regional_decomp_intel' [33:19, 00:56](611 MB)
+PASS -- TEST 'regional_2threads_intel' [32:56, 01:01](673 MB)
+PASS -- TEST 'regional_noquilt_intel' [32:47, 00:57](1148 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [32:27, 00:47](610 MB)
+PASS -- TEST 'regional_wofs_intel' [32:14, 00:35](1582 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:27, 07:59]
+PASS -- TEST 'regional_ifi_control_intel' [31:13, 00:48](614 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [31:12, 01:08](609 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [31:10, 00:33](668 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:29, 08:30]
+PASS -- TEST 'rap_control_intel' [31:10, 01:07](912 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:09, 00:39](1091 MB)
+PASS -- TEST 'rap_decomp_intel' [30:24, 00:44](916 MB)
+PASS -- TEST 'rap_2threads_intel' [28:10, 01:11](1005 MB)
+PASS -- TEST 'rap_restart_intel' [18:36, 01:26](788 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [28:04, 01:08](913 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:24, 00:48](912 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [16:30, 01:50](784 MB)
+PASS -- TEST 'hrrr_control_intel' [27:24, 01:30](908 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [26:09, 01:07](907 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [25:25, 01:58](992 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [18:54, 01:13](745 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [24:47, 01:36](910 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [24:29, 00:31](1873 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:22, 00:56](1858 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:29, 08:23]
+PASS -- TEST 'control_csawmg_intel' [24:03, 01:16](603 MB)
+PASS -- TEST 'control_csawmgt_intel' [24:00, 00:57](599 MB)
+
+PASS -- COMPILE 'wam_intel' [08:27, 08:06]
+PASS -- TEST 'control_wam_intel' [23:50, 00:18](273 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:29, 08:39]
+PASS -- TEST 'control_p8_faster_intel' [23:34, 01:46](1513 MB)
+PASS -- TEST 'regional_control_faster_intel' [23:30, 00:12](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:23, 03:51]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:07, 00:59](685 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:01, 01:11](688 MB)
+PASS -- TEST 'control_stochy_debug_intel' [21:58, 01:04](694 MB)
+PASS -- TEST 'control_lndp_debug_intel' [21:58, 00:35](693 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [21:17, 00:25](727 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [19:29, 00:41](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [18:54, 00:15](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [18:19, 00:25](746 MB)
+PASS -- TEST 'control_debug_p8_intel' [17:13, 01:07](1517 MB)
+PASS -- TEST 'regional_debug_intel' [17:02, 00:44](628 MB)
+PASS -- TEST 'rap_control_debug_intel' [16:15, 01:14](1071 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [14:24, 00:16](1067 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 00:50](1068 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [14:16, 00:38](1069 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:06, 00:36](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [13:45, 00:47](1157 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:27, 00:48](1075 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:21, 00:36](1071 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [13:21, 00:38](1075 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:03, 00:57](1075 MB)
+PASS -- TEST 'rap_noah_debug_intel' [12:46, 00:31](1067 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [12:36, 01:07](1074 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:29, 00:24](1071 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [11:39, 00:13](1063 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 00:58](1073 MB)
+PASS -- TEST 'rap_flake_debug_intel' [11:14, 00:27](1074 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:06, 01:36](1079 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:21, 02:47]
+PASS -- TEST 'control_wam_debug_intel' [08:04, 00:19](300 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:12]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 01:04](963 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 02:03](795 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 01:30](794 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 02:02](856 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:43, 02:08](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 01:44](792 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:09, 00:50](692 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:54, 00:45](671 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:53, 10:22]
+PASS -- TEST 'conus13km_control_intel' [06:01, 00:45](1007 MB)
+PASS -- TEST 'conus13km_2threads_intel' [58:02, 00:27](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [58:01, 01:13](882 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:48, 08:19]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:53, 00:41](816 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:59, 03:00]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:23, 01:13](949 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:23, 00:15](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [55:23, 00:32](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [55:23, 00:36](706 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [55:24, 00:44](1036 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:23, 00:35](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:59, 02:54]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:10, 01:09](974 MB)
+
+PASS -- COMPILE 'hafsw_intel' [57:15, 09:28]
+PASS -- TEST 'hafs_regional_atm_intel' [47:56, 01:55](620 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:56, 00:55](968 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:54, 01:32](663 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [47:54, 02:00](704 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:55, 01:43](708 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:54, 00:43](391 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:55, 01:46](409 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [47:55, 01:36](290 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:58, 01:55](374 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:54, 01:16](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:54, 01:28](419 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [47:56, 01:03](493 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [47:55, 00:43](316 MB)
+PASS -- TEST 'gnv1_nested_intel' [47:55, 01:13](680 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [51:02, 03:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:10, 01:03](507 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [58:16, 09:44]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:46, 01:19](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:46, 01:31](712 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [57:16, 09:22]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:54, 01:42](712 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [57:16, 09:03]
+PASS -- TEST 'hafs_regional_docn_intel' [46:52, 01:58](668 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:52, 01:46](652 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:50, 00:31](882 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [50:00, 08:36]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:40, 01:09](750 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [41:11, 01:07](727 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [46:24, 00:10](630 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [45:19, 00:56](632 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [42:26, 00:29](628 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:48, 00:40](747 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:09, 01:01](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:56, 00:47](630 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:08, 00:42](592 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:02, 00:51](576 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:01, 01:08](752 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:49, 00:43](2012 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [36:59, 00:48](1950 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [43:46, 08:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [46:51, 00:15](751 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [34:23, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:10, 00:25](226 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:10, 00:43](368 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [47:35, 00:52](369 MB)
+
+PASS -- COMPILE 'atml_intel' [10:30, 09:42]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:47, 01:16](1552 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [36:25, 01:13](1550 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:28, 00:25](746 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:30, 08:48]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [35:47, 00:53](1542 MB)
+
+PASS -- COMPILE 'atmwm_intel' [09:31, 08:32]
+PASS -- TEST 'control_atmwav_intel' [35:23, 01:22](544 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:31, 08:34]
+PASS -- TEST 'atmaero_control_p8_intel' [34:59, 01:18](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [34:32, 01:12](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:29, 01:45](2922 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:29, 08:23]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:37, 03:06]
+PASS -- TEST 'regional_atmaq_debug_intel' [33:15, 00:48](4430 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240220 12:55:39
+Ending Date/Time: 20240220 15:02:33
+Total Time: 02h:07m:09s
+Compiles Completed: 37/37
+Tests Completed: 176/176
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF ACORN REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index a52b9fc8cf..197ca0d90c 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,5663 +1,292 @@
-Tue 13 Feb 2024 03:11:27 PM MST
-Start Regression test
+====START OF DERECHO REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+681a70733ad51929905514527b6d5a497cd17776
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 668 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_intel elapsed time 689 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 556 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 774 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 769 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 341 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 579 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 477 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 160 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 881 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 1018 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 1176 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 983 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 831 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 894 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 936 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 1254 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 615 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1201 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 567 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1156 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 666 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1321 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 287.254314
-The maximum resident set size (KB) = 3072604
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 813.470157
-The maximum resident set size (KB) = 1676184
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
-The total amount of wall time = 910.181925
-The maximum resident set size (KB) = 1817456
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 441.345176
-The maximum resident set size (KB) = 956064
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 934.102717
-The maximum resident set size (KB) = 1658572
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1297.227880
-The maximum resident set size (KB) = 1696772
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 332.290618
-The maximum resident set size (KB) = 3094800
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 329.571265
-The maximum resident set size (KB) = 3094048
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 193.709056
-The maximum resident set size (KB) = 3149116
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 325.601120
-The maximum resident set size (KB) = 3126328
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 194.380642
-The maximum resident set size (KB) = 3179204
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_decomp_p8_intel
-Checking test 012 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 327.758742
-The maximum resident set size (KB) = 3089652
-
-Test 012 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_p8_intel
-Checking test 013 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 269.560931
-The maximum resident set size (KB) = 3395808
-
-Test 013 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_ciceC_p8_intel
-Checking test 014 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 324.251159
-The maximum resident set size (KB) = 3099092
-
-Test 014 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c192_p8_intel
-Checking test 015 cpld_control_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 525.406322
-The maximum resident set size (KB) = 3634228
-
-Test 015 cpld_control_c192_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_c192_p8_intel
-Checking test 016 cpld_restart_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 351.476175
-The maximum resident set size (KB) = 3614552
-
-Test 016 cpld_restart_c192_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_s2sa_p8_intel
-Checking test 017 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 304.774265
-The maximum resident set size (KB) = 3062348
-
-Test 017 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_intel
-Checking test 018 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 241.190810
-The maximum resident set size (KB) = 1677764
-
-Test 018 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_nowave_noaero_p8_intel
-Checking test 019 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 244.832020
-The maximum resident set size (KB) = 1722108
-
-Test 019 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_p8_intel
-Checking test 020 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 456.601297
-The maximum resident set size (KB) = 3150724
-
-Test 020 cpld_debug_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_noaero_p8_intel
-Checking test 021 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 301.016467
-The maximum resident set size (KB) = 1696460
-
-Test 021 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_agrid_intel
-Checking test 022 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 247.135439
-The maximum resident set size (KB) = 1721024
-
-Test 022 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c48_intel
-Checking test 023 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 391.150267
-The maximum resident set size (KB) = 2665508
-
-Test 023 cpld_control_c48_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_pdlib_p8_intel
-Checking test 024 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 832.000577
-The maximum resident set size (KB) = 1695256
-
-Test 024 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_pdlib_p8_intel
-Checking test 025 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 436.875358
-The maximum resident set size (KB) = 1115432
-
-Test 025 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_pdlib_p8_intel
-Checking test 026 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 950.678674
-The maximum resident set size (KB) = 1666736
-
-Test 026 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_pdlib_p8_intel
-Checking test 027 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1348.056090
-The maximum resident set size (KB) = 1714360
-
-Test 027 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_flake_intel
-Checking test 028 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 197.885675
-The maximum resident set size (KB) = 666572
-
-Test 028 control_flake_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_intel
-Checking test 029 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
-The total amount of wall time = 116.561731
-The maximum resident set size (KB) = 617504
-
-Test 029 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_parallel_intel
-Checking test 030 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 121.240894
-The maximum resident set size (KB) = 623180
-
-Test 030 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_latlon_intel
-Checking test 031 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 117.180024
-The maximum resident set size (KB) = 618180
-
-Test 031 control_latlon_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_intel
-Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 121.494351
-The maximum resident set size (KB) = 615772
-
-Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48_intel
-Checking test 033 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 310.447763
-The maximum resident set size (KB) = 728928
-
-Test 033 control_c48_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48.v2.sfc_intel
-Checking test 034 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 307.679009
-The maximum resident set size (KB) = 728796
-
-Test 034 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c192_intel
-Checking test 035 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 462.463171
-The maximum resident set size (KB) = 734404
-
-Test 035 control_c192_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384_intel
-Checking test 036 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 492.477247
-The maximum resident set size (KB) = 1062296
-
-Test 036 control_c384_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384gdas_intel
-Checking test 037 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 444.990483
-The maximum resident set size (KB) = 1197364
-
-Test 037 control_c384gdas_intel PASS Tries: 2
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_intel
-Checking test 038 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 76.849499
-The maximum resident set size (KB) = 624776
-
-Test 038 control_stochy_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_restart_intel
-Checking test 039 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 43.106187
-The maximum resident set size (KB) = 435120
-
-Test 039 control_stochy_restart_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_intel
-Checking test 040 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 74.801693
-The maximum resident set size (KB) = 621904
-
-Test 040 control_lndp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr4_intel
-Checking test 041 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 117.990170
-The maximum resident set size (KB) = 616824
-
-Test 041 control_iovr4_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr5_intel
-Checking test 042 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 117.964044
-The maximum resident set size (KB) = 618400
-
-Test 042 control_iovr5_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_intel
-Checking test 043 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 142.800335
-The maximum resident set size (KB) = 1591804
-
-Test 043 control_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8.v2.sfc_intel
-Checking test 044 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 142.134460
-The maximum resident set size (KB) = 1591764
-
-Test 044 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_ugwpv1_intel
-Checking test 045 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 141.663756
-The maximum resident set size (KB) = 1596412
-
-Test 045 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_intel
-Checking test 046 control_restart_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 78.345921
-The maximum resident set size (KB) = 792644
-
-Test 046 control_restart_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_noqr_p8_intel
-Checking test 047 control_noqr_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 142.993127
-The maximum resident set size (KB) = 1583668
-
-Test 047 control_noqr_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_noqr_p8_intel
-Checking test 048 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 75.418276
-The maximum resident set size (KB) = 1233084
-
-Test 048 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_decomp_p8_intel
-Checking test 049 control_decomp_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 146.173162
-The maximum resident set size (KB) = 1595912
-
-Test 049 control_decomp_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_lndp_intel
-Checking test 050 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
-The total amount of wall time = 255.827887
-The maximum resident set size (KB) = 1593716
-
-Test 050 control_p8_lndp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_rrtmgp_intel
-Checking test 051 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 189.288035
-The maximum resident set size (KB) = 1655748
-
-Test 051 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_mynn_intel
-Checking test 052 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 143.920240
-The maximum resident set size (KB) = 1606076
-
-Test 052 control_p8_mynn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/merra2_thompson_intel
-Checking test 053 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 171.463875
-The maximum resident set size (KB) = 1602292
-
-Test 053 merra2_thompson_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_intel
-Checking test 054 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 262.854666
-The maximum resident set size (KB) = 623168
-
-Test 054 regional_control_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_restart_intel
-Checking test 055 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 141.396684
-The maximum resident set size (KB) = 796584
-
-Test 055 regional_restart_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_decomp_intel
-Checking test 056 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 275.916489
-The maximum resident set size (KB) = 625832
-
-Test 056 regional_decomp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_noquilt_intel
-Checking test 057 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
-The total amount of wall time = 257.381681
-The maximum resident set size (KB) = 1156736
-
-Test 057 regional_noquilt_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_netcdf_parallel_intel
-Checking test 058 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
-The total amount of wall time = 263.559213
-The maximum resident set size (KB) = 620612
-
-Test 058 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_2dwrtdecomp_intel
-Checking test 059 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 260.812041
-The maximum resident set size (KB) = 627064
-
-Test 059 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_wofs_intel
-Checking test 060 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 328.778858
-The maximum resident set size (KB) = 1594792
-
-Test 060 regional_wofs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_intel
-Checking test 061 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 356.929009
-The maximum resident set size (KB) = 1003840
-
-Test 061 rap_control_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_intel
-Checking test 062 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 209.970037
-The maximum resident set size (KB) = 1191824
-
-Test 062 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_decomp_intel
-Checking test 063 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 372.852716
-The maximum resident set size (KB) = 1004200
-
-Test 063 rap_decomp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_intel
-Checking test 064 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 185.798213
-The maximum resident set size (KB) = 879780
-
-Test 064 rap_restart_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_intel
-Checking test 065 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 355.499946
-The maximum resident set size (KB) = 1004648
-
-Test 065 rap_sfcdiff_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_decomp_intel
-Checking test 066 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 374.167272
-The maximum resident set size (KB) = 1004988
-
-Test 066 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_restart_intel
-Checking test 067 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 267.174430
-The maximum resident set size (KB) = 880868
-
-Test 067 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_intel
-Checking test 068 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 183.993926
-The maximum resident set size (KB) = 1001636
-
-Test 068 hrrr_control_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_intel
-Checking test 069 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 189.087480
-The maximum resident set size (KB) = 1000184
-
-Test 069 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_2threads_intel
-Checking test 070 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 160.563409
-The maximum resident set size (KB) = 1086684
-
-Test 070 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_intel
-Checking test 071 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 97.735325
-The maximum resident set size (KB) = 833232
-
-Test 071 hrrr_control_restart_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_intel
-Checking test 072 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 349.772421
-The maximum resident set size (KB) = 1002044
-
-Test 072 rrfs_v1beta_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_intel
-Checking test 073 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 433.501392
-The maximum resident set size (KB) = 1959088
-
-Test 073 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_nohailnoccn_intel
-Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 416.399889
-The maximum resident set size (KB) = 1947308
-
-Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_intel
-Checking test 075 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 305.189481
-The maximum resident set size (KB) = 689828
-
-Test 075 control_csawmg_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_intel
-Checking test 076 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 298.578545
-The maximum resident set size (KB) = 688216
-
-Test 076 control_csawmgt_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_intel
-Checking test 077 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 164.596704
-The maximum resident set size (KB) = 655364
-
-Test 077 control_ras_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_intel
-Checking test 078 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
-The total amount of wall time = 104.408886
-The maximum resident set size (KB) = 381600
-
-Test 078 control_wam_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_faster_intel
-Checking test 079 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 135.964840
-The maximum resident set size (KB) = 1599664
-
-Test 079 control_p8_faster_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_faster_intel
-Checking test 080 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 248.143855
-The maximum resident set size (KB) = 624960
-
-Test 080 regional_control_faster_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_debug_intel
-Checking test 081 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
-The total amount of wall time = 145.917215
-The maximum resident set size (KB) = 794780
-
-Test 081 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 140.354619
-The maximum resident set size (KB) = 790228
-
-Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_debug_intel
-Checking test 083 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 158.878128
-The maximum resident set size (KB) = 798644
-
-Test 083 control_stochy_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_debug_intel
-Checking test 084 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 142.957055
-The maximum resident set size (KB) = 798488
-
-Test 084 control_lndp_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_debug_intel
-Checking test 085 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 224.583856
-The maximum resident set size (KB) = 833048
-
-Test 085 control_csawmg_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_debug_intel
-Checking test 086 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 224.450021
-The maximum resident set size (KB) = 834932
-
-Test 086 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_debug_intel
-Checking test 087 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 145.076383
-The maximum resident set size (KB) = 806452
-
-Test 087 control_ras_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_diag_debug_intel
-Checking test 088 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 147.618483
-The maximum resident set size (KB) = 850876
-
-Test 088 control_diag_debug_intel PASS Tries: 2
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_debug_p8_intel
-Checking test 089 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 149.410798
-The maximum resident set size (KB) = 1621016
-
-Test 089 control_debug_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_debug_intel
-Checking test 090 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
-The total amount of wall time = 944.122716
-The maximum resident set size (KB) = 661380
-
-Test 090 regional_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_intel
-Checking test 091 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 272.115364
-The maximum resident set size (KB) = 1175532
-
-Test 091 rap_control_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_intel
-Checking test 092 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 261.245460
-The maximum resident set size (KB) = 1174580
-
-Test 092 hrrr_control_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_gf_debug_intel
-Checking test 093 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 266.651559
-The maximum resident set size (KB) = 1177592
-
-Test 093 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_c3_debug_intel
-Checking test 094 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 267.315434
-The maximum resident set size (KB) = 1179204
-
-Test 094 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_drag_suite_debug_intel
-Checking test 095 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 267.705776
-The maximum resident set size (KB) = 1176796
-
-Test 095 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_diag_debug_intel
-Checking test 096 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 283.361639
-The maximum resident set size (KB) = 1263940
-
-Test 096 rap_diag_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_cires_ugwp_debug_intel
-Checking test 097 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 272.597051
-The maximum resident set size (KB) = 1177852
-
-Test 097 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_ugwp_debug_intel
-Checking test 098 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 273.741989
-The maximum resident set size (KB) = 1178296
-
-Test 098 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_lndp_debug_intel
-Checking test 099 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 269.071855
-The maximum resident set size (KB) = 1179680
-
-Test 099 rap_lndp_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_progcld_thompson_debug_intel
-Checking test 100 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 281.137615
-The maximum resident set size (KB) = 1176468
-
-Test 100 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_debug_intel
-Checking test 101 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 262.781627
-The maximum resident set size (KB) = 1170608
-
-Test 101 rap_noah_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_debug_intel
-Checking test 102 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 266.199180
-The maximum resident set size (KB) = 1179332
-
-Test 102 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 439.573070
-The maximum resident set size (KB) = 1176220
-
-Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_debug_intel
-Checking test 104 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 265.933519
-The maximum resident set size (KB) = 1173608
-
-Test 104 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_clm_lake_debug_intel
-Checking test 105 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 315.066589
-The maximum resident set size (KB) = 1180832
-
-Test 105 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_flake_debug_intel
-Checking test 106 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 269.043588
-The maximum resident set size (KB) = 1181028
-
-Test 106 rap_flake_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_c96_no_nest_debug_intel
-Checking test 107 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 462.034280
-The maximum resident set size (KB) = 1177024
-
-Test 107 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_debug_intel
-Checking test 108 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
-The total amount of wall time = 270.531881
-The maximum resident set size (KB) = 420028
-
-Test 108 control_wam_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 202.995920
-The maximum resident set size (KB) = 1053380
-
-Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn32_phy32_intel
-Checking test 110 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 298.089350
-The maximum resident set size (KB) = 879448
-
-Test 110 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_dyn32_phy32_intel
-Checking test 111 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 161.175938
-The maximum resident set size (KB) = 877000
-
-Test 111 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 165.333934
-The maximum resident set size (KB) = 878356
-
-Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_dyn32_phy32_intel
-Checking test 113 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 227.422230
-The maximum resident set size (KB) = 792956
-
-Test 113 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_dyn32_phy32_intel
-Checking test 114 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 82.898710
-The maximum resident set size (KB) = 774584
-
-Test 114 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_control_intel
-Checking test 115 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 114.050530
-The maximum resident set size (KB) = 1087448
-
-Test 115 conus13km_control_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_2threads_intel
-Checking test 116 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 51.633947
-The maximum resident set size (KB) = 1087780
-
-Test 116 conus13km_2threads_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_restart_mismatch_intel
-Checking test 117 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
-The total amount of wall time = 58.334294
-The maximum resident set size (KB) = 975668
-
-Test 117 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_intel
-Checking test 118 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 209.677892
-The maximum resident set size (KB) = 907960
-
-Test 118 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_dyn32_phy32_intel
-Checking test 119 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 260.797136
-The maximum resident set size (KB) = 1055904
-
-Test 119 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_dyn32_phy32_intel
-Checking test 120 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 267.752256
-The maximum resident set size (KB) = 1056428
-
-Test 120 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_debug_intel
-Checking test 121 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 791.728811
-The maximum resident set size (KB) = 1132840
-
-Test 121 conus13km_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_radar_tten_debug_intel
-Checking test 122 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 813.435144
-The maximum resident set size (KB) = 1199980
-
-Test 122 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_debug_intel
-Checking test 123 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 269.869857
-The maximum resident set size (KB) = 1078316
-
-Test 123 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_intel
-Checking test 124 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
-The total amount of wall time = 266.084321
-The maximum resident set size (KB) = 711920
-
-Test 124 hafs_regional_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
-The total amount of wall time = 303.657054
-The maximum resident set size (KB) = 1064772
-
-Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_intel
-Checking test 126 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 380.660268
-The maximum resident set size (KB) = 776016
-
-Test 126 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_wav_intel
-Checking test 127 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 650.137569
-The maximum resident set size (KB) = 795664
-
-Test 127 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_wav_intel
-Checking test 128 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 724.238413
-The maximum resident set size (KB) = 809044
-
-Test 128 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_1nest_atm_intel
-Checking test 129 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 269.115433
-The maximum resident set size (KB) = 475676
-
-Test 129 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_telescopic_2nests_atm_intel
-Checking test 130 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
-The total amount of wall time = 335.884116
-The maximum resident set size (KB) = 493196
-
-Test 130 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_1nest_atm_intel
-Checking test 131 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 127.036100
-The maximum resident set size (KB) = 389448
-
-Test 131 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_multiple_4nests_atm_intel
-Checking test 132 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
-The total amount of wall time = 375.246874
-The maximum resident set size (KB) = 457472
-
-Test 132 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
-The total amount of wall time = 187.079160
-The maximum resident set size (KB) = 508036
-
-Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_intel
-Checking test 134 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 174.805779
-The maximum resident set size (KB) = 511836
-
-Test 134 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
-The total amount of wall time = 222.392445
-The maximum resident set size (KB) = 587100
-
-Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_storm_following_1nest_atm_intel
-Checking test 136 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
-The total amount of wall time = 66.240057
-The maximum resident set size (KB) = 429872
-
-Test 136 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_nested_intel
-Checking test 137 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 197.748290
-The maximum resident set size (KB) = 783544
-
-Test 137 gnv1_nested_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
-The total amount of wall time = 719.803295
-The maximum resident set size (KB) = 611616
-
-Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 424.211345
-The maximum resident set size (KB) = 623732
-
-Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 424.242998
-The maximum resident set size (KB) = 677660
-
-Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 312.677914
-The maximum resident set size (KB) = 679512
-
-Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_intel
-Checking test 142 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 328.493783
-The maximum resident set size (KB) = 749004
-
-Test 142 hafs_regional_docn_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_oisst_intel
-Checking test 143 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 329.730264
-The maximum resident set size (KB) = 738300
-
-Test 143 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_datm_cdeps_intel
-Checking test 144 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
-The total amount of wall time = 961.863712
-The maximum resident set size (KB) = 893760
-
-Test 144 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_intel
-Checking test 145 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 143.709114
-The maximum resident set size (KB) = 760508
-
-Test 145 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_restart_cfsr_intel
-Checking test 146 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 87.967913
-The maximum resident set size (KB) = 748932
-
-Test 146 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_gefs_intel
-Checking test 147 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 134.874445
-The maximum resident set size (KB) = 640976
-
-Test 147 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_iau_gefs_intel
-Checking test 148 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 137.946855
-The maximum resident set size (KB) = 724064
-
-Test 148 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_stochy_gefs_intel
-Checking test 149 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 137.770990
-The maximum resident set size (KB) = 641196
-
-Test 149 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_ciceC_cfsr_intel
-Checking test 150 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 142.112546
-The maximum resident set size (KB) = 760000
-
-Test 150 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_cfsr_intel
-Checking test 151 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 142.271849
-The maximum resident set size (KB) = 761236
-
-Test 151 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_gefs_intel
-Checking test 152 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 133.334822
-The maximum resident set size (KB) = 1233084
-
-Test 152 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_cfsr_intel
-Checking test 153 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
-The total amount of wall time = 329.109469
-The maximum resident set size (KB) = 689436
-
-Test 153 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_gefs_intel
-Checking test 154 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
-The total amount of wall time = 327.403572
-The maximum resident set size (KB) = 669996
-
-Test 154 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_multiple_files_cfsr_intel
-Checking test 155 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 143.494820
-The maximum resident set size (KB) = 760780
-
-Test 155 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_3072x1536_cfsr_intel
-Checking test 156 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 230.972903
-The maximum resident set size (KB) = 2019780
-
-Test 156 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_gfs_intel
-Checking test 157 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 230.700660
-The maximum resident set size (KB) = 2019700
-
-Test 157 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_debug_cfsr_intel
-Checking test 158 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
-The total amount of wall time = 300.017368
-The maximum resident set size (KB) = 732788
-
-Test 158 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_faster_intel
-Checking test 159 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
-The total amount of wall time = 144.227402
-The maximum resident set size (KB) = 749192
-
-Test 159 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_gswp3_intel
-Checking test 160 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
-The total amount of wall time = 73.950560
-The maximum resident set size (KB) = 308924
-
-Test 160 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_intel
-Checking test 161 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
-The total amount of wall time = 67.380854
-The maximum resident set size (KB) = 456020
-
-Test 161 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_rst_intel
-Checking test 162 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
-The total amount of wall time = 37.293869
-The maximum resident set size (KB) = 449656
-
-Test 162 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_sbs_intel
-Checking test 163 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 491.630899
-The maximum resident set size (KB) = 1632552
-
-Test 163 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_intel
-Checking test 164 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 485.377504
-The maximum resident set size (KB) = 1627324
-
-Test 164 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_atmlnd_intel
-Checking test 165 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 263.797583
-The maximum resident set size (KB) = 847728
-
-Test 165 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmwav_control_noaero_p8_intel
-Checking test 166 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
-The total amount of wall time = 84.633226
-The maximum resident set size (KB) = 1633040
-
-Test 166 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_atmwav_intel
-Checking test 167 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
-The total amount of wall time = 80.485781
-The maximum resident set size (KB) = 636108
-
-Test 167 control_atmwav_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_intel
-Checking test 168 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 207.113665
-The maximum resident set size (KB) = 2944472
-
-Test 168 atmaero_control_p8_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_intel
-Checking test 169 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 246.420830
-The maximum resident set size (KB) = 2996652
-
-Test 169 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_micro_intel
-Checking test 170 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 258.597767
-The maximum resident set size (KB) = 3010708
-
-Test 170 atmaero_control_p8_rad_micro_intel PASS
-REGRESSION TEST WAS SUCCESSFUL
-Tue 13 Feb 2024 04:43:31 PM MST
-Elapsed time: 01h:34m:31s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_101438
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [28:47, 21:25]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:17, 05:02](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:44, 23:00]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:09, 13:52](1677 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 15:18](1822 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:38, 07:19](950 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:52](1653 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:50, 11:12]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 21:46](1699 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:42, 20:54]
+PASS -- TEST 'cpld_control_p8_intel' [10:41, 05:44](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 05:42](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:21](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 05:42](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:26](3174 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 05:38](3089 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [16:53, 04:44](3383 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:43](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:14, 09:04](3635 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 05:56](3616 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 05:21](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [39:46, 20:20]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:18](1678 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:20](1722 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [30:46, 11:36]
+PASS -- TEST 'cpld_debug_p8_intel' [11:40, 07:49](3151 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [17:33, 10:39]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 05:16](1703 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:51, 15:36]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:21](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [34:51, 15:21]
+PASS -- TEST 'cpld_control_c48_intel' [41:34, 06:37](2663 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [41:52, 21:02]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 14:09](1694 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:29](1016 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:06, 16:04](1669 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:21, 10:23]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 22:39](1707 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:22, 12:47]
+PASS -- TEST 'control_flake_intel' [17:56, 03:28](664 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [17:10, 02:06](615 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:24, 02:12](1389 MB)
+PASS -- TEST 'control_latlon_intel' [10:53, 02:10](616 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:16, 02:11](615 MB)
+PASS -- TEST 'control_c48_intel' [31:56, 05:15](731 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [31:55, 05:15](730 MB)
+PASS -- TEST 'control_c192_intel' [22:39, 07:53](739 MB)
+PASS -- TEST 'control_c384_intel' [17:18, 08:26](1052 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:31, 07:36](1194 MB)
+PASS -- TEST 'control_stochy_intel' [15:53, 01:28](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:48, 00:56](434 MB)
+PASS -- TEST 'control_lndp_intel' [16:04, 01:25](622 MB)
+PASS -- TEST 'control_iovr4_intel' [17:21, 02:07](618 MB)
+PASS -- TEST 'control_iovr5_intel' [17:22, 02:09](616 MB)
+PASS -- TEST 'control_p8_intel' [14:03, 02:34](1594 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 02:32](1601 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [09:57, 02:33](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:34, 01:28](795 MB)
+PASS -- TEST 'control_noqr_p8_intel' [09:41, 02:33](1585 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:28](799 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:32, 02:37](1592 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:25, 04:24](1597 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 03:22](1655 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:37](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:58, 03:05](1599 MB)
+PASS -- TEST 'regional_control_intel' [06:23, 04:31](622 MB)
+PASS -- TEST 'regional_restart_intel' [04:03, 02:31](796 MB)
+PASS -- TEST 'regional_decomp_intel' [06:16, 04:45](1389 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:19, 04:26](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:33](621 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:18, 04:34](626 MB)
+PASS -- TEST 'regional_wofs_intel' [08:15, 05:41](1597 MB)
+
+PASS -- COMPILE 'rrfs_intel' [52:44, 11:44]
+PASS -- TEST 'rap_control_intel' [08:15, 06:09](1006 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 03:58](1195 MB)
+PASS -- TEST 'rap_decomp_intel' [09:14, 06:25](1007 MB)
+PASS -- TEST 'rap_restart_intel' [05:15, 03:15](884 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:10, 06:11](1004 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 06:23](1007 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 04:36](883 MB)
+PASS -- TEST 'hrrr_control_intel' [06:06, 03:15](1001 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:20](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:53](1092 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:48](835 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:03](1002 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 07:26](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:46, 07:10](1954 MB)
+
+PASS -- COMPILE 'csawmg_intel' [49:35, 10:52]
+PASS -- TEST 'control_csawmg_intel' [07:15, 05:14](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:16, 05:10](687 MB)
+PASS -- TEST 'control_ras_intel' [04:34, 02:56](656 MB)
+
+PASS -- COMPILE 'wam_intel' [48:44, 10:32]
+PASS -- TEST 'control_wam_intel' [04:01, 01:59](384 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [51:37, 13:52]
+PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1594 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [44:43, 09:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:26, 02:34](791 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:36](793 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:21, 02:55](799 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:37](800 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:49, 03:58](834 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:49, 03:59](833 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:19, 02:42](807 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:05, 02:45](854 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:48, 02:44](1624 MB)
+PASS -- TEST 'regional_debug_intel' [18:52, 15:45](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:23, 04:44](1177 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:26, 04:34](1173 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 04:47](1176 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 04:47](1175 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 04:50](1177 MB)
+PASS -- TEST 'rap_diag_debug_intel' [10:55, 04:57](1263 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:19, 04:53](1178 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 04:43](1180 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:31, 04:45](1177 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 04:46](1176 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:36](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 04:44](1176 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 07:49](1178 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 04:37](1170 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:36](1179 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:38](1176 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:55](1180 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [40:41, 06:21]
+PASS -- TEST 'control_wam_debug_intel' [06:33, 04:38](416 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:33, 10:46]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:39](1056 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 05:09](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:01, 02:47](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:00, 02:58](883 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 03:55](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:36](778 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:32, 12:46]
+PASS -- TEST 'conus13km_control_intel' [04:51, 01:58](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:04](1081 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:12, 01:11](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:31, 10:34]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:40](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [32:34, 06:29]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:41, 04:39](1057 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1389 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:55, 13:25](1130 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 13:30](1196 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:22, 06:35]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:37](1080 MB)
+
+PASS -- COMPILE 'hafsw_intel' [21:30, 16:57]
+PASS -- TEST 'hafs_regional_atm_intel' [08:57, 04:41](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 05:32](1068 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:20, 06:33](772 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:00](796 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 12:10](805 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 04:46](475 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 05:53](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 02:26](389 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:53, 06:33](456 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:34, 03:26](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:12, 03:10](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:56, 03:59](581 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:20](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:27, 03:29](785 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:14](611 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:21, 20:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 07:13](628 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:28](677 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:29, 17:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 05:26](671 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:28, 14:59]
+PASS -- TEST 'hafs_regional_docn_intel' [09:30, 05:41](754 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:40, 05:44](737 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:11](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [11:25, 08:31]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:35, 01:35](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:45, 02:21](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:23](644 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:47, 02:24](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:31](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:32](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:43, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:48, 05:43](685 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 05:38](670 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:36, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:56](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:32, 04:00](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:55]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:00, 05:07](1389 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:52, 02:31](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:17](301 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:12](455 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 00:50](455 MB)
+
+PASS -- COMPILE 'atml_intel' [14:24, 13:45]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 06:58](1622 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:28](1639 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:33](842 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:29, 13:41]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:37](1627 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:29, 13:16]
+PASS -- TEST 'control_atmwav_intel' [03:08, 01:31](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:20, 12:17]
+PASS -- TEST 'atmaero_control_p8_intel' [06:00, 03:44](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:19](3002 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:34](3012 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:21, 11:52]
+
+SYNOPSIS:
+Starting Date/Time: 20240220 21:47:19
+Ending Date/Time: 20240220 23:47:50
+Total Time: 02h:02m:03s
+Compiles Completed: 37/37
+Tests Completed: 170/170
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF DERECHO REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 0ff1aab4f1..49c76eba5f 100644
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,6314 +1,308 @@
-Tue 13 Feb 2024 09:10:06 PM EST
-Start Regression test
+====START OF GAEA REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 671 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 330 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 643 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 326 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 732 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 637 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 750 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 661 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 778 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 455 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1137 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 973 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 793 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 411 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 429 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1138 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 305.691523
- 0: The maximum resident set size (KB) = 3075132
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 768.833767
- 0: The maximum resident set size (KB) = 1696664
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1142.230940
- 0: The maximum resident set size (KB) = 1808912
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 505.755914
- 0: The maximum resident set size (KB) = 945668
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 855.073506
- 0: The maximum resident set size (KB) = 1668456
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1505.226571
- 0: The maximum resident set size (KB) = 1698600
-
-Test 006 cpld_debug_gfsv17_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 345.484112
- 0: The maximum resident set size (KB) = 3099188
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 346.484339
- 0: The maximum resident set size (KB) = 3098412
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 200.236786
- 0: The maximum resident set size (KB) = 3157348
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 350.840908
- 0: The maximum resident set size (KB) = 3122872
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 204.831802
- 0: The maximum resident set size (KB) = 3177892
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 312.769607
- 0: The maximum resident set size (KB) = 3413048
-
-Test 012 cpld_2threads_p8_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 341.872196
- 0: The maximum resident set size (KB) = 3097968
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 288.676367
- 0: The maximum resident set size (KB) = 3022548
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 345.661533
- 0: The maximum resident set size (KB) = 3099624
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c192_p8_intel
-Checking test 016 cpld_control_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 579.815625
- 0: The maximum resident set size (KB) = 3266076
-
-Test 016 cpld_control_c192_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_c192_p8_intel
-Checking test 017 cpld_restart_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 395.432614
- 0: The maximum resident set size (KB) = 3602020
-
-Test 017 cpld_restart_c192_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_bmark_p8_intel
-Checking test 018 cpld_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 716.188991
- 0: The maximum resident set size (KB) = 4039344
-
-Test 018 cpld_bmark_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_bmark_p8_intel
-Checking test 019 cpld_restart_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 678.789231
- 0: The maximum resident set size (KB) = 4343348
-
-Test 019 cpld_restart_bmark_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_s2sa_p8_intel
-Checking test 020 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 330.572343
- 0: The maximum resident set size (KB) = 3067636
-
-Test 020 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_intel
-Checking test 021 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 250.697619
- 0: The maximum resident set size (KB) = 1687700
-
-Test 021 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_nowave_noaero_p8_intel
-Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 263.137295
- 0: The maximum resident set size (KB) = 1733072
-
-Test 022 cpld_control_nowave_noaero_p8_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_p8_intel
-Checking test 023 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 490.819261
- 0: The maximum resident set size (KB) = 3133160
-
-Test 023 cpld_debug_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_noaero_p8_intel
-Checking test 024 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 317.936060
- 0: The maximum resident set size (KB) = 1698516
-
-Test 024 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_agrid_intel
-Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 262.472674
- 0: The maximum resident set size (KB) = 1728840
-
-Test 025 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c48_intel
-Checking test 026 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 405.134034
- 0: The maximum resident set size (KB) = 2658784
-
-Test 026 cpld_control_c48_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_faster_intel
-Checking test 027 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 338.750993
- 0: The maximum resident set size (KB) = 3099228
-
-Test 027 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_pdlib_p8_intel
-Checking test 028 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1021.284459
- 0: The maximum resident set size (KB) = 1702192
-
-Test 028 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_pdlib_p8_intel
-Checking test 029 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 585.151313
- 0: The maximum resident set size (KB) = 1001268
-
-Test 029 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_pdlib_p8_intel
-Checking test 030 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1342.774093
- 0: The maximum resident set size (KB) = 1682980
-
-Test 030 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_pdlib_p8_intel
-Checking test 031 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1741.623600
- 0: The maximum resident set size (KB) = 1707796
-
-Test 031 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_flake_intel
-Checking test 032 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 194.802237
- 0: The maximum resident set size (KB) = 672956
-
-Test 032 control_flake_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_intel
-Checking test 033 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
- 0: The total amount of wall time = 122.228754
- 0: The maximum resident set size (KB) = 616988
-
-Test 033 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_parallel_intel
-Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 127.524716
- 0: The maximum resident set size (KB) = 625552
-
-Test 034 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_latlon_intel
-Checking test 035 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 125.476680
- 0: The maximum resident set size (KB) = 620552
-
-Test 035 control_latlon_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_intel
-Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 177.930057
- 0: The maximum resident set size (KB) = 620536
-
-Test 036 control_wrtGauss_netcdf_parallel_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48_intel
-Checking test 037 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 329.882070
-0: The maximum resident set size (KB) = 721068
-
-Test 037 control_c48_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48.v2.sfc_intel
-Checking test 038 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 331.177350
-0: The maximum resident set size (KB) = 726680
-
-Test 038 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c192_intel
-Checking test 039 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 497.207383
- 0: The maximum resident set size (KB) = 737264
-
-Test 039 control_c192_intel PASS
-
-Test 040 control_c384_intel FAIL
-
-Test 040 control_c384_intel FAIL
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c384gdas_intel
-Checking test 041 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 826.416654
- 0: The maximum resident set size (KB) = 1184372
-
-Test 041 control_c384gdas_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_intel
-Checking test 042 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 84.192079
- 0: The maximum resident set size (KB) = 626112
-
-Test 042 control_stochy_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_restart_intel
-Checking test 043 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 44.747256
- 0: The maximum resident set size (KB) = 428572
-
-Test 043 control_stochy_restart_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_intel
-Checking test 044 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 77.269382
- 0: The maximum resident set size (KB) = 625808
-
-Test 044 control_lndp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr4_intel
-Checking test 045 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 124.492942
- 0: The maximum resident set size (KB) = 620832
-
-Test 045 control_iovr4_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr5_intel
-Checking test 046 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 124.386097
- 0: The maximum resident set size (KB) = 620328
-
-Test 046 control_iovr5_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_intel
-Checking test 047 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 150.440335
- 0: The maximum resident set size (KB) = 1608432
-
-Test 047 control_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8.v2.sfc_intel
-Checking test 048 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 152.796471
- 0: The maximum resident set size (KB) = 1608352
-
-Test 048 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_ugwpv1_intel
-Checking test 049 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 147.777482
- 0: The maximum resident set size (KB) = 1611064
-
-Test 049 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_intel
-Checking test 050 control_restart_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 80.544323
- 0: The maximum resident set size (KB) = 790948
-
-Test 050 control_restart_p8_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_noqr_p8_intel
-Checking test 051 control_noqr_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 147.931967
- 0: The maximum resident set size (KB) = 1596776
-
-Test 051 control_noqr_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_noqr_p8_intel
-Checking test 052 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 79.281512
- 0: The maximum resident set size (KB) = 794372
-
-Test 052 control_restart_noqr_p8_intel PASS
-
-Test 053 control_decomp_p8_intel FAIL
-
-Test 053 control_decomp_p8_intel FAIL
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_2threads_p8_intel
-Checking test 054 control_2threads_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 130.458684
- 0: The maximum resident set size (KB) = 1691040
-
-Test 054 control_2threads_p8_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_lndp_intel
-Checking test 055 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
- 0: The total amount of wall time = 268.619402
- 0: The maximum resident set size (KB) = 1608368
-
-Test 055 control_p8_lndp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_rrtmgp_intel
-Checking test 056 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 201.397866
- 0: The maximum resident set size (KB) = 1659016
-
-Test 056 control_p8_rrtmgp_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_mynn_intel
-Checking test 057 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 150.308794
- 0: The maximum resident set size (KB) = 1614192
-
-Test 057 control_p8_mynn_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/merra2_thompson_intel
-Checking test 058 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 180.102046
- 0: The maximum resident set size (KB) = 1615268
-
-Test 058 merra2_thompson_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_intel
-Checking test 059 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 404.799517
- 0: The maximum resident set size (KB) = 619056
-
-Test 059 regional_control_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_restart_intel
-Checking test 060 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 256.263821
- 0: The maximum resident set size (KB) = 791744
-
-Test 060 regional_restart_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_decomp_intel
-Checking test 061 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 280.323348
- 0: The maximum resident set size (KB) = 618076
-
-Test 061 regional_decomp_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2threads_intel
-Checking test 062 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 156.148607
- 0: The maximum resident set size (KB) = 760288
-
-Test 062 regional_2threads_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_noquilt_intel
-Checking test 063 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
- 0: The total amount of wall time = 260.048109
- 0: The maximum resident set size (KB) = 1156968
-
-Test 063 regional_noquilt_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_netcdf_parallel_intel
-Checking test 064 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
- 0: The total amount of wall time = 261.697345
- 0: The maximum resident set size (KB) = 618524
-
-Test 064 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2dwrtdecomp_intel
-Checking test 065 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 267.488333
- 0: The maximum resident set size (KB) = 619408
-
-Test 065 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_wofs_intel
-Checking test 066 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 344.792952
- 0: The maximum resident set size (KB) = 1593180
-
-Test 066 regional_wofs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_intel
-Checking test 067 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 374.990671
- 0: The maximum resident set size (KB) = 1009724
-
-Test 067 rap_control_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_intel
-Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 222.258833
- 0: The maximum resident set size (KB) = 1186660
-
-Test 068 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_decomp_intel
-Checking test 069 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 385.268902
- 0: The maximum resident set size (KB) = 1009264
-
-Test 069 rap_decomp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_intel
-Checking test 070 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 344.578925
- 0: The maximum resident set size (KB) = 1094888
-
-Test 070 rap_2threads_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_intel
-Checking test 071 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 190.039475
- 0: The maximum resident set size (KB) = 878836
-
-Test 071 rap_restart_intel PASS Tries: 2
-
-Test 072 rap_sfcdiff_intel FAIL
-
-Test 072 rap_sfcdiff_intel FAIL
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_decomp_intel
-Checking test 073 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 386.309726
- 0: The maximum resident set size (KB) = 1005580
-
-Test 073 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_intel
-Checking test 075 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 192.160358
- 0: The maximum resident set size (KB) = 1004964
-
-Test 075 hrrr_control_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_intel
-Checking test 076 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 197.403073
- 0: The maximum resident set size (KB) = 1006352
-
-Test 076 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_intel
-Checking test 077 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 171.970249
- 0: The maximum resident set size (KB) = 1086060
-
-Test 077 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_intel
-Checking test 078 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 102.080757
- 0: The maximum resident set size (KB) = 836524
-
-Test 078 hrrr_control_restart_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_intel
-Checking test 079 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 366.664268
- 0: The maximum resident set size (KB) = 1001700
-
-Test 079 rrfs_v1beta_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_intel
-Checking test 080 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 636.969061
- 0: The maximum resident set size (KB) = 1967556
-
-Test 080 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_nohailnoccn_intel
-Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 608.083869
- 0: The maximum resident set size (KB) = 1951840
-
-Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_intel
-Checking test 082 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 320.651353
- 0: The maximum resident set size (KB) = 696016
-
-Test 082 control_csawmg_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_intel
-Checking test 083 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 317.540935
- 0: The maximum resident set size (KB) = 693824
-
-Test 083 control_csawmgt_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_intel
-Checking test 084 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 173.559690
- 0: The maximum resident set size (KB) = 658336
-
-Test 084 control_ras_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_intel
-Checking test 085 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
- 0: The total amount of wall time = 113.521558
- 0: The maximum resident set size (KB) = 369824
-
-Test 085 control_wam_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_faster_intel
-Checking test 086 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 146.659178
- 0: The maximum resident set size (KB) = 1605112
-
-Test 086 control_p8_faster_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_faster_intel
-Checking test 087 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 258.664904
- 0: The maximum resident set size (KB) = 610840
-
-Test 087 regional_control_faster_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_debug_intel
-Checking test 088 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
- 0: The total amount of wall time = 147.109219
- 0: The maximum resident set size (KB) = 778928
-
-Test 088 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 143.565967
- 0: The maximum resident set size (KB) = 782964
-
-Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_debug_intel
-Checking test 090 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 165.617790
- 0: The maximum resident set size (KB) = 786300
-
-Test 090 control_stochy_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_debug_intel
-Checking test 091 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 311.505065
- 0: The maximum resident set size (KB) = 789604
-
-Test 091 control_lndp_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_debug_intel
-Checking test 092 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 338.750301
- 0: The maximum resident set size (KB) = 826628
-
-Test 092 control_csawmg_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_debug_intel
-Checking test 093 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 393.335626
- 0: The maximum resident set size (KB) = 827424
-
-Test 093 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_debug_intel
-Checking test 094 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 276.828082
- 0: The maximum resident set size (KB) = 796316
-
-Test 094 control_ras_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_diag_debug_intel
-Checking test 095 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 152.496023
- 0: The maximum resident set size (KB) = 844720
-
-Test 095 control_diag_debug_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_debug_p8_intel
-Checking test 096 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 305.388531
- 0: The maximum resident set size (KB) = 1622656
-
-Test 096 control_debug_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_debug_intel
-Checking test 097 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 1183.753954
- 0: The maximum resident set size (KB) = 636760
-
-Test 097 regional_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_intel
-Checking test 098 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 320.423499
- 0: The maximum resident set size (KB) = 1168824
-
-Test 098 rap_control_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_intel
-Checking test 099 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 407.957992
- 0: The maximum resident set size (KB) = 1167056
-
-Test 099 hrrr_control_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_gf_debug_intel
-Checking test 100 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 277.547241
- 0: The maximum resident set size (KB) = 1169220
-
-Test 100 hrrr_gf_debug_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_c3_debug_intel
-Checking test 101 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 316.786811
- 0: The maximum resident set size (KB) = 1169672
-
-Test 101 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_drag_suite_debug_intel
-Checking test 102 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 323.700824
- 0: The maximum resident set size (KB) = 1168456
-
-Test 102 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_diag_debug_intel
-Checking test 103 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 292.714612
- 0: The maximum resident set size (KB) = 1253424
-
-Test 103 rap_diag_debug_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_cires_ugwp_debug_intel
-Checking test 104 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 279.857804
- 0: The maximum resident set size (KB) = 1168648
-
-Test 104 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_ugwp_debug_intel
-Checking test 105 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 286.273871
- 0: The maximum resident set size (KB) = 1170168
-
-Test 105 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_lndp_debug_intel
-Checking test 106 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 290.273669
- 0: The maximum resident set size (KB) = 1170664
-
-Test 106 rap_lndp_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_progcld_thompson_debug_intel
-Checking test 107 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 274.403870
- 0: The maximum resident set size (KB) = 1168416
-
-Test 107 rap_progcld_thompson_debug_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_noah_debug_intel
-Checking test 108 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 329.956206
- 0: The maximum resident set size (KB) = 1168972
-
-Test 108 rap_noah_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_debug_intel
-Checking test 109 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 320.061225
- 0: The maximum resident set size (KB) = 1167408
-
-Test 109 rap_sfcdiff_debug_intel PASS Tries: 2
-
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL
-
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_debug_intel
-Checking test 111 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 290.893886
- 0: The maximum resident set size (KB) = 1165244
-
-Test 111 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_clm_lake_debug_intel
-Checking test 112 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 423.564715
- 0: The maximum resident set size (KB) = 1170568
-
-Test 112 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_flake_debug_intel
-Checking test 113 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 357.070975
- 0: The maximum resident set size (KB) = 1169220
-
-Test 113 rap_flake_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_c96_no_nest_debug_intel
-Checking test 114 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 579.574524
- 0: The maximum resident set size (KB) = 1171924
-
-Test 114 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_debug_intel
-Checking test 115 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
- 0: The total amount of wall time = 377.715248
- 0: The maximum resident set size (KB) = 397156
-
-Test 115 control_wam_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 350.365334
- 0: The maximum resident set size (KB) = 1051460
-
-Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn32_phy32_intel
-Checking test 117 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 505.217133
- 0: The maximum resident set size (KB) = 890260
-
-Test 117 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_dyn32_phy32_intel
-Checking test 118 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 192.505764
- 0: The maximum resident set size (KB) = 886092
-
-Test 118 hrrr_control_dyn32_phy32_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_dyn32_phy32_intel
-Checking test 119 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 460.999501
- 0: The maximum resident set size (KB) = 948216
-
-Test 119 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 283.500072
- 0: The maximum resident set size (KB) = 938248
-
-Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 291.961136
- 0: The maximum resident set size (KB) = 888120
-
-Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_dyn32_phy32_intel
-Checking test 122 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 294.893484
- 0: The maximum resident set size (KB) = 783724
-
-Test 122 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_dyn32_phy32_intel
-Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 159.013967
- 0: The maximum resident set size (KB) = 765744
-
-Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_control_intel
-Checking test 124 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 238.284184
- 0: The maximum resident set size (KB) = 1097172
-
-Test 124 conus13km_control_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_2threads_intel
-Checking test 125 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 1424.056822
- 0: The maximum resident set size (KB) = 1076040
-
-Test 125 conus13km_2threads_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_restart_mismatch_intel
-Checking test 126 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 62.067107
- 0: The maximum resident set size (KB) = 976684
-
-Test 126 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_intel
-Checking test 127 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 362.031692
- 0: The maximum resident set size (KB) = 909668
-
-Test 127 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_dyn32_phy32_intel
-Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
- 0: The total amount of wall time = 300.916820
- 0: The maximum resident set size (KB) = 1046288
-
-Test 128 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_dyn32_phy32_intel
-Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 358.335556
- 0: The maximum resident set size (KB) = 1046684
-
-Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_intel
-Checking test 130 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 985.912212
- 0: The maximum resident set size (KB) = 1126976
-
-Test 130 conus13km_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_qr_intel
-Checking test 131 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 875.833694
- 0: The maximum resident set size (KB) = 801960
-
-Test 131 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_2threads_intel
-Checking test 132 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 538.071379
- 0: The maximum resident set size (KB) = 1108132
-
-Test 132 conus13km_debug_2threads_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_radar_tten_debug_intel
-Checking test 133 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 1019.130042
- 0: The maximum resident set size (KB) = 1192772
-
-Test 133 conus13km_radar_tten_debug_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_debug_intel
-Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 327.827868
- 0: The maximum resident set size (KB) = 1071348
-
-Test 134 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_intel
-Checking test 135 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
- 0: The total amount of wall time = 394.859453
- 0: The maximum resident set size (KB) = 709124
-
-Test 135 hafs_regional_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
- 0: The total amount of wall time = 368.021818
- 0: The maximum resident set size (KB) = 1059212
-
-Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_intel
-Checking test 137 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 563.980963
- 0: The maximum resident set size (KB) = 754340
-
-Test 137 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_wav_intel
-Checking test 138 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 818.485575
- 0: The maximum resident set size (KB) = 786392
-
-Test 138 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_wav_intel
-Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 970.221527
- 0: The maximum resident set size (KB) = 796688
-
-Test 139 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_1nest_atm_intel
-Checking test 140 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 299.241608
- 0: The maximum resident set size (KB) = 476680
-
-Test 140 hafs_regional_1nest_atm_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_telescopic_2nests_atm_intel
-Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
- 0: The total amount of wall time = 538.506677
- 0: The maximum resident set size (KB) = 500536
-
-Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_1nest_atm_intel
-Checking test 142 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 325.402668
- 0: The maximum resident set size (KB) = 372812
-
-Test 142 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_multiple_4nests_atm_intel
-Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
- 0: The total amount of wall time = 607.170594
- 0: The maximum resident set size (KB) = 445928
-
-Test 143 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
- 0: The total amount of wall time = 299.932452
- 0: The maximum resident set size (KB) = 509036
-
-Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 279.497011
- 0: The maximum resident set size (KB) = 511356
-
-Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
- 0: The total amount of wall time = 271.799715
- 0: The maximum resident set size (KB) = 574688
-
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_storm_following_1nest_atm_intel
-Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
- 0: The total amount of wall time = 137.813885
- 0: The maximum resident set size (KB) = 403504
-
-Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_nested_intel
-Checking test 148 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 301.671339
- 0: The maximum resident set size (KB) = 766116
-
-Test 148 gnv1_nested_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
- 0: The total amount of wall time = 911.754544
- 0: The maximum resident set size (KB) = 583688
-
-Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 579.569841
- 0: The maximum resident set size (KB) = 615088
-
-Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 637.421633
- 0: The maximum resident set size (KB) = 781440
-
-Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 457.873896
- 0: The maximum resident set size (KB) = 786932
-
-Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_intel
-Checking test 153 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 530.960101
- 0: The maximum resident set size (KB) = 744864
-
-Test 153 hafs_regional_docn_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_oisst_intel
-Checking test 154 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 423.683802
- 0: The maximum resident set size (KB) = 731512
-
-Test 154 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_datm_cdeps_intel
-Checking test 155 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
- 0: The total amount of wall time = 1206.080002
- 0: The maximum resident set size (KB) = 893656
-
-Test 155 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_intel
-Checking test 156 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 152.296553
- 0: The maximum resident set size (KB) = 756308
-
-Test 156 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_restart_cfsr_intel
-Checking test 157 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 110.710474
- 0: The maximum resident set size (KB) = 745016
-
-Test 157 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_gefs_intel
-Checking test 158 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 137.907340
- 0: The maximum resident set size (KB) = 637348
-
-Test 158 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_iau_gefs_intel
-Checking test 159 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 240.138601
- 0: The maximum resident set size (KB) = 637192
-
-Test 159 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_stochy_gefs_intel
-Checking test 160 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 241.081740
- 0: The maximum resident set size (KB) = 641328
-
-Test 160 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_ciceC_cfsr_intel
-Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 233.542610
- 0: The maximum resident set size (KB) = 744688
-
-Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_cfsr_intel
-Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 233.547377
- 0: The maximum resident set size (KB) = 756252
-
-Test 162 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_gefs_intel
-Checking test 163 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 225.922704
- 0: The maximum resident set size (KB) = 637292
-
-Test 163 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_cfsr_intel
-Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 547.149693
- 0: The maximum resident set size (KB) = 692740
-
-Test 164 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_gefs_intel
-Checking test 165 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 556.076418
- 0: The maximum resident set size (KB) = 672508
-
-Test 165 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_multiple_files_cfsr_intel
-Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 150.416845
- 0: The maximum resident set size (KB) = 755880
-
-Test 166 datm_cdeps_multiple_files_cfsr_intel PASS Tries: 2
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_3072x1536_cfsr_intel
-Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 466.632408
- 0: The maximum resident set size (KB) = 2013792
-
-Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_gfs_intel
-Checking test 168 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 381.303280
- 0: The maximum resident set size (KB) = 2013628
-
-Test 168 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_debug_cfsr_intel
-Checking test 169 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
- 0: The total amount of wall time = 341.693430
- 0: The maximum resident set size (KB) = 741424
-
-Test 169 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_faster_intel
-Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 269.164372
- 0: The maximum resident set size (KB) = 756768
-
-Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_gswp3_intel
-Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
- 0: The total amount of wall time = 66.017192
- 0: The maximum resident set size (KB) = 319204
-
-Test 171 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_intel
-Checking test 172 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 160.974419
- 0: The maximum resident set size (KB) = 456484
-
-Test 172 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_rst_intel
-Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 39.498505
- 0: The maximum resident set size (KB) = 456476
-
-Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_sbs_intel
-Checking test 174 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 496.918911
- 0: The maximum resident set size (KB) = 1642988
-
-Test 174 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_intel
-Checking test 175 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 498.954219
- 0: The maximum resident set size (KB) = 1642236
-
-Test 175 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_atmlnd_intel
-Checking test 176 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 190.940690
- 0: The maximum resident set size (KB) = 836732
-
-Test 176 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmwav_control_noaero_p8_intel
-Checking test 177 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
- 0: The total amount of wall time = 182.940262
- 0: The maximum resident set size (KB) = 1647332
-
-Test 177 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_atmwav_intel
-Checking test 178 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
- 0: The total amount of wall time = 175.565771
- 0: The maximum resident set size (KB) = 638728
-
-Test 178 control_atmwav_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_intel
-Checking test 179 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 365.960012
- 0: The maximum resident set size (KB) = 2943092
-
-Test 179 atmaero_control_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_intel
-Checking test 180 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 279.156469
- 0: The maximum resident set size (KB) = 3011516
-
-Test 180 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_micro_intel
-Checking test 181 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 337.781265
- 0: The maximum resident set size (KB) = 3018336
-
-Test 181 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_atmaq_debug_intel
-Checking test 182 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
- Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 1087.640368
- 0: The maximum resident set size (KB) = 4484540
-
-Test 182 regional_atmaq_debug_intel PASS
-
-FAILED TESTS:
-control_c384_intel 040 failed in run_test
-control_decomp_p8_intel 053 failed in run_test
-rap_sfcdiff_intel 072 failed in run_test
-rap_noah_sfcdiff_cires_ugwp_debug_intel 110 failed in run_test
-
-REGRESSION TEST FAILED
-Tue 13 Feb 2024 10:52:07 PM EST
-Elapsed time: 01h:42m:06s. Have a nice day!
-Wed 14 Feb 2024 03:43:30 PM EST
-Start Regression test
-
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 410 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_c384_intel
-Checking test 001 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 961.784505
- 0: The maximum resident set size (KB) = 1040328
-
-Test 001 control_c384_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_decomp_p8_intel
-Checking test 002 control_decomp_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 153.274697
- 0: The maximum resident set size (KB) = 1595576
-
-Test 002 control_decomp_p8_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_sfcdiff_intel
-Checking test 003 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 379.638130
- 0: The maximum resident set size (KB) = 1006728
-
-Test 003 rap_sfcdiff_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 449.445488
- 0: The maximum resident set size (KB) = 1168284
-
-Test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-REGRESSION TEST WAS SUCCESSFUL
-Wed 14 Feb 2024 04:15:50 PM EST
-Elapsed time: 00h:32m:25s. Have a nice day!
-Wed 14 Feb 2024 06:07:11 PM EST
-Start Regression test
-
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile rrfs_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_intel
-Checking test 001 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 374.833523
- 0: The maximum resident set size (KB) = 1006704
-
-Test 001 rap_sfcdiff_intel PASS
-
-
-baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_restart_intel
-Checking test 002 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 277.608350
- 0: The maximum resident set size (KB) = 878472
-
-Test 002 rap_sfcdiff_restart_intel PASS
-REGRESSION TEST WAS SUCCESSFUL
-Wed 14 Feb 2024 06:35:45 PM EST
-Elapsed time: 00h:28m:40s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_35653
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:20, 05:14](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:06]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:08, 13:20](1692 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:03, 14:05](1809 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 06:30](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 14:30](1662 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:08, 07:23]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:07, 24:43](1698 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:09, 12:34]
+PASS -- TEST 'cpld_control_p8_intel' [08:15, 06:01](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:23, 05:58](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:10, 03:33](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:59](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 03:40](3177 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:24](3410 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:56](3098 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:16, 05:02](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:07, 09:54](3271 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:47](3602 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 12:14](4036 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:38](4347 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:15, 05:42](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:09, 11:54]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:23](1688 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:36](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:08, 07:18]
+PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:28](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:08, 06:30]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:44](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:09, 10:55]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1731 MB)
+
+PASS -- COMPILE 's2s_intel' [12:09, 10:53]
+PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2659 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:52]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:52](3098 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:39]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:07, 14:41](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:10](1001 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 17:03](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:08, 06:58]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:38](1711 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:09, 10:26]
+PASS -- TEST 'control_flake_intel' [07:27, 03:28](671 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 02:19](617 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:33, 02:20](625 MB)
+PASS -- TEST 'control_latlon_intel' [04:24, 02:18](620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:19](620 MB)
+PASS -- TEST 'control_c48_intel' [07:35, 05:35](726 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:35](720 MB)
+PASS -- TEST 'control_c192_intel' [12:33, 08:31](737 MB)
+PASS -- TEST 'control_c384_intel' [19:54, 16:16](1039 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:39, 13:58](1182 MB)
+PASS -- TEST 'control_stochy_intel' [04:24, 01:37](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:59](428 MB)
+PASS -- TEST 'control_lndp_intel' [03:24, 01:31](626 MB)
+PASS -- TEST 'control_iovr4_intel' [05:27, 02:20](620 MB)
+PASS -- TEST 'control_iovr5_intel' [05:27, 02:19](620 MB)
+PASS -- TEST 'control_p8_intel' [06:43, 02:44](1608 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 02:45](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 02:39](1610 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:40, 01:34](791 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:41](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:32](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:43, 02:48](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:24](1680 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:39, 04:44](1608 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:38](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:44](1614 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:44, 03:15](1615 MB)
+PASS -- TEST 'regional_control_intel' [06:29, 04:36](619 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:29](791 MB)
+PASS -- TEST 'regional_decomp_intel' [06:29, 04:49](617 MB)
+PASS -- TEST 'regional_2threads_intel' [04:29, 02:50](761 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1156 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:36](618 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:39](619 MB)
+PASS -- TEST 'regional_wofs_intel' [07:30, 05:59](1593 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:09, 09:31]
+PASS -- TEST 'rap_control_intel' [08:37, 06:33](1008 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:56](1177 MB)
+PASS -- TEST 'rap_decomp_intel' [08:36, 06:32](1007 MB)
+PASS -- TEST 'rap_2threads_intel' [07:40, 05:55](1093 MB)
+PASS -- TEST 'rap_restart_intel' [05:37, 03:27](876 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:26](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:43](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:51](876 MB)
+PASS -- TEST 'hrrr_control_intel' [05:38, 03:26](1003 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:29](1004 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:00](1076 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:54](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:27](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:42](1964 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:31](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:09, 09:08]
+PASS -- TEST 'control_csawmg_intel' [07:30, 05:32](696 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:29, 05:28](693 MB)
+PASS -- TEST 'control_ras_intel' [05:20, 03:07](658 MB)
+
+PASS -- COMPILE 'wam_intel' [10:09, 08:42]
+PASS -- TEST 'control_wam_intel' [04:19, 02:09](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:55]
+PASS -- TEST 'control_p8_faster_intel' [04:43, 02:39](1606 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:28, 04:24](613 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:30]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 02:43](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:43](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:03](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:03](823 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:08](823 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:26, 02:51](1619 MB)
+PASS -- TEST 'regional_debug_intel' [17:36, 16:12](632 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1165 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:57](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:53](1166 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:57](1166 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:00](1165 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:06](1249 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1165 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1166 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:01](1167 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1165 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:47](1165 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:50](1164 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1161 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1167 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1165 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:25](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:07, 05:04]
+PASS -- TEST 'control_wam_debug_intel' [06:20, 05:02](391 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 08:49]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:46](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:29](889 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:57](886 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:00](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:38](940 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:05](888 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:09](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](765 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:26]
+PASS -- TEST 'conus13km_control_intel' [04:02, 01:57](1096 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:02](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 09:15]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:55](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 05:21]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:42](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:04, 13:31](1128 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:44](802 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:07](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:53](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:53](1068 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:09, 11:06]
+PASS -- TEST 'hafs_regional_atm_intel' [08:09, 05:16](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:27](1063 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:38](755 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:09, 11:33](787 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:20, 12:56](795 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:14](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:40](499 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 02:55](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 07:52](435 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:41](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:27](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:25](567 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:41](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:52, 03:53](771 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:08, 06:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:15](583 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:40](612 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:41](785 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:27]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:00](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:10, 10:42]
+PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:58](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 06:03](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:10, 16:08](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [11:09, 09:41]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:30](745 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:21](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:28](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:19](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:53, 05:49](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 05:48](672 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](756 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2014 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:38](2014 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:08, 05:36]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:23](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:28](744 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:16](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:07](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:52](456 MB)
+
+PASS -- COMPILE 'atml_intel' [13:08, 11:22]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:15](1642 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:16](1642 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:29](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:08, 10:20]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:43](1648 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:08, 10:01]
+PASS -- TEST 'control_atmwav_intel' [03:34, 01:39](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:09, 09:29]
+PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:24](2942 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:52](3011 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:01](3018 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:08, 09:35]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:07, 05:51]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:11, 18:21](4483 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240219 09:48:12
+Ending Date/Time: 20240219 11:12:09
+Total Time: 01h:24m:16s
+Compiles Completed: 39/39
+Tests Completed: 182/182
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF GAEA REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 36c189d20a..646ee765d0 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,8234 +1,397 @@
-Tue Feb 13 22:05:05 UTC 2024
-Start Regression test
+====START OF HERA REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaero_intel elapsed time 595 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 640 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 609 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 377 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 808 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 382 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 672 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 677 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 669 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 685 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 124 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 134 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 732 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 306.162434
- 0: The maximum resident set size (KB) = 3177916
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 968.998956
- 0: The maximum resident set size (KB) = 1735588
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 989.232112
- 0: The maximum resident set size (KB) = 2013228
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 444.956503
- 0: The maximum resident set size (KB) = 1105260
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1077.253317
- 0: The maximum resident set size (KB) = 1632176
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1326.420367
- 0: The maximum resident set size (KB) = 1676540
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 329.579588
- 0: The maximum resident set size (KB) = 3153600
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 325.639483
- 0: The maximum resident set size (KB) = 3198172
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 188.165361
- 0: The maximum resident set size (KB) = 3216844
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 330.401607
- 0: The maximum resident set size (KB) = 3222660
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 190.367743
- 0: The maximum resident set size (KB) = 3263160
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 313.046528
- 0: The maximum resident set size (KB) = 3538236
-
-Test 012 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 361.106015
- 0: The maximum resident set size (KB) = 3190880
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 272.126792
- 0: The maximum resident set size (KB) = 3036460
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 332.067931
- 0: The maximum resident set size (KB) = 3198452
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c192_p8_intel
-Checking test 016 cpld_control_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 574.382600
- 0: The maximum resident set size (KB) = 3323308
-
-Test 016 cpld_control_c192_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_c192_p8_intel
-Checking test 017 cpld_restart_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 348.063826
- 0: The maximum resident set size (KB) = 3601716
-
-Test 017 cpld_restart_c192_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_bmark_p8_intel
-Checking test 018 cpld_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 584.257718
- 0: The maximum resident set size (KB) = 4104988
-
-Test 018 cpld_bmark_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_bmark_p8_intel
-Checking test 019 cpld_restart_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 380.069043
- 0: The maximum resident set size (KB) = 4311528
-
-Test 019 cpld_restart_bmark_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_s2sa_p8_intel
-Checking test 020 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 309.495065
- 0: The maximum resident set size (KB) = 3116144
-
-Test 020 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_intel
-Checking test 021 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 259.170830
- 0: The maximum resident set size (KB) = 1724868
-
-Test 021 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_intel
-Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 248.373795
- 0: The maximum resident set size (KB) = 1726384
-
-Test 022 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_intel
-Checking test 023 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 468.095557
- 0: The maximum resident set size (KB) = 3230788
-
-Test 023 cpld_debug_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_noaero_p8_intel
-Checking test 024 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 329.356604
- 0: The maximum resident set size (KB) = 1739652
-
-Test 024 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_agrid_intel
-Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 252.680842
- 0: The maximum resident set size (KB) = 1763624
-
-Test 025 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c48_intel
-Checking test 026 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 547.558782
- 0: The maximum resident set size (KB) = 2834556
-
-Test 026 cpld_control_c48_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_faster_intel
-Checking test 027 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 312.226704
- 0: The maximum resident set size (KB) = 3153648
-
-Test 027 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_intel
-Checking test 028 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 970.148394
- 0: The maximum resident set size (KB) = 1761512
-
-Test 028 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_pdlib_p8_intel
-Checking test 029 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 446.820891
- 0: The maximum resident set size (KB) = 1164280
-
-Test 029 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_pdlib_p8_intel
-Checking test 030 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1103.855854
- 0: The maximum resident set size (KB) = 1663148
-
-Test 030 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_intel
-Checking test 031 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1451.515831
- 0: The maximum resident set size (KB) = 1707568
-
-Test 031 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_intel
-Checking test 032 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 219.217790
- 0: The maximum resident set size (KB) = 693864
-
-Test 032 control_flake_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_intel
-Checking test 033 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
- 0: The total amount of wall time = 133.045207
- 0: The maximum resident set size (KB) = 648436
-
-Test 033 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_parallel_intel
-Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 139.205123
- 0: The maximum resident set size (KB) = 656152
-
-Test 034 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_latlon_intel
-Checking test 035 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 134.140836
- 0: The maximum resident set size (KB) = 641040
-
-Test 035 control_latlon_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_intel
-Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 137.680870
- 0: The maximum resident set size (KB) = 651660
-
-Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_intel
-Checking test 037 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 372.313279
-0: The maximum resident set size (KB) = 873512
-
-Test 037 control_c48_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48.v2.sfc_intel
-Checking test 038 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 366.728143
-0: The maximum resident set size (KB) = 875888
-
-Test 038 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c192_intel
-Checking test 039 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 529.665888
- 0: The maximum resident set size (KB) = 829532
-
-Test 039 control_c192_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384_intel
-Checking test 040 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 535.347948
- 0: The maximum resident set size (KB) = 1278920
-
-Test 040 control_c384_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384gdas_intel
-Checking test 041 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 461.803514
- 0: The maximum resident set size (KB) = 1372832
-
-Test 041 control_c384gdas_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_intel
-Checking test 042 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 87.259183
- 0: The maximum resident set size (KB) = 630120
-
-Test 042 control_stochy_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_restart_intel
-Checking test 043 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 48.160569
- 0: The maximum resident set size (KB) = 486068
-
-Test 043 control_stochy_restart_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_intel
-Checking test 044 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 121.485822
- 0: The maximum resident set size (KB) = 619644
-
-Test 044 control_lndp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr4_intel
-Checking test 045 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 170.093964
- 0: The maximum resident set size (KB) = 655032
-
-Test 045 control_iovr4_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr5_intel
-Checking test 046 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 161.361556
- 0: The maximum resident set size (KB) = 652584
-
-Test 046 control_iovr5_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_intel
-Checking test 047 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 198.270991
- 0: The maximum resident set size (KB) = 1601308
-
-Test 047 control_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8.v2.sfc_intel
-Checking test 048 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 188.680172
- 0: The maximum resident set size (KB) = 1625576
-
-Test 048 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_intel
-Checking test 049 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 192.767254
- 0: The maximum resident set size (KB) = 1620224
-
-Test 049 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_intel
-Checking test 050 control_restart_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 86.418564
- 0: The maximum resident set size (KB) = 854284
-
-Test 050 control_restart_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_noqr_p8_intel
-Checking test 051 control_noqr_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf021.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf021.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 191.623950
- 0: The maximum resident set size (KB) = 1603972
-
-Test 051 control_noqr_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_noqr_p8_intel
-Checking test 052 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 85.065777
- 0: The maximum resident set size (KB) = 919876
-
-Test 052 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_decomp_p8_intel
-Checking test 053 control_decomp_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 196.597206
- 0: The maximum resident set size (KB) = 1596456
-
-Test 053 control_decomp_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_2threads_p8_intel
-Checking test 054 control_2threads_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 155.241568
- 0: The maximum resident set size (KB) = 1703448
-
-Test 054 control_2threads_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_lndp_intel
-Checking test 055 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
- 0: The total amount of wall time = 300.378090
- 0: The maximum resident set size (KB) = 1617272
-
-Test 055 control_p8_lndp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_rrtmgp_intel
-Checking test 056 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 219.686115
- 0: The maximum resident set size (KB) = 1688940
-
-Test 056 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_mynn_intel
-Checking test 057 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 167.553918
- 0: The maximum resident set size (KB) = 1627868
-
-Test 057 control_p8_mynn_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/merra2_thompson_intel
-Checking test 058 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 195.904406
- 0: The maximum resident set size (KB) = 1597612
-
-Test 058 merra2_thompson_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_intel
-Checking test 059 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 297.111104
- 0: The maximum resident set size (KB) = 844020
-
-Test 059 regional_control_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_restart_intel
-Checking test 060 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 152.647192
- 0: The maximum resident set size (KB) = 1020648
-
-Test 060 regional_restart_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_decomp_intel
-Checking test 061 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 315.300011
- 0: The maximum resident set size (KB) = 843540
-
-Test 061 regional_decomp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2threads_intel
-Checking test 062 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 181.531408
- 0: The maximum resident set size (KB) = 849288
-
-Test 062 regional_2threads_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_noquilt_intel
-Checking test 063 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
- 0: The total amount of wall time = 296.596214
- 0: The maximum resident set size (KB) = 1338020
-
-Test 063 regional_noquilt_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_netcdf_parallel_intel
-Checking test 064 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
- 0: The total amount of wall time = 295.692822
- 0: The maximum resident set size (KB) = 824912
-
-Test 064 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2dwrtdecomp_intel
-Checking test 065 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 296.807985
- 0: The maximum resident set size (KB) = 842696
-
-Test 065 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_wofs_intel
-Checking test 066 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 385.259392
- 0: The maximum resident set size (KB) = 1879360
-
-Test 066 regional_wofs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_intel
-Checking test 067 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 447.735147
- 0: The maximum resident set size (KB) = 1099376
-
-Test 067 rap_control_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_intel
-Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 235.685180
- 0: The maximum resident set size (KB) = 1278088
-
-Test 068 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_intel
-Checking test 069 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 469.659764
- 0: The maximum resident set size (KB) = 1030576
-
-Test 069 rap_decomp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_intel
-Checking test 070 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 420.896042
- 0: The maximum resident set size (KB) = 1184648
-
-Test 070 rap_2threads_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_intel
-Checking test 071 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 229.408216
- 0: The maximum resident set size (KB) = 1097416
-
-Test 071 rap_restart_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_intel
-Checking test 072 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 447.562148
- 0: The maximum resident set size (KB) = 1098228
-
-Test 072 rap_sfcdiff_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_intel
-Checking test 073 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 470.716123
- 0: The maximum resident set size (KB) = 1009520
-
-Test 073 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_intel
-Checking test 074 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 336.116479
- 0: The maximum resident set size (KB) = 1137972
-
-Test 074 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_intel
-Checking test 075 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 225.478341
- 0: The maximum resident set size (KB) = 1041296
-
-Test 075 hrrr_control_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_intel
-Checking test 076 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 233.152144
- 0: The maximum resident set size (KB) = 1022816
-
-Test 076 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_intel
-Checking test 077 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 207.935391
- 0: The maximum resident set size (KB) = 1107352
-
-Test 077 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_intel
-Checking test 078 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 119.176374
- 0: The maximum resident set size (KB) = 994600
-
-Test 078 hrrr_control_restart_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_intel
-Checking test 079 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 440.927449
- 0: The maximum resident set size (KB) = 1104044
-
-Test 079 rrfs_v1beta_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_intel
-Checking test 080 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 533.500649
- 0: The maximum resident set size (KB) = 1991272
-
-Test 080 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_nohailnoccn_intel
-Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 516.732822
- 0: The maximum resident set size (KB) = 2069664
-
-Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_intel
-Checking test 082 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 339.421327
- 0: The maximum resident set size (KB) = 743976
-
-Test 082 control_csawmg_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_intel
-Checking test 083 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 334.268638
- 0: The maximum resident set size (KB) = 742284
-
-Test 083 control_csawmgt_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_intel
-Checking test 084 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 185.300313
- 0: The maximum resident set size (KB) = 723772
-
-Test 084 control_ras_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_intel
-Checking test 085 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
- 0: The total amount of wall time = 112.819380
- 0: The maximum resident set size (KB) = 624276
-
-Test 085 control_wam_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_faster_intel
-Checking test 086 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 146.236272
- 0: The maximum resident set size (KB) = 1596032
-
-Test 086 control_p8_faster_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_faster_intel
-Checking test 087 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 268.452383
- 0: The maximum resident set size (KB) = 820308
-
-Test 087 regional_control_faster_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_debug_intel
-Checking test 088 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
- 0: The total amount of wall time = 144.759495
- 0: The maximum resident set size (KB) = 808376
-
-Test 088 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 148.056577
- 0: The maximum resident set size (KB) = 782400
-
-Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_intel
-Checking test 090 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 170.621498
- 0: The maximum resident set size (KB) = 814680
-
-Test 090 control_stochy_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_debug_intel
-Checking test 091 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 150.698374
- 0: The maximum resident set size (KB) = 814644
-
-Test 091 control_lndp_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_debug_intel
-Checking test 092 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 234.371275
- 0: The maximum resident set size (KB) = 860512
-
-Test 092 control_csawmg_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_debug_intel
-Checking test 093 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 228.111782
- 0: The maximum resident set size (KB) = 860092
-
-Test 093 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_intel
-Checking test 094 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 151.576216
- 0: The maximum resident set size (KB) = 793132
-
-Test 094 control_ras_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_intel
-Checking test 095 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 155.262698
- 0: The maximum resident set size (KB) = 867480
-
-Test 095 control_diag_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_intel
-Checking test 096 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 153.030753
- 0: The maximum resident set size (KB) = 1633432
-
-Test 096 control_debug_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_intel
-Checking test 097 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 995.960551
- 0: The maximum resident set size (KB) = 817920
-
-Test 097 regional_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_intel
-Checking test 098 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 275.491454
- 0: The maximum resident set size (KB) = 1199824
-
-Test 098 rap_control_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_intel
-Checking test 099 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 268.612901
- 0: The maximum resident set size (KB) = 1192940
-
-Test 099 hrrr_control_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_intel
-Checking test 100 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 271.402722
- 0: The maximum resident set size (KB) = 1196360
-
-Test 100 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_intel
-Checking test 101 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 278.037371
- 0: The maximum resident set size (KB) = 1175036
-
-Test 101 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_drag_suite_debug_intel
-Checking test 102 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 270.615026
- 0: The maximum resident set size (KB) = 1196244
-
-Test 102 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_intel
-Checking test 103 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 290.502510
- 0: The maximum resident set size (KB) = 1288436
-
-Test 103 rap_diag_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_cires_ugwp_debug_intel
-Checking test 104 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 277.043924
- 0: The maximum resident set size (KB) = 1204060
-
-Test 104 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_ugwp_debug_intel
-Checking test 105 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 283.104663
- 0: The maximum resident set size (KB) = 1192512
-
-Test 105 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_lndp_debug_intel
-Checking test 106 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 277.681121
- 0: The maximum resident set size (KB) = 1198384
-
-Test 106 rap_lndp_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_intel
-Checking test 107 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 274.242241
- 0: The maximum resident set size (KB) = 1185836
-
-Test 107 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_debug_intel
-Checking test 108 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 273.000390
- 0: The maximum resident set size (KB) = 1173384
-
-Test 108 rap_noah_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_debug_intel
-Checking test 109 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 276.460737
- 0: The maximum resident set size (KB) = 1195484
-
-Test 109 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 451.967356
- 0: The maximum resident set size (KB) = 1194252
-
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_intel
-Checking test 111 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 270.708863
- 0: The maximum resident set size (KB) = 1160852
-
-Test 111 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_intel
-Checking test 112 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 352.376767
- 0: The maximum resident set size (KB) = 1169504
-
-Test 112 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_intel
-Checking test 113 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 273.928310
- 0: The maximum resident set size (KB) = 1195328
-
-Test 113 rap_flake_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_intel
-Checking test 114 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 470.323268
- 0: The maximum resident set size (KB) = 1202908
-
-Test 114 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_intel
-Checking test 115 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
- 0: The total amount of wall time = 276.074908
- 0: The maximum resident set size (KB) = 513360
-
-Test 115 control_wam_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 222.475271
- 0: The maximum resident set size (KB) = 1162940
-
-Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_intel
-Checking test 117 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 368.075415
- 0: The maximum resident set size (KB) = 1020500
-
-Test 117 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_intel
-Checking test 118 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 192.241907
- 0: The maximum resident set size (KB) = 959544
-
-Test 118 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_intel
-Checking test 119 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 351.161966
- 0: The maximum resident set size (KB) = 1080448
-
-Test 119 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 177.729941
- 0: The maximum resident set size (KB) = 948624
-
-Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 205.199349
- 0: The maximum resident set size (KB) = 922672
-
-Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_intel
-Checking test 122 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 276.234428
- 0: The maximum resident set size (KB) = 1034432
-
-Test 122 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_intel
-Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 100.806208
- 0: The maximum resident set size (KB) = 925616
-
-Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_intel
-Checking test 124 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 112.828621
- 0: The maximum resident set size (KB) = 1194604
-
-Test 124 conus13km_control_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_intel
-Checking test 125 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 45.110413
- 0: The maximum resident set size (KB) = 1090944
-
-Test 125 conus13km_2threads_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_intel
-Checking test 126 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 61.418232
- 0: The maximum resident set size (KB) = 1104032
-
-Test 126 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_intel
-Checking test 127 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 243.026396
- 0: The maximum resident set size (KB) = 987972
-
-Test 127 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_intel
-Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 268.347578
- 0: The maximum resident set size (KB) = 1072192
-
-Test 128 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_intel
-Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 263.556254
- 0: The maximum resident set size (KB) = 1073740
-
-Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_intel
-Checking test 130 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 819.902654
- 0: The maximum resident set size (KB) = 1206660
-
-Test 130 conus13km_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_intel
-Checking test 131 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 827.951578
- 0: The maximum resident set size (KB) = 908752
-
-Test 131 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_intel
-Checking test 132 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 459.311316
- 0: The maximum resident set size (KB) = 1127864
-
-Test 132 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_intel
-Checking test 133 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 815.471007
- 0: The maximum resident set size (KB) = 1298260
-
-Test 133 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_intel
-Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 275.023432
- 0: The maximum resident set size (KB) = 1114132
-
-Test 134 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_intel
-Checking test 135 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
- 0: The total amount of wall time = 272.728122
- 0: The maximum resident set size (KB) = 734208
-
-Test 135 hafs_regional_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
- 0: The total amount of wall time = 340.316314
- 0: The maximum resident set size (KB) = 1116340
-
-Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_intel
-Checking test 137 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 393.271755
- 0: The maximum resident set size (KB) = 829884
-
-Test 137 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_wav_intel
-Checking test 138 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 766.764748
- 0: The maximum resident set size (KB) = 851056
-
-Test 138 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_wav_intel
-Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 872.297813
- 0: The maximum resident set size (KB) = 880940
-
-Test 139 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_1nest_atm_intel
-Checking test 140 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 305.063069
- 0: The maximum resident set size (KB) = 499900
-
-Test 140 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_telescopic_2nests_atm_intel
-Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
- 0: The total amount of wall time = 370.430456
- 0: The maximum resident set size (KB) = 519276
-
-Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_1nest_atm_intel
-Checking test 142 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 142.808134
- 0: The maximum resident set size (KB) = 371724
-
-Test 142 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_multiple_4nests_atm_intel
-Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
- 0: The total amount of wall time = 405.139106
- 0: The maximum resident set size (KB) = 482556
-
-Test 143 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
- 0: The total amount of wall time = 202.950076
- 0: The maximum resident set size (KB) = 527260
-
-Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 191.898417
- 0: The maximum resident set size (KB) = 501616
-
-Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
- 0: The total amount of wall time = 231.571873
- 0: The maximum resident set size (KB) = 579512
-
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_storm_following_1nest_atm_intel
-Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
- 0: The total amount of wall time = 61.329785
- 0: The maximum resident set size (KB) = 410592
-
-Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_nested_intel
-Checking test 148 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 225.085301
- 0: The maximum resident set size (KB) = 773060
-
-Test 148 gnv1_nested_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
- 0: The total amount of wall time = 730.627266
- 0: The maximum resident set size (KB) = 566096
-
-Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 501.588021
- 0: The maximum resident set size (KB) = 666832
-
-Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 501.186817
- 0: The maximum resident set size (KB) = 712472
-
-Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 369.989170
- 0: The maximum resident set size (KB) = 725280
-
-Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_intel
-Checking test 153 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 360.104666
- 0: The maximum resident set size (KB) = 821512
-
-Test 153 hafs_regional_docn_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_oisst_intel
-Checking test 154 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 365.893227
- 0: The maximum resident set size (KB) = 809828
-
-Test 154 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_datm_cdeps_intel
-Checking test 155 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
- 0: The total amount of wall time = 953.706355
- 0: The maximum resident set size (KB) = 1218248
-
-Test 155 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_intel
-Checking test 156 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 189.001440
- 0: The maximum resident set size (KB) = 1120900
-
-Test 156 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_restart_cfsr_intel
-Checking test 157 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 87.265260
- 0: The maximum resident set size (KB) = 1082788
-
-Test 157 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_gefs_intel
-Checking test 158 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 151.730363
- 0: The maximum resident set size (KB) = 1007752
-
-Test 158 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_iau_gefs_intel
-Checking test 159 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 145.879436
- 0: The maximum resident set size (KB) = 1009984
-
-Test 159 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_stochy_gefs_intel
-Checking test 160 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 146.932874
- 0: The maximum resident set size (KB) = 1010392
-
-Test 160 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_ciceC_cfsr_intel
-Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 151.125900
- 0: The maximum resident set size (KB) = 1116792
-
-Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_cfsr_intel
-Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 146.462636
- 0: The maximum resident set size (KB) = 1128076
-
-Test 162 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_gefs_intel
-Checking test 163 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 145.947523
- 0: The maximum resident set size (KB) = 999268
-
-Test 163 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_cfsr_intel
-Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 363.063857
- 0: The maximum resident set size (KB) = 1050356
-
-Test 164 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_gefs_intel
-Checking test 165 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 354.761206
- 0: The maximum resident set size (KB) = 1034624
-
-Test 165 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_multiple_files_cfsr_intel
-Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 153.107517
- 0: The maximum resident set size (KB) = 1120856
-
-Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_3072x1536_cfsr_intel
-Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 237.146043
- 0: The maximum resident set size (KB) = 2479192
-
-Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_gfs_intel
-Checking test 168 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 221.421138
- 0: The maximum resident set size (KB) = 2478172
-
-Test 168 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_debug_cfsr_intel
-Checking test 169 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
- 0: The total amount of wall time = 351.095459
- 0: The maximum resident set size (KB) = 1058080
-
-Test 169 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_faster_intel
-Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 150.920541
- 0: The maximum resident set size (KB) = 1132024
-
-Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_gswp3_intel
-Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
- 0: The total amount of wall time = 37.105463
- 0: The maximum resident set size (KB) = 250892
-
-Test 171 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_intel
-Checking test 172 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 39.542885
- 0: The maximum resident set size (KB) = 320320
-
-Test 172 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_rst_intel
-Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 23.025351
- 0: The maximum resident set size (KB) = 314804
-
-Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_sbs_intel
-Checking test 174 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 246.716362
- 0: The maximum resident set size (KB) = 1590836
-
-Test 174 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_intel
-Checking test 175 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 252.164238
- 0: The maximum resident set size (KB) = 1585804
-
-Test 175 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_atmlnd_intel
-Checking test 176 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 125.134389
- 0: The maximum resident set size (KB) = 896504
-
-Test 176 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmwav_control_noaero_p8_intel
-Checking test 177 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
- 0: The total amount of wall time = 96.948025
- 0: The maximum resident set size (KB) = 1648620
-
-Test 177 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_atmwav_intel
-Checking test 178 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
- 0: The total amount of wall time = 91.828471
- 0: The maximum resident set size (KB) = 664536
-
-Test 178 control_atmwav_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_intel
-Checking test 179 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 227.689705
- 0: The maximum resident set size (KB) = 3018296
-
-Test 179 atmaero_control_p8_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_intel
-Checking test 180 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 273.550039
- 0: The maximum resident set size (KB) = 3077780
-
-Test 180 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_micro_intel
-Checking test 181 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 294.145161
- 0: The maximum resident set size (KB) = 3076980
-
-Test 181 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_atmaq_debug_intel
-Checking test 182 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 1213.370191
- 0: The maximum resident set size (KB) = 4389792
-
-Test 182 regional_atmaq_debug_intel PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_gnu
-Checking test 183 control_c48_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 688.205308
-0: The maximum resident set size (KB) = 792912
-
-Test 183 control_c48_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_gnu
-Checking test 184 control_stochy_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 234.476749
- 0: The maximum resident set size (KB) = 553528
-
-Test 184 control_stochy_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_gnu
-Checking test 185 control_ras_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 283.764946
- 0: The maximum resident set size (KB) = 556652
-
-Test 185 control_ras_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_gnu
-Checking test 186 control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 277.806156
- 0: The maximum resident set size (KB) = 1307552
-
-Test 186 control_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_gnu
-Checking test 187 control_p8_ugwpv1_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 272.738007
- 0: The maximum resident set size (KB) = 1312752
-
-Test 187 control_p8_ugwpv1_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_gnu
-Checking test 188 control_flake_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 340.912455
- 0: The maximum resident set size (KB) = 601132
-
-Test 188 control_flake_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_gnu
-Checking test 189 rap_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 690.371459
- 0: The maximum resident set size (KB) = 900684
-
-Test 189 rap_control_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_gnu
-Checking test 190 rap_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 695.688780
- 0: The maximum resident set size (KB) = 901716
-
-Test 190 rap_decomp_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_gnu
-Checking test 191 rap_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 617.489798
- 0: The maximum resident set size (KB) = 980016
-
-Test 191 rap_2threads_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_gnu
-Checking test 192 rap_restart_gnu results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 356.741640
- 0: The maximum resident set size (KB) = 624140
-
-Test 192 rap_restart_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_gnu
-Checking test 193 rap_sfcdiff_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 689.306122
- 0: The maximum resident set size (KB) = 898992
-
-Test 193 rap_sfcdiff_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_gnu
-Checking test 194 rap_sfcdiff_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 696.391226
- 0: The maximum resident set size (KB) = 897384
-
-Test 194 rap_sfcdiff_decomp_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_gnu
-Checking test 195 rap_sfcdiff_restart_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 517.381590
- 0: The maximum resident set size (KB) = 623932
-
-Test 195 rap_sfcdiff_restart_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_gnu
-Checking test 196 hrrr_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 348.759366
- 0: The maximum resident set size (KB) = 891576
-
-Test 196 hrrr_control_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_noqr_gnu
-Checking test 197 hrrr_control_noqr_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 349.405197
- 0: The maximum resident set size (KB) = 881776
-
-Test 197 hrrr_control_noqr_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_gnu
-Checking test 198 hrrr_control_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 303.918514
- 0: The maximum resident set size (KB) = 984328
-
-Test 198 hrrr_control_2threads_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_gnu
-Checking test 199 hrrr_control_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 351.623950
- 0: The maximum resident set size (KB) = 897492
-
-Test 199 hrrr_control_decomp_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_gnu
-Checking test 200 hrrr_control_restart_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 180.665847
- 0: The maximum resident set size (KB) = 612808
-
-Test 200 hrrr_control_restart_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_noqr_gnu
-Checking test 201 hrrr_control_restart_noqr_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 178.922435
- 0: The maximum resident set size (KB) = 705032
-
-Test 201 hrrr_control_restart_noqr_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_gnu
-Checking test 202 rrfs_v1beta_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 679.545568
- 0: The maximum resident set size (KB) = 894672
-
-Test 202 rrfs_v1beta_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_gnu
-Checking test 203 control_diag_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 87.055437
- 0: The maximum resident set size (KB) = 593248
-
-Test 203 control_diag_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_gnu
-Checking test 204 regional_debug_gnu results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 445.636796
- 0: The maximum resident set size (KB) = 595876
-
-Test 204 regional_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_gnu
-Checking test 205 rap_control_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 139.391328
- 0: The maximum resident set size (KB) = 906260
-
-Test 205 rap_control_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_gnu
-Checking test 206 hrrr_control_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 139.619453
- 0: The maximum resident set size (KB) = 902220
-
-Test 206 hrrr_control_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_gnu
-Checking test 207 hrrr_gf_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 137.736098
- 0: The maximum resident set size (KB) = 906700
-
-Test 207 hrrr_gf_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_gnu
-Checking test 208 hrrr_c3_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 141.483182
- 0: The maximum resident set size (KB) = 905752
-
-Test 208 hrrr_c3_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_gnu
-Checking test 209 rap_diag_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 154.912538
- 0: The maximum resident set size (KB) = 991520
-
-Test 209 rap_diag_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 224.830077
- 0: The maximum resident set size (KB) = 870868
-
-Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_gnu
-Checking test 211 rap_progcld_thompson_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 142.457150
- 0: The maximum resident set size (KB) = 909212
-
-Test 211 rap_progcld_thompson_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_gnu
-Checking test 212 rrfs_v1beta_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 141.591540
- 0: The maximum resident set size (KB) = 904240
-
-Test 212 rrfs_v1beta_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_gnu
-Checking test 213 control_ras_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 84.434006
- 0: The maximum resident set size (KB) = 544460
-
-Test 213 control_ras_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_gnu
-Checking test 214 control_stochy_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 122.999030
- 0: The maximum resident set size (KB) = 538724
-
-Test 214 control_stochy_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_gnu
-Checking test 215 control_debug_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 90.288640
- 0: The maximum resident set size (KB) = 1276116
-
-Test 215 control_debug_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_gnu
-Checking test 216 rap_flake_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 141.157374
- 0: The maximum resident set size (KB) = 905656
-
-Test 216 rap_flake_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_gnu
-Checking test 217 rap_clm_lake_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 159.337129
- 0: The maximum resident set size (KB) = 909784
-
-Test 217 rap_clm_lake_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_gnu
-Checking test 218 gnv1_c96_no_nest_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 241.112585
- 0: The maximum resident set size (KB) = 919580
-
-Test 218 gnv1_c96_no_nest_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_gnu
-Checking test 219 control_wam_debug_gnu results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
- 0: The total amount of wall time = 136.397136
- 0: The maximum resident set size (KB) = 243708
-
-Test 219 control_wam_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_gnu
-Checking test 220 rap_control_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 701.163584
- 0: The maximum resident set size (KB) = 749188
-
-Test 220 rap_control_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_gnu
-Checking test 221 hrrr_control_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 351.809217
- 0: The maximum resident set size (KB) = 747952
-
-Test 221 hrrr_control_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_gnu
-Checking test 222 rap_2threads_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 621.928224
- 0: The maximum resident set size (KB) = 806524
-
-Test 222 rap_2threads_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_gnu
-Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 307.518689
- 0: The maximum resident set size (KB) = 800100
-
-Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_gnu
-Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 353.261201
- 0: The maximum resident set size (KB) = 750032
-
-Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_gnu
-Checking test 225 rap_restart_dyn32_phy32_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 518.087953
- 0: The maximum resident set size (KB) = 600172
-
-Test 225 rap_restart_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_gnu
-Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 187.048900
- 0: The maximum resident set size (KB) = 582988
-
-Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_gnu
-Checking test 227 conus13km_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 237.804391
- 0: The maximum resident set size (KB) = 899928
-
-Test 227 conus13km_control_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_gnu
-Checking test 228 conus13km_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 100.544965
- 0: The maximum resident set size (KB) = 935228
-
-Test 228 conus13km_2threads_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_gnu
-Checking test 229 conus13km_restart_mismatch_gnu results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 127.134943
- 0: The maximum resident set size (KB) = 598668
-
-Test 229 conus13km_restart_mismatch_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_gnu
-Checking test 230 rap_control_dyn64_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 404.788193
- 0: The maximum resident set size (KB) = 789304
-
-Test 230 rap_control_dyn64_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_gnu
-Checking test 231 rap_control_debug_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 138.906825
- 0: The maximum resident set size (KB) = 762356
-
-Test 231 rap_control_debug_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_gnu
-Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 138.683647
- 0: The maximum resident set size (KB) = 760040
-
-Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_gnu
-Checking test 233 conus13km_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 417.446415
- 0: The maximum resident set size (KB) = 916864
-
-Test 233 conus13km_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_gnu
-Checking test 234 conus13km_debug_qr_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 413.994785
- 0: The maximum resident set size (KB) = 634308
-
-Test 234 conus13km_debug_qr_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_gnu
-Checking test 235 conus13km_debug_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 248.865783
- 0: The maximum resident set size (KB) = 952708
-
-Test 235 conus13km_debug_2threads_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_gnu
-Checking test 236 conus13km_radar_tten_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 422.215745
- 0: The maximum resident set size (KB) = 983396
-
-Test 236 conus13km_radar_tten_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_gnu
-Checking test 237 rap_control_dyn64_phy32_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 141.860154
- 0: The maximum resident set size (KB) = 786732
-
-Test 237 rap_control_dyn64_phy32_debug_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_gnu
-Checking test 238 cpld_control_p8_gnu results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 624.600887
- 0: The maximum resident set size (KB) = 1508816
-
-Test 238 cpld_control_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_gnu
-Checking test 239 cpld_control_nowave_noaero_p8_gnu results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 375.478552
- 0: The maximum resident set size (KB) = 1402492
-
-Test 239 cpld_control_nowave_noaero_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_gnu
-Checking test 240 cpld_debug_p8_gnu results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 355.193204
- 0: The maximum resident set size (KB) = 1519160
-
-Test 240 cpld_debug_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_gnu
-Checking test 241 cpld_control_pdlib_p8_gnu results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1305.263114
- 0: The maximum resident set size (KB) = 1377636
-
-Test 241 cpld_control_pdlib_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_gnu
-Checking test 242 cpld_debug_pdlib_p8_gnu results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 761.740712
- 0: The maximum resident set size (KB) = 1391124
-
-Test 242 cpld_debug_pdlib_p8_gnu PASS
-
-
-baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_gnu
-Checking test 243 datm_cdeps_control_cfsr_gnu results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 175.601857
- 0: The maximum resident set size (KB) = 700488
-
-Test 243 datm_cdeps_control_cfsr_gnu PASS
-REGRESSION TEST WAS SUCCESSFUL
-Wed Feb 14 01:27:40 UTC 2024
-Elapsed time: 03h:22m:37s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_5902
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nems
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:14](3105 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:39]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:10](1756 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:55](2008 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:10, 07:35](1086 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:10](1596 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:27]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 22:19](1661 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:07, 12:17]
+PASS -- TEST 'cpld_control_p8_intel' [08:15, 05:38](3187 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:38](3192 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:28, 03:20](3221 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:38](3175 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:28, 03:25](3256 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:26](3498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:10, 05:40](3150 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:39](3026 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 05:43](3148 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:09, 09:43](3316 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:45, 06:05](3571 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:59](4120 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:38](4342 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:28](3114 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:07, 11:41]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:28](1728 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:29](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:35]
+PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:04](3171 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:48]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:39](1709 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:07, 10:50]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:31](1716 MB)
+
+PASS -- COMPILE 's2s_intel' [12:07, 10:38]
+PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:18](2816 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:00]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:16](3208 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:03]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:16](1753 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 07:40](1142 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 18:35](1663 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:52]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:56, 24:45](1701 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:33]
+PASS -- TEST 'control_flake_intel' [06:21, 03:17](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:23](617 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:29](644 MB)
+PASS -- TEST 'control_latlon_intel' [04:21, 02:24](647 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:27](650 MB)
+PASS -- TEST 'control_c48_intel' [08:22, 06:12](873 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:15](874 MB)
+PASS -- TEST 'control_c192_intel' [11:35, 09:00](844 MB)
+PASS -- TEST 'control_c384_intel' [12:21, 09:07](1283 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:42, 08:03](1368 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:37](652 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:00](496 MB)
+PASS -- TEST 'control_lndp_intel' [03:18, 01:33](617 MB)
+PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](641 MB)
+PASS -- TEST 'control_iovr5_intel' [04:20, 02:27](616 MB)
+PASS -- TEST 'control_p8_intel' [05:01, 02:58](1616 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 02:56](1591 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:02, 02:50](1602 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](886 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:55](1586 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:35](895 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:52, 02:57](1597 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:51, 02:46](1707 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:09](1616 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:48](1670 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:00](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:53, 03:28](1600 MB)
+PASS -- TEST 'regional_control_intel' [07:38, 05:03](849 MB)
+PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1007 MB)
+PASS -- TEST 'regional_decomp_intel' [07:36, 05:24](817 MB)
+PASS -- TEST 'regional_2threads_intel' [05:36, 03:12](839 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:38, 05:05](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](845 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:05](847 MB)
+PASS -- TEST 'regional_wofs_intel' [08:38, 06:37](1905 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:07, 09:55]
+PASS -- TEST 'rap_control_intel' [09:42, 07:40](1065 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:07](1274 MB)
+PASS -- TEST 'rap_decomp_intel' [10:34, 08:02](991 MB)
+PASS -- TEST 'rap_2threads_intel' [09:35, 07:11](1176 MB)
+PASS -- TEST 'rap_restart_intel' [05:36, 04:00](1076 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:37](1094 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1018 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:46](1111 MB)
+PASS -- TEST 'hrrr_control_intel' [05:34, 03:56](1030 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:03](995 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1096 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:08](1000 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:34](1059 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:00](1991 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:53](2029 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:07, 09:24]
+PASS -- TEST 'control_csawmg_intel' [07:38, 05:47](709 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:37, 05:47](734 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:15](712 MB)
+
+PASS -- COMPILE 'wam_intel' [11:07, 09:04]
+PASS -- TEST 'control_wam_intel' [04:16, 02:00](656 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 10:15]
+PASS -- TEST 'control_p8_faster_intel' [04:49, 02:36](1601 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:36, 04:37](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:38](794 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](802 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:59](788 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:40](783 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:00](829 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:00](858 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](788 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](864 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:41, 02:48](1574 MB)
+PASS -- TEST 'regional_debug_intel' [18:43, 16:10](837 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:20, 04:46](1191 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:40](1186 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:41](1202 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:47](1202 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:41](1196 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:05](1279 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:51](1181 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:53](1163 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:48](1194 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:42](1201 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:36](1188 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:47](1192 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:45](1193 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:46](1187 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 06:01](1200 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:47](1196 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:09](1168 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 02:57]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 04:43](514 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:13]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 03:53](1127 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:18](1034 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:22](978 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 05:59](1084 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:30, 03:05](954 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:32](900 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 04:47](1010 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](927 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:22]
+PASS -- TEST 'conus13km_control_intel' [04:51, 02:02](1194 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1112 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1068 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:20]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:12](954 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:20, 04:39](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:38](1071 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:45, 13:49](1219 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:59](895 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 07:45](1147 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:39](1284 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 04:45](1116 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:06, 10:47]
+PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:51](730 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:01](1086 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 06:55](826 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:03](839 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:45](871 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:22](498 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:25](506 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:33](349 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:06, 07:09](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:36](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:29](504 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](582 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:11](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:43, 03:55](796 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:27]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 12:17](545 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:35](634 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:32](700 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:07, 11:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 06:18](663 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:18]
+PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:17](800 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:18](803 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:11](1205 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:10]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:39](1113 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:39](1073 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:37](997 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:35](1005 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:57](982 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:38](1127 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:37](1122 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:33](1008 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:28](1045 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:39](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1121 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:51](2464 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:54](2480 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:46]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:08](1044 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1116 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:44](321 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:34](312 MB)
+
+PASS -- COMPILE 'atml_intel' [12:07, 10:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:15](1581 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:12](1586 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:16](877 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:07, 09:58]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:45](1646 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:07, 10:04]
+PASS -- TEST 'control_atmwav_intel' [03:29, 01:41](628 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:06, 09:50]
+PASS -- TEST 'atmaero_control_p8_intel' [06:02, 03:56](2976 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:42](3036 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:00](3068 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:06, 09:32]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:51, 20:27](4341 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:06, 03:23]
+PASS -- TEST 'control_c48_gnu' [13:23, 11:36](792 MB)
+PASS -- TEST 'control_stochy_gnu' [05:17, 04:02](552 MB)
+PASS -- TEST 'control_ras_gnu' [06:17, 04:53](560 MB)
+PASS -- TEST 'control_p8_gnu' [06:56, 04:54](1300 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:40](1304 MB)
+PASS -- TEST 'control_flake_gnu' [07:19, 05:51](592 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:06, 03:27]
+PASS -- TEST 'rap_control_gnu' [13:30, 11:36](895 MB)
+PASS -- TEST 'rap_decomp_gnu' [13:31, 11:39](894 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:37, 10:27](974 MB)
+PASS -- TEST 'rap_restart_gnu' [08:38, 06:04](623 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:34](894 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:54](894 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:56](629 MB)
+PASS -- TEST 'hrrr_control_gnu' [07:35, 05:57](889 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:59](878 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:27, 05:14](974 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [07:28, 05:56](892 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:24, 03:14](609 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:11](706 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:15](888 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21]
+PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](584 MB)
+PASS -- TEST 'regional_debug_gnu' [09:36, 07:37](593 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:28](905 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](899 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 02:31](906 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](904 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:44](987 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:59](896 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:33](901 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:35](898 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](537 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:47](536 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:36](1287 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](907 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:46](908 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:04](909 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:40]
+PASS -- TEST 'control_wam_debug_gnu' [04:15, 02:24](239 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:05, 03:24]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:27, 11:47](754 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:25, 06:05](746 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:36, 10:35](803 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 05:17](805 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 06:01](746 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:34, 08:47](596 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 03:19](579 MB)
+PASS -- TEST 'conus13km_control_gnu' [07:52, 04:12](897 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:49](936 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:16](595 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:37, 06:54](777 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:17]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:19, 02:29](774 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 02:28](768 MB)
+PASS -- TEST 'conus13km_debug_gnu' [09:43, 07:11](911 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:04](634 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [06:39, 04:22](956 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:38, 07:07](977 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:19]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](789 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:07, 14:03]
+PASS -- TEST 'cpld_control_p8_gnu' [13:09, 10:59](1505 MB)
+
+PASS -- COMPILE 's2s_gnu' [15:07, 13:41]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:00, 06:34](1402 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:21]
+PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:09](1520 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:07, 13:53]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:56, 22:02](1375 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:08]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:52, 13:06](1390 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:26]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:03](692 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240219 14:20:19
+Ending Date/Time: 20240219 15:59:27
+Total Time: 01h:39m:36s
+Compiles Completed: 53/53
+Tests Completed: 243/243
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF HERA REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 1c31c7ef04..166dd6458a 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7812 +1,388 @@
-Tue Feb 13 15:27:43 CST 2024
-Start Regression test
+====START OF HERCULES REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_debug_gnu elapsed time 531 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_dyn32_phy32_debug_gnu elapsed time 537 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_debug_gnu elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn64_phy32_gnu elapsed time 576 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaero_intel elapsed time 428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 209 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 403 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 599 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 336 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_gnu elapsed time 880 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 328 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 639 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 176 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 548 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 524 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_gnu elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 493 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_gnu elapsed time 959 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 640 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_gnu elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 179 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_gnu elapsed time 950 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 671 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_gnu elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_gnu elapsed time 970 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 684 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_gnu elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 437.888352
- 0: The maximum resident set size (KB) = 1897992
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 874.181544
- 0: The maximum resident set size (KB) = 1765068
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 855.907654
- 0: The maximum resident set size (KB) = 2156492
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 378.825787
- 0: The maximum resident set size (KB) = 1189436
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 916.253251
- 0: The maximum resident set size (KB) = 1689668
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1219.029822
- 0: The maximum resident set size (KB) = 1730396
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 452.148644
- 0: The maximum resident set size (KB) = 2062320
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 444.970947
- 0: The maximum resident set size (KB) = 2075400
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 258.335649
- 0: The maximum resident set size (KB) = 1962816
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 454.842010
- 0: The maximum resident set size (KB) = 1986628
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 319.217529
- 0: The maximum resident set size (KB) = 1729840
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 539.659766
- 0: The maximum resident set size (KB) = 2501924
-
-Test 012 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 448.604815
- 0: The maximum resident set size (KB) = 2077108
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 382.464389
- 0: The maximum resident set size (KB) = 1893244
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 449.594208
- 0: The maximum resident set size (KB) = 2075056
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c192_p8_intel
-Checking test 016 cpld_control_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 977.372712
- 0: The maximum resident set size (KB) = 2810084
-
-Test 016 cpld_control_c192_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_c192_p8_intel
-Checking test 017 cpld_restart_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 345.344625
- 0: The maximum resident set size (KB) = 2919944
-
-Test 017 cpld_restart_c192_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_bmark_p8_intel
-Checking test 018 cpld_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 521.869891
- 0: The maximum resident set size (KB) = 3664192
-
-Test 018 cpld_bmark_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_bmark_p8_intel
-Checking test 019 cpld_restart_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 391.132602
- 0: The maximum resident set size (KB) = 3607392
-
-Test 019 cpld_restart_bmark_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_s2sa_p8_intel
-Checking test 020 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 284.005064
- 0: The maximum resident set size (KB) = 2023192
-
-Test 020 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_intel
-Checking test 021 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 425.611750
- 0: The maximum resident set size (KB) = 1772740
-
-Test 021 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_nowave_noaero_p8_intel
-Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 226.630814
- 0: The maximum resident set size (KB) = 1827172
-
-Test 022 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_p8_intel
-Checking test 023 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 404.173642
- 0: The maximum resident set size (KB) = 2039316
-
-Test 023 cpld_debug_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_noaero_p8_intel
-Checking test 024 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 276.977445
- 0: The maximum resident set size (KB) = 1782980
-
-Test 024 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_agrid_intel
-Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 230.490661
- 0: The maximum resident set size (KB) = 1824332
-
-Test 025 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c48_intel
-Checking test 026 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 435.264082
- 0: The maximum resident set size (KB) = 2833060
-
-Test 026 cpld_control_c48_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_faster_intel
-Checking test 027 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 434.066483
- 0: The maximum resident set size (KB) = 2096696
-
-Test 027 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_pdlib_p8_intel
-Checking test 028 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 856.504774
- 0: The maximum resident set size (KB) = 1825632
-
-Test 028 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_pdlib_p8_intel
-Checking test 029 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 409.034960
- 0: The maximum resident set size (KB) = 1304384
-
-Test 029 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_pdlib_p8_intel
-Checking test 030 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 925.956399
- 0: The maximum resident set size (KB) = 1721564
-
-Test 030 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_pdlib_p8_intel
-Checking test 031 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1280.936967
- 0: The maximum resident set size (KB) = 1780528
-
-Test 031 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_intel
-Checking test 032 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 173.789417
- 0: The maximum resident set size (KB) = 724296
-
-Test 032 control_flake_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_intel
-Checking test 033 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
- 0: The total amount of wall time = 118.806942
- 0: The maximum resident set size (KB) = 661548
-
-Test 033 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_parallel_intel
-Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 127.057585
- 0: The maximum resident set size (KB) = 673924
-
-Test 034 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_latlon_intel
-Checking test 035 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 122.788113
- 0: The maximum resident set size (KB) = 671632
-
-Test 035 control_latlon_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_intel
-Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 128.169366
- 0: The maximum resident set size (KB) = 671440
-
-Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_intel
-Checking test 037 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 341.554025
-0: The maximum resident set size (KB) = 867892
-
-Test 037 control_c48_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48.v2.sfc_intel
-Checking test 038 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 342.968618
-0: The maximum resident set size (KB) = 861532
-
-Test 038 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c192_intel
-Checking test 039 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 469.464101
- 0: The maximum resident set size (KB) = 963520
-
-Test 039 control_c192_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384_intel
-Checking test 040 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 578.703456
- 0: The maximum resident set size (KB) = 1468452
-
-Test 040 control_c384_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384gdas_intel
-Checking test 041 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 470.768638
- 0: The maximum resident set size (KB) = 1525024
-
-Test 041 control_c384gdas_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_intel
-Checking test 042 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 84.258011
- 0: The maximum resident set size (KB) = 686240
-
-Test 042 control_stochy_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_restart_intel
-Checking test 043 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 48.070790
- 0: The maximum resident set size (KB) = 540836
-
-Test 043 control_stochy_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_intel
-Checking test 044 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 79.709404
- 0: The maximum resident set size (KB) = 675984
-
-Test 044 control_lndp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr4_intel
-Checking test 045 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 123.287393
- 0: The maximum resident set size (KB) = 668292
-
-Test 045 control_iovr4_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr5_intel
-Checking test 046 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 125.240594
- 0: The maximum resident set size (KB) = 667624
-
-Test 046 control_iovr5_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_intel
-Checking test 047 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 154.872088
- 0: The maximum resident set size (KB) = 1654696
-
-Test 047 control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8.v2.sfc_intel
-Checking test 048 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 160.815227
- 0: The maximum resident set size (KB) = 1638104
-
-Test 048 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_intel
-Checking test 049 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 156.317750
- 0: The maximum resident set size (KB) = 1650648
-
-Test 049 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_intel
-Checking test 050 control_restart_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 77.005768
- 0: The maximum resident set size (KB) = 927628
-
-Test 050 control_restart_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_noqr_p8_intel
-Checking test 051 control_noqr_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf021.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf021.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 159.519558
- 0: The maximum resident set size (KB) = 1639652
-
-Test 051 control_noqr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_noqr_p8_intel
-Checking test 052 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 77.862759
- 0: The maximum resident set size (KB) = 993836
-
-Test 052 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_decomp_p8_intel
-Checking test 053 control_decomp_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 165.836501
- 0: The maximum resident set size (KB) = 1638004
-
-Test 053 control_decomp_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_2threads_p8_intel
-Checking test 054 control_2threads_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 139.470851
- 0: The maximum resident set size (KB) = 1734488
-
-Test 054 control_2threads_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_lndp_intel
-Checking test 055 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
- 0: The total amount of wall time = 261.524588
- 0: The maximum resident set size (KB) = 1649536
-
-Test 055 control_p8_lndp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_rrtmgp_intel
-Checking test 056 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 201.379537
- 0: The maximum resident set size (KB) = 1726624
-
-Test 056 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_mynn_intel
-Checking test 057 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 144.874225
- 0: The maximum resident set size (KB) = 1660116
-
-Test 057 control_p8_mynn_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/merra2_thompson_intel
-Checking test 058 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 169.586490
- 0: The maximum resident set size (KB) = 1664904
-
-Test 058 merra2_thompson_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_intel
-Checking test 059 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 265.141018
- 0: The maximum resident set size (KB) = 964112
-
-Test 059 regional_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_restart_intel
-Checking test 060 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 139.297537
- 0: The maximum resident set size (KB) = 1110492
-
-Test 060 regional_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_decomp_intel
-Checking test 061 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 278.723377
- 0: The maximum resident set size (KB) = 949084
-
-Test 061 regional_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2threads_intel
-Checking test 062 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 169.687880
- 0: The maximum resident set size (KB) = 916976
-
-Test 062 regional_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_noquilt_intel
-Checking test 063 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
- 0: The total amount of wall time = 255.691738
- 0: The maximum resident set size (KB) = 1493988
-
-Test 063 regional_noquilt_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_netcdf_parallel_intel
-Checking test 064 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
- 0: The total amount of wall time = 267.741805
- 0: The maximum resident set size (KB) = 961376
-
-Test 064 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2dwrtdecomp_intel
-Checking test 065 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 266.429814
- 0: The maximum resident set size (KB) = 960056
-
-Test 065 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_wofs_intel
-Checking test 066 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 329.961121
- 0: The maximum resident set size (KB) = 2097012
-
-Test 066 regional_wofs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_intel
-Checking test 067 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 388.185731
- 0: The maximum resident set size (KB) = 1202548
-
-Test 067 rap_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_intel
-Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 216.592905
- 0: The maximum resident set size (KB) = 1408896
-
-Test 068 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_intel
-Checking test 069 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 405.107729
- 0: The maximum resident set size (KB) = 1123200
-
-Test 069 rap_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_intel
-Checking test 070 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 363.684866
- 0: The maximum resident set size (KB) = 1378300
-
-Test 070 rap_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_intel
-Checking test 071 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 199.531913
- 0: The maximum resident set size (KB) = 1134500
-
-Test 071 rap_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_intel
-Checking test 072 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 383.315239
- 0: The maximum resident set size (KB) = 1186604
-
-Test 072 rap_sfcdiff_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_intel
-Checking test 073 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 404.632152
- 0: The maximum resident set size (KB) = 1158544
-
-Test 073 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_intel
-Checking test 074 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 287.255854
- 0: The maximum resident set size (KB) = 1233548
-
-Test 074 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_intel
-Checking test 075 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 198.285536
- 0: The maximum resident set size (KB) = 1091536
-
-Test 075 hrrr_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_intel
-Checking test 076 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 204.039737
- 0: The maximum resident set size (KB) = 1039496
-
-Test 076 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_intel
-Checking test 077 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 180.204479
- 0: The maximum resident set size (KB) = 1124796
-
-Test 077 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_intel
-Checking test 078 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 102.200774
- 0: The maximum resident set size (KB) = 1023448
-
-Test 078 hrrr_control_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_intel
-Checking test 079 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 373.485813
- 0: The maximum resident set size (KB) = 1196116
-
-Test 079 rrfs_v1beta_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_intel
-Checking test 080 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 453.798762
- 0: The maximum resident set size (KB) = 2009056
-
-Test 080 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_nohailnoccn_intel
-Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 441.694584
- 0: The maximum resident set size (KB) = 2182848
-
-Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_intel
-Checking test 082 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 297.608365
- 0: The maximum resident set size (KB) = 848712
-
-Test 082 control_csawmg_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_intel
-Checking test 083 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 298.535042
- 0: The maximum resident set size (KB) = 806476
-
-Test 083 control_csawmgt_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_intel
-Checking test 084 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 163.356069
- 0: The maximum resident set size (KB) = 846068
-
-Test 084 control_ras_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wam_intel
-Checking test 085 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
- 0: The total amount of wall time = 101.620319
- 0: The maximum resident set size (KB) = 778368
-
-Test 085 control_wam_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_faster_intel
-Checking test 086 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 127.298750
- 0: The maximum resident set size (KB) = 1641608
-
-Test 086 control_p8_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_faster_intel
-Checking test 087 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 239.005327
- 0: The maximum resident set size (KB) = 959132
-
-Test 087 regional_control_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_debug_intel
-Checking test 088 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
- 0: The total amount of wall time = 127.239321
- 0: The maximum resident set size (KB) = 825760
-
-Test 088 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 127.357888
- 0: The maximum resident set size (KB) = 832044
-
-Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_intel
-Checking test 090 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 141.638703
- 0: The maximum resident set size (KB) = 834244
-
-Test 090 control_stochy_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_debug_intel
-Checking test 091 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 127.899569
- 0: The maximum resident set size (KB) = 830036
-
-Test 091 control_lndp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_debug_intel
-Checking test 092 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 198.772881
- 0: The maximum resident set size (KB) = 870380
-
-Test 092 control_csawmg_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_debug_intel
-Checking test 093 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 193.252752
- 0: The maximum resident set size (KB) = 873952
-
-Test 093 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_intel
-Checking test 094 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 129.214266
- 0: The maximum resident set size (KB) = 850172
-
-Test 094 control_ras_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_intel
-Checking test 095 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 133.937645
- 0: The maximum resident set size (KB) = 889924
-
-Test 095 control_diag_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_intel
-Checking test 096 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 134.889526
- 0: The maximum resident set size (KB) = 1655804
-
-Test 096 control_debug_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_intel
-Checking test 097 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 833.663040
- 0: The maximum resident set size (KB) = 904516
-
-Test 097 regional_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_intel
-Checking test 098 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 232.480235
- 0: The maximum resident set size (KB) = 1215312
-
-Test 098 rap_control_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_intel
-Checking test 099 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 226.142135
- 0: The maximum resident set size (KB) = 1212992
-
-Test 099 hrrr_control_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_intel
-Checking test 100 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 232.270614
- 0: The maximum resident set size (KB) = 1224340
-
-Test 100 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_intel
-Checking test 101 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 234.184599
- 0: The maximum resident set size (KB) = 1224576
-
-Test 101 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_drag_suite_debug_intel
-Checking test 102 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 233.224511
- 0: The maximum resident set size (KB) = 1214164
-
-Test 102 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_intel
-Checking test 103 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 244.302640
- 0: The maximum resident set size (KB) = 1306548
-
-Test 103 rap_diag_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_cires_ugwp_debug_intel
-Checking test 104 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 236.748197
- 0: The maximum resident set size (KB) = 1215648
-
-Test 104 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_ugwp_debug_intel
-Checking test 105 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 238.897417
- 0: The maximum resident set size (KB) = 1225476
-
-Test 105 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_lndp_debug_intel
-Checking test 106 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 233.775045
- 0: The maximum resident set size (KB) = 1213840
-
-Test 106 rap_lndp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_intel
-Checking test 107 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 232.700914
- 0: The maximum resident set size (KB) = 1231344
-
-Test 107 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_debug_intel
-Checking test 108 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 229.445153
- 0: The maximum resident set size (KB) = 1209692
-
-Test 108 rap_noah_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_debug_intel
-Checking test 109 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 231.528662
- 0: The maximum resident set size (KB) = 1219104
-
-Test 109 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 384.608919
- 0: The maximum resident set size (KB) = 1228024
-
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_intel
-Checking test 111 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 226.569478
- 0: The maximum resident set size (KB) = 1214816
-
-Test 111 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_intel
-Checking test 112 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 304.549934
- 0: The maximum resident set size (KB) = 1231760
-
-Test 112 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_intel
-Checking test 113 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 237.239561
- 0: The maximum resident set size (KB) = 1215940
-
-Test 113 rap_flake_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_intel
-Checking test 114 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 406.741596
- 0: The maximum resident set size (KB) = 1216796
-
-Test 114 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 186.050043
- 0: The maximum resident set size (KB) = 1276152
-
-Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_intel
-Checking test 116 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 317.073044
- 0: The maximum resident set size (KB) = 1147356
-
-Test 116 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_intel
-Checking test 117 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 165.138313
- 0: The maximum resident set size (KB) = 1014072
-
-Test 117 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_intel
-Checking test 118 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 299.018973
- 0: The maximum resident set size (KB) = 1272956
-
-Test 118 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 161.091018
- 0: The maximum resident set size (KB) = 1044888
-
-Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 173.038878
- 0: The maximum resident set size (KB) = 987688
-
-Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_intel
-Checking test 121 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 240.518454
- 0: The maximum resident set size (KB) = 1134604
-
-Test 121 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_intel
-Checking test 122 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 88.162058
- 0: The maximum resident set size (KB) = 965284
-
-Test 122 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_intel
-Checking test 123 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 103.587863
- 0: The maximum resident set size (KB) = 1307224
-
-Test 123 conus13km_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_intel
-Checking test 124 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 41.732275
- 0: The maximum resident set size (KB) = 1208312
-
-Test 124 conus13km_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_intel
-Checking test 125 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 55.604468
- 0: The maximum resident set size (KB) = 1154932
-
-Test 125 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_intel
-Checking test 126 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 214.456741
- 0: The maximum resident set size (KB) = 1101080
-
-Test 126 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_intel
-Checking test 127 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 227.769448
- 0: The maximum resident set size (KB) = 1096280
-
-Test 127 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_intel
-Checking test 128 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 225.377390
- 0: The maximum resident set size (KB) = 1099504
-
-Test 128 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_intel
-Checking test 129 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 693.796136
- 0: The maximum resident set size (KB) = 1345492
-
-Test 129 conus13km_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_intel
-Checking test 130 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 717.082360
- 0: The maximum resident set size (KB) = 985956
-
-Test 130 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_intel
-Checking test 131 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 402.194526
- 0: The maximum resident set size (KB) = 1237648
-
-Test 131 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_intel
-Checking test 132 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 702.156892
- 0: The maximum resident set size (KB) = 1407040
-
-Test 132 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_intel
-Checking test 133 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 232.341265
- 0: The maximum resident set size (KB) = 1152276
-
-Test 133 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_intel
-Checking test 134 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
- 0: The total amount of wall time = 319.880213
- 0: The maximum resident set size (KB) = 885040
-
-Test 134 hafs_regional_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
- 0: The total amount of wall time = 299.262357
- 0: The maximum resident set size (KB) = 1288556
-
-Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_intel
-Checking test 136 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 380.659094
- 0: The maximum resident set size (KB) = 950716
-
-Test 136 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_wav_intel
-Checking test 137 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 829.964413
- 0: The maximum resident set size (KB) = 972020
-
-Test 137 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_wav_intel
-Checking test 138 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 893.334177
- 0: The maximum resident set size (KB) = 1008888
-
-Test 138 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_1nest_atm_intel
-Checking test 139 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 331.543285
- 0: The maximum resident set size (KB) = 607020
-
-Test 139 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_telescopic_2nests_atm_intel
-Checking test 140 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
- 0: The total amount of wall time = 419.339445
- 0: The maximum resident set size (KB) = 617456
-
-Test 140 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_1nest_atm_intel
-Checking test 141 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 166.302451
- 0: The maximum resident set size (KB) = 438460
-
-Test 141 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_multiple_4nests_atm_intel
-Checking test 142 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
- 0: The total amount of wall time = 483.770165
- 0: The maximum resident set size (KB) = 546352
-
-Test 142 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
- 0: The total amount of wall time = 235.551186
- 0: The maximum resident set size (KB) = 623288
-
-Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_intel
-Checking test 144 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 216.995328
- 0: The maximum resident set size (KB) = 622432
-
-Test 144 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
- 0: The total amount of wall time = 297.687869
- 0: The maximum resident set size (KB) = 676236
-
-Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_storm_following_1nest_atm_intel
-Checking test 146 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
- 0: The total amount of wall time = 79.283162
- 0: The maximum resident set size (KB) = 451492
-
-Test 146 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
- 0: The total amount of wall time = 679.564047
- 0: The maximum resident set size (KB) = 632904
-
-Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 972.161645
- 0: The maximum resident set size (KB) = 749480
-
-Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 1036.834964
- 0: The maximum resident set size (KB) = 808984
-
-Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 639.200203
- 0: The maximum resident set size (KB) = 833588
-
-Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_intel
-Checking test 151 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 341.959765
- 0: The maximum resident set size (KB) = 953852
-
-Test 151 hafs_regional_docn_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_oisst_intel
-Checking test 152 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 340.439543
- 0: The maximum resident set size (KB) = 936416
-
-Test 152 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_datm_cdeps_intel
-Checking test 153 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
- 0: The total amount of wall time = 982.682875
- 0: The maximum resident set size (KB) = 1338020
-
-Test 153 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_intel
-Checking test 154 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 123.766433
- 0: The maximum resident set size (KB) = 1141460
-
-Test 154 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_restart_cfsr_intel
-Checking test 155 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 77.117248
- 0: The maximum resident set size (KB) = 1090324
-
-Test 155 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_gefs_intel
-Checking test 156 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 122.111663
- 0: The maximum resident set size (KB) = 1023092
-
-Test 156 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_iau_gefs_intel
-Checking test 157 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 120.758062
- 0: The maximum resident set size (KB) = 1016880
-
-Test 157 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_stochy_gefs_intel
-Checking test 158 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 121.401423
- 0: The maximum resident set size (KB) = 1012620
-
-Test 158 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_ciceC_cfsr_intel
-Checking test 159 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 124.760673
- 0: The maximum resident set size (KB) = 1144692
-
-Test 159 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_cfsr_intel
-Checking test 160 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 125.566252
- 0: The maximum resident set size (KB) = 1151772
-
-Test 160 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_gefs_intel
-Checking test 161 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 119.276869
- 0: The maximum resident set size (KB) = 1003560
-
-Test 161 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_cfsr_intel
-Checking test 162 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 306.912649
- 0: The maximum resident set size (KB) = 1157404
-
-Test 162 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_gefs_intel
-Checking test 163 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 297.418474
- 0: The maximum resident set size (KB) = 1155600
-
-Test 163 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_multiple_files_cfsr_intel
-Checking test 164 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 122.715134
- 0: The maximum resident set size (KB) = 1155500
-
-Test 164 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_3072x1536_cfsr_intel
-Checking test 165 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 178.475650
- 0: The maximum resident set size (KB) = 2383908
-
-Test 165 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_gfs_intel
-Checking test 166 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 182.093891
- 0: The maximum resident set size (KB) = 2462080
-
-Test 166 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_debug_cfsr_intel
-Checking test 167 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
- 0: The total amount of wall time = 304.262564
- 0: The maximum resident set size (KB) = 1070708
-
-Test 167 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_faster_intel
-Checking test 168 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 123.853572
- 0: The maximum resident set size (KB) = 1153504
-
-Test 168 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_gswp3_intel
-Checking test 169 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
- 0: The total amount of wall time = 54.556217
- 0: The maximum resident set size (KB) = 339208
-
-Test 169 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_intel
-Checking test 170 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 50.246439
- 0: The maximum resident set size (KB) = 556460
-
-Test 170 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_rst_intel
-Checking test 171 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 34.788009
- 0: The maximum resident set size (KB) = 558684
-
-Test 171 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_sbs_intel
-Checking test 172 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 393.686892
- 0: The maximum resident set size (KB) = 1646876
-
-Test 172 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_intel
-Checking test 173 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 391.185936
- 0: The maximum resident set size (KB) = 1640980
-
-Test 173 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_atmlnd_intel
-Checking test 174 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 197.423635
- 0: The maximum resident set size (KB) = 943504
-
-Test 174 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmwav_control_noaero_p8_intel
-Checking test 175 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
- 0: The total amount of wall time = 87.123010
- 0: The maximum resident set size (KB) = 1690380
-
-Test 175 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_atmwav_intel
-Checking test 176 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
- 0: The total amount of wall time = 85.909148
- 0: The maximum resident set size (KB) = 693668
-
-Test 176 control_atmwav_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_intel
-Checking test 177 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 207.900695
- 0: The maximum resident set size (KB) = 1786704
-
-Test 177 atmaero_control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_intel
-Checking test 178 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 248.446801
- 0: The maximum resident set size (KB) = 1810340
-
-Test 178 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_micro_intel
-Checking test 179 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 262.880486
- 0: The maximum resident set size (KB) = 1818912
-
-Test 179 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_atmaq_debug_intel
-Checking test 180 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
- Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 995.403334
- 0: The maximum resident set size (KB) = 4589524
-
-Test 180 regional_atmaq_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_gnu
-Checking test 181 control_c48_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 563.126826
-0: The maximum resident set size (KB) = 856372
-
-Test 181 control_c48_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_gnu
-Checking test 182 control_stochy_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 128.952842
- 0: The maximum resident set size (KB) = 727584
-
-Test 182 control_stochy_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_gnu
-Checking test 183 control_ras_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 218.740789
- 0: The maximum resident set size (KB) = 730840
-
-Test 183 control_ras_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_gnu
-Checking test 184 control_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 210.224228
- 0: The maximum resident set size (KB) = 1508732
-
-Test 184 control_p8_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_gnu
-Checking test 185 control_p8_ugwpv1_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 202.932154
- 0: The maximum resident set size (KB) = 1509904
-
-Test 185 control_p8_ugwpv1_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_gnu
-Checking test 186 control_flake_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 256.130493
- 0: The maximum resident set size (KB) = 806960
-
-Test 186 control_flake_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_gnu
-Checking test 187 rap_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 451.330519
- 0: The maximum resident set size (KB) = 1091208
-
-Test 187 rap_control_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_gnu
-Checking test 188 rap_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 458.959764
- 0: The maximum resident set size (KB) = 1088776
-
-Test 188 rap_decomp_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_gnu
-Checking test 189 rap_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 420.439109
- 0: The maximum resident set size (KB) = 1149668
-
-Test 189 rap_2threads_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_gnu
-Checking test 190 rap_restart_gnu results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 229.913596
- 0: The maximum resident set size (KB) = 885032
-
-Test 190 rap_restart_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_gnu
-Checking test 191 rap_sfcdiff_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 463.113479
- 0: The maximum resident set size (KB) = 1087380
-
-Test 191 rap_sfcdiff_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_gnu
-Checking test 192 rap_sfcdiff_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 464.314001
- 0: The maximum resident set size (KB) = 1089012
-
-Test 192 rap_sfcdiff_decomp_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_gnu
-Checking test 193 rap_sfcdiff_restart_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 332.598656
- 0: The maximum resident set size (KB) = 883832
-
-Test 193 rap_sfcdiff_restart_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_gnu
-Checking test 194 hrrr_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 236.622943
- 0: The maximum resident set size (KB) = 1077468
-
-Test 194 hrrr_control_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_noqr_gnu
-Checking test 195 hrrr_control_noqr_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 235.403588
- 0: The maximum resident set size (KB) = 1137576
-
-Test 195 hrrr_control_noqr_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_gnu
-Checking test 196 hrrr_control_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 213.903469
- 0: The maximum resident set size (KB) = 1047692
-
-Test 196 hrrr_control_2threads_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_gnu
-Checking test 197 hrrr_control_decomp_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 233.791135
- 0: The maximum resident set size (KB) = 1072556
-
-Test 197 hrrr_control_decomp_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_gnu
-Checking test 198 hrrr_control_restart_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 118.627056
- 0: The maximum resident set size (KB) = 881496
-
-Test 198 hrrr_control_restart_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_noqr_gnu
-Checking test 199 hrrr_control_restart_noqr_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 118.462913
- 0: The maximum resident set size (KB) = 932008
-
-Test 199 hrrr_control_restart_noqr_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_gnu
-Checking test 200 rrfs_v1beta_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 449.021288
- 0: The maximum resident set size (KB) = 1085288
-
-Test 200 rrfs_v1beta_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_gnu
-Checking test 201 control_diag_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 69.200372
- 0: The maximum resident set size (KB) = 770844
-
-Test 201 control_diag_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_gnu
-Checking test 202 regional_debug_gnu results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 377.156934
- 0: The maximum resident set size (KB) = 921560
-
-Test 202 regional_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_gnu
-Checking test 203 rap_control_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 114.576153
- 0: The maximum resident set size (KB) = 1100672
-
-Test 203 rap_control_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_gnu
-Checking test 204 hrrr_control_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 110.673883
- 0: The maximum resident set size (KB) = 1084332
-
-Test 204 hrrr_control_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_gnu
-Checking test 205 hrrr_gf_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 115.786205
- 0: The maximum resident set size (KB) = 1088028
-
-Test 205 hrrr_gf_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_gnu
-Checking test 206 hrrr_c3_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 111.138244
- 0: The maximum resident set size (KB) = 1092616
-
-Test 206 hrrr_c3_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_gnu
-Checking test 207 rap_diag_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 122.113608
- 0: The maximum resident set size (KB) = 1265044
-
-Test 207 rap_diag_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_gnu
-Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 185.147772
- 0: The maximum resident set size (KB) = 1090592
-
-Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_gnu
-Checking test 209 rap_progcld_thompson_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 120.514499
- 0: The maximum resident set size (KB) = 1097060
-
-Test 209 rap_progcld_thompson_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_gnu
-Checking test 210 rrfs_v1beta_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 114.877696
- 0: The maximum resident set size (KB) = 1093384
-
-Test 210 rrfs_v1beta_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_gnu
-Checking test 211 control_ras_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 63.907110
- 0: The maximum resident set size (KB) = 721796
-
-Test 211 control_ras_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_gnu
-Checking test 212 control_stochy_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 74.901388
- 0: The maximum resident set size (KB) = 723000
-
-Test 212 control_stochy_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_gnu
-Checking test 213 control_debug_p8_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 81.051961
- 0: The maximum resident set size (KB) = 1500556
-
-Test 213 control_debug_p8_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_gnu
-Checking test 214 rap_flake_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 112.491500
- 0: The maximum resident set size (KB) = 1092684
-
-Test 214 rap_flake_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_gnu
-Checking test 215 rap_clm_lake_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 127.679090
- 0: The maximum resident set size (KB) = 1094048
-
-Test 215 rap_clm_lake_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_gnu
-Checking test 216 gnv1_c96_no_nest_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 200.545789
- 0: The maximum resident set size (KB) = 1100544
-
-Test 216 gnv1_c96_no_nest_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_gnu
-Checking test 217 rap_control_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 429.953691
- 0: The maximum resident set size (KB) = 962488
-
-Test 217 rap_control_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_gnu
-Checking test 218 hrrr_control_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 226.310231
- 0: The maximum resident set size (KB) = 955820
-
-Test 218 hrrr_control_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_gnu
-Checking test 219 rap_2threads_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 390.828922
- 0: The maximum resident set size (KB) = 998460
-
-Test 219 rap_2threads_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_gnu
-Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 201.202874
- 0: The maximum resident set size (KB) = 872020
-
-Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_gnu
-Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 222.730813
- 0: The maximum resident set size (KB) = 953576
-
-Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_gnu
-Checking test 222 rap_restart_dyn32_phy32_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 321.277583
- 0: The maximum resident set size (KB) = 860768
-
-Test 222 rap_restart_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_gnu
-Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 111.256666
- 0: The maximum resident set size (KB) = 857124
-
-Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_gnu
-Checking test 224 conus13km_control_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 147.609195
- 0: The maximum resident set size (KB) = 1268964
-
-Test 224 conus13km_control_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_gnu
-Checking test 225 conus13km_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 70.638012
- 0: The maximum resident set size (KB) = 1177256
-
-Test 225 conus13km_2threads_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_gnu
-Checking test 226 conus13km_restart_mismatch_gnu results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 82.444567
- 0: The maximum resident set size (KB) = 944856
-
-Test 226 conus13km_restart_mismatch_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_gnu
-Checking test 227 rap_control_dyn64_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 254.112351
- 0: The maximum resident set size (KB) = 988508
-
-Test 227 rap_control_dyn64_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_gnu
-Checking test 228 rap_control_debug_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 110.983948
- 0: The maximum resident set size (KB) = 976308
-
-Test 228 rap_control_debug_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_gnu
-Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 108.601448
- 0: The maximum resident set size (KB) = 970300
-
-Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_gnu
-Checking test 230 conus13km_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 322.248191
- 0: The maximum resident set size (KB) = 1283340
-
-Test 230 conus13km_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_gnu
-Checking test 231 conus13km_debug_qr_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 337.325667
- 0: The maximum resident set size (KB) = 973308
-
-Test 231 conus13km_debug_qr_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_gnu
-Checking test 232 conus13km_debug_2threads_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 194.866941
- 0: The maximum resident set size (KB) = 1191440
-
-Test 232 conus13km_debug_2threads_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_gnu
-Checking test 233 conus13km_radar_tten_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 328.741249
- 0: The maximum resident set size (KB) = 1349176
-
-Test 233 conus13km_radar_tten_debug_gnu PASS
-
-
-baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu
-working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_gnu
-Checking test 234 rap_control_dyn64_phy32_debug_gnu results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 117.402626
- 0: The maximum resident set size (KB) = 1000200
-
-Test 234 rap_control_dyn64_phy32_debug_gnu PASS
-REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 17:50:43 CST 2024
-Elapsed time: 02h:23m:03s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1846065
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nems
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:13]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:28](1890 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:57]
+PASS -- TEST 'cpld_control_gfsv17_intel' [26:06, 13:24](1767 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:19, 14:00](2184 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1184 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:45, 15:08](1695 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:35]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:13, 20:12](1734 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:06, 12:27]
+PASS -- TEST 'cpld_control_p8_intel' [09:52, 07:33](2091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 07:41](2060 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [16:05, 04:18](1971 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:37](1985 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [16:04, 04:16](1744 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:59](2496 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:28](2074 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:23](1886 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 07:29](2095 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [25:32, 15:37](2815 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 05:51](2920 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 08:49](3623 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:33, 06:09](3612 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 04:59](2029 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:05, 11:47]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:42, 07:09](1773 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:53, 03:52](1817 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:17]
+PASS -- TEST 'cpld_debug_p8_intel' [09:00, 06:49](2064 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:05, 06:05]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:38](1792 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:59]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:57](1825 MB)
+
+PASS -- COMPILE 's2s_intel' [11:05, 09:56]
+PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:13](2839 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:06, 14:01]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 07:18](2065 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:07, 15:40]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:52, 14:00](1811 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:42](1296 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:27](1726 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 21:14](1781 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:31]
+PASS -- TEST 'control_flake_intel' [18:17, 02:50](728 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [17:18, 02:04](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:25, 02:18](677 MB)
+PASS -- TEST 'control_latlon_intel' [18:17, 02:09](671 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:22, 02:11](667 MB)
+PASS -- TEST 'control_c48_intel' [21:22, 05:45](859 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [21:20, 05:46](861 MB)
+PASS -- TEST 'control_c192_intel' [21:26, 07:52](972 MB)
+PASS -- TEST 'control_c384_intel' [16:11, 08:14](1462 MB)
+PASS -- TEST 'control_c384gdas_intel' [21:49, 07:18](1532 MB)
+PASS -- TEST 'control_stochy_intel' [15:17, 01:26](670 MB)
+PASS -- TEST 'control_stochy_restart_intel' [13:24, 00:58](545 MB)
+PASS -- TEST 'control_lndp_intel' [17:20, 01:21](678 MB)
+PASS -- TEST 'control_iovr4_intel' [17:19, 02:04](667 MB)
+PASS -- TEST 'control_iovr5_intel' [16:21, 02:05](667 MB)
+PASS -- TEST 'control_p8_intel' [13:47, 02:35](1635 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:48, 02:33](1644 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:52, 02:25](1652 MB)
+PASS -- TEST 'control_restart_p8_intel' [09:44, 01:30](917 MB)
+PASS -- TEST 'control_noqr_p8_intel' [13:39, 02:27](1637 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 01:29](980 MB)
+PASS -- TEST 'control_decomp_p8_intel' [14:42, 02:32](1628 MB)
+PASS -- TEST 'control_2threads_p8_intel' [13:37, 02:20](1738 MB)
+PASS -- TEST 'control_p8_lndp_intel' [15:34, 04:22](1648 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [17:55, 03:32](1712 MB)
+PASS -- TEST 'control_p8_mynn_intel' [15:51, 02:38](1657 MB)
+PASS -- TEST 'merra2_thompson_intel' [14:56, 03:03](1655 MB)
+PASS -- TEST 'regional_control_intel' [11:28, 04:27](958 MB)
+PASS -- TEST 'regional_restart_intel' [04:23, 02:35](1097 MB)
+PASS -- TEST 'regional_decomp_intel' [11:27, 04:42](948 MB)
+PASS -- TEST 'regional_2threads_intel' [09:27, 02:50](924 MB)
+PASS -- TEST 'regional_noquilt_intel' [10:30, 04:20](1491 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:31, 04:27](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [10:26, 04:28](961 MB)
+PASS -- TEST 'regional_wofs_intel' [11:25, 05:31](2096 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:07]
+PASS -- TEST 'rap_control_intel' [15:35, 06:39](1200 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:42, 03:45](1399 MB)
+PASS -- TEST 'rap_decomp_intel' [14:33, 07:00](1143 MB)
+PASS -- TEST 'rap_2threads_intel' [13:47, 06:20](1359 MB)
+PASS -- TEST 'rap_restart_intel' [05:47, 03:26](1146 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [13:45, 06:43](1197 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:45, 06:57](1144 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:52](1195 MB)
+PASS -- TEST 'hrrr_control_intel' [10:30, 03:25](1076 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:29](1058 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [08:43, 03:04](1120 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:47](1028 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:50, 06:25](1203 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 07:39](2005 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:22](2174 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:05, 06:54]
+PASS -- TEST 'control_csawmg_intel' [07:22, 05:06](808 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:24, 05:05](824 MB)
+PASS -- TEST 'control_ras_intel' [04:12, 02:54](802 MB)
+
+PASS -- COMPILE 'wam_intel' [07:05, 05:58]
+PASS -- TEST 'control_wam_intel' [03:18, 01:50](789 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:07, 09:20]
+PASS -- TEST 'control_p8_faster_intel' [04:49, 02:17](1634 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:25, 04:10](956 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:34]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:18](834 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:15](828 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](837 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:16](827 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:22](879 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:27, 03:18](873 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:15, 02:15](836 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:20, 02:16](885 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](1657 MB)
+PASS -- TEST 'regional_debug_intel' [16:24, 14:03](898 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1221 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1212 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:58](1226 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:58](1221 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 04:01](1220 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:08](1304 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:03](1219 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:02](1218 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:03](1224 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:00](1222 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:50](1207 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:58](1212 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:35](1210 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:57](1210 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:11](1224 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:59](1211 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:48](1214 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 02:46]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 06:58]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 03:14](1305 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:25](1142 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:53](1025 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:05](1289 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:37](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:01](998 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 04:03](1098 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:33](967 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 09:28]
+PASS -- TEST 'conus13km_control_intel' [03:45, 01:42](1302 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1201 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1156 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 07:06]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:40](1075 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:09]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:53](1107 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:52](1093 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1342 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:44](1023 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:39](1244 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:26, 11:34](1397 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:03]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 04:02](1147 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:05, 10:00]
+PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:15](874 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1278 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:06, 06:18](968 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:59, 13:41](983 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 14:51](1012 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:23](605 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:46](616 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:47](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 07:40](581 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:48](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:36](622 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:46](677 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:25](450 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:05, 03:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:17](638 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:06, 10:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 17:00](761 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:49, 17:18](852 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:52, 10:33](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:02]
+PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:23](950 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:21](945 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:26](1349 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:06, 06:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:05](1147 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:21](1104 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1024 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:05](1020 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:05](1023 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:09](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1017 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 04:53](1161 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:55, 04:48](1151 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1142 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:58](2434 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 02:59](2378 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:39]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:05](1066 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:11]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1156 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:51]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:49](335 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:47](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:33](558 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:46]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:52](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:40](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:50](956 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:06, 09:02]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:29](1700 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:05, 08:57]
+PASS -- TEST 'control_atmwav_intel' [03:39, 01:27](699 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:05, 06:47]
+PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:34](1790 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:16](1809 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:29](1830 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:06, 06:52]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:05, 02:40]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:33](4570 MB)
+
+PASS -- COMPILE 'atm_gnu' [08:06, 03:40]
+PASS -- TEST 'control_c48_gnu' [11:27, 09:30](859 MB)
+PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](726 MB)
+PASS -- TEST 'control_ras_gnu' [05:15, 03:41](732 MB)
+PASS -- TEST 'control_p8_gnu' [05:46, 03:38](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1508 MB)
+PASS -- TEST 'control_flake_gnu' [06:14, 04:27](791 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [08:06, 03:41]
+PASS -- TEST 'rap_control_gnu' [09:41, 07:38](1088 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:37, 07:48](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:29, 07:11](1128 MB)
+PASS -- TEST 'rap_restart_gnu' [05:34, 03:51](884 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1087 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 07:59](1096 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:46, 05:40](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:32, 04:09](1074 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:05](1143 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:39](1026 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:45, 03:59](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:01](880 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:16, 02:00](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:38](1082 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:06, 03:45]
+PASS -- TEST 'control_diag_debug_gnu' [03:19, 01:11](771 MB)
+PASS -- TEST 'regional_debug_gnu' [08:27, 06:32](922 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:55](1095 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:55](1087 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:01](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:58](1092 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:04](1269 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:09](1094 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:59](1101 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:57](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:11](722 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:20](720 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:15](1505 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:14, 01:57](1099 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:17](1101 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [12:05, 03:24]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:05, 04:27]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:10](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:46](953 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:39, 06:36](968 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:34](892 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:50](949 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 05:23](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:14, 01:57](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:22, 01:09](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:25](926 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 06:17]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:27, 04:20](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:05, 05:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:03](977 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:54](970 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:23](1281 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:27](954 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:14](1196 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:21](1348 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:04](1000 MB)
+
+PASS -- COMPILE 's2swa_gnu' [17:06, 15:29]
+
+PASS -- COMPILE 's2s_gnu' [16:05, 14:56]
+
+PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:42]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 14:15]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:40]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20]
+
+SYNOPSIS:
+Starting Date/Time: 20240219 08:33:37
+Ending Date/Time: 20240219 10:09:34
+Total Time: 01h:36m:17s
+Compiles Completed: 53/53
+Tests Completed: 234/234
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF HERCULES REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 131777ec7c..11a58e0fe6 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,5529 +1,329 @@
-Tue Feb 13 22:06:29 UTC 2024
-Start Regression test
+====START OF JET REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atm_debug_dyn32_intel elapsed time 421 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 1977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atm_faster_dyn32_intel elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmaero_intel elapsed time 1827 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atml_intel elapsed time 2220 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmw_intel elapsed time 1847 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile atmwm_intel elapsed time 1824 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile csawmg_intel elapsed time 1858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 532 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafs_all_intel elapsed time 1942 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile hafsw_intel elapsed time 2010 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn32_phy32_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-Compile s2s_aoflux_intel elapsed time 1916 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 2104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 2904 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 2246 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 3032 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 5527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 428.106728
- 0: The maximum resident set size (KB) = 1760040
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1234.472812
- 0: The maximum resident set size (KB) = 1637172
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1328.242245
- 0: The maximum resident set size (KB) = 1853780
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 618.249105
- 0: The maximum resident set size (KB) = 975816
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1437.722109
- 0: The maximum resident set size (KB) = 1626564
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_intel
-Checking test 006 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 465.499320
- 0: The maximum resident set size (KB) = 1807368
-
-Test 006 cpld_control_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8.v2.sfc_intel
-Checking test 007 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 461.766353
- 0: The maximum resident set size (KB) = 1800652
-
-Test 007 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_p8_intel
-Checking test 008 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 283.621669
- 0: The maximum resident set size (KB) = 1691528
-
-Test 008 cpld_restart_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_qr_p8_intel
-Checking test 009 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 481.883916
- 0: The maximum resident set size (KB) = 1820636
-
-Test 009 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_qr_p8_intel
-Checking test 010 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 304.624469
- 0: The maximum resident set size (KB) = 1713348
-
-Test 010 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_2threads_p8_intel
-Checking test 011 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 448.961949
- 0: The maximum resident set size (KB) = 2203392
-
-Test 011 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_decomp_p8_intel
-Checking test 012 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 470.756992
- 0: The maximum resident set size (KB) = 1789400
-
-Test 012 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_p8_intel
-Checking test 013 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 411.808347
- 0: The maximum resident set size (KB) = 1755232
-
-Test 013 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_ciceC_p8_intel
-Checking test 014 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 465.533393
- 0: The maximum resident set size (KB) = 1803176
-
-Test 014 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_s2sa_p8_intel
-Checking test 015 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 428.550608
- 0: The maximum resident set size (KB) = 1768592
-
-Test 015 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_intel
-Checking test 016 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 388.072112
- 0: The maximum resident set size (KB) = 1636684
-
-Test 016 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_nowave_noaero_p8_intel
-Checking test 017 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 367.239966
- 0: The maximum resident set size (KB) = 1682884
-
-Test 017 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_p8_intel
-Checking test 018 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 639.767942
- 0: The maximum resident set size (KB) = 1818484
-
-Test 018 cpld_debug_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_noaero_p8_intel
-Checking test 019 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 432.569234
- 0: The maximum resident set size (KB) = 1652628
-
-Test 019 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_agrid_intel
-Checking test 020 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 352.667681
- 0: The maximum resident set size (KB) = 1697232
-
-Test 020 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_c48_intel
-Checking test 021 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 769.192221
- 0: The maximum resident set size (KB) = 2778724
-
-Test 021 cpld_control_c48_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_faster_intel
-Checking test 022 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 512.516485
- 0: The maximum resident set size (KB) = 1815400
-
-Test 022 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_pdlib_p8_intel
-Checking test 023 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1252.772762
- 0: The maximum resident set size (KB) = 1666960
-
-Test 023 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_pdlib_p8_intel
-Checking test 024 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 627.079437
- 0: The maximum resident set size (KB) = 1027224
-
-Test 024 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_pdlib_p8_intel
-Checking test 025 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1502.863638
- 0: The maximum resident set size (KB) = 1635456
-
-Test 025 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_pdlib_p8_intel
-Checking test 026 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1938.562927
- 0: The maximum resident set size (KB) = 1673760
-
-Test 026 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_flake_intel
-Checking test 027 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 294.059572
- 0: The maximum resident set size (KB) = 646344
-
-Test 027 control_flake_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_intel
-Checking test 028 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
- 0: The total amount of wall time = 217.984223
- 0: The maximum resident set size (KB) = 594980
-
-Test 028 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_parallel_intel
-Checking test 029 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 227.675308
- 0: The maximum resident set size (KB) = 592904
-
-Test 029 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_latlon_intel
-Checking test 030 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 215.090885
- 0: The maximum resident set size (KB) = 596860
-
-Test 030 control_latlon_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_intel
-Checking test 031 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 216.803775
- 0: The maximum resident set size (KB) = 599764
-
-Test 031 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48_intel
-Checking test 032 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 602.373429
-0: The maximum resident set size (KB) = 849348
-
-Test 032 control_c48_intel PASS
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48.v2.sfc_intel
-Checking test 033 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 605.497812
-0: The maximum resident set size (KB) = 846408
-
-Test 033 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c192_intel
-Checking test 034 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 765.277079
- 0: The maximum resident set size (KB) = 724512
-
-Test 034 control_c192_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384_intel
-Checking test 035 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 1022.072042
- 0: The maximum resident set size (KB) = 900384
-
-Test 035 control_c384_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384gdas_intel
-Checking test 036 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 929.851752
- 0: The maximum resident set size (KB) = 1022636
-
-Test 036 control_c384gdas_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_intel
-Checking test 037 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 139.297600
- 0: The maximum resident set size (KB) = 598852
-
-Test 037 control_stochy_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_restart_intel
-Checking test 038 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 76.713317
- 0: The maximum resident set size (KB) = 431932
-
-Test 038 control_stochy_restart_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_intel
-Checking test 039 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 134.387228
- 0: The maximum resident set size (KB) = 597496
-
-Test 039 control_lndp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr4_intel
-Checking test 040 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 209.365755
- 0: The maximum resident set size (KB) = 590860
-
-Test 040 control_iovr4_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr5_intel
-Checking test 041 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 209.250823
- 0: The maximum resident set size (KB) = 595660
-
-Test 041 control_iovr5_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_intel
-Checking test 042 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 242.335049
- 0: The maximum resident set size (KB) = 1570384
-
-Test 042 control_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8.v2.sfc_intel
-Checking test 043 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 240.935650
- 0: The maximum resident set size (KB) = 1569536
-
-Test 043 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_ugwpv1_intel
-Checking test 044 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 244.369269
- 0: The maximum resident set size (KB) = 1570384
-
-Test 044 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_intel
-Checking test 045 control_restart_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 123.232688
- 0: The maximum resident set size (KB) = 813224
-
-Test 045 control_restart_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_noqr_p8_intel
-Checking test 046 control_noqr_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf021.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf021.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 235.400317
- 0: The maximum resident set size (KB) = 1545972
-
-Test 046 control_noqr_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_noqr_p8_intel
-Checking test 047 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 115.787462
- 0: The maximum resident set size (KB) = 836744
-
-Test 047 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_decomp_p8_intel
-Checking test 048 control_decomp_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 250.225493
- 0: The maximum resident set size (KB) = 1564548
-
-Test 048 control_decomp_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_2threads_p8_intel
-Checking test 049 control_2threads_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 227.797386
- 0: The maximum resident set size (KB) = 1663432
-
-Test 049 control_2threads_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_lndp_intel
-Checking test 050 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
- 0: The total amount of wall time = 439.092017
- 0: The maximum resident set size (KB) = 1568156
-
-Test 050 control_p8_lndp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_rrtmgp_intel
-Checking test 051 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 322.024555
- 0: The maximum resident set size (KB) = 1628036
-
-Test 051 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_mynn_intel
-Checking test 052 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 242.210664
- 0: The maximum resident set size (KB) = 1577980
-
-Test 052 control_p8_mynn_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/merra2_thompson_intel
-Checking test 053 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 286.232530
- 0: The maximum resident set size (KB) = 1581064
-
-Test 053 merra2_thompson_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_intel
-Checking test 054 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 465.059233
- 0: The maximum resident set size (KB) = 754924
-
-Test 054 regional_control_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_restart_intel
-Checking test 055 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 232.631079
- 0: The maximum resident set size (KB) = 924908
-
-Test 055 regional_restart_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_decomp_intel
-Checking test 056 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 480.682582
- 0: The maximum resident set size (KB) = 750780
-
-Test 056 regional_decomp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2threads_intel
-Checking test 057 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 300.688659
- 0: The maximum resident set size (KB) = 747208
-
-Test 057 regional_2threads_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_netcdf_parallel_intel
-Checking test 058 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
- 0: The total amount of wall time = 462.175279
- 0: The maximum resident set size (KB) = 759244
-
-Test 058 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2dwrtdecomp_intel
-Checking test 059 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 460.849069
- 0: The maximum resident set size (KB) = 753572
-
-Test 059 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_intel
-Checking test 060 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 622.549939
- 0: The maximum resident set size (KB) = 982332
-
-Test 060 rap_control_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_intel
-Checking test 061 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 378.262347
- 0: The maximum resident set size (KB) = 1191512
-
-Test 061 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_decomp_intel
-Checking test 062 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 646.654023
- 0: The maximum resident set size (KB) = 974212
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_75827
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: h-nems
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [37:20, 36:01]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 07:11](1756 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:26, 51:44]
+PASS -- TEST 'cpld_control_gfsv17_intel' [25:36, 21:15](1639 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:13](1874 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:07](977 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:06, 24:43](1611 MB)
+
+PASS -- COMPILE 's2swa_intel' [39:21, 37:53]
+PASS -- TEST 'cpld_control_p8_intel' [10:27, 07:30](1800 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 07:31](1792 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:18](1693 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 07:35](1823 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:26](1715 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [25:35, 23:04](2182 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:24, 07:31](1792 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:51, 06:24](1753 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:34](1801 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:09](1765 MB)
+
+PASS -- COMPILE 's2sw_intel' [36:19, 34:19]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 06:15](1643 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 06:09](1695 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:37]
+PASS -- TEST 'cpld_debug_p8_intel' [14:47, 10:28](1821 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:09]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:37, 10:34](1648 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:17, 31:52]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1693 MB)
+
+PASS -- COMPILE 's2s_intel' [32:17, 31:06]
+PASS -- TEST 'cpld_control_c48_intel' [15:24, 12:53](2787 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:40, 32:19]
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:05](1792 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:23, 45:56]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 21:05](1661 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 09:52](1023 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:00, 23:56](1655 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:51]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:49, 32:27](1666 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [34:18, 32:51]
+PASS -- TEST 'control_flake_intel' [06:33, 04:47](638 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:23](594 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:40, 03:54](595 MB)
+PASS -- TEST 'control_latlon_intel' [05:28, 03:17](595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:26](594 MB)
+PASS -- TEST 'control_c48_intel' [11:36, 10:07](842 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:10](846 MB)
+PASS -- TEST 'control_c192_intel' [16:59, 12:41](724 MB)
+PASS -- TEST 'control_c384_intel' [21:02, 17:25](899 MB)
+PASS -- TEST 'control_c384gdas_intel' [22:09, 16:34](1031 MB)
+PASS -- TEST 'control_stochy_intel' [04:28, 02:15](597 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](432 MB)
+PASS -- TEST 'control_lndp_intel' [04:29, 02:11](594 MB)
+PASS -- TEST 'control_iovr4_intel' [05:30, 03:26](597 MB)
+PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](593 MB)
+PASS -- TEST 'control_p8_intel' [07:52, 04:08](1567 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:49](1568 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:47](1559 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:25, 02:08](804 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:45](1546 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:03](827 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:04](1545 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:13, 03:44](1647 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:56, 06:59](1561 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 05:07](1618 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:57](1565 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:57, 04:32](1566 MB)
+PASS -- TEST 'regional_control_intel' [10:45, 09:04](752 MB)
+PASS -- TEST 'regional_restart_intel' [05:43, 03:46](935 MB)
+PASS -- TEST 'regional_decomp_intel' [10:44, 08:45](756 MB)
+PASS -- TEST 'regional_2threads_intel' [06:43, 04:18](745 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:46, 08:57](758 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [10:44, 08:41](756 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:20, 31:23]
+PASS -- TEST 'rap_control_intel' [13:40, 10:14](973 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 05:55](1211 MB)
+PASS -- TEST 'rap_decomp_intel' [13:03, 10:53](963 MB)
+PASS -- TEST 'rap_2threads_intel' [12:39, 10:02](1063 MB)
+PASS -- TEST 'rap_restart_intel' [08:15, 05:12](975 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [13:37, 10:29](973 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 11:11](968 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [11:52, 08:24](982 MB)
+PASS -- TEST 'hrrr_control_intel' [08:11, 05:36](962 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 05:46](962 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:14](1050 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:49](907 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [13:40, 10:19](964 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:43](1929 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:11](1920 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:17, 30:19]
+PASS -- TEST 'control_csawmg_intel' [10:46, 08:41](678 MB)
+PASS -- TEST 'control_csawmgt_intel' [11:50, 09:53](682 MB)
+PASS -- TEST 'control_ras_intel' [07:27, 05:13](652 MB)
+
+PASS -- COMPILE 'wam_intel' [31:18, 29:22]
+PASS -- TEST 'control_wam_intel' [04:25, 02:40](494 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 30:53]
+PASS -- TEST 'control_p8_faster_intel' [06:55, 03:31](1556 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:55, 06:29](749 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:08]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:29, 05:14](749 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 05:08](750 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:21, 04:49](755 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:21, 04:43](757 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](802 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [08:43, 06:18](798 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:22, 04:10](760 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:37, 04:29](809 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:56, 05:27](1573 MB)
+PASS -- TEST 'regional_debug_intel' [25:53, 22:41](769 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:32, 07:38](1139 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [10:00, 06:22](1134 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:54, 06:32](1137 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:03](1138 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:02](1141 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:25](1221 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:12](1138 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:09](1143 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:09](1143 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:01](1132 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:55](1138 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:29, 06:00](1139 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:34, 09:50](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1134 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:25](1131 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:30, 06:05](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:39](1146 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:08, 04:14]
+PASS -- TEST 'control_wam_debug_intel' [07:24, 06:05](453 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:17, 29:12]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 05:23](1070 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 08:17](897 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 04:24](856 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 07:47](936 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:04](916 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 04:37](851 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:08](884 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](840 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 44:27]
+PASS -- TEST 'conus13km_control_intel' [05:14, 02:45](1092 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:15](1045 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:37](1009 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 29:40]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:06, 05:32](892 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:30]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1009 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:54](1010 MB)
+PASS -- TEST 'conus13km_debug_intel' [20:14, 18:11](1123 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [23:15, 20:51](834 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:02, 10:31](1077 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:07, 18:12](1188 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:09, 04:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 06:07](1051 MB)
+
+PASS -- COMPILE 'hafsw_intel' [34:23, 32:59]
+PASS -- TEST 'hafs_regional_atm_intel' [12:41, 09:37](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 11:19](1076 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:35, 10:58](762 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:47, 17:03](801 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:40, 19:35](813 MB)
+PASS -- TEST 'gnv1_nested_intel' [12:01, 08:38](771 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:17, 30:53]
+PASS -- TEST 'hafs_regional_docn_intel' [14:05, 09:44](767 MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:09, 08:15]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1040 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:11](1002 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 03:27](916 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:28](914 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:30](911 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:32](1038 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:34](1034 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:26](918 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:56](869 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:52](843 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:32](1047 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:54](2387 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:58](2391 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:24]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:56](985 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1037 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:47]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:23](225 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:12](246 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:35, 01:03](243 MB)
+
+PASS -- COMPILE 'atml_intel' [34:19, 32:27]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:03, 12:11](1585 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [15:04, 11:18](1578 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 06:20](856 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:20, 31:08]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:53, 02:24](1580 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:17, 30:40]
+PASS -- TEST 'control_atmwav_intel' [05:26, 02:13](604 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 31:08]
+PASS -- TEST 'atmaero_control_p8_intel' [08:44, 05:12](1672 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:39, 06:26](1694 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 06:42](1704 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240219 14:40:09
+Ending Date/Time: 20240219 18:32:24
+Total Time: 03h:52m:41s
+Compiles Completed: 33/33
+Tests Completed: 160/161
+Failed Tests:
+* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
+-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2061/tests/logs/log_jet/rt_hafs_regional_docn_oisst_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF JET REGRESSION TESTING LOG====
+====START OF JET REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Test 062 rap_decomp_intel PASS
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_intel
-Checking test 063 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_299389
- 0: The total amount of wall time = 596.444166
- 0: The maximum resident set size (KB) = 1076012
-
-Test 063 rap_2threads_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_intel
-Checking test 064 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 311.632937
- 0: The maximum resident set size (KB) = 978004
-
-Test 064 rap_restart_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_intel
-Checking test 065 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 615.912751
- 0: The maximum resident set size (KB) = 975292
-
-Test 065 rap_sfcdiff_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_decomp_intel
-Checking test 066 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 655.084638
- 0: The maximum resident set size (KB) = 974472
-
-Test 066 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_restart_intel
-Checking test 067 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 459.124533
- 0: The maximum resident set size (KB) = 984396
-
-Test 067 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_intel
-Checking test 068 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 306.594831
- 0: The maximum resident set size (KB) = 971332
-
-Test 068 hrrr_control_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_intel
-Checking test 069 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 312.725531
- 0: The maximum resident set size (KB) = 969396
-
-Test 069 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_intel
-Checking test 070 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 280.229414
- 0: The maximum resident set size (KB) = 1038324
-
-Test 070 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_intel
-Checking test 071 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 162.782106
- 0: The maximum resident set size (KB) = 903328
-
-Test 071 hrrr_control_restart_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_intel
-Checking test 072 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 592.940855
- 0: The maximum resident set size (KB) = 972816
-
-Test 072 rrfs_v1beta_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_intel
-Checking test 073 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 736.322287
- 0: The maximum resident set size (KB) = 1930496
-
-Test 073 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_nohailnoccn_intel
-Checking test 074 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 727.459835
- 0: The maximum resident set size (KB) = 1926020
-
-Test 074 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_intel
-Checking test 075 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 472.259244
- 0: The maximum resident set size (KB) = 686476
-
-Test 075 control_csawmg_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_intel
-Checking test 076 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 473.776226
- 0: The maximum resident set size (KB) = 689928
-
-Test 076 control_csawmgt_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_intel
-Checking test 077 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 267.668097
- 0: The maximum resident set size (KB) = 651156
-
-Test 077 control_ras_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_intel
-Checking test 078 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
- 0: The total amount of wall time = 182.392103
- 0: The maximum resident set size (KB) = 495612
-
-Test 078 control_wam_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_faster_intel
-Checking test 079 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 203.712492
- 0: The maximum resident set size (KB) = 1565176
-
-Test 079 control_p8_faster_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_faster_intel
-Checking test 080 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 381.544236
- 0: The maximum resident set size (KB) = 751508
-
-Test 080 regional_control_faster_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_debug_intel
-Checking test 081 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
- 0: The total amount of wall time = 195.382809
- 0: The maximum resident set size (KB) = 755236
-
-Test 081 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 193.667470
- 0: The maximum resident set size (KB) = 751360
-
-Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_debug_intel
-Checking test 083 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 213.827979
- 0: The maximum resident set size (KB) = 757576
-
-Test 083 control_stochy_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_debug_intel
-Checking test 084 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 195.171345
- 0: The maximum resident set size (KB) = 754920
-
-Test 084 control_lndp_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_debug_intel
-Checking test 085 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 306.173514
- 0: The maximum resident set size (KB) = 805012
-
-Test 085 control_csawmg_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_debug_intel
-Checking test 086 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 299.189282
- 0: The maximum resident set size (KB) = 799672
-
-Test 086 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_debug_intel
-Checking test 087 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 196.074184
- 0: The maximum resident set size (KB) = 765948
-
-Test 087 control_ras_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_diag_debug_intel
-Checking test 088 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 201.393334
- 0: The maximum resident set size (KB) = 811344
-
-Test 088 control_diag_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_debug_p8_intel
-Checking test 089 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 209.134500
- 0: The maximum resident set size (KB) = 1580264
-
-Test 089 control_debug_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_debug_intel
-Checking test 090 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 1294.571150
- 0: The maximum resident set size (KB) = 767456
-
-Test 090 regional_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_intel
-Checking test 091 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 352.739697
- 0: The maximum resident set size (KB) = 1143984
-
-Test 091 rap_control_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_intel
-Checking test 092 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 351.954139
- 0: The maximum resident set size (KB) = 1129848
-
-Test 092 hrrr_control_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_gf_debug_intel
-Checking test 093 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 356.503727
- 0: The maximum resident set size (KB) = 1143808
-
-Test 093 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_c3_debug_intel
-Checking test 094 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 365.500152
- 0: The maximum resident set size (KB) = 1132220
-
-Test 094 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_drag_suite_debug_intel
-Checking test 095 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 361.455609
- 0: The maximum resident set size (KB) = 1143240
-
-Test 095 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_diag_debug_intel
-Checking test 096 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 370.133226
- 0: The maximum resident set size (KB) = 1225384
-
-Test 096 rap_diag_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_cires_ugwp_debug_intel
-Checking test 097 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 367.080624
- 0: The maximum resident set size (KB) = 1132336
-
-Test 097 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_ugwp_debug_intel
-Checking test 098 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 359.902877
- 0: The maximum resident set size (KB) = 1145848
-
-Test 098 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_lndp_debug_intel
-Checking test 099 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 355.104906
- 0: The maximum resident set size (KB) = 1142676
-
-Test 099 rap_lndp_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_progcld_thompson_debug_intel
-Checking test 100 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 358.139613
- 0: The maximum resident set size (KB) = 1147216
-
-Test 100 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_debug_intel
-Checking test 101 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 349.353756
- 0: The maximum resident set size (KB) = 1131740
-
-Test 101 rap_noah_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_debug_intel
-Checking test 102 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 354.419121
- 0: The maximum resident set size (KB) = 1146220
-
-Test 102 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 585.497395
- 0: The maximum resident set size (KB) = 1131680
-
-Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_debug_intel
-Checking test 104 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 346.524844
- 0: The maximum resident set size (KB) = 1139112
-
-Test 104 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_clm_lake_debug_intel
-Checking test 105 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 446.655388
- 0: The maximum resident set size (KB) = 1143224
-
-Test 105 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_flake_debug_intel
-Checking test 106 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 355.722393
- 0: The maximum resident set size (KB) = 1148008
-
-Test 106 rap_flake_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_c96_no_nest_debug_intel
-Checking test 107 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 623.542340
- 0: The maximum resident set size (KB) = 1149448
-
-Test 107 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_debug_intel
-Checking test 108 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
- 0: The total amount of wall time = 359.428519
- 0: The maximum resident set size (KB) = 433748
-
-Test 108 control_wam_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 343.766126
- 0: The maximum resident set size (KB) = 1079348
-
-Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn32_phy32_intel
-Checking test 110 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 533.275621
- 0: The maximum resident set size (KB) = 897372
-
-Test 110 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_dyn32_phy32_intel
-Checking test 111 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 290.676863
- 0: The maximum resident set size (KB) = 864312
-
-Test 111 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_dyn32_phy32_intel
-Checking test 112 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 516.032694
- 0: The maximum resident set size (KB) = 943856
-
-Test 112 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 286.869536
- 0: The maximum resident set size (KB) = 893000
-
-Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 313.685081
- 0: The maximum resident set size (KB) = 852292
-
-Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_dyn32_phy32_intel
-Checking test 115 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 371.283402
- 0: The maximum resident set size (KB) = 890876
-
-Test 115 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_dyn32_phy32_intel
-Checking test 116 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 137.386903
- 0: The maximum resident set size (KB) = 842772
-
-Test 116 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_control_intel
-Checking test 117 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 160.536175
- 0: The maximum resident set size (KB) = 1094780
-
-Test 117 conus13km_control_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_2threads_intel
-Checking test 118 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 72.572251
- 0: The maximum resident set size (KB) = 1045064
-
-Test 118 conus13km_2threads_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_restart_mismatch_intel
-Checking test 119 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 90.220163
- 0: The maximum resident set size (KB) = 1015708
-
-Test 119 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_intel
-Checking test 120 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 332.349144
- 0: The maximum resident set size (KB) = 894392
-
-Test 120 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_dyn32_phy32_intel
-Checking test 121 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 348.227973
- 0: The maximum resident set size (KB) = 1014940
-
-Test 121 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_dyn32_phy32_intel
-Checking test 122 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 339.975464
- 0: The maximum resident set size (KB) = 1014704
-
-Test 122 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_intel
-Checking test 123 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 1078.617766
- 0: The maximum resident set size (KB) = 1129708
-
-Test 123 conus13km_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_qr_intel
-Checking test 124 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 1086.949583
- 0: The maximum resident set size (KB) = 844356
-
-Test 124 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_2threads_intel
-Checking test 125 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 637.005964
- 0: The maximum resident set size (KB) = 1073244
-
-Test 125 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_radar_tten_debug_intel
-Checking test 126 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 1080.027581
- 0: The maximum resident set size (KB) = 1191248
-
-Test 126 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_debug_intel
-Checking test 127 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 354.388561
- 0: The maximum resident set size (KB) = 1059404
-
-Test 127 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_intel
-Checking test 128 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
- 0: The total amount of wall time = 476.717845
- 0: The maximum resident set size (KB) = 707808
-
-Test 128 hafs_regional_atm_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
- 0: The total amount of wall time = 425.227955
- 0: The maximum resident set size (KB) = 1087020
-
-Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-Test 130 hafs_regional_atm_ocn_intel FAIL
-
-Test 130 hafs_regional_atm_ocn_intel FAIL
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_wav_intel
-Checking test 131 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 990.821542
- 0: The maximum resident set size (KB) = 804264
-
-Test 131 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_ocn_wav_intel
-Checking test 132 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 1079.639482
- 0: The maximum resident set size (KB) = 821332
-
-Test 132 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_nested_intel
-Checking test 133 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 410.179977
- 0: The maximum resident set size (KB) = 763276
-
-Test 133 gnv1_nested_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_intel
-Checking test 134 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 574.086147
- 0: The maximum resident set size (KB) = 763520
-
-Test 134 hafs_regional_docn_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_oisst_intel
-Checking test 135 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 561.841074
- 0: The maximum resident set size (KB) = 747004
-
-Test 135 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_intel
-Checking test 136 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 207.068092
- 0: The maximum resident set size (KB) = 1034420
-
-Test 136 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_restart_cfsr_intel
-Checking test 137 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 121.050281
- 0: The maximum resident set size (KB) = 1007432
-
-Test 137 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_gefs_intel
-Checking test 138 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 204.004465
- 0: The maximum resident set size (KB) = 913884
-
-Test 138 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_iau_gefs_intel
-Checking test 139 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 206.478686
- 0: The maximum resident set size (KB) = 914100
-
-Test 139 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_stochy_gefs_intel
-Checking test 140 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 208.415550
- 0: The maximum resident set size (KB) = 914816
-
-Test 140 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_ciceC_cfsr_intel
-Checking test 141 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 207.675031
- 0: The maximum resident set size (KB) = 1041088
-
-Test 141 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_cfsr_intel
-Checking test 142 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 207.260765
- 0: The maximum resident set size (KB) = 1042384
-
-Test 142 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_gefs_intel
-Checking test 143 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 204.051323
- 0: The maximum resident set size (KB) = 914296
-
-Test 143 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_cfsr_intel
-Checking test 144 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 470.466933
- 0: The maximum resident set size (KB) = 872692
-
-Test 144 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_gefs_intel
-Checking test 145 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 469.482267
- 0: The maximum resident set size (KB) = 831800
-
-Test 145 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_multiple_files_cfsr_intel
-Checking test 146 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 205.678663
- 0: The maximum resident set size (KB) = 1041052
-
-Test 146 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_3072x1536_cfsr_intel
-Checking test 147 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 306.289101
- 0: The maximum resident set size (KB) = 2386896
-
-Test 147 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_gfs_intel
-Checking test 148 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 293.490128
- 0: The maximum resident set size (KB) = 2340200
-
-Test 148 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_debug_cfsr_intel
-Checking test 149 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
- 0: The total amount of wall time = 459.473457
- 0: The maximum resident set size (KB) = 983740
-
-Test 149 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_faster_intel
-Checking test 150 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 238.194888
- 0: The maximum resident set size (KB) = 1036176
-
-Test 150 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_gswp3_intel
-Checking test 151 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
- 0: The total amount of wall time = 108.031724
- 0: The maximum resident set size (KB) = 228376
-
-Test 151 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_intel
-Checking test 152 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 91.316552
- 0: The maximum resident set size (KB) = 248364
-
-Test 152 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_rst_intel
-Checking test 153 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 39.165795
- 0: The maximum resident set size (KB) = 245560
-
-Test 153 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_sbs_intel
-Checking test 154 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 692.889115
- 0: The maximum resident set size (KB) = 1594420
-
-Test 154 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_intel
-Checking test 155 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 683.986966
- 0: The maximum resident set size (KB) = 1582664
-
-Test 155 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_atmlnd_intel
-Checking test 156 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 343.651554
- 0: The maximum resident set size (KB) = 853348
-
-Test 156 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmwav_control_noaero_p8_intel
-Checking test 157 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
- 0: The total amount of wall time = 127.277317
- 0: The maximum resident set size (KB) = 1590272
-
-Test 157 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_atmwav_intel
-Checking test 158 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
- 0: The total amount of wall time = 152.366863
- 0: The maximum resident set size (KB) = 603188
-
-Test 158 control_atmwav_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_intel
-Checking test 159 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 297.366017
- 0: The maximum resident set size (KB) = 1685880
-
-Test 159 atmaero_control_p8_intel PASS
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_intel
-Checking test 160 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 379.443106
- 0: The maximum resident set size (KB) = 1712780
-
-Test 160 atmaero_control_p8_rad_intel PASS Tries: 2
-
-
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_micro_intel
-Checking test 161 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 388.582436
- 0: The maximum resident set size (KB) = 1725884
-
-Test 161 atmaero_control_p8_rad_micro_intel PASS
-
-FAILED TESTS:
-hafs_regional_atm_ocn_intel 130 failed in run_test
-
-REGRESSION TEST FAILED
-Wed Feb 14 02:08:12 UTC 2024
-Elapsed time: 04h:01m:43s. Have a nice day!
-Wed Feb 14 02:14:51 UTC 2024
-Start Regression test
-
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile hafsw_intel elapsed time 1956 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: h-nems
+* (-l) - USE CONFIG FILE: rt.conf
-baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_302887/hafs_regional_atm_ocn_intel
-Checking test 001 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
+PASS -- COMPILE 'hafs_all_intel' [25:14, 23:54]
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:48, 07:05](749 MB)
- 0: The total amount of wall time = 552.777055
- 0: The maximum resident set size (KB) = 764200
+SYNOPSIS:
+Starting Date/Time: 20240221 17:29:27
+Ending Date/Time: 20240221 18:09:29
+Total Time: 00h:40m:09s
+Compiles Completed: 1/1
+Tests Completed: 1/1
-Test 001 hafs_regional_atm_ocn_intel PASS
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+Result: SUCCESS
-REGRESSION TEST WAS SUCCESSFUL
-Wed Feb 14 03:03:11 UTC 2024
-Elapsed time: 00h:48m:22s. Have a nice day!
+====END OF JET REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index e6d4990e53..685e0a2ad6 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,6272 +1,308 @@
-Tue Feb 13 19:40:41 CST 2024
-Start Regression test
-
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 205 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmw_intel elapsed time 698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmwm_intel elapsed time 787 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile datm_cdeps_debug_intel elapsed time 237 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_intel elapsed time 415 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 759 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 757 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 795 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 941 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 744 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 968 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 319 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 1150 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1176 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 937 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_debug_intel elapsed time 300 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1074 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 301.535495
- 0: The maximum resident set size (KB) = 3179084
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 974.980836
- 0: The maximum resident set size (KB) = 1741024
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1054.768539
- 0: The maximum resident set size (KB) = 2017916
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 471.097118
- 0: The maximum resident set size (KB) = 1108868
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1153.528751
- 0: The maximum resident set size (KB) = 1643500
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1380.424891
- 0: The maximum resident set size (KB) = 1681692
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 326.555609
- 0: The maximum resident set size (KB) = 3209740
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 324.692990
- 0: The maximum resident set size (KB) = 3215900
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 191.987744
- 0: The maximum resident set size (KB) = 3252180
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 326.013376
- 0: The maximum resident set size (KB) = 3239592
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 200.568233
- 0: The maximum resident set size (KB) = 3269664
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 355.299746
- 0: The maximum resident set size (KB) = 3554336
-
-Test 012 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 328.622754
- 0: The maximum resident set size (KB) = 3207056
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 269.503791
- 0: The maximum resident set size (KB) = 3068272
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 325.232715
- 0: The maximum resident set size (KB) = 3213624
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c192_p8_intel
-Checking test 016 cpld_control_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 595.455407
- 0: The maximum resident set size (KB) = 3259364
-
-Test 016 cpld_control_c192_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_c192_p8_intel
-Checking test 017 cpld_restart_c192_p8_intel results ....
- Comparing sfcf030.tile1.nc .........OK
- Comparing sfcf030.tile2.nc .........OK
- Comparing sfcf030.tile3.nc .........OK
- Comparing sfcf030.tile4.nc .........OK
- Comparing sfcf030.tile5.nc .........OK
- Comparing sfcf030.tile6.nc .........OK
- Comparing atmf030.tile1.nc .........OK
- Comparing atmf030.tile2.nc .........OK
- Comparing atmf030.tile3.nc .........OK
- Comparing atmf030.tile4.nc .........OK
- Comparing atmf030.tile5.nc .........OK
- Comparing atmf030.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 384.019087
- 0: The maximum resident set size (KB) = 3546764
-
-Test 017 cpld_restart_c192_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_bmark_p8_intel
-Checking test 018 cpld_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 638.338330
- 0: The maximum resident set size (KB) = 4123728
-
-Test 018 cpld_bmark_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_bmark_p8_intel
-Checking test 019 cpld_restart_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 441.359999
- 0: The maximum resident set size (KB) = 4368600
-
-Test 019 cpld_restart_bmark_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_s2sa_p8_intel
-Checking test 020 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 304.805018
- 0: The maximum resident set size (KB) = 3175164
-
-Test 020 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_intel
-Checking test 021 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 256.703064
- 0: The maximum resident set size (KB) = 1724568
-
-Test 021 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_nowave_noaero_p8_intel
-Checking test 022 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 247.090018
- 0: The maximum resident set size (KB) = 1782448
-
-Test 022 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_p8_intel
-Checking test 023 cpld_debug_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 502.349347
- 0: The maximum resident set size (KB) = 3248244
-
-Test 023 cpld_debug_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_noaero_p8_intel
-Checking test 024 cpld_debug_noaero_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 344.755866
- 0: The maximum resident set size (KB) = 1755776
-
-Test 024 cpld_debug_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_agrid_intel
-Checking test 025 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 245.304519
- 0: The maximum resident set size (KB) = 1780988
-
-Test 025 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c48_intel
-Checking test 026 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 473.527220
- 0: The maximum resident set size (KB) = 2825808
-
-Test 026 cpld_control_c48_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_faster_intel
-Checking test 027 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 333.172205
- 0: The maximum resident set size (KB) = 3207816
-
-Test 027 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_pdlib_p8_intel
-Checking test 028 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 977.209337
- 0: The maximum resident set size (KB) = 1779632
-
-Test 028 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_pdlib_p8_intel
-Checking test 029 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 478.275910
- 0: The maximum resident set size (KB) = 1169596
-
-Test 029 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_pdlib_p8_intel
-Checking test 030 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1101.840624
- 0: The maximum resident set size (KB) = 1667832
-
-Test 030 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_pdlib_p8_intel
-Checking test 031 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
- 0: The total amount of wall time = 1484.231567
- 0: The maximum resident set size (KB) = 1707192
-
-Test 031 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_flake_intel
-Checking test 032 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 205.290697
- 0: The maximum resident set size (KB) = 703408
-
-Test 032 control_flake_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_intel
-Checking test 033 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
- 0: The total amount of wall time = 138.789268
- 0: The maximum resident set size (KB) = 652048
-
-Test 033 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_parallel_intel
-Checking test 034 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 150.138908
- 0: The maximum resident set size (KB) = 654884
-
-Test 034 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_latlon_intel
-Checking test 035 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 145.746665
- 0: The maximum resident set size (KB) = 598520
-
-Test 035 control_latlon_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_intel
-Checking test 036 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 143.687698
- 0: The maximum resident set size (KB) = 651128
-
-Test 036 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48_intel
-Checking test 037 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 348.566627
-0: The maximum resident set size (KB) = 862692
-
-Test 037 control_c48_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48.v2.sfc_intel
-Checking test 038 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-0: The total amount of wall time = 351.363973
-0: The maximum resident set size (KB) = 872188
-
-Test 038 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c192_intel
-Checking test 039 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 536.023905
- 0: The maximum resident set size (KB) = 857416
-
-Test 039 control_c192_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384_intel
-Checking test 040 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 603.759118
- 0: The maximum resident set size (KB) = 1245304
-
-Test 040 control_c384_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384gdas_intel
-Checking test 041 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 536.538698
- 0: The maximum resident set size (KB) = 1308248
-
-Test 041 control_c384gdas_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_intel
-Checking test 042 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 236.088814
- 0: The maximum resident set size (KB) = 659164
-
-Test 042 control_stochy_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_restart_intel
-Checking test 043 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 51.087111
- 0: The maximum resident set size (KB) = 499604
-
-Test 043 control_stochy_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_intel
-Checking test 044 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 89.825266
- 0: The maximum resident set size (KB) = 649260
-
-Test 044 control_lndp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr4_intel
-Checking test 045 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 143.342597
- 0: The maximum resident set size (KB) = 599720
-
-Test 045 control_iovr4_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr5_intel
-Checking test 046 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 139.612058
- 0: The maximum resident set size (KB) = 646880
-
-Test 046 control_iovr5_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_intel
-Checking test 047 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 177.132743
- 0: The maximum resident set size (KB) = 1627744
-
-Test 047 control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8.v2.sfc_intel
-Checking test 048 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 176.627299
- 0: The maximum resident set size (KB) = 1628272
-
-Test 048 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_ugwpv1_intel
-Checking test 049 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 162.648454
- 0: The maximum resident set size (KB) = 1626672
-
-Test 049 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_intel
-Checking test 050 control_restart_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 90.237566
- 0: The maximum resident set size (KB) = 888596
-
-Test 050 control_restart_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_noqr_p8_intel
-Checking test 051 control_noqr_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf021.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf021.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 172.399677
- 0: The maximum resident set size (KB) = 1617304
-
-Test 051 control_noqr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_noqr_p8_intel
-Checking test 052 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 88.759681
- 0: The maximum resident set size (KB) = 926672
-
-Test 052 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_decomp_p8_intel
-Checking test 053 control_decomp_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 172.092008
- 0: The maximum resident set size (KB) = 1615132
-
-Test 053 control_decomp_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_2threads_p8_intel
-Checking test 054 control_2threads_p8_intel results ....
- Comparing sfcf000.nc ............ALT CHECK......OK
- Comparing sfcf024.nc ............ALT CHECK......OK
- Comparing atmf000.nc ............ALT CHECK......OK
- Comparing atmf024.nc ............ALT CHECK......OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 178.386978
- 0: The maximum resident set size (KB) = 1714152
-
-Test 054 control_2threads_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_lndp_intel
-Checking test 055 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
- 0: The total amount of wall time = 307.189829
- 0: The maximum resident set size (KB) = 1618456
-
-Test 055 control_p8_lndp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_rrtmgp_intel
-Checking test 056 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 229.876717
- 0: The maximum resident set size (KB) = 1687228
-
-Test 056 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_mynn_intel
-Checking test 057 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 167.886708
- 0: The maximum resident set size (KB) = 1628684
-
-Test 057 control_p8_mynn_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/merra2_thompson_intel
-Checking test 058 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 200.169508
- 0: The maximum resident set size (KB) = 1644112
-
-Test 058 merra2_thompson_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_intel
-Checking test 059 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 302.599084
- 0: The maximum resident set size (KB) = 856200
-
-Test 059 regional_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_restart_intel
-Checking test 060 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 160.401540
- 0: The maximum resident set size (KB) = 1023744
-
-Test 060 regional_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_decomp_intel
-Checking test 061 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 318.727468
- 0: The maximum resident set size (KB) = 848060
-
-Test 061 regional_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2threads_intel
-Checking test 062 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 213.331729
- 0: The maximum resident set size (KB) = 842564
-
-Test 062 regional_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_noquilt_intel
-Checking test 063 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
- 0: The total amount of wall time = 294.509183
- 0: The maximum resident set size (KB) = 1364140
-
-Test 063 regional_noquilt_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_netcdf_parallel_intel
-Checking test 064 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
- 0: The total amount of wall time = 293.990290
- 0: The maximum resident set size (KB) = 855428
-
-Test 064 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2dwrtdecomp_intel
-Checking test 065 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 296.906280
- 0: The maximum resident set size (KB) = 852100
-
-Test 065 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_wofs_intel
-Checking test 066 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 385.584485
- 0: The maximum resident set size (KB) = 1921680
-
-Test 066 regional_wofs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_intel
-Checking test 067 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 454.379619
- 0: The maximum resident set size (KB) = 1109460
-
-Test 067 rap_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_intel
-Checking test 068 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 275.976213
- 0: The maximum resident set size (KB) = 1303044
-
-Test 068 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_decomp_intel
-Checking test 069 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 476.816352
- 0: The maximum resident set size (KB) = 1028124
-
-Test 069 rap_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_intel
-Checking test 070 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 466.628534
- 0: The maximum resident set size (KB) = 1182704
-
-Test 070 rap_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_intel
-Checking test 071 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 232.608853
- 0: The maximum resident set size (KB) = 1098420
-
-Test 071 rap_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_intel
-Checking test 072 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 451.386579
- 0: The maximum resident set size (KB) = 1099996
-
-Test 072 rap_sfcdiff_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_decomp_intel
-Checking test 073 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 477.216399
- 0: The maximum resident set size (KB) = 1023840
-
-Test 073 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_restart_intel
-Checking test 074 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 340.230630
- 0: The maximum resident set size (KB) = 1135196
-
-Test 074 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_intel
-Checking test 075 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 228.662743
- 0: The maximum resident set size (KB) = 1039932
-
-Test 075 hrrr_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_intel
-Checking test 076 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 237.099533
- 0: The maximum resident set size (KB) = 1019136
-
-Test 076 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_intel
-Checking test 077 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 193.806730
- 0: The maximum resident set size (KB) = 1111304
-
-Test 077 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_intel
-Checking test 078 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 120.266180
- 0: The maximum resident set size (KB) = 1000480
-
-Test 078 hrrr_control_restart_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_intel
-Checking test 079 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 444.578004
- 0: The maximum resident set size (KB) = 1090636
-
-Test 079 rrfs_v1beta_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_intel
-Checking test 080 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 539.862203
- 0: The maximum resident set size (KB) = 1995360
-
-Test 080 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_nohailnoccn_intel
-Checking test 081 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 528.734531
- 0: The maximum resident set size (KB) = 2067700
-
-Test 081 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_intel
-Checking test 082 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 348.666453
- 0: The maximum resident set size (KB) = 709872
-
-Test 082 control_csawmg_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_intel
-Checking test 083 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 340.256091
- 0: The maximum resident set size (KB) = 750524
-
-Test 083 control_csawmgt_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_intel
-Checking test 084 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
- 0: The total amount of wall time = 190.111149
- 0: The maximum resident set size (KB) = 741976
-
-Test 084 control_ras_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_intel
-Checking test 085 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
- 0: The total amount of wall time = 117.836898
- 0: The maximum resident set size (KB) = 659492
-
-Test 085 control_wam_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_faster_intel
-Checking test 086 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 147.710157
- 0: The maximum resident set size (KB) = 1634152
-
-Test 086 control_p8_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_faster_intel
-Checking test 087 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 269.950099
- 0: The maximum resident set size (KB) = 851480
-
-Test 087 regional_control_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_debug_intel
-Checking test 088 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
- 0: The total amount of wall time = 162.342462
- 0: The maximum resident set size (KB) = 817468
-
-Test 088 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 158.582992
- 0: The maximum resident set size (KB) = 761260
-
-Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_debug_intel
-Checking test 090 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 179.328922
- 0: The maximum resident set size (KB) = 817520
-
-Test 090 control_stochy_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_debug_intel
-Checking test 091 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 158.282236
- 0: The maximum resident set size (KB) = 815488
-
-Test 091 control_lndp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_debug_intel
-Checking test 092 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 242.121993
- 0: The maximum resident set size (KB) = 862520
-
-Test 092 control_csawmg_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_debug_intel
-Checking test 093 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 235.562702
- 0: The maximum resident set size (KB) = 860060
-
-Test 093 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_debug_intel
-Checking test 094 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 159.786021
- 0: The maximum resident set size (KB) = 828620
-
-Test 094 control_ras_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_diag_debug_intel
-Checking test 095 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 161.567847
- 0: The maximum resident set size (KB) = 870248
-
-Test 095 control_diag_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_debug_p8_intel
-Checking test 096 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 165.609448
- 0: The maximum resident set size (KB) = 1643948
-
-Test 096 control_debug_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_debug_intel
-Checking test 097 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
- 0: The total amount of wall time = 1029.052233
- 0: The maximum resident set size (KB) = 842300
-
-Test 097 regional_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_intel
-Checking test 098 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 290.234996
- 0: The maximum resident set size (KB) = 1208800
-
-Test 098 rap_control_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_intel
-Checking test 099 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 281.196024
- 0: The maximum resident set size (KB) = 1201560
-
-Test 099 hrrr_control_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_gf_debug_intel
-Checking test 100 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 298.043240
- 0: The maximum resident set size (KB) = 1144964
-
-Test 100 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_c3_debug_intel
-Checking test 101 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 295.484683
- 0: The maximum resident set size (KB) = 1195980
-
-Test 101 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_drag_suite_debug_intel
-Checking test 102 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 285.614768
- 0: The maximum resident set size (KB) = 1203704
-
-Test 102 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_diag_debug_intel
-Checking test 103 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 297.461129
- 0: The maximum resident set size (KB) = 1290176
-
-Test 103 rap_diag_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_cires_ugwp_debug_intel
-Checking test 104 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 291.470095
- 0: The maximum resident set size (KB) = 1199732
-
-Test 104 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_ugwp_debug_intel
-Checking test 105 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 294.313429
- 0: The maximum resident set size (KB) = 1198352
-
-Test 105 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_lndp_debug_intel
-Checking test 106 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 314.634665
- 0: The maximum resident set size (KB) = 1150932
-
-Test 106 rap_lndp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_progcld_thompson_debug_intel
-Checking test 107 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 286.027627
- 0: The maximum resident set size (KB) = 1211628
-
-Test 107 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_debug_intel
-Checking test 108 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 279.674781
- 0: The maximum resident set size (KB) = 1198516
-
-Test 108 rap_noah_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_debug_intel
-Checking test 109 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 287.094300
- 0: The maximum resident set size (KB) = 1202684
-
-Test 109 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 474.631970
- 0: The maximum resident set size (KB) = 1188640
-
-Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_debug_intel
-Checking test 111 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 282.726763
- 0: The maximum resident set size (KB) = 1202944
-
-Test 111 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_clm_lake_debug_intel
-Checking test 112 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 356.573609
- 0: The maximum resident set size (KB) = 1206544
-
-Test 112 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_flake_debug_intel
-Checking test 113 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 292.796758
- 0: The maximum resident set size (KB) = 1203280
-
-Test 113 rap_flake_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_c96_no_nest_debug_intel
-Checking test 114 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 498.216245
- 0: The maximum resident set size (KB) = 1204652
-
-Test 114 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_debug_intel
-Checking test 115 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
- 0: The total amount of wall time = 286.764877
- 0: The maximum resident set size (KB) = 515624
-
-Test 115 control_wam_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
- 0: The total amount of wall time = 263.599302
- 0: The maximum resident set size (KB) = 1168112
-
-Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn32_phy32_intel
-Checking test 117 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 374.977947
- 0: The maximum resident set size (KB) = 990992
-
-Test 117 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_dyn32_phy32_intel
-Checking test 118 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 194.241147
- 0: The maximum resident set size (KB) = 989448
-
-Test 118 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_dyn32_phy32_intel
-Checking test 119 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 391.465469
- 0: The maximum resident set size (KB) = 1088532
-
-Test 119 rap_2threads_dyn32_phy32_intel PASS
+====START OF ORION REGRESSION TESTING LOG====
+UFSWM hash used in testing:
+0d31ac8854fee356e5409931c3cd5b85e9611a15
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 168.650345
- 0: The maximum resident set size (KB) = 960700
-
-Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 208.189304
- 0: The maximum resident set size (KB) = 932732
-
-Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_dyn32_phy32_intel
-Checking test 122 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 284.767218
- 0: The maximum resident set size (KB) = 1034380
-
-Test 122 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_dyn32_phy32_intel
-Checking test 123 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
- 0: The total amount of wall time = 107.453722
- 0: The maximum resident set size (KB) = 933064
-
-Test 123 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_control_intel
-Checking test 124 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 113.741949
- 0: The maximum resident set size (KB) = 1198248
-
-Test 124 conus13km_control_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_2threads_intel
-Checking test 125 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 56.689549
- 0: The maximum resident set size (KB) = 1123316
-
-Test 125 conus13km_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_restart_mismatch_intel
-Checking test 126 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
- 0: The total amount of wall time = 71.324885
- 0: The maximum resident set size (KB) = 1112256
-
-Test 126 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_intel
-Checking test 127 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 244.166162
- 0: The maximum resident set size (KB) = 996080
-
-Test 127 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_dyn32_phy32_intel
-Checking test 128 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 281.122094
- 0: The maximum resident set size (KB) = 1081220
-
-Test 128 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_dyn32_phy32_intel
-Checking test 129 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 273.077148
- 0: The maximum resident set size (KB) = 1078984
-
-Test 129 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_intel
-Checking test 130 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 883.616506
- 0: The maximum resident set size (KB) = 1232096
-
-Test 130 conus13km_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_qr_intel
-Checking test 131 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
- 0: The total amount of wall time = 877.481632
- 0: The maximum resident set size (KB) = 930760
-
-Test 131 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_2threads_intel
-Checking test 132 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 512.702983
- 0: The maximum resident set size (KB) = 1100960
-
-Test 132 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_radar_tten_debug_intel
-Checking test 133 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 864.228547
- 0: The maximum resident set size (KB) = 1292208
-
-Test 133 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_debug_intel
-Checking test 134 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
- 0: The total amount of wall time = 293.173758
- 0: The maximum resident set size (KB) = 1123684
-
-Test 134 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_intel
-Checking test 135 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
- 0: The total amount of wall time = 328.596464
- 0: The maximum resident set size (KB) = 738476
-
-Test 135 hafs_regional_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
- 0: The total amount of wall time = 364.630257
- 0: The maximum resident set size (KB) = 1120072
-
-Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_intel
-Checking test 137 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 411.993723
- 0: The maximum resident set size (KB) = 783524
-
-Test 137 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_wav_intel
-Checking test 138 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 791.269515
- 0: The maximum resident set size (KB) = 860592
-
-Test 138 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_wav_intel
-Checking test 139 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 875.524976
- 0: The maximum resident set size (KB) = 884624
-
-Test 139 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_1nest_atm_intel
-Checking test 140 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 365.464749
- 0: The maximum resident set size (KB) = 499320
-
-Test 140 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_telescopic_2nests_atm_intel
-Checking test 141 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
- 0: The total amount of wall time = 443.561957
- 0: The maximum resident set size (KB) = 486292
-
-Test 141 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_1nest_atm_intel
-Checking test 142 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 182.443505
- 0: The maximum resident set size (KB) = 373596
-
-Test 142 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_multiple_4nests_atm_intel
-Checking test 143 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
- 0: The total amount of wall time = 491.611369
- 0: The maximum resident set size (KB) = 479896
-
-Test 143 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
- 0: The total amount of wall time = 243.768041
- 0: The maximum resident set size (KB) = 528900
-
-Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 235.248058
- 0: The maximum resident set size (KB) = 527440
-
-Test 145 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
- 0: The total amount of wall time = 319.007158
- 0: The maximum resident set size (KB) = 543232
-
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_storm_following_1nest_atm_intel
-Checking test 147 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
- 0: The total amount of wall time = 84.376151
- 0: The maximum resident set size (KB) = 402088
-
-Test 147 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_nested_intel
-Checking test 148 gnv1_nested_intel results ....
- Comparing atmf006.nc ............ALT CHECK......NOT OK
- Comparing sfcf006.nc ............ALT CHECK......NOT OK
- Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK
- Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK
-
- 0: The total amount of wall time = 289.137622
- 0: The maximum resident set size (KB) = 803856
-
-Test 148 gnv1_nested_intel FAIL Tries: 2
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
- 0: The total amount of wall time = 1249.711129
- 0: The maximum resident set size (KB) = 574500
-
-Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 577.595540
- 0: The maximum resident set size (KB) = 672492
-
-Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 581.714316
- 0: The maximum resident set size (KB) = 716316
-
-Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
- 0: The total amount of wall time = 457.182550
- 0: The maximum resident set size (KB) = 643412
-
-Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_intel
-Checking test 153 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 373.592859
- 0: The maximum resident set size (KB) = 831768
-
-Test 153 hafs_regional_docn_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_oisst_intel
-Checking test 154 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
- 0: The total amount of wall time = 384.377249
- 0: The maximum resident set size (KB) = 815344
-
-Test 154 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_datm_cdeps_intel
-Checking test 155 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
- 0: The total amount of wall time = 948.326176
- 0: The maximum resident set size (KB) = 1209820
-
-Test 155 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_intel
-Checking test 156 datm_cdeps_control_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 152.647059
- 0: The maximum resident set size (KB) = 1138652
-
-Test 156 datm_cdeps_control_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_restart_cfsr_intel
-Checking test 157 datm_cdeps_restart_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 88.683271
- 0: The maximum resident set size (KB) = 1091432
-
-Test 157 datm_cdeps_restart_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_gefs_intel
-Checking test 158 datm_cdeps_control_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 147.245503
- 0: The maximum resident set size (KB) = 1015548
-
-Test 158 datm_cdeps_control_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_iau_gefs_intel
-Checking test 159 datm_cdeps_iau_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 148.886800
- 0: The maximum resident set size (KB) = 1013800
-
-Test 159 datm_cdeps_iau_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_stochy_gefs_intel
-Checking test 160 datm_cdeps_stochy_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 148.175446
- 0: The maximum resident set size (KB) = 1019588
-
-Test 160 datm_cdeps_stochy_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_ciceC_cfsr_intel
-Checking test 161 datm_cdeps_ciceC_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 153.317638
- 0: The maximum resident set size (KB) = 1131700
-
-Test 161 datm_cdeps_ciceC_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_cfsr_intel
-Checking test 162 datm_cdeps_bulk_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 147.508235
- 0: The maximum resident set size (KB) = 1116288
-
-Test 162 datm_cdeps_bulk_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_gefs_intel
-Checking test 163 datm_cdeps_bulk_gefs_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 148.047303
- 0: The maximum resident set size (KB) = 1019492
-
-Test 163 datm_cdeps_bulk_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_cfsr_intel
-Checking test 164 datm_cdeps_mx025_cfsr_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 353.523564
- 0: The maximum resident set size (KB) = 1058268
-
-Test 164 datm_cdeps_mx025_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_gefs_intel
-Checking test 165 datm_cdeps_mx025_gefs_intel results ....
- Comparing RESTART/20111001.120000.MOM.res.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK
- Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2011-10-01-43200.nc .........OK
- Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK
-
- 0: The total amount of wall time = 345.307426
- 0: The maximum resident set size (KB) = 1001192
-
-Test 165 datm_cdeps_mx025_gefs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_multiple_files_cfsr_intel
-Checking test 166 datm_cdeps_multiple_files_cfsr_intel results ....
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 153.115196
- 0: The maximum resident set size (KB) = 1137200
-
-Test 166 datm_cdeps_multiple_files_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_3072x1536_cfsr_intel
-Checking test 167 datm_cdeps_3072x1536_cfsr_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 217.054180
- 0: The maximum resident set size (KB) = 2403708
-
-Test 167 datm_cdeps_3072x1536_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_gfs_intel
-Checking test 168 datm_cdeps_gfs_intel results ....
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 217.555488
- 0: The maximum resident set size (KB) = 2469852
-
-Test 168 datm_cdeps_gfs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_debug_cfsr_intel
-Checking test 169 datm_cdeps_debug_cfsr_intel results ....
- Comparing RESTART/20111001.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-01-21600.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK
-
- 0: The total amount of wall time = 362.860271
- 0: The maximum resident set size (KB) = 1063896
-
-Test 169 datm_cdeps_debug_cfsr_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_faster_intel
-Checking test 170 datm_cdeps_control_cfsr_faster_intel results ....
- Comparing RESTART/20111002.000000.MOM.res.nc .........OK
- Comparing RESTART/iced.2011-10-02-00000.nc .........OK
- Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK
-
- 0: The total amount of wall time = 153.275664
- 0: The maximum resident set size (KB) = 1139668
-
-Test 170 datm_cdeps_control_cfsr_faster_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_gswp3_intel
-Checking test 171 datm_cdeps_lnd_gswp3_intel results ....
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK
-
- 0: The total amount of wall time = 51.538648
- 0: The maximum resident set size (KB) = 260780
-
-Test 171 datm_cdeps_lnd_gswp3_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_intel
-Checking test 172 datm_cdeps_lnd_era5_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 54.342466
- 0: The maximum resident set size (KB) = 326276
-
-Test 172 datm_cdeps_lnd_era5_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_rst_intel
-Checking test 173 datm_cdeps_lnd_era5_rst_intel results ....
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK
-
- 0: The total amount of wall time = 31.364450
- 0: The maximum resident set size (KB) = 322284
-
-Test 173 datm_cdeps_lnd_era5_rst_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_sbs_intel
-Checking test 174 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 263.329875
- 0: The maximum resident set size (KB) = 1611364
-
-Test 174 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_intel
-Checking test 175 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 264.134060
- 0: The maximum resident set size (KB) = 1606780
-
-Test 175 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_atmlnd_intel
-Checking test 176 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
- 0: The total amount of wall time = 125.990273
- 0: The maximum resident set size (KB) = 900868
-
-Test 176 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmwav_control_noaero_p8_intel
-Checking test 177 atmwav_control_noaero_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK
- Comparing 20210322.180000.out_pnt.ww3 .........OK
- Comparing 20210322.180000.out_grd.ww3 .........OK
- Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK
-
- 0: The total amount of wall time = 105.534816
- 0: The maximum resident set size (KB) = 1659924
-
-Test 177 atmwav_control_noaero_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_atmwav_intel
-Checking test 178 control_atmwav_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
- Comparing 20210322.180000.restart.glo_1deg .........OK
-
- 0: The total amount of wall time = 96.788507
- 0: The maximum resident set size (KB) = 676480
-
-Test 178 control_atmwav_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_intel
-Checking test 179 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 239.493134
- 0: The maximum resident set size (KB) = 3024016
-
-Test 179 atmaero_control_p8_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_intel
-Checking test 180 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 292.670045
- 0: The maximum resident set size (KB) = 3089668
-
-Test 180 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_micro_intel
-Checking test 181 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
- 0: The total amount of wall time = 302.777064
- 0: The maximum resident set size (KB) = 3104452
-
-Test 181 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_atmaq_debug_intel
-Checking test 182 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
- Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-
- 0: The total amount of wall time = 1300.410865
- 0: The maximum resident set size (KB) = 4580096
-
-Test 182 regional_atmaq_debug_intel PASS
-
-FAILED TESTS:
-148 gnv1_nested_intel failed in check_result
-gnv1_nested_intel 148 failed in run_test
-
-REGRESSION TEST FAILED
-Wed Feb 14 02:59:29 CST 2024
-Elapsed time: 07h:18m:50s. Have a nice day!
-Wed Feb 14 08:25:16 CST 2024
-Start Regression test
-
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile hafsw_intel elapsed time 881 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel
-working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_294699/gnv1_nested_intel
-Checking test 001 gnv1_nested_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
- 0: The total amount of wall time = 284.447630
- 0: The maximum resident set size (KB) = 802428
-
-Test 001 gnv1_nested_intel PASS Tries: 2
-REGRESSION TEST WAS SUCCESSFUL
-Wed Feb 14 09:00:56 CST 2024
-Elapsed time: 00h:35m:41s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_403308
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nems
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:18]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 05:13](3185 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 20:01]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 16:24](1738 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:54, 17:38](2026 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:57, 08:07](1111 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 18:29](1644 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:56]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 23:01](1681 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:07, 15:18]
+PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:37](3217 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:40](3206 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:17](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:44](3235 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:49, 03:29](3276 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:08](3551 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:42](3198 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:43](3070 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:40](3211 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:40, 10:01](3335 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:23, 06:09](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:06, 11:07](4121 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:43, 06:47](4374 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:26](3175 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 14:53]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:29](1735 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:14, 04:26](1779 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:51]
+PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:31](3249 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:43]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:58](1749 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:59]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:17](1790 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 13:16]
+PASS -- TEST 'cpld_control_c48_intel' [10:52, 08:05](2828 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:17](3213 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:24]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:29](1776 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:01](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 18:27](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:55]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:18](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:15]
+PASS -- TEST 'control_flake_intel' [05:20, 03:31](699 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:36](650 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:30](646 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](650 MB)
+PASS -- TEST 'control_c48_intel' [07:24, 06:01](871 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:57](870 MB)
+PASS -- TEST 'control_c192_intel' [11:34, 09:07](858 MB)
+PASS -- TEST 'control_c384_intel' [13:41, 10:02](1245 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:47, 09:05](1348 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:45](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](497 MB)
+PASS -- TEST 'control_lndp_intel' [03:17, 01:40](656 MB)
+PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](646 MB)
+PASS -- TEST 'control_iovr5_intel' [04:23, 02:25](652 MB)
+PASS -- TEST 'control_p8_intel' [05:14, 02:59](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:54](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:50](1638 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:16, 01:38](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:54](1612 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:39](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:59](1615 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:02](1715 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:52, 05:11](1621 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:03](1687 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:22, 02:59](1627 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:38, 03:32](1640 MB)
+PASS -- TEST 'regional_control_intel' [07:34, 05:14](855 MB)
+PASS -- TEST 'regional_restart_intel' [04:42, 02:42](1020 MB)
+PASS -- TEST 'regional_decomp_intel' [07:30, 05:29](852 MB)
+PASS -- TEST 'regional_2threads_intel' [05:34, 03:42](844 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:35, 05:01](1368 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:04](856 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:04](857 MB)
+PASS -- TEST 'regional_wofs_intel' [08:36, 06:33](1919 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:06, 12:43]
+PASS -- TEST 'rap_control_intel' [10:28, 07:47](1106 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:48](1295 MB)
+PASS -- TEST 'rap_decomp_intel' [11:15, 08:07](1028 MB)
+PASS -- TEST 'rap_2threads_intel' [10:26, 07:57](1177 MB)
+PASS -- TEST 'rap_restart_intel' [06:18, 04:03](1098 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:44](1108 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:07](1025 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:24, 05:47](1134 MB)
+PASS -- TEST 'hrrr_control_intel' [06:52, 04:11](1033 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:06](1019 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:18, 03:23](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:11](1002 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:34](1099 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:08](1992 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:51](2080 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:07, 12:00]
+PASS -- TEST 'control_csawmg_intel' [07:41, 05:54](746 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:44, 05:45](745 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:17](742 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 10:18]
+PASS -- TEST 'control_wam_intel' [04:17, 02:03](657 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:32]
+PASS -- TEST 'control_p8_faster_intel' [05:29, 02:40](1636 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:40, 04:38](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:32]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:45](815 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:45](813 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:58](817 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:50](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:10](862 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:06](864 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](825 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:23, 02:59](873 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:43, 02:55](1643 MB)
+PASS -- TEST 'regional_debug_intel' [19:41, 17:42](843 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1202 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:48](1193 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:51](1201 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1202 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:55](1204 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1282 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:02](1199 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1202 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:52](1204 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1204 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:51](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:02](1200 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:05](1205 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:47](1197 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 06:05](1197 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:54](1207 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:11](1207 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51]
+PASS -- TEST 'control_wam_debug_intel' [07:18, 05:04](517 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 11:18]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:23](1169 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:14, 06:25](1046 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:25](985 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:48, 06:42](1092 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:03](960 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](942 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:50](1028 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:39]
+PASS -- TEST 'conus13km_control_intel' [12:56, 02:05](1203 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:03](1125 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:15](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:24]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](990 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1078 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:48](1082 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:46, 14:29](1223 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 14:50](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:17](1157 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:50](1293 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:54](1130 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:07, 13:44]
+PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:31](748 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:58](1125 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:48](828 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:11, 12:49](858 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:34](886 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:12](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 07:34](525 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:09](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:10](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 04:08](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:23](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:25](403 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:56, 04:32](798 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:10](576 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:06, 12:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:37](669 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:37](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:59](724 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:07, 12:27]
+PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:16](831 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:27](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:14](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 08:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:42](1143 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:43](1096 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1012 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:00](1125 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:42](1135 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:57](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 05:50](1039 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:33](1128 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:39](2439 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:36](2493 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:00]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:57](1058 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:40](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:12]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:47](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:49](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](317 MB)
+
+PASS -- COMPILE 'atml_intel' [13:06, 11:46]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:14](1612 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:14](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:37, 02:21](896 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:06, 12:22]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:47](1673 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:06, 11:52]
+PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:06, 11:27]
+PASS -- TEST 'atmaero_control_p8_intel' [06:08, 03:58](3017 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:48](3091 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:05](3105 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:06, 10:25]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:02](4576 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240219 08:28:47
+Ending Date/Time: 20240219 09:57:21
+Total Time: 01h:28m:54s
+Compiles Completed: 39/39
+Tests Completed: 182/182
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF ORION REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index a8a4b54def..12934ee963 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,5544 +1,266 @@
-Tue Feb 13 20:56:17 UTC 2024
-Start Regression test
+====START OF WCOSS2 REGRESSION TESTING LOG====
-Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7
-Testing With Submodule Hashes:
+UFSWM hash used in testing:
+681a70733ad51929905514527b6d5a497cd17776
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil)
+ 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-Compile atmaero_intel elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atmaq_debug_intel elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atmaq_intel elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_debug_dyn32_intel elapsed time 927 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile atm_dyn32_intel elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atm_faster_dyn32_intel elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile atml_intel elapsed time 921 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile csawmg_intel elapsed time 1170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_all_intel elapsed time 933 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafs_mom6w_intel elapsed time 709 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_debug_intel elapsed time 361 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile hafsw_faster_intel elapsed time 759 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile hafsw_intel elapsed time 832 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_debug_intel elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn32_phy32_faster_intel elapsed time 1053 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn32_phy32_intel elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_dyn64_phy32_debug_intel elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile rrfs_dyn64_phy32_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile rrfs_intel elapsed time 1296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-Compile s2s_aoflux_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2s_intel elapsed time 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_intel elapsed time 907 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_debug_intel elapsed time 287 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2swa_32bit_pdlib_intel elapsed time 705 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_faster_intel elapsed time 1279 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2swa_intel elapsed time 1393 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_intel elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile s2sw_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON
-Compile s2sw_pdlib_intel elapsed time 1439 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON
-Compile wam_debug_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug
-Compile wam_intel elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_mixedmode_intel
-Checking test 001 cpld_control_p8_mixedmode_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 329.457449
-The maximum resident set size (KB) = 2971044
-
-Test 001 cpld_control_p8_mixedmode_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_intel
-Checking test 002 cpld_control_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 915.125525
-The maximum resident set size (KB) = 1595356
-
-Test 002 cpld_control_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_iau_intel
-Checking test 003 cpld_control_gfsv17_iau_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.120000.coupler.res .........OK
- Comparing RESTART/20210323.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.120000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-43200.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK
- Comparing MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK
- Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK
- Comparing 20210323.120000.out_pnt.ww3 .........OK
- Comparing 20210323.120000.out_grd.ww3 .........OK
-
-The total amount of wall time = 997.808037
-The maximum resident set size (KB) = 1709916
-
-Test 003 cpld_control_gfsv17_iau_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_gfsv17_intel
-Checking test 004 cpld_restart_gfsv17_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 470.189352
-The maximum resident set size (KB) = 845676
-
-Test 004 cpld_restart_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_gfsv17_intel
-Checking test 005 cpld_mpi_gfsv17_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1066.801900
-The maximum resident set size (KB) = 1567592
-
-Test 005 cpld_mpi_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_gfsv17_intel
-Checking test 006 cpld_debug_gfsv17_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1416.465302
-The maximum resident set size (KB) = 1603992
-
-Test 006 cpld_debug_gfsv17_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_intel
-Checking test 007 cpld_control_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 368.621338
-The maximum resident set size (KB) = 3004160
-
-Test 007 cpld_control_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8.v2.sfc_intel
-Checking test 008 cpld_control_p8.v2.sfc_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 365.650165
-The maximum resident set size (KB) = 3003280
-
-Test 008 cpld_control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_p8_intel
-Checking test 009 cpld_restart_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 220.617873
-The maximum resident set size (KB) = 3067660
-
-Test 009 cpld_restart_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_qr_p8_intel
-Checking test 010 cpld_control_qr_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 371.869084
-The maximum resident set size (KB) = 3027368
-
-Test 010 cpld_control_qr_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_qr_p8_intel
-Checking test 011 cpld_restart_qr_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 227.395411
-The maximum resident set size (KB) = 3080028
-
-Test 011 cpld_restart_qr_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_2threads_p8_intel
-Checking test 012 cpld_2threads_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 330.381081
-The maximum resident set size (KB) = 3318488
-
-Test 012 cpld_2threads_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_decomp_p8_intel
-Checking test 013 cpld_decomp_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 364.001102
-The maximum resident set size (KB) = 2997096
-
-Test 013 cpld_decomp_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_p8_intel
-Checking test 014 cpld_mpi_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 308.580036
-The maximum resident set size (KB) = 2923452
-
-Test 014 cpld_mpi_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_ciceC_p8_intel
-Checking test 015 cpld_control_ciceC_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 366.990523
-The maximum resident set size (KB) = 3002992
-
-Test 015 cpld_control_ciceC_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_bmark_p8_intel
-Checking test 016 cpld_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 763.623435
-The maximum resident set size (KB) = 3957120
-
-Test 016 cpld_bmark_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_bmark_p8_intel
-Checking test 017 cpld_restart_bmark_p8_intel results ....
- Comparing sfcf006.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK
- Comparing RESTART/20130401.060000.coupler.res .........OK
- Comparing RESTART/20130401.060000.fv_core.res.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK
- Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK
- Comparing RESTART/iced.2013-04-01-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK
- Comparing 20130401.060000.out_pnt.ww3 .........OK
- Comparing 20130401.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 540.980220
-The maximum resident set size (KB) = 4253632
-
-Test 017 cpld_restart_bmark_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_s2sa_p8_intel
-Checking test 018 cpld_s2sa_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 351.731756
-The maximum resident set size (KB) = 2969680
-
-Test 018 cpld_s2sa_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_intel
-Checking test 019 cpld_control_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 273.246572
-The maximum resident set size (KB) = 1591812
-
-Test 019 cpld_control_noaero_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_nowave_noaero_p8_intel
-Checking test 020 cpld_control_nowave_noaero_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 278.832067
-The maximum resident set size (KB) = 1635008
-
-Test 020 cpld_control_nowave_noaero_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_agrid_intel
-Checking test 021 cpld_control_noaero_p8_agrid_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 280.325052
-The maximum resident set size (KB) = 1634760
-
-Test 021 cpld_control_noaero_p8_agrid_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_c48_intel
-Checking test 022 cpld_control_c48_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
-The total amount of wall time = 418.314915
-The maximum resident set size (KB) = 2650180
-
-Test 022 cpld_control_c48_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_faster_intel
-Checking test 023 cpld_control_p8_faster_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 367.397222
-The maximum resident set size (KB) = 3002092
-
-Test 023 cpld_control_p8_faster_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_pdlib_p8_intel
-Checking test 024 cpld_control_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 934.716069
-The maximum resident set size (KB) = 1608900
-
-Test 024 cpld_control_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_pdlib_p8_intel
-Checking test 025 cpld_restart_pdlib_p8_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 478.797496
-The maximum resident set size (KB) = 900020
-
-Test 025 cpld_restart_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_pdlib_p8_intel
-Checking test 026 cpld_mpi_pdlib_p8_intel results ....
- Comparing sfcf021.tile1.nc .........OK
- Comparing sfcf021.tile2.nc .........OK
- Comparing sfcf021.tile3.nc .........OK
- Comparing sfcf021.tile4.nc .........OK
- Comparing sfcf021.tile5.nc .........OK
- Comparing sfcf021.tile6.nc .........OK
- Comparing atmf021.tile1.nc .........OK
- Comparing atmf021.tile2.nc .........OK
- Comparing atmf021.tile3.nc .........OK
- Comparing atmf021.tile4.nc .........OK
- Comparing atmf021.tile5.nc .........OK
- Comparing atmf021.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-23-21600.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- Comparing 20210323.060000.out_pnt.ww3 .........OK
- Comparing 20210323.060000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1083.391522
-The maximum resident set size (KB) = 1585180
-
-Test 026 cpld_mpi_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_pdlib_p8_intel
-Checking test 027 cpld_debug_pdlib_p8_intel results ....
- Comparing sfcf003.tile1.nc .........OK
- Comparing sfcf003.tile2.nc .........OK
- Comparing sfcf003.tile3.nc .........OK
- Comparing sfcf003.tile4.nc .........OK
- Comparing sfcf003.tile5.nc .........OK
- Comparing sfcf003.tile6.nc .........OK
- Comparing atmf003.tile1.nc .........OK
- Comparing atmf003.tile2.nc .........OK
- Comparing atmf003.tile3.nc .........OK
- Comparing atmf003.tile4.nc .........OK
- Comparing atmf003.tile5.nc .........OK
- Comparing atmf003.tile6.nc .........OK
- Comparing RESTART/20210322.090000.coupler.res .........OK
- Comparing RESTART/20210322.090000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK
- Comparing RESTART/20210322.090000.MOM.res.nc .........OK
- Comparing RESTART/iced.2021-03-22-32400.nc .........OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK
- Comparing 20210322.090000.out_pnt.ww3 .........OK
- Comparing 20210322.090000.out_grd.ww3 .........OK
-
-The total amount of wall time = 1493.649751
-The maximum resident set size (KB) = 1622384
-
-Test 027 cpld_debug_pdlib_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_flake_intel
-Checking test 028 control_flake_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 214.400844
-The maximum resident set size (KB) = 573988
-
-Test 028 control_flake_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_intel
-Checking test 029 control_CubedSphereGrid_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
-
-The total amount of wall time = 132.972562
-The maximum resident set size (KB) = 521276
-
-Test 029 control_CubedSphereGrid_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_parallel_intel
-Checking test 030 control_CubedSphereGrid_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing cubed_sphere_grid_sfcf000.nc .........OK
- Comparing cubed_sphere_grid_sfcf024.nc .........OK
- Comparing cubed_sphere_grid_atmf000.nc .........OK
- Comparing cubed_sphere_grid_atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 141.212648
-The maximum resident set size (KB) = 526704
-
-Test 030 control_CubedSphereGrid_parallel_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_latlon_intel
-Checking test 031 control_latlon_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 134.857626
-The maximum resident set size (KB) = 524092
-
-Test 031 control_latlon_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_intel
-Checking test 032 control_wrtGauss_netcdf_parallel_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 137.418331
-The maximum resident set size (KB) = 526616
-
-Test 032 control_wrtGauss_netcdf_parallel_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48_intel
-Checking test 033 control_c48_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 333.592096
-The maximum resident set size (KB) = 717112
-
-Test 033 control_c48_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48.v2.sfc_intel
-Checking test 034 control_c48.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 328.720224
-The maximum resident set size (KB) = 716440
-
-Test 034 control_c48.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c192_intel
-Checking test 035 control_c192_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 529.668191
-The maximum resident set size (KB) = 640132
-
-Test 035 control_c192_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384_intel
-Checking test 036 control_c384_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 629.797197
-The maximum resident set size (KB) = 952916
-
-Test 036 control_c384_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384gdas_intel
-Checking test 037 control_c384gdas_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf006.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF06 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF06 .........OK
- Comparing RESTART/20210322.060000.coupler.res .........OK
- Comparing RESTART/20210322.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 547.581361
-The maximum resident set size (KB) = 1093116
-
-Test 037 control_c384gdas_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_intel
-Checking test 038 control_stochy_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 91.065977
-The maximum resident set size (KB) = 531320
-
-Test 038 control_stochy_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_restart_intel
-Checking test 039 control_stochy_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 50.389895
-The maximum resident set size (KB) = 333432
-
-Test 039 control_stochy_restart_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_intel
-Checking test 040 control_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 84.923118
-The maximum resident set size (KB) = 533912
-
-Test 040 control_lndp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr4_intel
-Checking test 041 control_iovr4_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 135.357882
-The maximum resident set size (KB) = 525600
-
-Test 041 control_iovr4_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr5_intel
-Checking test 042 control_iovr5_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 137.210152
-The maximum resident set size (KB) = 525788
-
-Test 042 control_iovr5_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_intel
-Checking test 043 control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 164.561276
-The maximum resident set size (KB) = 1509544
-
-Test 043 control_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8.v2.sfc_intel
-Checking test 044 control_p8.v2.sfc_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 165.199652
-The maximum resident set size (KB) = 1499432
-
-Test 044 control_p8.v2.sfc_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_ugwpv1_intel
-Checking test 045 control_p8_ugwpv1_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 161.744955
-The maximum resident set size (KB) = 1511016
-
-Test 045 control_p8_ugwpv1_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_intel
-Checking test 046 control_restart_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 91.919863
-The maximum resident set size (KB) = 685864
-
-Test 046 control_restart_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_noqr_p8_intel
-Checking test 047 control_noqr_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 165.373090
-The maximum resident set size (KB) = 1489272
-
-Test 047 control_noqr_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_noqr_p8_intel
-Checking test 048 control_restart_noqr_p8_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK
-
-The total amount of wall time = 91.345866
-The maximum resident set size (KB) = 697124
-
-Test 048 control_restart_noqr_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_decomp_p8_intel
-Checking test 049 control_decomp_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 169.341980
-The maximum resident set size (KB) = 1500340
-
-Test 049 control_decomp_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_2threads_p8_intel
-Checking test 050 control_2threads_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 146.392199
-The maximum resident set size (KB) = 1588536
-
-Test 050 control_2threads_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_lndp_intel
-Checking test 051 control_p8_lndp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing sfcf048.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing atmf048.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSFLX.GrbF48 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing GFSPRS.GrbF48 .........OK
-
-The total amount of wall time = 295.237804
-The maximum resident set size (KB) = 1497160
-
-Test 051 control_p8_lndp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_rrtmgp_intel
-Checking test 052 control_p8_rrtmgp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 220.698043
-The maximum resident set size (KB) = 1553816
-
-Test 052 control_p8_rrtmgp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_mynn_intel
-Checking test 053 control_p8_mynn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 167.783667
-The maximum resident set size (KB) = 1515868
-
-Test 053 control_p8_mynn_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/merra2_thompson_intel
-Checking test 054 merra2_thompson_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 201.082056
-The maximum resident set size (KB) = 1513680
-
-Test 054 merra2_thompson_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_intel
-Checking test 055 regional_control_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 289.593049
-The maximum resident set size (KB) = 606708
-
-Test 055 regional_control_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_restart_intel
-Checking test 056 regional_restart_intel results ....
- Comparing dynf006.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 159.399463
-The maximum resident set size (KB) = 780488
-
-Test 056 regional_restart_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_decomp_intel
-Checking test 057 regional_decomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 307.435087
-The maximum resident set size (KB) = 607256
-
-Test 057 regional_decomp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2threads_intel
-Checking test 058 regional_2threads_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 177.156835
-The maximum resident set size (KB) = 659388
-
-Test 058 regional_2threads_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_noquilt_intel
-Checking test 059 regional_noquilt_intel results ....
- Comparing atmos_4xdaily.nc .........OK
- Comparing fv3_history2d.nc .........OK
- Comparing fv3_history.nc .........OK
- Comparing RESTART/fv_core.res.tile1_new.nc .........OK
- Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK
-
-The total amount of wall time = 279.602604
-The maximum resident set size (KB) = 1141992
-
-Test 059 regional_noquilt_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_netcdf_parallel_intel
-Checking test 060 regional_netcdf_parallel_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
-
-The total amount of wall time = 292.727447
-The maximum resident set size (KB) = 607064
-
-Test 060 regional_netcdf_parallel_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2dwrtdecomp_intel
-Checking test 061 regional_2dwrtdecomp_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 289.398405
-The maximum resident set size (KB) = 609276
-
-Test 061 regional_2dwrtdecomp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_wofs_intel
-Checking test 062 regional_wofs_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 409.445515
-The maximum resident set size (KB) = 1578212
-
-Test 062 regional_wofs_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_intel
-Checking test 063 rap_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 410.338009
-The maximum resident set size (KB) = 920936
-
-Test 063 rap_control_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_intel
-Checking test 064 regional_spp_sppt_shum_skeb_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 241.772100
-The maximum resident set size (KB) = 1097516
-
-Test 064 regional_spp_sppt_shum_skeb_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_decomp_intel
-Checking test 065 rap_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 425.915912
-The maximum resident set size (KB) = 916880
-
-Test 065 rap_decomp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_intel
-Checking test 066 rap_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 371.714893
-The maximum resident set size (KB) = 1010916
-
-Test 066 rap_2threads_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_intel
-Checking test 067 rap_restart_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 209.368309
-The maximum resident set size (KB) = 787660
-
-Test 067 rap_restart_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_intel
-Checking test 068 rap_sfcdiff_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 407.332610
-The maximum resident set size (KB) = 918480
-
-Test 068 rap_sfcdiff_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_decomp_intel
-Checking test 069 rap_sfcdiff_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 425.020834
-The maximum resident set size (KB) = 913772
-
-Test 069 rap_sfcdiff_decomp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_restart_intel
-Checking test 070 rap_sfcdiff_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 305.208277
-The maximum resident set size (KB) = 784272
-
-Test 070 rap_sfcdiff_restart_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_intel
-Checking test 071 hrrr_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 211.238137
-The maximum resident set size (KB) = 908564
-
-Test 071 hrrr_control_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_intel
-Checking test 072 hrrr_control_decomp_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 214.646837
-The maximum resident set size (KB) = 909172
-
-Test 072 hrrr_control_decomp_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_intel
-Checking test 073 hrrr_control_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 188.989521
-The maximum resident set size (KB) = 993336
-
-Test 073 hrrr_control_2threads_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_intel
-Checking test 074 hrrr_control_restart_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 110.490743
-The maximum resident set size (KB) = 741580
-
-Test 074 hrrr_control_restart_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_intel
-Checking test 075 rrfs_v1beta_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 399.653333
-The maximum resident set size (KB) = 909444
-
-Test 075 rrfs_v1beta_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_intel
-Checking test 076 rrfs_v1nssl_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 488.590260
-The maximum resident set size (KB) = 1874712
-
-Test 076 rrfs_v1nssl_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_nohailnoccn_intel
-Checking test 077 rrfs_v1nssl_nohailnoccn_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 471.900454
-The maximum resident set size (KB) = 1862596
-
-Test 077 rrfs_v1nssl_nohailnoccn_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_intel
-Checking test 078 control_csawmg_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 338.065704
-The maximum resident set size (KB) = 596512
-
-Test 078 control_csawmg_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_intel
-Checking test 079 control_csawmgt_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 336.679038
-The maximum resident set size (KB) = 596352
-
-Test 079 control_csawmgt_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_intel
-Checking test 080 control_ras_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
-
-The total amount of wall time = 184.721866
-The maximum resident set size (KB) = 561572
-
-Test 080 control_ras_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_intel
-Checking test 081 control_wam_intel results ....
- Comparing sfcf024.nc .........OK
- Comparing atmf024.nc .........OK
-
-The total amount of wall time = 121.009893
-The maximum resident set size (KB) = 272776
-
-Test 081 control_wam_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_faster_intel
-Checking test 082 control_p8_faster_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf021.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf021.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF21 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF21 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 161.975328
-The maximum resident set size (KB) = 1504956
-
-Test 082 control_p8_faster_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_faster_intel
-Checking test 083 regional_control_faster_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf006.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf006.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF06 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF06 .........OK
-
-The total amount of wall time = 283.981035
-The maximum resident set size (KB) = 610684
-
-Test 083 regional_control_faster_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_debug_intel
-Checking test 084 control_CubedSphereGrid_debug_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf001.tile1.nc .........OK
- Comparing sfcf001.tile2.nc .........OK
- Comparing sfcf001.tile3.nc .........OK
- Comparing sfcf001.tile4.nc .........OK
- Comparing sfcf001.tile5.nc .........OK
- Comparing sfcf001.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf001.tile1.nc .........OK
- Comparing atmf001.tile2.nc .........OK
- Comparing atmf001.tile3.nc .........OK
- Comparing atmf001.tile4.nc .........OK
- Comparing atmf001.tile5.nc .........OK
- Comparing atmf001.tile6.nc .........OK
-
-The total amount of wall time = 160.630431
-The maximum resident set size (KB) = 688756
-
-Test 084 control_CubedSphereGrid_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_debug_intel
-Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 158.871953
-The maximum resident set size (KB) = 689884
-
-Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_debug_intel
-Checking test 086 control_stochy_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 181.484643
-The maximum resident set size (KB) = 688880
-
-Test 086 control_stochy_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_debug_intel
-Checking test 087 control_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 163.081272
-The maximum resident set size (KB) = 692596
-
-Test 087 control_lndp_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_debug_intel
-Checking test 088 control_csawmg_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 251.748787
-The maximum resident set size (KB) = 730708
-
-Test 088 control_csawmg_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_debug_intel
-Checking test 089 control_csawmgt_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 248.344384
-The maximum resident set size (KB) = 730964
-
-Test 089 control_csawmgt_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_debug_intel
-Checking test 090 control_ras_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 165.276975
-The maximum resident set size (KB) = 705064
-
-Test 090 control_ras_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_diag_debug_intel
-Checking test 091 control_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 167.192686
-The maximum resident set size (KB) = 746564
-
-Test 091 control_diag_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_debug_p8_intel
-Checking test 092 control_debug_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 168.593384
-The maximum resident set size (KB) = 1519076
-
-Test 092 control_debug_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_debug_intel
-Checking test 093 regional_debug_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
-
-The total amount of wall time = 1066.856512
-The maximum resident set size (KB) = 629600
-
-Test 093 regional_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_intel
-Checking test 094 rap_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 301.779372
-The maximum resident set size (KB) = 1075308
-
-Test 094 rap_control_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_intel
-Checking test 095 hrrr_control_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 295.778703
-The maximum resident set size (KB) = 1070848
-
-Test 095 hrrr_control_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_gf_debug_intel
-Checking test 096 hrrr_gf_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 302.218082
-The maximum resident set size (KB) = 1070948
-
-Test 096 hrrr_gf_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_c3_debug_intel
-Checking test 097 hrrr_c3_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 303.616359
-The maximum resident set size (KB) = 1077440
-
-Test 097 hrrr_c3_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_drag_suite_debug_intel
-Checking test 098 rap_unified_drag_suite_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 303.308680
-The maximum resident set size (KB) = 1076344
-
-Test 098 rap_unified_drag_suite_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_diag_debug_intel
-Checking test 099 rap_diag_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 317.922053
-The maximum resident set size (KB) = 1155636
-
-Test 099 rap_diag_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_cires_ugwp_debug_intel
-Checking test 100 rap_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 308.973760
-The maximum resident set size (KB) = 1076912
-
-Test 100 rap_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_ugwp_debug_intel
-Checking test 101 rap_unified_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 311.026485
-The maximum resident set size (KB) = 1075560
-
-Test 101 rap_unified_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_lndp_debug_intel
-Checking test 102 rap_lndp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 305.383239
-The maximum resident set size (KB) = 1075928
-
-Test 102 rap_lndp_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_progcld_thompson_debug_intel
-Checking test 103 rap_progcld_thompson_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 302.741453
-The maximum resident set size (KB) = 1077264
-
-Test 103 rap_progcld_thompson_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_debug_intel
-Checking test 104 rap_noah_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 294.837008
-The maximum resident set size (KB) = 1073164
-
-Test 104 rap_noah_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_debug_intel
-Checking test 105 rap_sfcdiff_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 304.036555
-The maximum resident set size (KB) = 1072336
-
-Test 105 rap_sfcdiff_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_sfcdiff_cires_ugwp_debug_intel
-Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 492.553809
-The maximum resident set size (KB) = 1076192
-
-Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_debug_intel
-Checking test 107 rrfs_v1beta_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 298.032419
-The maximum resident set size (KB) = 1069732
-
-Test 107 rrfs_v1beta_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_clm_lake_debug_intel
-Checking test 108 rap_clm_lake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 352.917507
-The maximum resident set size (KB) = 1076212
-
-Test 108 rap_clm_lake_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_flake_debug_intel
-Checking test 109 rap_flake_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 301.551968
-The maximum resident set size (KB) = 1076008
-
-Test 109 rap_flake_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/gnv1_c96_no_nest_debug_intel
-Checking test 110 gnv1_c96_no_nest_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210322.070000.coupler.res .........OK
- Comparing RESTART/20210322.070000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 523.092725
-The maximum resident set size (KB) = 1078752
-
-Test 110 gnv1_c96_no_nest_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_debug_intel
-Checking test 111 control_wam_debug_intel results ....
- Comparing sfcf019.nc .........OK
- Comparing atmf019.nc .........OK
-
-The total amount of wall time = 303.613563
-The maximum resident set size (KB) = 297748
-
-Test 111 control_wam_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_dyn32_phy32_intel
-Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results ....
- Comparing dynf000.nc .........OK
- Comparing dynf001.nc .........OK
- Comparing phyf000.nc .........OK
- Comparing phyf001.nc .........OK
- Comparing PRSLEV.GrbF00 .........OK
- Comparing PRSLEV.GrbF01 .........OK
- Comparing NATLEV.GrbF00 .........OK
- Comparing NATLEV.GrbF01 .........OK
-
-The total amount of wall time = 229.960894
-The maximum resident set size (KB) = 955568
-
-Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn32_phy32_intel
-Checking test 113 rap_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 341.630584
-The maximum resident set size (KB) = 790648
-
-Test 113 rap_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_dyn32_phy32_intel
-Checking test 114 hrrr_control_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 178.772819
-The maximum resident set size (KB) = 789348
-
-Test 114 hrrr_control_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_dyn32_phy32_intel
-Checking test 115 rap_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 307.071625
-The maximum resident set size (KB) = 851684
-
-Test 115 rap_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_dyn32_phy32_intel
-Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 160.312016
-The maximum resident set size (KB) = 842460
-
-Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_dyn32_phy32_intel
-Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.120000.coupler.res .........OK
- Comparing RESTART/20210322.120000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 185.773661
-The maximum resident set size (KB) = 788012
-
-Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_dyn32_phy32_intel
-Checking test 118 rap_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 249.761858
-The maximum resident set size (KB) = 685740
-
-Test 118 rap_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_dyn32_phy32_intel
-Checking test 119 hrrr_control_restart_dyn32_phy32_intel results ....
- Comparing sfcf012.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF12 .........OK
-
-The total amount of wall time = 94.800100
-The maximum resident set size (KB) = 672828
-
-Test 119 hrrr_control_restart_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_control_intel
-Checking test 120 conus13km_control_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing sfcf002.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing atmf002.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 120.458608
-The maximum resident set size (KB) = 1001904
-
-Test 120 conus13km_control_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_2threads_intel
-Checking test 121 conus13km_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 63.708613
-The maximum resident set size (KB) = 1006300
-
-Test 121 conus13km_2threads_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_restart_mismatch_intel
-Checking test 122 conus13km_restart_mismatch_intel results ....
- Comparing sfcf002.nc .........OK
- Comparing atmf002.nc .........OK
-
-The total amount of wall time = 70.556962
-The maximum resident set size (KB) = 881612
-
-Test 122 conus13km_restart_mismatch_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_intel
-Checking test 123 rap_control_dyn64_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf009.nc .........OK
- Comparing sfcf012.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf009.nc .........OK
- Comparing atmf012.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF09 .........OK
- Comparing GFSFLX.GrbF12 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF09 .........OK
- Comparing GFSPRS.GrbF12 .........OK
- Comparing RESTART/20210322.180000.coupler.res .........OK
- Comparing RESTART/20210322.180000.fv_core.res.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 231.102342
-The maximum resident set size (KB) = 808800
-
-Test 123 rap_control_dyn64_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_dyn32_phy32_intel
-Checking test 124 rap_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 293.406693
-The maximum resident set size (KB) = 953444
-
-Test 124 rap_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_dyn32_phy32_intel
-Checking test 125 hrrr_control_debug_dyn32_phy32_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 287.858761
-The maximum resident set size (KB) = 950340
-
-Test 125 hrrr_control_debug_dyn32_phy32_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_intel
-Checking test 126 conus13km_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210512.170000.phy_data.nc .........OK
- Comparing RESTART/20210512.170000.sfc_data.nc .........OK
-
-The total amount of wall time = 878.284115
-The maximum resident set size (KB) = 1032908
-
-Test 126 conus13km_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_qr_intel
-Checking test 127 conus13km_debug_qr_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20210512.170000.coupler.res .........OK
- Comparing RESTART/20210512.170000.fv_core.res.nc .........OK
- Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK
- Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK
-
-The total amount of wall time = 890.943396
-The maximum resident set size (KB) = 706196
-
-Test 127 conus13km_debug_qr_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_2threads_intel
-Checking test 128 conus13km_debug_2threads_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 512.752532
-The maximum resident set size (KB) = 1038256
-
-Test 128 conus13km_debug_2threads_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_radar_tten_debug_intel
-Checking test 129 conus13km_radar_tten_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 891.230808
-The maximum resident set size (KB) = 1099020
-
-Test 129 conus13km_radar_tten_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_debug_intel
-Checking test 130 rap_control_dyn64_phy32_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
-
-The total amount of wall time = 306.260542
-The maximum resident set size (KB) = 978604
-
-Test 130 rap_control_dyn64_phy32_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_intel
-Checking test 131 hafs_regional_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
-
-The total amount of wall time = 362.041813
-The maximum resident set size (KB) = 615168
-
-Test 131 hafs_regional_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_thompson_gfdlsf_intel
-Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
-
-The total amount of wall time = 362.816354
-The maximum resident set size (KB) = 967296
-
-Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_intel
-Checking test 133 hafs_regional_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 451.226496
-The maximum resident set size (KB) = 663968
-
-Test 133 hafs_regional_atm_ocn_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_wav_intel
-Checking test 134 hafs_regional_atm_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 773.805636
-The maximum resident set size (KB) = 699364
-
-Test 134 hafs_regional_atm_wav_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_wav_intel
-Checking test 135 hafs_regional_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing archv.2019_241_06.a .........OK
- Comparing archs.2019_241_06.a .........OK
- Comparing 20190829.060000.out_grd.ww3 .........OK
- Comparing 20190829.060000.out_pnt.ww3 .........OK
- Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 950.462122
-The maximum resident set size (KB) = 705936
-
-Test 135 hafs_regional_atm_ocn_wav_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_1nest_atm_intel
-Checking test 136 hafs_regional_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 329.945797
-The maximum resident set size (KB) = 390916
-
-Test 136 hafs_regional_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_telescopic_2nests_atm_intel
-Checking test 137 hafs_regional_telescopic_2nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
-
-The total amount of wall time = 424.056544
-The maximum resident set size (KB) = 403680
-
-Test 137 hafs_regional_telescopic_2nests_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_1nest_atm_intel
-Checking test 138 hafs_global_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 183.370516
-The maximum resident set size (KB) = 282692
-
-Test 138 hafs_global_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_multiple_4nests_atm_intel
-Checking test 139 hafs_global_multiple_4nests_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing atm.nest03.f006.nc .........OK
- Comparing sfc.nest03.f006.nc .........OK
- Comparing atm.nest04.f006.nc .........OK
- Comparing sfc.nest04.f006.nc .........OK
- Comparing atm.nest05.f006.nc .........OK
- Comparing sfc.nest05.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
- Comparing HURPRS.GrbF06.nest03 .........OK
- Comparing HURPRS.GrbF06.nest04 .........OK
- Comparing HURPRS.GrbF06.nest05 .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK
-
-The total amount of wall time = 533.029334
-The maximum resident set size (KB) = 370648
-
-Test 139 hafs_global_multiple_4nests_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_specified_moving_1nest_atm_intel
-Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing HURPRS.GrbF06 .........OK
- Comparing HURPRS.GrbF06.nest02 .........OK
-
-The total amount of wall time = 236.033646
-The maximum resident set size (KB) = 420680
-
-Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_intel
-Checking test 141 hafs_regional_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing RESTART/20200825.180000.coupler.res .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nc .........OK
- Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nc .........OK
- Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK
- Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK
- Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK
-
-The total amount of wall time = 222.784444
-The maximum resident set size (KB) = 423636
-
-Test 141 hafs_regional_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_intel
-Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
-
-The total amount of wall time = 281.563093
-The maximum resident set size (KB) = 486356
-
-Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_storm_following_1nest_atm_intel
-Checking test 143 hafs_global_storm_following_1nest_atm_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
-
-The total amount of wall time = 103.904984
-The maximum resident set size (KB) = 312176
-
-Test 143 hafs_global_storm_following_1nest_atm_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_debug_intel
-Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results ....
- Comparing atmf001.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atm.nest02.f001.nc .........OK
- Comparing sfc.nest02.f001.nc .........OK
-
-The total amount of wall time = 820.616990
-The maximum resident set size (KB) = 499728
-
-Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_intel
-Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 545.584197
-The maximum resident set size (KB) = 530336
-
-Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel
-Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing atm.nest02.f006.nc .........OK
- Comparing sfc.nest02.f006.nc .........OK
- Comparing archv.2020_238_18.a .........OK
- Comparing archs.2020_238_18.a .........OK
- Comparing 20200825.180000.out_grd.ww3 .........OK
- Comparing 20200825.180000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 539.742323
-The maximum resident set size (KB) = 709488
-
-Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel
-Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results ....
- Comparing atmf003.nc .........OK
- Comparing sfcf003.nc .........OK
- Comparing atm.nest02.f003.nc .........OK
- Comparing sfc.nest02.f003.nc .........OK
- Comparing ocn_2020_08_25_15.nc .........OK
- Comparing 20200825.150000.out_grd.ww3 .........OK
- Comparing 20200825.150000.out_pnt.ww3 .........OK
-
-The total amount of wall time = 395.034358
-The maximum resident set size (KB) = 710156
-
-Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_intel
-Checking test 148 hafs_regional_docn_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 420.771629
-The maximum resident set size (KB) = 653444
-
-Test 148 hafs_regional_docn_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_oisst_intel
-Checking test 149 hafs_regional_docn_oisst_intel results ....
- Comparing atmf006.nc .........OK
- Comparing sfcf006.nc .........OK
- Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK
- Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK
-
-The total amount of wall time = 425.538250
-The maximum resident set size (KB) = 642652
-
-Test 149 hafs_regional_docn_oisst_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_datm_cdeps_intel
-Checking test 150 hafs_regional_datm_cdeps_intel results ....
- Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK
- Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK
-
-The total amount of wall time = 952.679601
-The maximum resident set size (KB) = 881048
-
-Test 150 hafs_regional_datm_cdeps_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_sbs_intel
-Checking test 151 control_p8_atmlnd_sbs_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 283.442813
-The maximum resident set size (KB) = 1552624
-
-Test 151 control_p8_atmlnd_sbs_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_intel
-Checking test 152 control_p8_atmlnd_intel results ....
- Comparing sfcf000.tile1.nc .........OK
- Comparing sfcf000.tile2.nc .........OK
- Comparing sfcf000.tile3.nc .........OK
- Comparing sfcf000.tile4.nc .........OK
- Comparing sfcf000.tile5.nc .........OK
- Comparing sfcf000.tile6.nc .........OK
- Comparing sfcf012.tile1.nc .........OK
- Comparing sfcf012.tile2.nc .........OK
- Comparing sfcf012.tile3.nc .........OK
- Comparing sfcf012.tile4.nc .........OK
- Comparing sfcf012.tile5.nc .........OK
- Comparing sfcf012.tile6.nc .........OK
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf000.tile1.nc .........OK
- Comparing atmf000.tile2.nc .........OK
- Comparing atmf000.tile3.nc .........OK
- Comparing atmf000.tile4.nc .........OK
- Comparing atmf000.tile5.nc .........OK
- Comparing atmf000.tile6.nc .........OK
- Comparing atmf012.tile1.nc .........OK
- Comparing atmf012.tile2.nc .........OK
- Comparing atmf012.tile3.nc .........OK
- Comparing atmf012.tile4.nc .........OK
- Comparing atmf012.tile5.nc .........OK
- Comparing atmf012.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 284.467436
-The maximum resident set size (KB) = 1537904
-
-Test 152 control_p8_atmlnd_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_atmlnd_intel
-Checking test 153 control_restart_p8_atmlnd_intel results ....
- Comparing sfcf024.tile1.nc .........OK
- Comparing sfcf024.tile2.nc .........OK
- Comparing sfcf024.tile3.nc .........OK
- Comparing sfcf024.tile4.nc .........OK
- Comparing sfcf024.tile5.nc .........OK
- Comparing sfcf024.tile6.nc .........OK
- Comparing atmf024.tile1.nc .........OK
- Comparing atmf024.tile2.nc .........OK
- Comparing atmf024.tile3.nc .........OK
- Comparing atmf024.tile4.nc .........OK
- Comparing atmf024.tile5.nc .........OK
- Comparing atmf024.tile6.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK
- Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK
-
-The total amount of wall time = 156.243371
-The maximum resident set size (KB) = 738544
-
-Test 153 control_restart_p8_atmlnd_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_intel
-Checking test 154 atmaero_control_p8_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 245.700323
-The maximum resident set size (KB) = 2854944
-
-Test 154 atmaero_control_p8_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_intel
-Checking test 155 atmaero_control_p8_rad_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 281.685079
-The maximum resident set size (KB) = 2913048
-
-Test 155 atmaero_control_p8_rad_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_micro_intel
-Checking test 156 atmaero_control_p8_rad_micro_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf024.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf024.nc .........OK
- Comparing GFSFLX.GrbF00 .........OK
- Comparing GFSFLX.GrbF24 .........OK
- Comparing GFSPRS.GrbF00 .........OK
- Comparing GFSPRS.GrbF24 .........OK
- Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK
- Comparing RESTART/20210323.060000.coupler.res .........OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK
-
-The total amount of wall time = 297.673172
-The maximum resident set size (KB) = 2925768
-
-Test 156 atmaero_control_p8_rad_micro_intel PASS
-
-
-baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel
-working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_atmaq_debug_intel
-Checking test 157 regional_atmaq_debug_intel results ....
- Comparing sfcf000.nc .........OK
- Comparing sfcf001.nc .........OK
- Comparing atmf000.nc .........OK
- Comparing atmf001.nc .........OK
- Comparing RESTART/20190801.130000.coupler.res .........OK
- Comparing RESTART/20190801.130000.fv_core.res.nc .........OK
- Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK
- Comparing RESTART/20190801.130000.phy_data.nc .........OK
- Comparing RESTART/20190801.130000.sfc_data.nc .........OK
-
-The total amount of wall time = 1339.534722
-The maximum resident set size (KB) = 4436092
-
-Test 157 regional_atmaq_debug_intel PASS
-REGRESSION TEST WAS SUCCESSFUL
-Tue Feb 13 22:27:49 UTC 2024
-Elapsed time: 01h:31m:33s. Have a nice day!
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22069
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [22:59, 22:35]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:45, 01:38](2972 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:46]
+PASS -- TEST 'cpld_control_gfsv17_intel' [51:27, 01:59](1597 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:26, 01:45](1716 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [33:21, 01:48](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:28, 01:15](1571 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:19, 10:17]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [52:34, 02:01](1603 MB)
+
+PASS -- COMPILE 's2swa_intel' [25:07, 24:31]
+PASS -- TEST 'cpld_control_p8_intel' [38:46, 01:46](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:46, 01:55](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [29:59, 01:26](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [38:45, 01:44](3030 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [29:59, 01:22](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [38:41, 01:22](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [38:39, 01:46](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [38:03, 01:38](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 02:14](3001 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [37:56, 04:39](3950 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:43, 04:09](4252 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [37:22, 01:13](2969 MB)
+
+PASS -- COMPILE 's2sw_intel' [33:51, 32:36]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [29:59, 01:36](1587 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:53, 01:43](1633 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:18, 09:53]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:35, 01:10](1630 MB)
+
+PASS -- COMPILE 's2s_intel' [14:31, 13:48]
+PASS -- TEST 'cpld_control_c48_intel' [49:20, 01:08](2642 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:42, 16:34]
+PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 01:18](3005 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:33]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:15, 01:17](1603 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:34, 01:55](900 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:20, 01:58](1573 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:37, 15:48]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:16, 01:07](1617 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:04, 10:43]
+PASS -- TEST 'control_flake_intel' [42:30, 00:23](577 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [42:30, 00:54](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:30, 00:46](528 MB)
+PASS -- TEST 'control_latlon_intel' [42:30, 00:47](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:30, 00:55](526 MB)
+PASS -- TEST 'control_c48_intel' [42:29, 01:07](715 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [42:29, 01:03](715 MB)
+PASS -- TEST 'control_c192_intel' [42:30, 00:46](642 MB)
+PASS -- TEST 'control_c384_intel' [42:34, 01:15](952 MB)
+PASS -- TEST 'control_c384gdas_intel' [42:34, 02:03](1092 MB)
+PASS -- TEST 'control_stochy_intel' [42:30, 00:25](528 MB)
+PASS -- TEST 'control_stochy_restart_intel' [39:57, 01:04](333 MB)
+PASS -- TEST 'control_lndp_intel' [42:30, 00:30](529 MB)
+PASS -- TEST 'control_iovr4_intel' [42:30, 00:51](522 MB)
+PASS -- TEST 'control_iovr5_intel' [42:30, 00:53](524 MB)
+PASS -- TEST 'control_p8_intel' [42:30, 01:48](1511 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [42:30, 02:05](1504 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [42:30, 02:05](1510 MB)
+PASS -- TEST 'control_restart_p8_intel' [36:57, 01:13](690 MB)
+PASS -- TEST 'control_noqr_p8_intel' [42:30, 01:43](1487 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [36:57, 01:11](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [42:30, 01:41](1497 MB)
+PASS -- TEST 'control_2threads_p8_intel' [42:30, 01:12](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [42:30, 01:25](1498 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [42:30, 01:14](1570 MB)
+PASS -- TEST 'control_p8_mynn_intel' [42:30, 02:01](1511 MB)
+PASS -- TEST 'merra2_thompson_intel' [39:56, 01:43](1516 MB)
+PASS -- TEST 'regional_control_intel' [38:50, 00:25](605 MB)
+PASS -- TEST 'regional_restart_intel' [32:52, 00:37](779 MB)
+PASS -- TEST 'regional_decomp_intel' [36:56, 01:12](605 MB)
+PASS -- TEST 'regional_2threads_intel' [36:41, 01:01](664 MB)
+PASS -- TEST 'regional_noquilt_intel' [36:39, 00:33](1138 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [36:38, 00:31](606 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [36:37, 00:25](608 MB)
+PASS -- TEST 'regional_wofs_intel' [35:25, 00:26](1580 MB)
+
+PASS -- COMPILE 'rrfs_intel' [30:49, 30:04]
+PASS -- TEST 'rap_control_intel' [21:38, 01:33](918 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:39, 01:33](1092 MB)
+PASS -- TEST 'rap_decomp_intel' [21:29, 01:25](919 MB)
+PASS -- TEST 'rap_2threads_intel' [21:19, 01:36](1007 MB)
+PASS -- TEST 'rap_restart_intel' [12:41, 01:44](784 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [20:31, 02:05](916 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:31, 01:52](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [11:02, 02:11](787 MB)
+PASS -- TEST 'hrrr_control_intel' [20:23, 01:37](906 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [20:07, 01:03](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [19:02, 01:49](994 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [14:47, 01:16](739 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [19:00, 02:08](911 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [19:00, 01:02](1876 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:43, 01:10](1863 MB)
+
+PASS -- COMPILE 'csawmg_intel' [18:29, 17:07]
+PASS -- TEST 'control_csawmg_intel' [32:42, 00:46](598 MB)
+PASS -- TEST 'control_csawmgt_intel' [32:15, 00:54](599 MB)
+PASS -- TEST 'control_ras_intel' [31:48, 00:22](562 MB)
+
+PASS -- COMPILE 'wam_intel' [19:48, 18:43]
+PASS -- TEST 'control_wam_intel' [29:07, 01:09](269 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:02, 09:42]
+PASS -- TEST 'control_p8_faster_intel' [35:25, 01:08](1501 MB)
+PASS -- TEST 'regional_control_faster_intel' [35:07, 00:48](612 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:41, 04:41]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:04, 01:43](684 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:21, 01:35](690 MB)
+PASS -- TEST 'control_stochy_debug_intel' [31:34, 01:18](693 MB)
+PASS -- TEST 'control_lndp_debug_intel' [30:57, 00:20](693 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [30:45, 01:34](731 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [30:42, 01:38](729 MB)
+PASS -- TEST 'control_ras_debug_intel' [30:39, 00:38](705 MB)
+PASS -- TEST 'control_diag_debug_intel' [30:38, 00:41](744 MB)
+PASS -- TEST 'control_debug_p8_intel' [30:32, 01:14](1518 MB)
+PASS -- TEST 'regional_debug_intel' [30:21, 00:21](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [30:13, 00:34](1073 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [29:48, 01:23](1066 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [28:49, 01:10](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [28:47, 01:11](1070 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:32, 01:20](1073 MB)
+PASS -- TEST 'rap_diag_debug_intel' [28:28, 01:10](1157 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:05, 00:23](1072 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:44, 01:24](1076 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [27:07, 01:14](1081 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [26:32, 01:51](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [26:31, 00:26](1072 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [26:25, 01:44](1078 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [25:28, 00:33](1068 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [25:27, 00:55](1066 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [25:19, 00:42](1074 MB)
+PASS -- TEST 'rap_flake_debug_intel' [24:58, 00:34](1073 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:31, 02:03](1082 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [17:19, 16:17]
+PASS -- TEST 'control_wam_debug_intel' [23:55, 01:18](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:49, 09:17]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [23:56, 01:47](952 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:48, 01:42](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:20, 02:29](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:20, 01:42](854 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:34, 02:06](843 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:31, 02:31](784 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:46, 02:32](689 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:16, 00:51](670 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:26, 21:13]
+PASS -- TEST 'conus13km_control_intel' [18:32, 01:36](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [13:56, 00:58](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [13:50, 00:54](888 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:59]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:28, 01:53](809 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:50]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:19, 00:28](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:49, 00:35](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:09, 00:49](1034 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 00:45](712 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 00:39](1035 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 00:49](1101 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:21, 12:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:21, 01:34](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:13, 09:54]
+PASS -- TEST 'hafs_regional_atm_intel' [16:24, 01:40](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:11, 01:10](970 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:05, 02:12](662 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 01:47](695 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:48, 02:23](706 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:58, 01:23](387 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 01:33](411 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 01:58](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:15, 02:27](370 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 01:50](413 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 01:07](420 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:30, 00:55](490 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:36, 00:26](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [16:12, 15:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:05, 00:52](502 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:51]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:51, 01:19](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:50, 00:58](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:29, 01:22](715 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:38, 12:17]
+PASS -- TEST 'hafs_regional_docn_intel' [09:25, 01:15](659 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 01:37](645 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:01, 00:47](880 MB)
+
+PASS -- COMPILE 'atml_intel' [17:14, 16:48]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:01, 01:23](1536 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 01:32](1549 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:03, 00:51](739 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:41, 12:06]
+PASS -- TEST 'atmaero_control_p8_intel' [08:24, 01:52](2854 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 01:23](2908 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 01:15](2925 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:00, 14:39]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:13, 06:55]
+PASS -- TEST 'regional_atmaq_debug_intel' [08:09, 01:14](4443 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240220 12:55:51
+Ending Date/Time: 20240220 14:18:54
+Total Time: 01h:23m:34s
+Compiles Completed: 31/31
+Tests Completed: 157/157
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF WCOSS2 REGRESSION TESTING LOG====
diff --git a/tests/opnReqTest b/tests/opnReqTest
index 4bec5cbc00..b9a003b706 100755
--- a/tests/opnReqTest
+++ b/tests/opnReqTest
@@ -104,12 +104,12 @@ build_opnReqTests() {
;;
esac
MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//')
- export COMPILE_NR=${name}
+ export COMPILE_ID=${name}
cat <<-EOF > ${RUNDIR_ROOT}/compile_${name}.env
export MACHINE_ID=${MACHINE_ID}
- export JOB_NR=${COMPILE_NR}
- export COMPILE_NR=${COMPILE_NR}
+ export JOB_NR=${COMPILE_ID}
+ export COMPILE_ID=${COMPILE_ID}
export PATHRT=${PATHRT}
export PATHTR=${PATHTR}
export SCHEDULER=${SCHEDULER}
@@ -124,7 +124,7 @@ build_opnReqTests() {
EOF
if [[ $ECFLOW == true ]]; then
- COMPILE_NR=$name
+ COMPILE_ID=$name
ecflow_create_compile_task
else
echo "compiling $name with compile option $MAKE_OPT"
@@ -252,8 +252,8 @@ run_opnReqTests() {
EOF
if [[ $ECFLOW == true ]]; then
- TEST_NR=${RT_SUFFIX:1}
- COMPILE_NR=$comp_nm
+ TEST_ID=${RT_SUFFIX:1}
+ COMPILE_ID=$comp_nm
RT_COMPILER=${RT_COMPILER:-intel}
DEP_RUN=
if [[ ${RT_SUFFIX} == _std || ${RT_SUFFIX} == _thr || ${RT_SUFFIX} == _mpi || ${RT_SUFFIX} == _dcp || ${RT_SUFFIX} == _rst || ${RT_SUFFIX} == _fhz ]]; then
@@ -269,8 +269,8 @@ run_opnReqTests() {
else
echo "Running test for $rc"
echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TPN: $TPN"
- TEST_NR=${RT_SUFFIX:1}
- ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_NR $comp_nm > $LOG_DIR/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1
+ TEST_ID=${RT_SUFFIX:1}
+ ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_ID $comp_nm > $LOG_DIR/run_${TEST_ID}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1
fi
done
diff --git a/tests/rt.sh b/tests/rt.sh
index 960e20bb87..8571bac483 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -30,21 +30,62 @@ usage() {
[[ $# -eq 0 ]] && usage
-rt_single() {
- rm -f $RT_SINGLE_CONF
+update_rtconf() {
+
+ find_match() {
+ # This function finds if a test in $TESTS_FILE matches one
+ # in our list of tests to be run.
+ THIS_TEST_WITH_COMPILER=$1
+ shift
+ TWC=("$@")
+ FOUND=false
+ for i in "${!TWC[@]}"; do
+ if [[ "${TWC[$i]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then
+ FOUND=true
+ echo "${i}"
+ return
+ fi
+ done
+ if [[ $FOUND == false ]]; then
+ echo "-1"
+ fi
+ }
+
+ # This script will update the rt.conf ($TESTS_FILE) if needed by the
+ # -b or -n options being called/used.
+
+ # THE USER CHOSE THE -b OPTION
+ if [[ $NEW_BASELINES_FILE != '' ]]; then
+ [[ -s "$NEW_BASELINES_FILE" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..."
+ TEST_WITH_COMPILE=()
+ readarray -t TEST_WITH_COMPILE < "$NEW_BASELINES_FILE"
+ # else USER CHOSE THE -l OPTION
+ elif [[ $DEFINE_CONF_FILE == true ]]; then
+ echo "No update needed to TESTS_FILE"
+ return
+ # else USER CHOSE THE -n OPTION
+ elif [[ $RUN_SINGLE_TEST == true ]]; then
+ TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}")
+ else
+ echo "No update needed to rt.conf"
+ return
+ fi
+
+ RT_TEMP_CONF="rt_temp.conf"
+ rm -f $RT_TEMP_CONF && touch $RT_TEMP_CONF
local compile_line=''
- local run_line=''
+
while read -r line || [ "$line" ]; do
line="${line#"${line%%[![:space:]]*}"}"
+ [[ -n $line ]] || continue
[[ ${#line} == 0 ]] && continue
[[ $line == \#* ]] && continue
-
+
if [[ $line == COMPILE* ]] ; then
+ COMPILE_LINE_USED=false
MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
- if [[ ! $RT_COMPILER_IN == $RT_COMPILER ]]; then
- continue
- fi
+
if [[ ${MACHINES} == '' ]]; then
compile_line=$line
elif [[ ${MACHINES} == -* ]]; then
@@ -52,47 +93,334 @@ rt_single() {
elif [[ ${MACHINES} == +* ]]; then
[[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line
fi
+
fi
if [[ $line =~ RUN ]]; then
- tmp_test=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- if [[ $SINGLE_NAME == $tmp_test && $compile_line != '' ]]; then
- echo $compile_line > $RT_SINGLE_CONF
- dep_test=$(echo $line | grep -w $tmp_test | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
+ tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
+ TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}")
+
+ if [[ $TEST_IDX != -1 ]]; then
+ if [[ $COMPILE_LINE_USED == false ]]; then
+ echo "$compile_line" >> $RT_TEMP_CONF
+ COMPILE_LINE_USED=true
+ fi
+ dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
+
if [[ $dep_test != '' ]]; then
- dep_line=$(cat rt.conf | grep -w "$dep_test" | grep -v "$tmp_test")
- dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}"
- echo $dep_line >> $RT_SINGLE_CONF
+ if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then
+
+ dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test")
+ dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}"
+ dep_line=$(echo "${dep_line}" | tr -d '\n')
+ CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line")
+ CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line")
+
+ if [[ $RT_COMPILER_IN == "intel" ]]; then
+ echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF
+ elif [[ $RT_COMPILER_IN == "gnu" ]]; then
+ echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF
+ fi
+ fi
fi
- echo $line >> $RT_SINGLE_CONF
- break
+ echo "$line" >> $RT_TEMP_CONF
fi
fi
- done < $TESTS_FILE
+ done < "$TESTS_FILE"
- if [[ ! -f $RT_SINGLE_CONF ]]; then
- echo "$SINGLE_NAME does not exist or cannot be run on $MACHINE_ID"
+ if [[ ! -s $RT_TEMP_CONF ]]; then
+ echo "The tests listed/chosen do not exist or cannot be run on $MACHINE_ID"
exit 1
+ else
+ TESTS_FILE=$RT_TEMP_CONF
fi
}
+generate_log() {
+
+ COMPILE_COUNTER=0
+ FAILED_COMPILES=()
+ TEST_COUNTER=0
+ FAILED_TESTS=()
+ FAILED_TEST_ID=()
+ FAILED_COMPILE_LOGS=()
+ FAILED_TEST_LOGS=()
+ TEST_CHANGES_LOG="test_changes.list"
+ TEST_END_TIME="$(date '+%Y%m%d %T')"
+ cat << EOF > "${REGRESSIONTEST_LOG}"
+====START OF ${MACHINE_ID^^} REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+$(git rev-parse HEAD)
+
+Submodule hashes used in testing:
+EOF
+ cd ..
+ git submodule status >> "${REGRESSIONTEST_LOG}"
+ echo; echo >> "${REGRESSIONTEST_LOG}"
+ cd tests
+
+ cat << EOF >> "${REGRESSIONTEST_LOG}"
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: ${RTPWD}
+COMPARISON DIRECTORY: ${RUNDIR_ROOT}
+
+RT.SH OPTIONS USED:
+EOF
+
+ [[ -n $ACCNR ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}"
+ [[ -n $NEW_BASELINES_FILE ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}"
+ [[ $CREATE_BASELINE == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}"
+ [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}"
+ [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}"
+ [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}"
+ [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
+ [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}"
+ [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
+ [[ $ROCOTO == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}"
+ [[ $ECFLOW == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}"
+
+
+ [[ -f "${TEST_CHANGES_LOG}" ]] && rm ${TEST_CHANGES_LOG}
+ touch ${TEST_CHANGES_LOG}
+ while read -r line || [ "$line" ]; do
+ line="${line#"${line%%[![:space:]]*}"}"
+ [[ -n "$line" ]] || continue
+ [[ ${#line} == 0 ]] && continue
+ [[ $line == \#* ]] && continue
+ local valid_compile=false
+ local valid_test=false
+
+ if [[ $line == COMPILE* ]] ; then
+
+ CMACHINES=$(echo "$line" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
+ COMPILER=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
+ COMPILE_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
+ COMPILE_ID=${COMPILE_NAME}_${COMPILER}
+
+ if [[ ${CMACHINES} == '' ]]; then
+ valid_compile=true
+ elif [[ ${CMACHINES} == -* ]]; then
+ [[ ${CMACHINES} =~ ${MACHINE_ID} ]] || valid_compile=true
+ elif [[ ${CMACHINES} == +* ]]; then
+ [[ ${CMACHINES} =~ ${MACHINE_ID} ]] && valid_compile=true
+ fi
+
+ if [[ $valid_compile == true ]]; then
+ COMPILE_COUNTER=$((COMPILE_COUNTER+1))
+ FAIL_LOG=""
+ COMPILE_RESULT=""
+ TIME_FILE=""
+ COMPILE_TIME=""
+ RT_COMPILE_TIME=""
+ if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then
+ COMPILE_RESULT="MISSING"
+ FAIL_LOG="N/A"
+ elif [[ -f fail_compile_${COMPILE_ID} ]]; then
+ COMPILE_RESULT="FAIL TO RUN"
+ FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
+ else
+ if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then
+ COMPILE_RESULT="FAIL FROM DISK QUOTA"
+ FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
+ elif grep -q "timeout" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then
+ COMPILE_RESULT="FAIL FROM TIMEOUT"
+ FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
+ else
+ COMPILE_RESULT="PASS"
+ TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt"
+ if [[ -f "${TIME_FILE}" ]]; then
+ while read -r times || [ "$times" ]; do
+ times="${times#"${times%%[![:space:]]*}"}"
+
+ DATE1=$(echo "$times" | cut -d ',' -f2 )
+ DATE2=$(echo "$times" | cut -d ',' -f3 )
+ DATE3=$(echo "$times" | cut -d ',' -f4 )
+ DATE4=$(echo "$times" | cut -d ',' -f5 )
+
+ COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
+ RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
+
+ done < "$TIME_FILE"
+ fi
+ fi
+ fi
+ echo >> "${REGRESSIONTEST_LOG}"
+ echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}"
+ [[ -n $FAIL_LOG ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}")
+ [[ -n $FAIL_LOG ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}")
+ fi
+
+ elif [[ $line =~ RUN ]]; then
+
+ RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
+ TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
+ GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//')
+
+ if [[ ${RMACHINES} == '' ]]; then
+ valid_test=true
+ elif [[ ${RMACHINES} == -* ]]; then
+ [[ ${RMACHINES} =~ ${MACHINE_ID} ]] || valid_test=true
+ elif [[ ${RMACHINES} == +* ]]; then
+ [[ ${RMACHINES} =~ ${MACHINE_ID} ]] && valid_test=true
+ fi
+
+ if [[ $valid_test == true ]]; then
+ TEST_COUNTER=$((TEST_COUNTER+1))
+ GETMEMFROMLOG=""
+ FAIL_LOG=""
+ TEST_RESULT=""
+ TIME_FILE=""
+ TEST_TIME=""
+ RT_TEST_TIME=""
+ RT_TEST_MEM=""
+ if [[ $CREATE_BASELINE == true && $GEN_BASELINE != "baseline" ]]; then
+ TEST_RESULT="SKIPPED (TEST DOES NOT GENERATE BASELINE)"
+ elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then
+ TEST_RESULT="MISSING"
+ FAIL_LOG="N/A"
+ elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then
+ if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then
+ TEST_RESULT="FAIL TO COMPARE"
+ FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"
+ else
+ TEST_RESULT="FAIL TO RUN"
+ FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
+ fi
+ else
+ if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then
+ TEST_RESULT="FAIL FROM DISK QUOTA"
+ FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
+ elif grep -q "timeout" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then
+ TEST_RESULT="FAIL FROM TIMEOUT"
+ FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
+ else
+
+ TEST_RESULT="PASS"
+ TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt"
+ GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log")
+ RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9')
+ RT_TEST_MEM=$((RT_TEST_MEM/1000))
+ if [[ -f "${TIME_FILE}" ]]; then
+ while read -r times || [ "$times" ]; do
+ times="${times#"${times%%[![:space:]]*}"}"
+
+ DATE1=$(echo "$times" | cut -d ',' -f2 )
+ DATE2=$(echo "$times" | cut -d ',' -f3 )
+ DATE3=$(echo "$times" | cut -d ',' -f4 )
+ DATE4=$(echo "$times" | cut -d ',' -f5 )
+
+ TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
+ RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
+
+ done < "$TIME_FILE"
+ fi
+ fi
+ fi
+
+ echo "${TEST_RESULT} -- TEST '${TEST_NAME}_${COMPILER}' [${RT_TEST_TIME}, ${TEST_TIME}](${RT_TEST_MEM} MB)" >> "${REGRESSIONTEST_LOG}"
+ [[ -n $FAIL_LOG ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}")
+ [[ -n $FAIL_LOG ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}")
+ [[ -n $FAIL_LOG ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}")
+ fi
+ fi
+ done < "$TESTS_FILE"
+
+ elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) )
+
+ cat << EOF >> "${REGRESSIONTEST_LOG}"
+
+SYNOPSIS:
+Starting Date/Time: ${TEST_START_TIME}
+Ending Date/Time: ${TEST_END_TIME}
+Total Time: ${elapsed_time}
+Compiles Completed: $((COMPILE_COUNTER-${#FAILED_COMPILES[@]}))/${COMPILE_COUNTER}
+Tests Completed: $((TEST_COUNTER-${#FAILED_TESTS[@]}))/${TEST_COUNTER}
+EOF
+ # PRINT FAILED COMPILES
+ if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then
+ echo "Failed Compiles:" >> "${REGRESSIONTEST_LOG}"
+ for i in "${!FAILED_COMPILES[@]}"; do
+ echo "* ${FAILED_COMPILES[$i]}" >> "${REGRESSIONTEST_LOG}"
+ echo "-- LOG: ${FAILED_COMPILE_LOGS[$i]}" >> "${REGRESSIONTEST_LOG}"
+ done
+ fi
+
+ # PRINT FAILED TESTS
+ if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
+
+ echo "Failed Tests:" >> ${REGRESSIONTEST_LOG}
+ for j in "${!FAILED_TESTS[@]}"; do
+ echo "* ${FAILED_TESTS[$j]}" >> "${REGRESSIONTEST_LOG}"
+ echo "-- LOG: ${FAILED_TEST_LOGS[$j]}" >> "${REGRESSIONTEST_LOG}"
+ done
+
+ fi
+
+ # WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG
+ if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
+ for item in "${FAILED_TEST_ID[@]}"; do
+ echo "$item" >> "${TEST_CHANGES_LOG}"
+ done
+ fi
+
+ if [[ "${#FAILED_COMPILES[@]}" -eq "0" && "${#FAILED_TESTS[@]}" -eq "0" ]]; then
+ cat << EOF >> "${REGRESSIONTEST_LOG}"
+
+NOTES:
+A file '${TEST_CHANGES_LOG}' was generated but is empty.
+If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'.
+
+Result: SUCCESS
+
+====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG====
+EOF
+ echo "Performing Cleanup..."
+ rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp
+ [[ ${KEEP_RUNDIR} == false ]] && rm -rf "${RUNDIR_ROOT}" && rm "${PATHRT}/run_dir"
+ [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" *_lock.db
+ [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20*
+ echo "REGRESSION TEST RESULT: SUCCESS"
+ else
+ cat << EOF >> "${REGRESSIONTEST_LOG}"
+
+NOTES:
+A file '${TEST_CHANGES_LOG}' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'.
+
+Result: FAILURE
+
+====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG====
+EOF
+ echo "REGRESSION TEST RESULT: FAILURE"
+ fi
+
+}
+
create_or_run_compile_task() {
- cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env
- export JOB_NR=${JOB_NR}
- export COMPILE_NR=${COMPILE_NR}
- export MACHINE_ID=${MACHINE_ID}
- export RT_COMPILER=${RT_COMPILER}
- export PATHRT=${PATHRT}
- export PATHTR=${PATHTR}
- export SCHEDULER=${SCHEDULER}
- export ACCNR=${ACCNR}
- export QUEUE=${COMPILE_QUEUE}
- export PARTITION=${PARTITION}
- export ROCOTO=${ROCOTO}
- export ECFLOW=${ECFLOW}
- export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
- export LOG_DIR=${LOG_DIR}
+ cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
+export JOB_NR=${JOB_NR}
+export COMPILE_ID=${COMPILE_ID}
+export MACHINE_ID=${MACHINE_ID}
+export RT_COMPILER=${RT_COMPILER}
+export PATHRT=${PATHRT}
+export PATHTR=${PATHTR}
+export SCHEDULER=${SCHEDULER}
+export ACCNR=${ACCNR}
+export QUEUE=${COMPILE_QUEUE}
+export PARTITION=${PARTITION}
+export ROCOTO=${ROCOTO}
+export ECFLOW=${ECFLOW}
+export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
+export LOG_DIR=${LOG_DIR}
EOF
if [[ $ROCOTO == true ]]; then
@@ -100,7 +428,7 @@ EOF
elif [[ $ECFLOW == true ]]; then
ecflow_create_compile_task
else
- ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_NR} > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1
+ ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_ID} > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1
fi
RT_SUFFIX=""
@@ -157,8 +485,6 @@ else
exit 1
fi
-readonly RT_SINGLE_CONF='rt_single.conf'
-
source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does.
source rt_utils.sh
source module-setup.sh
@@ -167,7 +493,6 @@ CREATE_BASELINE=false
ROCOTO=false
ECFLOW=false
KEEP_RUNDIR=false
-SINGLE_NAME=''
TEST_35D=false
export skip_check_results=false
export delete_rundir=false
@@ -175,6 +500,8 @@ SKIP_ORDER=false
RTPWD_NEW_BASELINE=false
TESTS_FILE='rt.conf'
NEW_BASELINES_FILE=''
+DEFINE_CONF_FILE=false
+RUN_SINGLE_TEST=false
ACCNR=${ACCNR:-""}
while getopts ":a:b:cl:mn:dwkreh" opt; do
@@ -189,32 +516,27 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do
CREATE_BASELINE=true
;;
l)
+ DEFINE_CONF_FILE=true
TESTS_FILE=$OPTARG
- SKIP_ORDER=true
+ grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..."
;;
m)
# redefine RTPWD to point to newly created baseline outputs
RTPWD_NEW_BASELINE=true
;;
n)
- SINGLE_OPTS=("$OPTARG")
- until [[ $(eval "echo \${$OPTIND}") =~ ^-.* ]] || [ -z $(eval "echo \${$OPTIND}") ]; do
- SINGLE_OPTS+=($(eval "echo \${$OPTIND}"))
- OPTIND=$((OPTIND + 1))
- done
+ RUN_SINGLE_TEST=true
+ IFS=' ' read -r -a SINGLE_OPTS <<< $OPTARG
if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then
- echo "The -n option needs AND , i.e. -n control_p8 intel"
- exit 1
+ die 'The -n option needs AND in quotes, i.e. -n "control_p8 intel"'
fi
- SINGLE_NAME=${SINGLE_OPTS[0]}
- export RT_COMPILER=${SINGLE_OPTS[1]}
- if [[ "$RT_COMPILER" == "intel" ]] || [[ "$RT_COMPILER" == "gnu" ]]; then
- echo "COMPILER set to ${RT_COMPILER}"
- else
- echo "Compiler must be either 'intel' or 'gnu'."
- exit 1
+ SRT_NAME="${SINGLE_OPTS[0]}"
+ SRT_COMPILER="${SINGLE_OPTS[1]}"
+
+ if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then
+ die "COMPILER MUST BE 'intel' OR 'gnu'"
fi
;;
d)
@@ -249,6 +571,11 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do
esac
done
+#Check to error out if incompatible options are chosen together
+[[ $KEEP_RUNDIR == true && $delete_rundir == true ]] && die "-k and -d options cannot be used at the same time"
+[[ $ECFLOW == true && $ROCOTO == true ]] && die "-r and -e options cannot be used at the same time"
+[[ $CREATE_BASELINE == true && $RTPWD_NEW_BASELINE == true ]] && die "-c and -m options cannot be used at the same time"
+
if [[ -z "$ACCNR" ]]; then
echo "Please use -a to set group account to use on HPC"
exit 1
@@ -259,13 +586,6 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR
if [[ $MACHINE_ID = wcoss2 ]]; then
- #module use /usrx/local/dev/emc_rocoto/modulefiles
- #module load ruby/2.5.1 rocoto/1.3.0rc2
- #ROCOTORUN=$(which rocotorun)
- #ROCOTOSTAT=$(which rocotostat)
- #ROCOTOCOMPLETE=$(which rocotocomplete)
- #ROCOTO_SCHEDULER=lsf
-
module load ecflow/5.6.0.13
module load intel/19.1.3.304 python/3.8.6
ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
@@ -279,6 +599,7 @@ if [[ $MACHINE_ID = wcoss2 ]]; then
DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT
QUEUE=dev
COMPILE_QUEUE=dev
+ ROCOTO_SCHEDULER=pbs
PARTITION=
STMP=/lfs/h2/emc/ptmp
PTMP=/lfs/h2/emc/ptmp
@@ -299,6 +620,7 @@ elif [[ $MACHINE_ID = acorn ]]; then
DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT
QUEUE=dev
COMPILE_QUEUE=dev
+ ROCOTO_SCHEDULER=pbs
PARTITION=
STMP=/lfs/h2/emc/ptmp
PTMP=/lfs/h2/emc/ptmp
@@ -365,6 +687,7 @@ elif [[ $MACHINE_ID = orion ]]; then
ROCOTORUN=$(which rocotorun)
ROCOTOSTAT=$(which rocotostat)
ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles
module load ecflow/5.8.4
@@ -387,6 +710,7 @@ elif [[ $MACHINE_ID = hercules ]]; then
ROCOTORUN=$(which rocotorun)
ROCOTOSTAT=$(which rocotostat)
ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles
module load ecflow/5.8.4
@@ -454,10 +778,16 @@ elif [[ $MACHINE_ID = s4 ]]; then
elif [[ $MACHINE_ID = derecho ]]; then
- export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH
- export PATH=/glade/work/epicufsrt/contrib/derecho/rocoto/bin:$PATH
- export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
- ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh
+ module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles
+ module load rocoto
+ module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles
+ module load ecflow/5.8.4
+ module unload ncarcompilers
+ module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core
+ module load stack-intel/2021.10.0
+ module load stack-python/3.10.8
+# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
+ ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
ECF_PORT=$(( $(id -u) + 1500 ))
QUEUE=main
@@ -536,12 +866,14 @@ NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST
# Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set
RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$
mkdir -p ${RUNDIR_ROOT}
+if [[ -e ${PATHRT}/run_dir ]]; then
+ rm ${PATHRT}/run_dir
+fi
+echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir"
+ln -s ${RUNDIR_ROOT} ${PATHRT}/run_dir
echo "Run regression test in: ${RUNDIR_ROOT}"
-if [[ $SINGLE_NAME != '' ]]; then
- rt_single
- TESTS_FILE=$RT_SINGLE_CONF
-fi
+update_rtconf
if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then
TEST_35D=true
@@ -575,21 +907,10 @@ shift $((OPTIND-1))
[[ $# -gt 1 ]] && usage
if [[ $CREATE_BASELINE == true ]]; then
- #
- # prepare new regression test directory
- #
+ # PREPARE NEW REGRESSION TEST DIRECTORY
rm -rf "${NEW_BASELINE}"
mkdir -p "${NEW_BASELINE}"
- NEW_BASELINES_TESTS=()
- if [[ $NEW_BASELINES_FILE != '' ]]; then
- readarray -t NEW_BASELINES_TESTS < $NEW_BASELINES_FILE
- echo "New baselines will be created for:"
- for test_name in "${NEW_BASELINES_TESTS[@]}"
- do
- echo " $test_name"
- done
- fi
fi
if [[ $skip_check_results == true ]]; then
@@ -598,20 +919,11 @@ else
REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_$MACHINE_ID.log
fi
-date > ${REGRESSIONTEST_LOG}
-echo "Start Regression test" >> ${REGRESSIONTEST_LOG}
-echo >> ${REGRESSIONTEST_LOG}
-echo "Testing UFSWM Hash:" `git rev-parse HEAD` >> ${REGRESSIONTEST_LOG}
-echo "Testing With Submodule Hashes:" >> ${REGRESSIONTEST_LOG}
-cd ..
-git submodule status >> ${REGRESSIONTEST_LOG}
-
-cd tests
+export TEST_START_TIME="$(date '+%Y%m%d %T')"
source default_vars.sh
JOB_NR=0
-TEST_NR=0
COMPILE_COUNTER=0
rm -f fail_test* fail_compile*
@@ -627,44 +939,8 @@ if [[ $ROCOTO == true ]]; then
rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db
- if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then
- QUEUE=dev
- COMPILE_QUEUE=dev
- ROCOTO_SCHEDULER=pbs
- elif [[ $MACHINE_ID = hera ]]; then
- QUEUE=batch
- COMPILE_QUEUE=batch
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = orion ]]; then
- QUEUE=batch
- COMPILE_QUEUE=batch
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = hercules ]]; then
- QUEUE=windfall
- COMPILE_QUEUE=windfall
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = s4 ]]; then
- QUEUE=s4
- COMPILE_QUEUE=s4
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = noaacloud ]]; then
- QUEUE=batch
- COMPILE_QUEUE=batch
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = jet ]]; then
- QUEUE=batch
- COMPILE_QUEUE=batch
- ROCOTO_SCHEDULER=slurm
- elif [[ $MACHINE_ID = derecho ]]; then
- QUEUE=main
- COMPILE_QUEUE=main
- ROCOTO_SCHEDULER=pbspro
- elif [[ $MACHINE_ID = gaea ]]; then
- QUEUE=normal
- COMPILE_QUEUE=normal
- ROCOTO_SCHEDULER=slurm
- else
- die "Rocoto is not supported on this machine $MACHINE_ID"
+ if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then
+ die "Rocoto is not supported on this machine: $MACHINE_ID"
fi
cat << EOF > $ROCOTO_XML
@@ -721,24 +997,8 @@ suite ${ECFLOW_SUITE}
limit max_jobs ${MAX_JOBS}
EOF
- if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then
- QUEUE=dev
- elif [[ $MACHINE_ID = hera ]]; then
- QUEUE=batch
- elif [[ $MACHINE_ID = orion ]]; then
- QUEUE=batch
- elif [[ $MACHINE_ID = hercules ]]; then
- QUEUE=windfall
- elif [[ $MACHINE_ID = jet ]]; then
- QUEUE=batch
- elif [[ $MACHINE_ID = s4 ]]; then
- QUEUE=s4
- elif [[ $MACHINE_ID = gaea ]]; then
- QUEUE=normal
- elif [[ $MACHINE_ID = derecho ]]; then
- QUEUE=main
- else
- die "ecFlow is not supported on this machine $MACHINE_ID"
+ if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then
+ die "ecFlow is not supported on this machine: $MACHINE_ID"
fi
fi
@@ -754,7 +1014,7 @@ in_metatask=false
[[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist"
LAST_COMPILER_NR=-9999
-COMPILE_PREV==''
+COMPILE_PREV=''
declare -A compiles
@@ -773,17 +1033,17 @@ while read -r line || [ "$line" ]; do
MAKE_OPT=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//')
MACHINES=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
CB=$( echo $line | cut -d'|' -f6)
- COMPILE_NR=${COMPILE_NAME}_${RT_COMPILER}
- COMPILE_PREV=${COMPILE_NR}
+ COMPILE_ID=${COMPILE_NAME}_${RT_COMPILER}
+ COMPILE_PREV=${COMPILE_ID}
set +u
- if [[ ! -z ${compiles[$COMPILE_NR]} ]] ; then
+ if [[ ! -z ${compiles[$COMPILE_ID]} ]] ; then
echo "Error! Duplicated compilation $COMPILE_NAME for compiler $RT_COMPILER!"
exit 1
fi
set -u
- compiles[$COMPILE_NR]=$COMPILE_NR
- echo "COMPILING ${compiles[${COMPILE_NR}]}"
+ compiles[$COMPILE_ID]=$COMPILE_ID
+ echo "COMPILING ${compiles[${COMPILE_ID}]}"
[[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue
@@ -798,10 +1058,6 @@ while read -r line || [ "$line" ]; do
fi
fi
- if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then
- continue
- fi
-
create_or_run_compile_task
continue
@@ -818,6 +1074,8 @@ while read -r line || [ "$line" ]; do
DEP_RUN=${DEP_RUN}_${RT_COMPILER}
fi
+ export TEST_ID=${TEST_NAME}_${RT_COMPILER}
+
[[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist"
[[ $CREATE_BASELINE == true && $CB != *baseline* ]] && continue
@@ -832,25 +1090,7 @@ while read -r line || [ "$line" ]; do
fi
fi
- COMPILE_METATASK_NAME=${COMPILE_NR}
- if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then
- if [[ ! " ${NEW_BASELINES_TESTS[*]} " =~ " ${TEST_NAME} " ]]; then
- echo "Link current baselines for test ${TEST_NAME}_${RT_COMPILER}"
- (
- source ${PATHRT}/tests/$TEST_NAME
- ln -s ${RTPWD}/${CNTL_DIR}_${RT_COMPILER} ${NEW_BASELINE}
- )
- continue
- else
- echo "Create new baselines for test ${TEST_NAME}_${RT_COMPILER}"
- # look at COMPILE_PREV, and if it's not an empty string run compile step
- # and reset it to empty so that we do not run compile more than once
- if [[ ${COMPILE_PREV} != '' ]]; then
- create_or_run_compile_task
- [[ $ROCOTO == true || $ECFLOW == true ]] && COMPILE_PREV=''
- fi
- fi
- fi
+ COMPILE_METATASK_NAME=${COMPILE_ID}
# 35 day tests
[[ $TEST_35D == true ]] && rt_35d
@@ -867,8 +1107,6 @@ while read -r line || [ "$line" ]; do
EOF
fi
- TEST_NR=$( printf '%03d' $(( 10#$TEST_NR + 1 )) )
-
(
source ${PATHRT}/tests/$TEST_NAME
@@ -884,38 +1122,39 @@ EOF
if (( TASKS - ( PPN * NODES ) > 0 )); then
PPN=$((PPN + 1))
fi
-
- cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env
- export JOB_NR=${JOB_NR}
- export MACHINE_ID=${MACHINE_ID}
- export RT_COMPILER=${RT_COMPILER}
- export RTPWD=${RTPWD}
- export INPUTDATA_ROOT=${INPUTDATA_ROOT}
- export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3}
- export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC}
- export PATHRT=${PATHRT}
- export PATHTR=${PATHTR}
- export NEW_BASELINE=${NEW_BASELINE}
- export CREATE_BASELINE=${CREATE_BASELINE}
- export RT_SUFFIX=${RT_SUFFIX}
- export BL_SUFFIX=${BL_SUFFIX}
- export SCHEDULER=${SCHEDULER}
- export ACCNR=${ACCNR}
- export QUEUE=${QUEUE}
- export PARTITION=${PARTITION}
- export ROCOTO=${ROCOTO}
- export ECFLOW=${ECFLOW}
- export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
- export LOG_DIR=${LOG_DIR}
- export DEP_RUN=${DEP_RUN}
- export skip_check_results=${skip_check_results}
- export delete_rundir=${delete_rundir}
- export WLCLK=${WLCLK}
+
+ cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
+export JOB_NR=${JOB_NR}
+export TEST_ID=${TEST_ID}
+export MACHINE_ID=${MACHINE_ID}
+export RT_COMPILER=${RT_COMPILER}
+export RTPWD=${RTPWD}
+export INPUTDATA_ROOT=${INPUTDATA_ROOT}
+export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3}
+export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC}
+export PATHRT=${PATHRT}
+export PATHTR=${PATHTR}
+export NEW_BASELINE=${NEW_BASELINE}
+export CREATE_BASELINE=${CREATE_BASELINE}
+export RT_SUFFIX=${RT_SUFFIX}
+export BL_SUFFIX=${BL_SUFFIX}
+export SCHEDULER=${SCHEDULER}
+export ACCNR=${ACCNR}
+export QUEUE=${QUEUE}
+export PARTITION=${PARTITION}
+export ROCOTO=${ROCOTO}
+export ECFLOW=${ECFLOW}
+export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
+export LOG_DIR=${LOG_DIR}
+export DEP_RUN=${DEP_RUN}
+export skip_check_results=${skip_check_results}
+export delete_rundir=${delete_rundir}
+export WLCLK=${WLCLK}
EOF
if [[ $MACHINE_ID = jet ]]; then
- cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_NR}.env
- export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH
- export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages
+ cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
+export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH
+export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages
EOF
fi
@@ -924,7 +1163,7 @@ EOF
elif [[ $ECFLOW == true ]]; then
ecflow_create_run_task
else
- ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1
+ ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1
fi
)
@@ -953,43 +1192,14 @@ if [[ $ECFLOW == true ]]; then
ecflow_run
fi
-##
-## regression test is either failed or successful
-##
-set +e
-cat ${LOG_DIR}/compile_*_time.log >> ${REGRESSIONTEST_LOG}
-cat ${LOG_DIR}/rt_*.log >> ${REGRESSIONTEST_LOG}
-
-FILES="fail_test_* fail_compile_*"
-for f in $FILES; do
- if [[ -f "$f" ]]; then
- cat "$f" >> fail_test
- fi
-done
-
-if [[ -e fail_test ]]; then
- echo "FAILED TESTS: "
- echo "FAILED TESTS: " >> ${REGRESSIONTEST_LOG}
- while read -r failed_test_name
- do
- echo "${failed_test_name}"
- echo "${failed_test_name}" >> ${REGRESSIONTEST_LOG}
- done < fail_test
- echo ; echo REGRESSION TEST FAILED
- (echo ; echo REGRESSION TEST FAILED) >> ${REGRESSIONTEST_LOG}
-else
- echo ; echo REGRESSION TEST WAS SUCCESSFUL
- (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG}
-
- rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp
- [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT}
- [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db
- [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20*
- [[ ${SINGLE_NAME} != '' ]] && rm -f $RT_SINGLE_CONF
+# IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE
+if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then
+ for dir in "${RTPWD}"/*/; do
+ dir=${dir%*/}
+ [[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue
+ ln -s "${dir%*/}" "${NEW_BASELINE}/"
+ done
fi
-date >> ${REGRESSIONTEST_LOG}
-
-elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) )
-echo "Elapsed time: ${elapsed_time}. Have a nice day!" >> ${REGRESSIONTEST_LOG}
-echo "Elapsed time: ${elapsed_time}. Have a nice day!"
+## Lets verify all tests were run and that they passed
+generate_log
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index 0646266895..238f8ed695 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -101,9 +101,6 @@ interrupt_job() {
elif [[ $SCHEDULER = 'slurm' ]]; then
echo "run_util.sh: interrupt_job slurm_id = ${slurm_id}"
scancel ${slurm_id}
- elif [[ $SCHEDULER = 'lsf' ]]; then
- echo "run_util.sh: interrupt_job bsub_id = ${bsub_id}"
- bkill ${bsub_id}
else
echo "run_util.sh: interrupt_job unknown SCHEDULER $SCHEDULER"
fi
@@ -133,11 +130,6 @@ submit_and_wait() {
re='Submitted batch job ([0-9]+)'
[[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]}
echo "Job id ${slurm_id}"
- elif [[ $SCHEDULER = 'lsf' ]]; then
- bsubout=$( bsub < $job_card )
- re='Job <([0-9]+)> is submitted to queue <(.+)>.'
- [[ "${bsubout}" =~ $re ]] && bsub_id=${BASH_REMATCH[1]}
- echo "Job id ${bsub_id}"
else
echo "Unknown SCHEDULER $SCHEDULER"
exit 1
@@ -148,14 +140,12 @@ submit_and_wait() {
local job_running=0
until [[ $job_running -eq 1 ]]
do
- echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is waiting to enter the queue"
+ echo "Job is waiting to enter the queue"
[[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "waiting to enter the queue"
if [[ $SCHEDULER = 'pbs' ]]; then
job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l )
elif [[ $SCHEDULER = 'slurm' ]]; then
job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l)
- elif [[ $SCHEDULER = 'lsf' ]]; then
- job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l)
else
echo "Unknown SCHEDULER $SCHEDULER"
exit 1
@@ -170,13 +160,11 @@ submit_and_wait() {
jobid=${qsub_id}
elif [[ $SCHEDULER = 'slurm' ]]; then
jobid=${slurm_id}
- elif [[ $SCHEDULER = 'lsf' ]]; then
- jobid=${bsub_id}
else
echo "Unknown SCHEDULER $SCHEDULER"
exit 1
fi
- echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is submitted "
+ echo "Job is submitted "
if [[ ${ECFLOW:-false} == true ]]; then
ecflow_client --label=job_id "${jobid}"
ecflow_client --label=job_status "submitted"
@@ -192,8 +180,6 @@ submit_and_wait() {
job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l )
elif [[ $SCHEDULER = 'slurm' ]]; then
job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l)
- elif [[ $SCHEDULER = 'lsf' ]]; then
- job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l)
else
echo "Unknown SCHEDULER $SCHEDULER"
exit 1
@@ -241,37 +227,13 @@ submit_and_wait() {
fi
fi
- elif [[ $SCHEDULER = 'lsf' ]]; then
-
- status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--}
- if [[ $status = 'PEND' ]]; then
- status_label='pending'
- elif [[ $status = 'RUN' ]]; then
- status_label='running'
- elif [[ $status = 'DONE' ]]; then
- status_label='finished'
- test_status='DONE'
- elif [[ $status = 'EXIT' ]]; then
- status_label='failed'
- test_status='FAIL'
- else
- echo "bsub unknown status ${status}"
- status_label='finished'
- test_status='DONE'
- exit_status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--}
- if [[ $exit_status = 'EXIT' ]]; then
- status_label='failed'
- test_status='FAIL'
- fi
- fi
-
else
echo "Unknown SCHEDULER $SCHEDULER"
exit 1
fi
- echo "$n min. TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is ${status_label}, status: $status jobid ${jobid}"
+ echo "$n min. Job is ${status_label}, status: $status jobid ${jobid}"
[[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "$status_label"
if [[ $test_status = 'FAIL' || $test_status = 'DONE' ]]; then
@@ -283,9 +245,9 @@ submit_and_wait() {
done
if [[ $test_status = 'FAIL' ]]; then
- echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL" >> ${RT_LOG}
+ echo "Job FAIL" >> ${RT_LOG}
echo;echo;echo >> ${RT_LOG}
- echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL"
+ echo "Job FAIL"
if [[ $ROCOTO == true || $ECFLOW == true ]]; then
exit 1
@@ -311,11 +273,11 @@ check_results() {
echo > ${RT_LOG}
echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" >> ${RT_LOG}
echo "working dir = ${RUNDIR}" >> ${RT_LOG}
- echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...." >> ${RT_LOG}
+ echo "Checking test ${TEST_ID} results ...." >> ${RT_LOG}
echo
echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}"
echo "working dir = ${RUNDIR}"
- echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...."
+ echo "Checking test ${TEST_ID} results ...."
if [[ ${CREATE_BASELINE} = false ]]; then
#
@@ -338,34 +300,36 @@ check_results() {
test_status='FAIL'
else
-
- cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$?
- if [[ $d -eq 2 ]]; then
- echo "....CMP ERROR" >> ${RT_LOG}
- echo "....CMP ERROR"
- exit 1
- fi
-
- if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then
+ if [[ ${i##*.} == 'nc' ]] ; then
if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then
- printf ".......ALT CHECK.." >> ${RT_LOG}
- printf ".......ALT CHECK.."
+ printf "USING NCCMP.." >> ${RT_LOG}
+ printf "USING NCCMP.."
if [[ $CMP_DATAONLY == false ]]; then
nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$?
else
nccmp -d -S -q -f -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$?
fi
if [[ $d -ne 0 && $d -ne 1 ]]; then
- echo "....ERROR" >> ${RT_LOG}
- echo "....ERROR"
- exit 1
+ printf "....ERROR" >> ${RT_LOG}
+ printf "....ERROR"
+ test_status='FAIL'
fi
fi
+ else
+ printf "USING CMP.." >> ${RT_LOG}
+ printf "USING CMP.."
+ cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$?
+ if [[ $d -eq 2 ]]; then
+ printf "....ERROR" >> ${RT_LOG}
+ printf "....ERROR"
+ test_status='FAIL'
+ fi
+
fi
if [[ $d -ne 0 ]]; then
- echo "....NOT OK" >> ${RT_LOG}
- echo "....NOT OK"
+ echo "....NOT IDENTICAL" >> ${RT_LOG}
+ echo "....NOT IDENTICAL"
test_status='FAIL'
else
echo "....OK" >> ${RT_LOG}
@@ -380,8 +344,8 @@ check_results() {
#
# --- create baselines
#
- echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...."
- echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...." >> ${RT_LOG}
+ echo;echo "Moving baseline ${TEST_ID} files ...."
+ echo;echo "Moving baseline ${TEST_ID} files ...." >> ${RT_LOG}
for i in ${LIST_FILES} ; do
printf %s " Moving " $i " ....."
@@ -411,13 +375,13 @@ check_results() {
TRIES=" Tries: $ECF_TRYNO"
fi
fi
- echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}" >> ${RT_LOG}
+ echo "Test ${TEST_ID} ${test_status}${TRIES}" >> ${RT_LOG}
echo >> ${RT_LOG}
- echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}"
+ echo "Test ${TEST_ID} ${test_status}${TRIES}"
echo
if [[ $test_status = 'FAIL' ]]; then
- echo "${TEST_NR} ${TEST_NAME}_${RT_COMPILER} failed in check_result" >> $PATHRT/fail_test_${TEST_NR}
+ echo "${TEST_ID} failed in check_result" >> $PATHRT/fail_test_${TEST_ID}
if [[ $ROCOTO = true || $ECFLOW == true ]]; then
exit 1
@@ -438,8 +402,6 @@ kill_job() {
qdel ${jobid}
elif [[ $SCHEDULER = 'slurm' ]]; then
scancel ${jobid}
- elif [[ $SCHEDULER = 'lsf' ]]; then
- bkill ${jobid}
fi
}
@@ -475,9 +437,9 @@ rocoto_create_compile_task() {
cat << EOF >> $ROCOTO_XML
-
- &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR}
- compile_${COMPILE_NR}
+
+ &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} > &LOG;/compile_${COMPILE_ID}.log
+ compile_${COMPILE_ID}
${ACCNR}
${COMPILE_QUEUE}
EOF
@@ -496,7 +458,7 @@ EOF
cat << EOF >> $ROCOTO_XML
${BUILD_CORES}
${BUILD_WALLTIME}
- &RUNDIR_ROOT;/compile_${COMPILE_NR}.log
+ &RUNDIR_ROOT;/compile_${COMPILE_ID}.log
${NATIVE}
EOF
@@ -505,9 +467,9 @@ EOF
rocoto_create_run_task() {
if [[ $DEP_RUN != '' ]]; then
- DEP_STRING=" "
+ DEP_STRING=" "
else
- DEP_STRING=""
+ DEP_STRING=""
fi
CORES=$(( ${TASKS} * ${THRD} ))
@@ -518,10 +480,10 @@ rocoto_create_run_task() {
NATIVE=""
cat << EOF >> $ROCOTO_XML
-
+
$DEP_STRING
- &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_NR} ${COMPILE_NR}
- ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}
+ &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > &LOG;/run_${TEST_ID}${RT_SUFFIX}.log
+ ${TEST_ID}${RT_SUFFIX}
${ACCNR}
${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE}
EOF
@@ -541,8 +503,8 @@ EOF
cat << EOF >> $ROCOTO_XML
${NODES}:ppn=${TPN}
00:${WLCLK}:00
- &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.out
- &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.err
+ &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.out
+ &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.err
${NATIVE}
EOF
@@ -617,13 +579,13 @@ ecflow_create_compile_task() {
new_compile=true
- cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_NR}.ecf
+ cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf
%include
-$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 &
+$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_ID > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1 &
%include
EOF
- echo " task compile_${COMPILE_NR}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ echo " task compile_${COMPILE_ID}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " label build_options '${MAKE_OPT}'" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
@@ -632,20 +594,20 @@ EOF
ecflow_create_run_task() {
- cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.ecf
+ cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf
%include
-$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1 &
+$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1 &
%include
EOF
- echo " task ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ echo " task ${TEST_ID}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
if [[ $DEP_RUN != '' ]]; then
- echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
else
- echo " trigger compile_${COMPILE_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ echo " trigger compile_${COMPILE_ID} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
fi
}
diff --git a/tests/run_compile.sh b/tests/run_compile.sh
index 1d8d6254f0..795353a32a 100755
--- a/tests/run_compile.sh
+++ b/tests/run_compile.sh
@@ -15,42 +15,38 @@ cleanup() {
}
write_fail_test() {
- echo "compile_${COMPILE_NR} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_NR}
+ echo "compile_${COMPILE_ID} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_ID}
exit 1
}
remove_fail_test() {
- echo "Removing test failure flag file for compile_${COMPILE_NR}"
- rm -f $PATHRT/fail_compile_${COMPILE_NR}
+ echo "Removing test failure flag file for compile_${COMPILE_ID}"
+ rm -f $PATHRT/fail_compile_${COMPILE_ID}
}
if [[ $# != 4 ]]; then
- echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_NR"
+ echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_ID"
exit 1
fi
export PATHRT=$1
export RUNDIR_ROOT=$2
export MAKE_OPT=$3
-export COMPILE_NR=$4
+export COMPILE_ID=$4
cd ${PATHRT}
remove_fail_test
-[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env
+[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
source default_vars.sh
-[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env
+[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
+export JBNME="compile_${COMPILE_ID}"
+export RUNDIR=${RUNDIR_ROOT}/compile_${COMPILE_ID}
+echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
-export TEST_NAME=compile
-export TEST_NR=${COMPILE_NR}
-export JBNME="compile_${COMPILE_NR}"
-export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR}
-
-echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
-
-export RT_LOG=${LOG_DIR}/compile_${TEST_NR}.log
+export RT_LOG=${LOG_DIR}/compile_${COMPILE_ID}.log
source rt_utils.sh
source atparse.bash
@@ -96,10 +92,10 @@ else
# relying on bash-specific extensions or non-standard OS features.
fi
-ls -l ${PATHTR}/tests/fv3_${COMPILE_NR}.exe
+ls -l ${PATHTR}/tests/fv3_${COMPILE_ID}.exe
cp ${RUNDIR}/compile_*_time.log ${LOG_DIR}
-cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
+cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
remove_fail_test
@@ -107,7 +103,7 @@ remove_fail_test
# End compile job
################################################################################
-echo " $( date +%s ), 1" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
+echo " $( date +%s ), 1" >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
elapsed=$SECONDS
-echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}"
+echo "Elapsed time $elapsed seconds. Compile ${COMPILE_ID}"
diff --git a/tests/run_test.sh b/tests/run_test.sh
index ab10a0e17d..d4ea64068c 100755
--- a/tests/run_test.sh
+++ b/tests/run_test.sh
@@ -15,31 +15,31 @@ cleanup() {
}
write_fail_test() {
- echo "${TEST_NAME}_${RT_COMPILER} ${TEST_NR} failed in run_test" >> $PATHRT/fail_test_${TEST_NR}
+ echo "${TEST_ID} failed in run_test" >> $PATHRT/fail_test_${TEST_ID}
exit 1
}
remove_fail_test() {
- echo "Removing test failure flag file for ${TEST_NAME}_${RT_COMPILER} ${TEST_NR}"
- rm -f $PATHRT/fail_test_${TEST_NR}
+ echo "Removing test failure flag file for ${TEST_ID}"
+ rm -f $PATHRT/fail_test_${TEST_ID}
}
if [[ $# != 5 ]]; then
- echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_NR COMPILE_NR"
+ echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_ID COMPILE_ID"
exit 1
fi
export PATHRT=$1
export RUNDIR_ROOT=$2
export TEST_NAME=$3
-export TEST_NR=$4
-export COMPILE_NR=$5
+export TEST_ID=$4
+export COMPILE_ID=$5
echo "PATHRT: ${PATHRT}"
echo "RUNDIR_ROOT: ${RUNDIR_ROOT}"
echo "TEST_NAME: ${TEST_NAME}"
-echo "TEST_NR: ${TEST_NR}"
-echo "COMPILE_NR: ${COMPILE_NR}"
+echo "TEST_ID: ${TEST_ID}"
+echo "COMPILE_ID: ${COMPILE_ID}"
cd ${PATHRT}
@@ -47,9 +47,9 @@ cd ${PATHRT}
unset MODEL_CONFIGURE
unset UFS_CONFIGURE
-[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env
+[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
source default_vars.sh
-[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env
+[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
source tests/$TEST_NAME
remove_fail_test
@@ -60,15 +60,15 @@ remove_fail_test
export INPUT_DIR=${CNTL_DIR}
# Append RT_SUFFIX to RUNDIR, and BL_SUFFIX to CNTL_DIR
-export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}
+export RUNDIR=${RUNDIR_ROOT}/${TEST_ID}${RT_SUFFIX}
export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX}
-export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR}
+export JBNME=$(basename $RUNDIR_ROOT)_${TEST_ID}
-echo -n "${TEST_NAME}_${RT_COMPILER}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
+echo -n "${TEST_ID}, $( date +%s )," > ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
-export RT_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log
-echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${TEST_DESCR}"
+export RT_LOG=${LOG_DIR}/rt_${TEST_ID}${RT_SUFFIX}.log
+echo "Test ${TEST_ID} ${TEST_DESCR}"
source rt_utils.sh
source atparse.bash
@@ -82,14 +82,14 @@ cd $RUNDIR
###############################################################################
# FV3 executable:
-cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe
+cp ${PATHRT}/fv3_${COMPILE_ID}.exe fv3.exe
# modulefile for FV3 prerequisites:
mkdir -p modulefiles
if [[ $MACHINE_ID == linux ]]; then
- cp ${PATHRT}/modules.fv3_${COMPILE_NR} ./modulefiles/modules.fv3
+ cp ${PATHRT}/modules.fv3_${COMPILE_ID} ./modulefiles/modules.fv3
else
- cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua ./modulefiles/modules.fv3.lua
+ cp ${PATHRT}/modules.fv3_${COMPILE_ID}.lua ./modulefiles/modules.fv3.lua
fi
cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/.
@@ -370,18 +370,20 @@ else
fi
if [[ $skip_check_results = false ]]; then
- check_results
+ check_results || true
+ # The above call will exit with an error on its own and does
+ # not need to cause run_test to TRAP the failure and error out itself.
else
echo >> ${RT_LOG}
grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG}
grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG}
echo >> ${RT_LOG}
- echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} RUN_SUCCESS" >> ${RT_LOG}
+ echo "Test ${TEST_ID} RUN_SUCCESS" >> ${RT_LOG}
echo;echo;echo >> ${RT_LOG}
fi
if [[ $SCHEDULER != 'none' ]]; then
- cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
+ cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
fi
if [[ $ROCOTO = true ]]; then
@@ -392,7 +394,7 @@ fi
# End test
################################################################################
-echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt
+echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
################################################################################
# Remove RUN_DIRs if they are no longer needed by other tests
@@ -412,4 +414,4 @@ if [[ ${delete_rundir} = true ]]; then
fi
elapsed=$SECONDS
-echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}_${RT_COMPILER}"
+echo "Elapsed time $elapsed seconds. Test ${TEST_ID}"
diff --git a/tests/test_changes.list b/tests/test_changes.list
new file mode 100644
index 0000000000..e69de29bb2
From d87b54c08978cda84ae2625a376658cf153033cc Mon Sep 17 00:00:00 2001
From: Dom Heinzeller
Date: Fri, 23 Feb 2024 14:04:34 -0700
Subject: [PATCH 05/33] Submodule pointer update for
ccpp-framework/ccpp-physics & option to run compile jobs of regression test
suite only & -mcmodel=medium gnu.cmake option (also includes
https://github.com/ufs-community/ufs-weather-model/pull/2142) (#2066)
* UFSWM - Add option to `rt.sh` to run compile-only tests
* FV3 - Update submodule pointer (NOAA-EMC/fv3atm#747)
* ccpp-physics - Update submodule pointer (ufs-community/ccpp-physics#150)
* ccpp-framework - Update submodule pointer (NCAR/ccpp-framework#519)
* Update WM license and documentation logo
* Update GNU.cmake: -mcmodel=medium
---
FV3 | 2 +-
LICENSE.md | 27 +-
README.md | 15 +-
cmake/GNU.cmake | 2 +-
doc/UsersGuide/Makefile | 10 +-
doc/UsersGuide/requirements.in | 3 +
doc/UsersGuide/requirements.txt | 85 ++-
doc/UsersGuide/source/CodeOverview.rst | 2 +-
doc/UsersGuide/source/Configurations.rst | 2 +-
doc/UsersGuide/source/Glossary.rst | 4 +-
doc/UsersGuide/source/InputsOutputs.rst | 2 +-
doc/UsersGuide/source/conf.py | 19 +-
doc/UsersGuide/source/references.bib | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 511 ++++++-------
tests/logs/RegressionTests_gaea.log | 506 ++++++-------
tests/logs/RegressionTests_hera.log | 708 +++++++++---------
tests/logs/RegressionTests_hercules.log | 690 ++++++++---------
tests/logs/RegressionTests_jet.log | 520 ++++++-------
tests/logs/RegressionTests_orion.log | 530 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 448 +++++------
tests/rt.conf | 14 +-
tests/rt.sh | 20 +-
25 files changed, 2148 insertions(+), 2070 deletions(-)
create mode 100644 doc/UsersGuide/requirements.in
diff --git a/FV3 b/FV3
index 0fe9ba3020..2d34223122 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 0fe9ba3020ad2f744ead7323bda414497aa33632
+Subproject commit 2d342231225b6d00875d164cb86e09ea335fe6b1
diff --git a/LICENSE.md b/LICENSE.md
index ba11b8537c..a3a10c4366 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -10,19 +10,32 @@ This project includes a mix of the following:
This project utilizes the following unmodified works under various licenses, as shown below.
-- Atmos cube sphere dycore: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL)
+- [atmos_cubed_sphere dycore](https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
-- FV3 Atm: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL)
+- [fv3atm](https://github.com/NOAA-EMC/fv3atm): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
-- NEMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL)
+- [Stochastic Physics](https://github.com/NOAA-PSL/stochastic_physics): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
-- FMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL)
+- [CCPP Physics](https://github.com/ufs-community/ccpp-physics): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
-- Stochastic Physics: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL)
+- [CCPP Framework](https://github.com/NCAR/ccpp-framework): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
-- CCPP Physics: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
+- [AQM](https://github.com/NOAA-EMC/AQM): GNU General Public License 3.0 ([GPL](https://www.gnu.org/licenses/gpl-3.0.en.html))
+
+- [CICE](https://github.com/NOAA-EMC/CICE): CICE Consortium license ([LICENSE.pdf](https://github.com/NOAA-EMC/CICE/blob/emc/develop/LICENSE.pdf))
+
+- [CMakeModules](https://github.com/NOAA-EMC/CMakeModules): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
+
+- [GOCART](https://github.com/GEOS-ESM/GOCART): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
+
+- [HYCOM](https://github.com/NOAA-EMC/HYCOM-src): [MIT License](https://opensource.org/license/mit/)
+
+- [MOM6](https://github.com/NOAA-EMC/MOM6): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
+
+- [WW3](https://github.com/NOAA-EMC/WW3): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
+
+- [Unified Post Processor](https://github.com/NOAA-EMC/UPP): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))
-- CCPP Framework: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
## The rest of this project is in the worldwide public domain
diff --git a/README.md b/README.md
index 311fec3b65..cd17b6afc2 100644
--- a/README.md
+++ b/README.md
@@ -18,18 +18,21 @@ The top level directory structure groups source code and input files as follow:
| -------------- | ------- |
| ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. |
| ```README.md``` | This file with basic pointers to more information. |
-| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. |
+| ```AQM/``` | Contains air quality modeling component |
| ```CMEPS-interface/``` | Contains CMEPS mediator |
+| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack |
+| ```CDEPS-interface/``` | Contains CDEPS data components, including data-atmosphere (DATM) and data-ocean (DOCN) model components|
| ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. |
-| ```DATM/``` | Contains Data Atmosphere model component |
-| ```WW3/``` | Contains community wave modeling framework WW3. |
+| ```GOCART/``` | Contains GOCART aerosol model component |
+| ```HYCOM-interface/``` | Contains HYCOM ocean model component |
| ```MOM6-interface/``` | Contains MOM6 ocean model component |
-| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack |
-| ```stochastic_physics/``` | Contains the stochastic physics source code. |
+| ```NOAHMP-interface/``` | Contains Noah-MP land model component |
+| ```WW3/``` | Contains community wave modeling framework WW3 |
+| ```stochastic_physics/``` | Contains the stochastic physics source code |
| ```cmake/``` | Contains compile option files on various platforms. |
| ```modulefiles/``` | Contains module files on various platforms. |
| ```tests/``` | Regression and unit testing framework scripts. |
-| ```build.sh``` | Script to build the model executable. (also used by `tests/`) |
+| ```build.sh``` | Script to build the model executable (also used by `tests/`) |
E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite.
```
diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake
index 4069d922d7..939e25bfa7 100644
--- a/cmake/GNU.cmake
+++ b/cmake/GNU.cmake
@@ -10,7 +10,7 @@ endif()
if(DEBUG)
add_definitions(-DDEBUG)
- set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check")
+ set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -mcmodel=medium")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0")
else()
set(CMAKE_Fortran_FLAGS_RELEASE "-O2")
diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile
index d0c3cbf102..a883b1dda4 100644
--- a/doc/UsersGuide/Makefile
+++ b/doc/UsersGuide/Makefile
@@ -3,16 +3,20 @@
# You can set these variables from the command line, and also
# from the environment for the first two.
-SPHINXOPTS ?=
-SPHINXBUILD ?= sphinx-build
+SPHINXOPTS = -a -n
+SPHINXBUILD = sphinx-build
SOURCEDIR = source
BUILDDIR = build
+LINKCHECKDIR = $(BUILDDIR)/linkcheck
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
-.PHONY: help Makefile
+.PHONY: help Makefile linkcheck
+
+linkcheck:
+ $(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(SOURCEDIR) $(LINKCHECKDIR)
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
diff --git a/doc/UsersGuide/requirements.in b/doc/UsersGuide/requirements.in
new file mode 100644
index 0000000000..26c778f4aa
--- /dev/null
+++ b/doc/UsersGuide/requirements.in
@@ -0,0 +1,3 @@
+sphinx>=6.0.0
+sphinx_rtd_theme
+sphinxcontrib-bibtex
diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt
index 7be32f526d..b4642f5872 100644
--- a/doc/UsersGuide/requirements.txt
+++ b/doc/UsersGuide/requirements.txt
@@ -1,3 +1,82 @@
-sphinxcontrib-bibtex
-sphinx_rtd_theme
-docutils==0.16
\ No newline at end of file
+#
+# This file is autogenerated by pip-compile with Python 3.9
+# by the following command:
+#
+# pip-compile requirements.in
+#
+alabaster==0.7.16
+ # via sphinx
+babel==2.14.0
+ # via sphinx
+certifi==2024.2.2
+ # via requests
+charset-normalizer==3.3.2
+ # via requests
+docutils==0.20.1
+ # via
+ # pybtex-docutils
+ # sphinx
+ # sphinx-rtd-theme
+ # sphinxcontrib-bibtex
+idna==3.6
+ # via requests
+imagesize==1.4.1
+ # via sphinx
+importlib-metadata==7.0.1
+ # via
+ # sphinx
+ # sphinxcontrib-bibtex
+jinja2==3.1.3
+ # via sphinx
+latexcodec==2.0.1
+ # via pybtex
+markupsafe==2.1.5
+ # via jinja2
+packaging==23.2
+ # via sphinx
+pybtex==0.24.0
+ # via
+ # pybtex-docutils
+ # sphinxcontrib-bibtex
+pybtex-docutils==1.0.3
+ # via sphinxcontrib-bibtex
+pygments==2.17.2
+ # via sphinx
+pyyaml==6.0.1
+ # via pybtex
+requests==2.31.0
+ # via sphinx
+six==1.16.0
+ # via
+ # latexcodec
+ # pybtex
+snowballstemmer==2.2.0
+ # via sphinx
+sphinx==7.2.6
+ # via
+ # -r requirements.in
+ # sphinx-rtd-theme
+ # sphinxcontrib-bibtex
+ # sphinxcontrib-jquery
+sphinx-rtd-theme==2.0.0
+ # via -r requirements.in
+sphinxcontrib-applehelp==1.0.8
+ # via sphinx
+sphinxcontrib-bibtex==2.6.2
+ # via -r requirements.in
+sphinxcontrib-devhelp==1.0.6
+ # via sphinx
+sphinxcontrib-htmlhelp==2.0.5
+ # via sphinx
+sphinxcontrib-jquery==4.1
+ # via sphinx-rtd-theme
+sphinxcontrib-jsmath==1.0.1
+ # via sphinx
+sphinxcontrib-qthelp==1.0.7
+ # via sphinx
+sphinxcontrib-serializinghtml==1.1.10
+ # via sphinx
+urllib3==2.2.1
+ # via requests
+zipp==3.17.0
+ # via importlib-metadata
diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst
index a479309aab..a8594bce14 100644
--- a/doc/UsersGuide/source/CodeOverview.rst
+++ b/doc/UsersGuide/source/CodeOverview.rst
@@ -67,7 +67,7 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w
* - :term:`FV3` dynamical core
- https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere
* - Stochastic physics pattern generator
- - https://github.com/noaa-psd/stochastic_physics
+ - https://github.com/NOAA-PSL/stochastic_physics
* - Modular Ocean Model (:term:`MOM6`)
- https://github.com/NOAA-EMC/MOM6
* - HYbrid Coordinate Ocean Model (:term:`HYCOM`)
diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst
index 0ad596002a..7ac2cf6034 100644
--- a/doc/UsersGuide/source/Configurations.rst
+++ b/doc/UsersGuide/source/Configurations.rst
@@ -335,7 +335,7 @@ Each test file lists the input files required for a given test. Input files requ
Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__.
-Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files.
+Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files.
.. _lnd-documented:
diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst
index b30a242867..4b54f0ae3c 100644
--- a/doc/UsersGuide/source/Glossary.rst
+++ b/doc/UsersGuide/source/Glossary.rst
@@ -120,7 +120,7 @@ Glossary
NCEPLIBS
The software libraries created and maintained by :term:`NCEP` that are required for running
- :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__.
+ :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__.
NCEPLIBS-external
A collection of third-party libraries required to build :term:`NCEPLIBS`, :term:`chgres_cube`,
@@ -167,7 +167,7 @@ Glossary
The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow.
spack-stack
- The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack.
+ The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack.
Suite Definition File (SDF)
An external file containing information about the
diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst
index 534d173579..b3b7567fda 100644
--- a/doc/UsersGuide/source/InputsOutputs.rst
+++ b/doc/UsersGuide/source/InputsOutputs.rst
@@ -1639,7 +1639,7 @@ A sample of the file contents is shown below:
However, ``ufs.configure`` files for other configurations of the Weather Model are more complex. A full set of ``ufs.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``ufs.configure.*.IN``. A number of samples are available below:
* `ATMAQ `__ configuration
- * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator)
+ * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator)
* `S2SW `__ (fully coupled ``S2SW`` configuration)
* `S2SWA `__ (coupled GOCART in the S2SAW configuration)
* `ATM-LND `__ (ATML configuration)
diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py
index bbe458cf54..e7c00bd318 100644
--- a/doc/UsersGuide/source/conf.py
+++ b/doc/UsersGuide/source/conf.py
@@ -69,12 +69,9 @@
# The master toctree document.
master_doc = 'index'
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#
-# This is also used if you do content translation via gettext catalogs.
-# Usually you set "language" from the command line for these cases.
-language = None
+# The language for content autogenerated by Sphinx.
+# Not set because default is 'en'.
+# language = 'en'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
@@ -84,6 +81,15 @@
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
+# Avoid a 403 Forbidden error when accessing certain links (e.g., noaa.gov)
+user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36"
+
+# Ignore anchor tags for links that show Not Found even when they exist.
+linkcheck_anchors_ignore = [r"L\d*",
+ ]
+# Ignore working links that cause a linkcheck 403 error.
+linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260',
+ ]
# -- Options for HTML output -------------------------------------------------
@@ -100,6 +106,7 @@
#
# html_theme_options = {}
html_theme_options = {"body_max_width": "none"}
+html_logo="https://github.com/ufs-community/ufs/wiki/images/ufs-epic-logo.png"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib
index 92a6d96b98..0015b43304 100644
--- a/doc/UsersGuide/source/references.bib
+++ b/doc/UsersGuide/source/references.bib
@@ -16,6 +16,6 @@ @article{BengtssonEtAl2020
title={A Stochastic Parameterization of Organized Tropical Convection Using Cellular Automata for Global Forecasts in NOAA's Unified Forecast System},
author={L. Bengtsson and J. Dias and S. Tulich and M. Gehne and J. Bao},
journal={Journal of Advances in Modeling Earth Systems},
- url={https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002260},
+ url={https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020MS002260},
year={2020},
}
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 641bb1eb78..5ab7c2b923 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 16 23:35:21 UTC 2024
+Thu Feb 22 20:53:25 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 286.838063
- 0: The maximum resident set size (KB) = 1310900
+ 0: The total amount of wall time = 280.439468
+ 0: The maximum resident set size (KB) = 1305520
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 901.459527
- 0: The maximum resident set size (KB) = 1284480
+ 0: The total amount of wall time = 909.185427
+ 0: The maximum resident set size (KB) = 1287316
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 252.691945
- 0: The maximum resident set size (KB) = 1279076
+ 0: The total amount of wall time = 248.211050
+ 0: The maximum resident set size (KB) = 1280512
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 252.381682
- 0: The maximum resident set size (KB) = 1281444
+ 0: The total amount of wall time = 251.581934
+ 0: The maximum resident set size (KB) = 1264336
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 250.909525
- 0: The maximum resident set size (KB) = 1280000
+ 0: The total amount of wall time = 250.725287
+ 0: The maximum resident set size (KB) = 1280612
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 255.556867
- 0: The maximum resident set size (KB) = 1284028
+ 0: The total amount of wall time = 289.617565
+ 0: The maximum resident set size (KB) = 1277316
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 261.471265
- 0: The maximum resident set size (KB) = 1280040
+ 0: The total amount of wall time = 248.771012
+ 0: The maximum resident set size (KB) = 1279892
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Sat Feb 17 10:33:22 UTC 2024
-Elapsed time: 10h:58m:02s. Have a nice day!
+Thu Feb 22 22:13:07 UTC 2024
+Elapsed time: 01h:19m:42s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 98e09e571e..92f9a7c5d4 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Feb 19 14:50:19 UTC 2024
+Fri Feb 23 14:47:29 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1252.713120
- 0: The maximum resident set size (KB) = 1390364
+ 0: The total amount of wall time = 1267.233553
+ 0: The maximum resident set size (KB) = 1405904
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 384.439726
- 0: The maximum resident set size (KB) = 1385248
+ 0: The total amount of wall time = 391.689198
+ 0: The maximum resident set size (KB) = 1402796
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 385.798138
- 0: The maximum resident set size (KB) = 1402428
+ 0: The total amount of wall time = 387.349272
+ 0: The maximum resident set size (KB) = 1402180
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Feb 19 15:48:40 UTC 2024
-Elapsed time: 00h:58m:22s. Have a nice day!
+Fri Feb 23 16:15:36 UTC 2024
+Elapsed time: 01h:28m:07s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index e5ae1412cf..b1caca193e 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Mon Feb 19 14:05:32 UTC 2024
+Fri Feb 23 14:04:50 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 514.940897
- 0: The maximum resident set size (KB) = 588032
+ 0: The total amount of wall time = 524.440233
+ 0: The maximum resident set size (KB) = 589460
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 514.782298
- 0: The maximum resident set size (KB) = 587896
+ 0: The total amount of wall time = 512.660107
+ 0: The maximum resident set size (KB) = 590144
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 515.415577
- 0: The maximum resident set size (KB) = 587940
+ 0: The total amount of wall time = 516.695763
+ 0: The maximum resident set size (KB) = 591548
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Feb 19 14:42:44 UTC 2024
-Elapsed time: 00h:37m:13s. Have a nice day!
+Fri Feb 23 14:41:20 UTC 2024
+Elapsed time: 00h:36m:30s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 197ca0d90c..92b2f84a32 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-681a70733ad51929905514527b6d5a497cd17776
+9904889c8c39959060b801e0cb5965f869d2a0ee
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,263 +25,272 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_101438
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2497
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:47, 21:25]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:17, 05:02](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:44, 23:00]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:09, 13:52](1677 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 15:18](1822 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:38, 07:19](950 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:52](1653 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:50, 11:12]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 21:46](1699 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:42, 20:54]
-PASS -- TEST 'cpld_control_p8_intel' [10:41, 05:44](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 05:42](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:21](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 05:42](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:26](3174 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 05:38](3089 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [16:53, 04:44](3383 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:43](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:14, 09:04](3635 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 05:56](3616 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 05:21](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [39:46, 20:20]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:18](1678 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:20](1722 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [30:46, 11:36]
-PASS -- TEST 'cpld_debug_p8_intel' [11:40, 07:49](3151 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [17:33, 10:39]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 05:16](1703 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:51, 15:36]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:21](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [34:51, 15:21]
-PASS -- TEST 'cpld_control_c48_intel' [41:34, 06:37](2663 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [41:52, 21:02]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 14:09](1694 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:29](1016 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:06, 16:04](1669 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:21, 10:23]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 22:39](1707 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:22, 12:47]
-PASS -- TEST 'control_flake_intel' [17:56, 03:28](664 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:10, 02:06](615 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:24, 02:12](1389 MB)
-PASS -- TEST 'control_latlon_intel' [10:53, 02:10](616 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:16, 02:11](615 MB)
-PASS -- TEST 'control_c48_intel' [31:56, 05:15](731 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [31:55, 05:15](730 MB)
-PASS -- TEST 'control_c192_intel' [22:39, 07:53](739 MB)
-PASS -- TEST 'control_c384_intel' [17:18, 08:26](1052 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:31, 07:36](1194 MB)
-PASS -- TEST 'control_stochy_intel' [15:53, 01:28](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:48, 00:56](434 MB)
-PASS -- TEST 'control_lndp_intel' [16:04, 01:25](622 MB)
-PASS -- TEST 'control_iovr4_intel' [17:21, 02:07](618 MB)
-PASS -- TEST 'control_iovr5_intel' [17:22, 02:09](616 MB)
-PASS -- TEST 'control_p8_intel' [14:03, 02:34](1594 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 02:32](1601 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [09:57, 02:33](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:34, 01:28](795 MB)
-PASS -- TEST 'control_noqr_p8_intel' [09:41, 02:33](1585 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:28](799 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:32, 02:37](1592 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:25, 04:24](1597 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 03:22](1655 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:37](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:58, 03:05](1599 MB)
-PASS -- TEST 'regional_control_intel' [06:23, 04:31](622 MB)
-PASS -- TEST 'regional_restart_intel' [04:03, 02:31](796 MB)
-PASS -- TEST 'regional_decomp_intel' [06:16, 04:45](1389 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:19, 04:26](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:33](621 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:18, 04:34](626 MB)
-PASS -- TEST 'regional_wofs_intel' [08:15, 05:41](1597 MB)
-
-PASS -- COMPILE 'rrfs_intel' [52:44, 11:44]
-PASS -- TEST 'rap_control_intel' [08:15, 06:09](1006 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 03:58](1195 MB)
-PASS -- TEST 'rap_decomp_intel' [09:14, 06:25](1007 MB)
-PASS -- TEST 'rap_restart_intel' [05:15, 03:15](884 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:10, 06:11](1004 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 06:23](1007 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 04:36](883 MB)
-PASS -- TEST 'hrrr_control_intel' [06:06, 03:15](1001 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:20](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:53](1092 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:48](835 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:03](1002 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 07:26](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:46, 07:10](1954 MB)
-
-PASS -- COMPILE 'csawmg_intel' [49:35, 10:52]
-PASS -- TEST 'control_csawmg_intel' [07:15, 05:14](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:16, 05:10](687 MB)
-PASS -- TEST 'control_ras_intel' [04:34, 02:56](656 MB)
-
-PASS -- COMPILE 'wam_intel' [48:44, 10:32]
-PASS -- TEST 'control_wam_intel' [04:01, 01:59](384 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [51:37, 13:52]
-PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1594 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [44:43, 09:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:26, 02:34](791 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:36](793 MB)
-PASS -- TEST 'control_stochy_debug_intel' [07:21, 02:55](799 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:37](800 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:49, 03:58](834 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:49, 03:59](833 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:19, 02:42](807 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:05, 02:45](854 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:48, 02:44](1624 MB)
-PASS -- TEST 'regional_debug_intel' [18:52, 15:45](661 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:23, 04:44](1177 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:26, 04:34](1173 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 04:47](1176 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 04:47](1175 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 04:50](1177 MB)
-PASS -- TEST 'rap_diag_debug_intel' [10:55, 04:57](1263 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:19, 04:53](1178 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 04:43](1180 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:31, 04:45](1177 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 04:46](1176 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:36](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 04:44](1176 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 07:49](1178 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 04:37](1170 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:36](1179 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:38](1176 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:55](1180 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [40:41, 06:21]
-PASS -- TEST 'control_wam_debug_intel' [06:33, 04:38](416 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:33, 10:46]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:39](1056 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 05:09](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:01, 02:47](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:00, 02:58](883 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 03:55](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:36](778 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:32, 12:46]
-PASS -- TEST 'conus13km_control_intel' [04:51, 01:58](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:04](1081 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:12, 01:11](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:31, 10:34]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:40](907 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [32:34, 06:29]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:41, 04:39](1057 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1389 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:55, 13:25](1130 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 13:30](1196 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:22, 06:35]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:37](1080 MB)
-
-PASS -- COMPILE 'hafsw_intel' [21:30, 16:57]
-PASS -- TEST 'hafs_regional_atm_intel' [08:57, 04:41](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 05:32](1068 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:20, 06:33](772 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:00](796 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 12:10](805 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 04:46](475 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 05:53](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 02:26](389 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:53, 06:33](456 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:34, 03:26](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:12, 03:10](506 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:56, 03:59](581 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:20](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:27, 03:29](785 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:14](611 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:21, 20:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 07:13](628 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:28](677 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:29, 17:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 05:26](671 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:28, 14:59]
-PASS -- TEST 'hafs_regional_docn_intel' [09:30, 05:41](754 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:40, 05:44](737 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:11](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [11:25, 08:31]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:35, 01:35](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:45, 02:21](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:23](644 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:47, 02:24](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:31](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:32](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:43, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:48, 05:43](685 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 05:38](670 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:36, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:56](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:32, 04:00](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:55]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:00, 05:07](1389 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:52, 02:31](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:17](301 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:12](455 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 00:50](455 MB)
-
-PASS -- COMPILE 'atml_intel' [14:24, 13:45]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 06:58](1622 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:28](1639 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:33](842 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:29, 13:41]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:37](1627 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:29, 13:16]
-PASS -- TEST 'control_atmwav_intel' [03:08, 01:31](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:20, 12:17]
-PASS -- TEST 'atmaero_control_p8_intel' [06:00, 03:44](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:19](3002 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:34](3012 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:21, 11:52]
+PASS -- COMPILE 's2swa_32bit_intel' [40:32, 22:08]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 05:04](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:32, 22:31]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:40, 13:55](1688 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:25](1825 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:37](953 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 15:51](1656 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:38, 12:02]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:15, 21:47](1694 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:42, 21:36]
+PASS -- TEST 'cpld_control_p8_intel' [09:30, 05:44](3089 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 05:43](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:31](3146 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 05:44](3120 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 03:31](3176 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3088 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 04:47](3383 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:42](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:28, 09:11](3632 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:35, 06:28](3612 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [31:52, 10:03](4342 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:48, 07:08](4646 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 05:24](3062 MB)
+
+PASS -- COMPILE 's2sw_intel' [39:38, 20:47]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:16](1677 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:11, 04:21](1728 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [29:36, 11:36]
+PASS -- TEST 'cpld_debug_p8_intel' [10:05, 07:45](3151 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [29:37, 11:01]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:23](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:39, 16:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:25](1721 MB)
+
+PASS -- COMPILE 's2s_intel' [34:37, 15:58]
+PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:39](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [43:47, 24:57]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:44](3097 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [22:32, 21:20]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:17, 14:11](1697 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:45, 07:26](1012 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 16:11](1663 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:29, 10:38]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:48](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:28, 13:56]
+PASS -- TEST 'control_flake_intel' [04:50, 03:29](665 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:11](616 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:08, 02:20](625 MB)
+PASS -- TEST 'control_latlon_intel' [03:49, 02:11](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:16](618 MB)
+PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:16](740 MB)
+PASS -- TEST 'control_c192_intel' [11:04, 08:09](737 MB)
+PASS -- TEST 'control_c384_intel' [15:41, 08:37](1064 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:32, 07:39](1198 MB)
+PASS -- TEST 'control_stochy_intel' [02:44, 01:31](625 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:58](436 MB)
+PASS -- TEST 'control_lndp_intel' [02:45, 01:26](625 MB)
+PASS -- TEST 'control_iovr4_intel' [03:56, 02:11](621 MB)
+PASS -- TEST 'control_iovr5_intel' [03:47, 02:10](618 MB)
+PASS -- TEST 'control_p8_intel' [04:51, 02:34](1602 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:38](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:35](1602 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:49, 01:32](801 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:41](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:27](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:42](1597 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:46, 04:30](1600 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:58, 03:28](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:37](1603 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:19, 03:07](1602 MB)
+PASS -- TEST 'regional_control_intel' [06:36, 04:35](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:35](798 MB)
+PASS -- TEST 'regional_decomp_intel' [06:35, 04:46](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:26, 04:35](627 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:37](631 MB)
+PASS -- TEST 'regional_wofs_intel' [07:22, 05:42](1600 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:28, 12:11]
+PASS -- TEST 'rap_control_intel' [08:39, 06:08](999 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:27, 03:59](1188 MB)
+PASS -- TEST 'rap_decomp_intel' [09:00, 06:33](1003 MB)
+PASS -- TEST 'rap_restart_intel' [05:38, 03:18](876 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:13](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:30](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:39](878 MB)
+PASS -- TEST 'hrrr_control_intel' [05:51, 03:20](995 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:22](1000 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 02:53](1089 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:59](831 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:05](996 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:30](1957 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:12](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:28, 11:17]
+PASS -- TEST 'control_csawmg_intel' [07:40, 05:20](691 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:36, 05:13](689 MB)
+PASS -- TEST 'control_ras_intel' [04:48, 02:59](658 MB)
+
+PASS -- COMPILE 'wam_intel' [11:21, 10:39]
+PASS -- TEST 'control_wam_intel' [03:37, 01:56](380 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:25, 13:43]
+PASS -- TEST 'control_p8_faster_intel' [05:05, 02:29](1598 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:24, 04:20](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:30, 09:53]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:38](792 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](796 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](802 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:43](801 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:26, 03:57](838 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:32, 03:59](836 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:49, 02:44](803 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:12, 02:47](855 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:31, 02:39](1624 MB)
+PASS -- TEST 'regional_debug_intel' [17:27, 15:54](664 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:51, 04:51](1177 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:50, 04:39](1402 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:50, 04:41](1178 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:47](1180 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:43, 04:43](1178 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:04, 05:00](1265 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:45, 04:49](1176 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:43, 04:53](1180 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:53, 04:48](1181 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:52](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:53, 04:43](1174 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 04:41](1179 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:46, 07:47](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:38](1171 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:55, 05:28](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:41](1181 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:27, 07:55](1179 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:25, 06:11]
+PASS -- TEST 'control_wam_debug_intel' [15:41, 04:38](423 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 10:39]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:47](1059 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:16, 05:11](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:05, 02:51](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:24, 02:57](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 03:53](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:44, 01:34](775 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:46]
+PASS -- TEST 'conus13km_control_intel' [12:26, 01:55](1081 MB)
+PASS -- TEST 'conus13km_2threads_intel' [09:31, 01:03](1082 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [09:02, 01:11](972 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 10:57]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 03:41](908 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:29, 07:05]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:57, 04:36](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:46, 04:26](1051 MB)
+PASS -- TEST 'conus13km_debug_intel' [23:36, 13:24](1133 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [22:38, 13:31](820 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 13:40](1385 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:25, 07:12]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:47, 04:41](1081 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:24, 17:43]
+PASS -- TEST 'hafs_regional_atm_intel' [13:08, 04:48](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:21, 05:23](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:26, 06:31](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:43, 11:00](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 12:12](809 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:44, 04:45](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 05:54](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [08:29, 02:27](389 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:12, 06:26](460 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:14, 03:25](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:59, 03:12](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:56](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:53, 01:19](428 MB)
+PASS -- TEST 'gnv1_nested_intel' [12:33, 03:30](787 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:36, 12:02](610 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:32, 21:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 07:18](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:17, 07:20](687 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:26, 18:27]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:20, 05:30](675 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:29, 15:50]
+PASS -- TEST 'hafs_regional_docn_intel' [13:53, 05:46](750 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:53, 05:45](736 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 16:11](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:29, 09:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:08, 02:30](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [24:47, 01:35](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:36, 02:21](642 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:48, 02:23](641 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:40, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:42, 02:31](1405 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:02, 02:30](1215 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:39, 02:20](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:19, 05:42](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 05:42](671 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:07, 03:53](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 03:54](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:25, 06:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:06](747 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 08:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:31](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:23, 02:54]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:17](308 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:12](451 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:57, 00:52](451 MB)
+
+PASS -- COMPILE 'atml_intel' [15:28, 14:18]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:47, 07:28](1624 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [32:45, 07:46](1628 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 04:50](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:26, 14:00]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:19, 01:37](1635 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:26, 13:38]
+PASS -- TEST 'control_atmwav_intel' [03:06, 01:33](635 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:25, 12:06]
+PASS -- TEST 'atmaero_control_p8_intel' [27:09, 03:46](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [28:10, 04:24](2995 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:34, 04:38](3013 MB)
+
+PASS -- COMPILE 'atmaq_intel' [36:34, 11:45]
+
+PASS -- COMPILE 'atmaq_debug_intel' [32:37, 07:22]
+PASS -- TEST 'regional_atmaq_debug_intel' [39:42, 22:28](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240220 21:47:19
-Ending Date/Time: 20240220 23:47:50
-Total Time: 02h:02m:03s
-Compiles Completed: 37/37
-Tests Completed: 170/170
+Starting Date/Time: 20240222 14:58:31
+Ending Date/Time: 20240222 17:18:46
+Total Time: 02h:21m:07s
+Compiles Completed: 39/39
+Tests Completed: 175/175
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 49c76eba5f..593a36407a 100644
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
+9904889c8c39959060b801e0cb5965f869d2a0ee
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,277 +25,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_35653
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_55800
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:20, 05:14](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:06]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:08, 13:20](1692 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:03, 14:05](1809 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 06:30](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 14:30](1662 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:08, 07:23]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:07, 24:43](1698 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:09, 12:34]
-PASS -- TEST 'cpld_control_p8_intel' [08:15, 06:01](3098 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:23, 05:58](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:10, 03:33](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:59](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 03:40](3177 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:24](3410 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:56](3098 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:16, 05:02](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:07, 09:54](3271 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:47](3602 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 12:14](4036 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:38](4347 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:15, 05:42](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:09, 11:54]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:23](1688 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:36](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:08, 07:18]
-PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:28](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:08, 06:30]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:44](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:09, 10:55]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1731 MB)
-
-PASS -- COMPILE 's2s_intel' [12:09, 10:53]
-PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2659 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:52]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:52](3098 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:39]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:07, 14:41](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:10](1001 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 17:03](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:08, 06:58]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:38](1711 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:09, 10:26]
-PASS -- TEST 'control_flake_intel' [07:27, 03:28](671 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 02:19](617 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:33, 02:20](625 MB)
-PASS -- TEST 'control_latlon_intel' [04:24, 02:18](620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:19](620 MB)
-PASS -- TEST 'control_c48_intel' [07:35, 05:35](726 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:35](720 MB)
-PASS -- TEST 'control_c192_intel' [12:33, 08:31](737 MB)
-PASS -- TEST 'control_c384_intel' [19:54, 16:16](1039 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:39, 13:58](1182 MB)
-PASS -- TEST 'control_stochy_intel' [04:24, 01:37](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:59](428 MB)
-PASS -- TEST 'control_lndp_intel' [03:24, 01:31](626 MB)
-PASS -- TEST 'control_iovr4_intel' [05:27, 02:20](620 MB)
-PASS -- TEST 'control_iovr5_intel' [05:27, 02:19](620 MB)
-PASS -- TEST 'control_p8_intel' [06:43, 02:44](1608 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 02:45](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 02:39](1610 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:40, 01:34](791 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:41](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:32](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:43, 02:48](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:24](1680 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:39, 04:44](1608 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:38](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:44](1614 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:44, 03:15](1615 MB)
-PASS -- TEST 'regional_control_intel' [06:29, 04:36](619 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:29](791 MB)
-PASS -- TEST 'regional_decomp_intel' [06:29, 04:49](617 MB)
-PASS -- TEST 'regional_2threads_intel' [04:29, 02:50](761 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1156 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:36](618 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:39](619 MB)
-PASS -- TEST 'regional_wofs_intel' [07:30, 05:59](1593 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:09, 09:31]
-PASS -- TEST 'rap_control_intel' [08:37, 06:33](1008 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:56](1177 MB)
-PASS -- TEST 'rap_decomp_intel' [08:36, 06:32](1007 MB)
-PASS -- TEST 'rap_2threads_intel' [07:40, 05:55](1093 MB)
-PASS -- TEST 'rap_restart_intel' [05:37, 03:27](876 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:26](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:43](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:51](876 MB)
-PASS -- TEST 'hrrr_control_intel' [05:38, 03:26](1003 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:29](1004 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:00](1076 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:54](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:27](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:42](1964 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:31](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:09, 09:08]
-PASS -- TEST 'control_csawmg_intel' [07:30, 05:32](696 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:29, 05:28](693 MB)
-PASS -- TEST 'control_ras_intel' [05:20, 03:07](658 MB)
-
-PASS -- COMPILE 'wam_intel' [10:09, 08:42]
-PASS -- TEST 'control_wam_intel' [04:19, 02:09](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:55]
-PASS -- TEST 'control_p8_faster_intel' [04:43, 02:39](1606 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:28, 04:24](613 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:30]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 02:43](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:43](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:03](785 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:21]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:13](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:35]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:31](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:19](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 06:35](946 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:05, 14:34](1670 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:07, 07:32]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:02, 24:05](1699 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:09, 13:00]
+PASS -- TEST 'cpld_control_p8_intel' [08:17, 06:01](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:00](3098 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:09, 03:35](3156 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:04](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 03:38](3177 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:17, 05:28](3411 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:17, 05:54](3097 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:03](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:59](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:54](3271 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:58, 06:50](3599 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 12:11](4038 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 08:32](4346 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:47](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:09, 12:21]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:23](1691 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:38](1737 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:55]
+PASS -- TEST 'cpld_debug_p8_intel' [11:06, 08:13](3130 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:07, 06:42]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:32](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:20]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1727 MB)
+
+PASS -- COMPILE 's2s_intel' [13:08, 11:11]
+PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2660 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:14]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:09, 05:57](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 18:02]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:14, 14:29](1704 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:04](1003 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 17:00](1684 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:14]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 26:52](1711 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:23]
+PASS -- TEST 'control_flake_intel' [05:24, 03:34](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:19](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:26](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:24, 02:21](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:25](623 MB)
+PASS -- TEST 'control_c48_intel' [07:34, 05:41](722 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:38](721 MB)
+PASS -- TEST 'control_c192_intel' [10:32, 08:40](739 MB)
+PASS -- TEST 'control_c384_intel' [18:50, 16:15](1041 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:38, 14:03](1185 MB)
+PASS -- TEST 'control_stochy_intel' [03:24, 01:38](628 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:34](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:22, 02:21](622 MB)
+PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](623 MB)
+PASS -- TEST 'control_p8_intel' [04:53, 02:41](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:45](1609 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:41](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:42, 01:35](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:41](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:34](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:43](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:43, 02:25](1679 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:43](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:33](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:45, 03:14](1616 MB)
+PASS -- TEST 'regional_control_intel' [06:29, 04:34](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:27, 02:49](757 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:33](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:33](615 MB)
+PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:08, 09:44]
+PASS -- TEST 'rap_control_intel' [08:42, 06:33](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:57](1182 MB)
+PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [07:36, 05:52](1099 MB)
+PASS -- TEST 'rap_restart_intel' [05:37, 03:28](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:24](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 06:42](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 04:51](879 MB)
+PASS -- TEST 'hrrr_control_intel' [05:40, 03:29](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:33](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:00](1079 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:55](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:25](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:40](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 07:24](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:08, 09:25]
+PASS -- TEST 'control_csawmg_intel' [07:28, 05:32](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:28, 05:29](693 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:08](657 MB)
+
+PASS -- COMPILE 'wam_intel' [10:08, 09:06]
+PASS -- TEST 'control_wam_intel' [04:20, 02:09](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:10]
+PASS -- TEST 'control_p8_faster_intel' [04:45, 02:40](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:31, 04:25](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 06:58]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:43](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:40](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](785 MB)
PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:03](823 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:08](823 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:26, 02:51](1619 MB)
-PASS -- TEST 'regional_debug_intel' [17:36, 16:12](632 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1165 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:57](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:53](1166 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:57](1166 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:00](1165 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:06](1249 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1165 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1166 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:01](1167 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1165 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:47](1165 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:50](1164 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1161 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1167 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1165 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:25](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:07, 05:04]
-PASS -- TEST 'control_wam_debug_intel' [06:20, 05:02](391 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 08:49]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:46](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:29](889 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:57](886 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:00](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:38](940 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:05](888 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:09](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](765 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:26]
-PASS -- TEST 'conus13km_control_intel' [04:02, 01:57](1096 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:02](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 09:15]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:55](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 05:21]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:42](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:04, 13:31](1128 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:44](802 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:07](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:53](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:53](1068 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:09, 11:06]
-PASS -- TEST 'hafs_regional_atm_intel' [08:09, 05:16](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:27](1063 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:38](755 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:09, 11:33](787 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:20, 12:56](795 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:14](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:40](499 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 02:55](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 07:52](435 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:41](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:27](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:25](567 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:41](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:52, 03:53](771 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:08, 06:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:15](583 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:40](612 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:41](785 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:27]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:00](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:10, 10:42]
-PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:58](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 06:03](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:10, 16:08](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [11:09, 09:41]
+PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:07](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:05](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:46](844 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:28, 02:44](1619 MB)
+PASS -- TEST 'regional_debug_intel' [18:35, 16:49](634 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:22, 04:51](1167 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:41](1166 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:46](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:48](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:01](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1167 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1168 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:51](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:47](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:52](1165 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:51](1167 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:45](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:43](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:54](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:14](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:08, 05:28]
+PASS -- TEST 'control_wam_debug_intel' [08:22, 04:52](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:18]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:43](1054 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 05:27](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 02:58](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:44, 05:06](946 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:37](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:37, 04:11](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:24, 01:44](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:35]
+PASS -- TEST 'conus13km_control_intel' [04:03, 01:57](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [06:43, 01:05](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:43, 01:17](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:11]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:52](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:11]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:48](1050 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:09, 14:01](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:44](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 07:57](1111 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 14:01](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:31]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:48](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:08, 11:35]
+PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:15](708 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 04:32](1063 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:46](756 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:09, 11:42](791 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 12:46](800 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:20](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:19, 06:42](501 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [09:54, 03:04](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:10, 07:55](434 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:45](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:58, 03:32](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 04:38](569 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:49](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:55, 03:59](765 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:07, 06:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:01](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:44]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 07:37](610 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:45](780 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 12:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 06:02](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:08, 11:04]
+PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:06](748 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:03](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:09, 16:10](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:58]
PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:30](745 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:21](637 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:31](745 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](636 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](636 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:22](637 MB)
PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:28](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:19](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:53, 05:49](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 05:48](672 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](756 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2014 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:38](2014 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:29](755 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:19](636 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:49](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:45](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:29](756 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:38](2015 MB)
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:08, 05:36]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:23](739 MB)
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:23](741 MB)
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:28](744 MB)
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:09, 10:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:27](756 MB)
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:16](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:07](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:52](456 MB)
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:17](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:08](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:53](456 MB)
-PASS -- COMPILE 'atml_intel' [13:08, 11:22]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:15](1642 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:16](1642 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:29](837 MB)
+PASS -- COMPILE 'atml_intel' [12:09, 10:47]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:08, 06:14](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:06, 06:20](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:27](836 MB)
-PASS -- COMPILE 'atmw_intel' [12:08, 10:20]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:43](1648 MB)
+PASS -- COMPILE 'atmw_intel' [12:09, 10:15]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:43](1649 MB)
-PASS -- COMPILE 'atmwm_intel' [11:08, 10:01]
-PASS -- TEST 'control_atmwav_intel' [03:34, 01:39](638 MB)
+PASS -- COMPILE 'atmwm_intel' [12:09, 10:20]
+PASS -- TEST 'control_atmwav_intel' [03:36, 01:38](640 MB)
-PASS -- COMPILE 'atmaero_intel' [11:09, 09:29]
-PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:24](2942 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:52](3011 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:01](3018 MB)
+PASS -- COMPILE 'atmaero_intel' [11:09, 09:45]
+PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:14](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:51](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:09](3019 MB)
-PASS -- COMPILE 'atmaq_intel' [11:08, 09:35]
+PASS -- COMPILE 'atmaq_intel' [11:08, 09:40]
-PASS -- COMPILE 'atmaq_debug_intel' [07:07, 05:51]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:11, 18:21](4483 MB)
+PASS -- COMPILE 'atmaq_debug_intel' [07:08, 05:38]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:13, 18:12](4480 MB)
SYNOPSIS:
-Starting Date/Time: 20240219 09:48:12
-Ending Date/Time: 20240219 11:12:09
-Total Time: 01h:24m:16s
+Starting Date/Time: 20240222 16:32:44
+Ending Date/Time: 20240222 17:55:46
+Total Time: 01h:23m:24s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 646ee765d0..b4ddf7103f 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
+ffc1413d43ff54ebdbba9d04e8ab95109225f0b1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,366 +25,366 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_5902
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_29067
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:14](3105 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:39]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:10](1756 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:55](2008 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:10, 07:35](1086 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:10](1596 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:27]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 22:19](1661 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:07, 12:17]
-PASS -- TEST 'cpld_control_p8_intel' [08:15, 05:38](3187 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:38](3192 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:28, 03:20](3221 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:38](3175 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:28, 03:25](3256 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:26](3498 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:10, 05:40](3150 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:39](3026 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 05:43](3148 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:09, 09:43](3316 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:45, 06:05](3571 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:59](4120 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:38](4342 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:28](3114 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:07, 11:41]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:28](1728 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:29](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:35]
-PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:04](3171 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:48]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:39](1709 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:07, 10:50]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:31](1716 MB)
-
-PASS -- COMPILE 's2s_intel' [12:07, 10:38]
-PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:18](2816 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:00]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:16](3208 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:03]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:16](1753 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 07:40](1142 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 18:35](1663 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:52]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:56, 24:45](1701 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:33]
-PASS -- TEST 'control_flake_intel' [06:21, 03:17](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:23](617 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:29](644 MB)
-PASS -- TEST 'control_latlon_intel' [04:21, 02:24](647 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:27](650 MB)
-PASS -- TEST 'control_c48_intel' [08:22, 06:12](873 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:15](874 MB)
-PASS -- TEST 'control_c192_intel' [11:35, 09:00](844 MB)
-PASS -- TEST 'control_c384_intel' [12:21, 09:07](1283 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:42, 08:03](1368 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:37](652 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:00](496 MB)
-PASS -- TEST 'control_lndp_intel' [03:18, 01:33](617 MB)
-PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](641 MB)
-PASS -- TEST 'control_iovr5_intel' [04:20, 02:27](616 MB)
-PASS -- TEST 'control_p8_intel' [05:01, 02:58](1616 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 02:56](1591 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:02, 02:50](1602 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](886 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:55](1586 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:35](895 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:52, 02:57](1597 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:51, 02:46](1707 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:09](1616 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:48](1670 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:00](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:53, 03:28](1600 MB)
-PASS -- TEST 'regional_control_intel' [07:38, 05:03](849 MB)
-PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1007 MB)
-PASS -- TEST 'regional_decomp_intel' [07:36, 05:24](817 MB)
-PASS -- TEST 'regional_2threads_intel' [05:36, 03:12](839 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:38, 05:05](1360 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](845 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:05](847 MB)
-PASS -- TEST 'regional_wofs_intel' [08:38, 06:37](1905 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:07, 09:55]
-PASS -- TEST 'rap_control_intel' [09:42, 07:40](1065 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:07](1274 MB)
-PASS -- TEST 'rap_decomp_intel' [10:34, 08:02](991 MB)
-PASS -- TEST 'rap_2threads_intel' [09:35, 07:11](1176 MB)
-PASS -- TEST 'rap_restart_intel' [05:36, 04:00](1076 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:37](1094 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1018 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:46](1111 MB)
-PASS -- TEST 'hrrr_control_intel' [05:34, 03:56](1030 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:03](995 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1096 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:08](1000 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:34](1059 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:00](1991 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:53](2029 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:07, 09:24]
-PASS -- TEST 'control_csawmg_intel' [07:38, 05:47](709 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:37, 05:47](734 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:15](712 MB)
-
-PASS -- COMPILE 'wam_intel' [11:07, 09:04]
-PASS -- TEST 'control_wam_intel' [04:16, 02:00](656 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 10:15]
-PASS -- TEST 'control_p8_faster_intel' [04:49, 02:36](1601 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:36, 04:37](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:38](794 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](802 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:59](788 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:40](783 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:00](829 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:00](858 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](788 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](864 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:41, 02:48](1574 MB)
-PASS -- TEST 'regional_debug_intel' [18:43, 16:10](837 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:20, 04:46](1191 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:40](1186 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:41](1202 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:47](1202 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:41](1196 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:05](1279 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:51](1181 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:53](1163 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:48](1194 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:42](1201 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:36](1188 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:47](1192 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:45](1193 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:46](1187 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 06:01](1200 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:47](1196 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:09](1168 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 02:57]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 04:43](514 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:13]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 03:53](1127 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:18](1034 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:22](978 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 05:59](1084 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:30, 03:05](954 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:32](900 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 04:47](1010 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](927 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:22]
-PASS -- TEST 'conus13km_control_intel' [04:51, 02:02](1194 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1112 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1068 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:20]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:12](954 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:20, 04:39](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:38](1071 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:45, 13:49](1219 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:59](895 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 07:45](1147 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:39](1284 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 04:45](1116 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:06, 10:47]
-PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:51](730 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:01](1086 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 06:55](826 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:03](839 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:45](871 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:22](498 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:25](506 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:33](349 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:06, 07:09](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:36](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:29](504 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](582 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:11](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:43, 03:55](796 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:27]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 12:17](545 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:35](634 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:32](700 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:07, 11:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 06:18](663 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:18]
-PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:17](800 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:18](803 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:11](1205 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:10]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:39](1113 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:39](1073 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:37](997 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:35](1005 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:57](982 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:38](1127 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:37](1122 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:33](1008 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:28](1045 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:39](1040 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1121 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:51](2464 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:54](2480 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:46]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:08](1044 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1116 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:44](321 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:34](312 MB)
-
-PASS -- COMPILE 'atml_intel' [12:07, 10:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:15](1581 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:12](1586 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:16](877 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:07, 09:58]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:45](1646 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:07, 10:04]
-PASS -- TEST 'control_atmwav_intel' [03:29, 01:41](628 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:06, 09:50]
-PASS -- TEST 'atmaero_control_p8_intel' [06:02, 03:56](2976 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:42](3036 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:00](3068 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:06, 09:32]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:51, 20:27](4341 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:06, 03:23]
-PASS -- TEST 'control_c48_gnu' [13:23, 11:36](792 MB)
-PASS -- TEST 'control_stochy_gnu' [05:17, 04:02](552 MB)
-PASS -- TEST 'control_ras_gnu' [06:17, 04:53](560 MB)
-PASS -- TEST 'control_p8_gnu' [06:56, 04:54](1300 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:40](1304 MB)
-PASS -- TEST 'control_flake_gnu' [07:19, 05:51](592 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:06, 03:27]
-PASS -- TEST 'rap_control_gnu' [13:30, 11:36](895 MB)
-PASS -- TEST 'rap_decomp_gnu' [13:31, 11:39](894 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:37, 10:27](974 MB)
-PASS -- TEST 'rap_restart_gnu' [08:38, 06:04](623 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:34](894 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:54](894 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:56](629 MB)
-PASS -- TEST 'hrrr_control_gnu' [07:35, 05:57](889 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:59](878 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:27, 05:14](974 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [07:28, 05:56](892 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:24, 03:14](609 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:11](706 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:15](888 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21]
-PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](584 MB)
-PASS -- TEST 'regional_debug_gnu' [09:36, 07:37](593 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:28](905 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](899 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 02:31](906 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](904 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:44](987 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:59](896 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:33](901 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:35](898 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](537 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:47](536 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:36](1287 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](907 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:46](908 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:04](909 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:40]
-PASS -- TEST 'control_wam_debug_gnu' [04:15, 02:24](239 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:05, 03:24]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:27, 11:47](754 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:25, 06:05](746 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:36, 10:35](803 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 05:17](805 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 06:01](746 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:34, 08:47](596 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 03:19](579 MB)
-PASS -- TEST 'conus13km_control_gnu' [07:52, 04:12](897 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:49](936 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:16](595 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:37, 06:54](777 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:17]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:19, 02:29](774 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 02:28](768 MB)
-PASS -- TEST 'conus13km_debug_gnu' [09:43, 07:11](911 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:04](634 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [06:39, 04:22](956 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:38, 07:07](977 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:19]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](789 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:07, 14:03]
-PASS -- TEST 'cpld_control_p8_gnu' [13:09, 10:59](1505 MB)
-
-PASS -- COMPILE 's2s_gnu' [15:07, 13:41]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:00, 06:34](1402 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:21]
-PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:09](1520 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:07, 13:53]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:56, 22:02](1375 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:08]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:52, 13:06](1390 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:26]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:03](692 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:07]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:16](3153 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:03]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 16:14](1735 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 16:51](2001 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:05](1092 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:12, 18:23](1630 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:18]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:12, 22:24](1689 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:09, 12:06]
+PASS -- TEST 'cpld_control_p8_intel' [08:22, 05:43](3183 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:36, 05:41](3194 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:44, 03:28](3199 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:47](3161 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:43, 03:28](3275 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:19, 05:29](3491 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:39](3126 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:37](3049 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 05:42](3191 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 09:48](3327 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:42, 05:58](3605 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:55, 09:51](4059 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:01, 07:25](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:17](3157 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:09, 11:23]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:30](1716 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:28](1743 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:17]
+PASS -- TEST 'cpld_debug_p8_intel' [11:17, 08:13](3209 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:14]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:36](1741 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:43]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:27](1764 MB)
+
+PASS -- COMPILE 's2s_intel' [13:10, 10:59]
+PASS -- TEST 'cpld_control_c48_intel' [11:47, 09:25](2808 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:45]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:22](3183 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:08, 14:47]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 16:23](1727 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:17](1152 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:20](1656 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:36](1703 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:21]
+PASS -- TEST 'control_flake_intel' [05:24, 03:20](696 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:30](653 MB)
+PASS -- TEST 'control_latlon_intel' [04:23, 02:28](619 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:28](640 MB)
+PASS -- TEST 'control_c48_intel' [08:32, 06:14](874 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 06:17](871 MB)
+PASS -- TEST 'control_c192_intel' [11:40, 09:10](820 MB)
+PASS -- TEST 'control_c384_intel' [13:43, 09:12](1261 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:05, 08:11](1383 MB)
+PASS -- TEST 'control_stochy_intel' [03:18, 01:38](650 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:59](504 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:36](651 MB)
+PASS -- TEST 'control_iovr4_intel' [04:22, 02:27](642 MB)
+PASS -- TEST 'control_iovr5_intel' [04:23, 02:27](646 MB)
+PASS -- TEST 'control_p8_intel' [07:04, 03:04](1624 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:08, 03:05](1616 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:09, 03:06](1620 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:46, 01:40](880 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:04](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:39](926 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:07, 03:07](1597 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:04, 02:50](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:07, 05:14](1616 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:10, 03:51](1681 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:13, 02:59](1626 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:54, 03:27](1633 MB)
+PASS -- TEST 'regional_control_intel' [07:36, 05:17](846 MB)
+PASS -- TEST 'regional_restart_intel' [05:45, 02:44](986 MB)
+PASS -- TEST 'regional_decomp_intel' [07:40, 05:31](839 MB)
+PASS -- TEST 'regional_2threads_intel' [05:43, 03:18](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:38, 05:13](1338 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:13](848 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:14](846 MB)
+PASS -- TEST 'regional_wofs_intel' [08:43, 06:40](1890 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:08, 09:54]
+PASS -- TEST 'rap_control_intel' [09:47, 07:43](1104 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:12, 04:09](1275 MB)
+PASS -- TEST 'rap_decomp_intel' [10:36, 08:03](1024 MB)
+PASS -- TEST 'rap_2threads_intel' [09:43, 07:16](1188 MB)
+PASS -- TEST 'rap_restart_intel' [05:43, 04:00](1087 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1103 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:03](1017 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 06:21](1098 MB)
+PASS -- TEST 'hrrr_control_intel' [06:42, 03:58](1029 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:05](1001 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:38, 03:39](1100 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:09](984 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:47, 07:34](1106 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:29, 09:06](1981 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 09:02](2060 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:07, 09:37]
+PASS -- TEST 'control_csawmg_intel' [08:41, 05:54](733 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:41, 05:43](742 MB)
+PASS -- TEST 'control_ras_intel' [05:22, 03:18](732 MB)
+
+PASS -- COMPILE 'wam_intel' [11:08, 09:17]
+PASS -- TEST 'control_wam_intel' [04:20, 02:03](627 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 09:50]
+PASS -- TEST 'control_p8_faster_intel' [05:07, 02:39](1589 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:39, 04:40](841 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:31]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:40](800 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](809 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:59](807 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:20, 02:42](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:41, 03:59](844 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:38, 03:57](853 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:40](792 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:27, 02:49](868 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 02:50](1638 MB)
+PASS -- TEST 'regional_debug_intel' [18:43, 16:31](841 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:21, 04:46](1188 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:34](1194 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:27](1200 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:28](1193 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:14](1186 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:03, 05:39](1262 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1194 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:13](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:01](1196 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:55](1196 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:00](1164 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:01](1176 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:58](1188 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1174 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:04](1172 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:09](1205 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:28](1197 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:08, 03:09]
+PASS -- TEST 'control_wam_debug_intel' [06:20, 04:52](477 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:12]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:30](1149 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:57](1011 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:59](958 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:36](1075 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:08](953 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:33](918 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:00](1044 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:51](911 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:44]
+PASS -- TEST 'conus13km_control_intel' [03:51, 02:02](1180 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:54](1113 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](1101 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:24]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:17](954 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:25]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:43](1074 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1073 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:55, 13:56](1216 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 13:45](911 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:48](1143 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:50](1293 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:07]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:49](1083 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:11, 10:55]
+PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:51](734 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 05:48](1101 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:46](806 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:02](844 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:44](845 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 05:20](473 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:30](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:45](351 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:06](484 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:40](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:26](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:10](584 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:18](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:45, 03:59](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:08, 04:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:16](538 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 08:26](647 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:28](696 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 11:20]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:05, 06:17](664 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:09, 10:30]
+PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:16](819 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:12](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:15](1218 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:08, 06:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1134 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:39](1058 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:36](1011 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:30](992 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:36](1002 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:43](1104 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1113 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1001 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 06:55](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:13](1029 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:38](1127 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](2421 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2411 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:01]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:58](1046 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:08, 05:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:38](1129 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:09, 01:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:44](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:47](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:31](316 MB)
+
+PASS -- COMPILE 'atml_intel' [12:09, 10:53]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 04:15](1584 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 04:08](1606 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 02:14](887 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 10:08]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:42](1647 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:15, 10:06]
+PASS -- TEST 'control_atmwav_intel' [06:34, 01:39](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:09, 09:50]
+PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:56](2967 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 04:44](3080 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:44, 05:03](3061 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:08, 09:26]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:09, 03:34]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 19:58](4345 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:09, 03:30]
+PASS -- TEST 'control_c48_gnu' [13:26, 11:41](790 MB)
+PASS -- TEST 'control_stochy_gnu' [06:18, 03:54](548 MB)
+PASS -- TEST 'control_ras_gnu' [07:18, 04:53](555 MB)
+PASS -- TEST 'control_p8_gnu' [06:57, 04:50](1301 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:44](1304 MB)
+PASS -- TEST 'control_flake_gnu' [07:21, 05:52](596 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:06, 03:31]
+PASS -- TEST 'rap_control_gnu' [13:33, 11:37](900 MB)
+PASS -- TEST 'rap_decomp_gnu' [14:34, 12:01](894 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:41, 10:30](974 MB)
+PASS -- TEST 'rap_restart_gnu' [08:38, 06:03](626 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:36](895 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:55](894 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:43](620 MB)
+PASS -- TEST 'hrrr_control_gnu' [07:32, 06:00](889 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:56](879 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 05:24](969 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 05:58](889 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:22, 03:13](608 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:13](704 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [15:42, 11:28](898 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:07, 03:17]
+PASS -- TEST 'control_diag_debug_gnu' [05:26, 01:42](588 MB)
+PASS -- TEST 'regional_debug_gnu' [09:38, 07:33](593 MB)
+PASS -- TEST 'rap_control_debug_gnu' [05:22, 02:43](907 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [05:18, 02:38](901 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [05:18, 02:40](903 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](903 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:45](991 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 03:52](904 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:27](904 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:31](900 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](541 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [04:26, 02:13](528 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1286 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:32](905 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:49](908 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:07](907 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:40]
+PASS -- TEST 'control_wam_debug_gnu' [05:17, 02:27](238 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 04:00]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:31, 11:42](751 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:31, 06:07](747 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:38, 10:40](803 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 05:20](802 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:31, 06:05](745 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:48, 09:17](595 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:23, 03:18](579 MB)
+PASS -- TEST 'conus13km_control_gnu' [06:54, 04:10](896 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:52, 01:55](930 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:52, 02:17](597 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:10, 05:24]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:54](778 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:09, 03:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:32](760 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:31](753 MB)
+PASS -- TEST 'conus13km_debug_gnu' [09:45, 07:15](915 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:58, 07:10](634 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [06:45, 04:19](949 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:59](982 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:53]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:33](786 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:10, 13:52]
+PASS -- TEST 'cpld_control_p8_gnu' [14:16, 11:04](1506 MB)
+
+PASS -- COMPILE 's2s_gnu' [15:08, 13:51]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:30](1405 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:59]
+PASS -- TEST 'cpld_debug_p8_gnu' [08:01, 06:03](1513 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 14:03]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:28](1376 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:49]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1388 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:08, 13:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:57](695 MB)
SYNOPSIS:
-Starting Date/Time: 20240219 14:20:19
-Ending Date/Time: 20240219 15:59:27
-Total Time: 01h:39m:36s
+Starting Date/Time: 20240222 18:39:16
+Ending Date/Time: 20240222 20:22:06
+Total Time: 01h:43m:23s
Compiles Completed: 53/53
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 166dd6458a..2520164ea8 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
+ffc1413d43ff54ebdbba9d04e8ab95109225f0b1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,357 +25,357 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1846065
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2262511
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:13]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:28](1890 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:57]
-PASS -- TEST 'cpld_control_gfsv17_intel' [26:06, 13:24](1767 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:19, 14:00](2184 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1184 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:45, 15:08](1695 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:35]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:13, 20:12](1734 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:06, 12:27]
-PASS -- TEST 'cpld_control_p8_intel' [09:52, 07:33](2091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 07:41](2060 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [16:05, 04:18](1971 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:37](1985 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [16:04, 04:16](1744 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:59](2496 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:28](2074 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:23](1886 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 07:29](2095 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [25:32, 15:37](2815 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 05:51](2920 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 08:49](3623 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:33, 06:09](3612 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 04:59](2029 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:05, 11:47]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:42, 07:09](1773 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:53, 03:52](1817 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:17]
-PASS -- TEST 'cpld_debug_p8_intel' [09:00, 06:49](2064 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:05, 06:05]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:38](1792 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:59]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:57](1825 MB)
-
-PASS -- COMPILE 's2s_intel' [11:05, 09:56]
-PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:13](2839 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:06, 14:01]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 07:18](2065 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:07, 15:40]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:52, 14:00](1811 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:42](1296 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:27](1726 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 21:14](1781 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:31]
-PASS -- TEST 'control_flake_intel' [18:17, 02:50](728 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:18, 02:04](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:25, 02:18](677 MB)
-PASS -- TEST 'control_latlon_intel' [18:17, 02:09](671 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:22, 02:11](667 MB)
-PASS -- TEST 'control_c48_intel' [21:22, 05:45](859 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [21:20, 05:46](861 MB)
-PASS -- TEST 'control_c192_intel' [21:26, 07:52](972 MB)
-PASS -- TEST 'control_c384_intel' [16:11, 08:14](1462 MB)
-PASS -- TEST 'control_c384gdas_intel' [21:49, 07:18](1532 MB)
-PASS -- TEST 'control_stochy_intel' [15:17, 01:26](670 MB)
-PASS -- TEST 'control_stochy_restart_intel' [13:24, 00:58](545 MB)
-PASS -- TEST 'control_lndp_intel' [17:20, 01:21](678 MB)
-PASS -- TEST 'control_iovr4_intel' [17:19, 02:04](667 MB)
-PASS -- TEST 'control_iovr5_intel' [16:21, 02:05](667 MB)
-PASS -- TEST 'control_p8_intel' [13:47, 02:35](1635 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [13:48, 02:33](1644 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:52, 02:25](1652 MB)
-PASS -- TEST 'control_restart_p8_intel' [09:44, 01:30](917 MB)
-PASS -- TEST 'control_noqr_p8_intel' [13:39, 02:27](1637 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 01:29](980 MB)
-PASS -- TEST 'control_decomp_p8_intel' [14:42, 02:32](1628 MB)
-PASS -- TEST 'control_2threads_p8_intel' [13:37, 02:20](1738 MB)
-PASS -- TEST 'control_p8_lndp_intel' [15:34, 04:22](1648 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [17:55, 03:32](1712 MB)
-PASS -- TEST 'control_p8_mynn_intel' [15:51, 02:38](1657 MB)
-PASS -- TEST 'merra2_thompson_intel' [14:56, 03:03](1655 MB)
-PASS -- TEST 'regional_control_intel' [11:28, 04:27](958 MB)
-PASS -- TEST 'regional_restart_intel' [04:23, 02:35](1097 MB)
-PASS -- TEST 'regional_decomp_intel' [11:27, 04:42](948 MB)
-PASS -- TEST 'regional_2threads_intel' [09:27, 02:50](924 MB)
-PASS -- TEST 'regional_noquilt_intel' [10:30, 04:20](1491 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:31, 04:27](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [10:26, 04:28](961 MB)
-PASS -- TEST 'regional_wofs_intel' [11:25, 05:31](2096 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:07]
-PASS -- TEST 'rap_control_intel' [15:35, 06:39](1200 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:42, 03:45](1399 MB)
-PASS -- TEST 'rap_decomp_intel' [14:33, 07:00](1143 MB)
-PASS -- TEST 'rap_2threads_intel' [13:47, 06:20](1359 MB)
-PASS -- TEST 'rap_restart_intel' [05:47, 03:26](1146 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [13:45, 06:43](1197 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:45, 06:57](1144 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:52](1195 MB)
-PASS -- TEST 'hrrr_control_intel' [10:30, 03:25](1076 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:29](1058 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [08:43, 03:04](1120 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:47](1028 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:50, 06:25](1203 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 07:39](2005 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:22](2174 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:05, 06:54]
-PASS -- TEST 'control_csawmg_intel' [07:22, 05:06](808 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:24, 05:05](824 MB)
-PASS -- TEST 'control_ras_intel' [04:12, 02:54](802 MB)
-
-PASS -- COMPILE 'wam_intel' [07:05, 05:58]
-PASS -- TEST 'control_wam_intel' [03:18, 01:50](789 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:07, 09:20]
-PASS -- TEST 'control_p8_faster_intel' [04:49, 02:17](1634 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:25, 04:10](956 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:34]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:18](834 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:15](828 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](837 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:16](827 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:22](879 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:27, 03:18](873 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:15, 02:15](836 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:20, 02:16](885 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](1657 MB)
-PASS -- TEST 'regional_debug_intel' [16:24, 14:03](898 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1221 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1212 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:58](1226 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:58](1221 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 04:01](1220 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:08](1304 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:03](1219 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:02](1218 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:03](1224 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:00](1222 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:50](1207 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:58](1212 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:35](1210 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:57](1210 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:11](1224 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:59](1211 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:48](1214 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 02:46]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 06:58]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 03:14](1305 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:25](1142 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:53](1025 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:05](1289 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:37](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:01](998 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 04:03](1098 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:33](967 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 09:28]
-PASS -- TEST 'conus13km_control_intel' [03:45, 01:42](1302 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1201 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1156 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 07:06]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:40](1075 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:09]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:53](1107 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:52](1093 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1342 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:44](1023 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:39](1244 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:26, 11:34](1397 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:03]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 04:02](1147 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:05, 10:00]
-PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:15](874 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1278 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:06, 06:18](968 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:59, 13:41](983 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 14:51](1012 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:23](605 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:46](616 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:47](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 07:40](581 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:48](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:36](622 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:46](677 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:25](450 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:05, 03:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:17](638 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:06, 10:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 17:00](761 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:49, 17:18](852 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:52, 10:33](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:02]
-PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:23](950 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:21](945 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:26](1349 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:06, 06:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:05](1147 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:21](1104 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1024 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:05](1020 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:05](1023 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:09](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1017 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 04:53](1161 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:55, 04:48](1151 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1142 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:58](2434 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 02:59](2378 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:39]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:05](1066 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:11]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1156 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:51]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:49](335 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:47](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:33](558 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:46]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:52](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:40](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:50](956 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:06, 09:02]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:29](1700 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:05, 08:57]
-PASS -- TEST 'control_atmwav_intel' [03:39, 01:27](699 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:05, 06:47]
-PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:34](1790 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:16](1809 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:29](1830 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:06, 06:52]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:05, 02:40]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:33](4570 MB)
-
-PASS -- COMPILE 'atm_gnu' [08:06, 03:40]
-PASS -- TEST 'control_c48_gnu' [11:27, 09:30](859 MB)
-PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](726 MB)
-PASS -- TEST 'control_ras_gnu' [05:15, 03:41](732 MB)
-PASS -- TEST 'control_p8_gnu' [05:46, 03:38](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1508 MB)
-PASS -- TEST 'control_flake_gnu' [06:14, 04:27](791 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [08:06, 03:41]
-PASS -- TEST 'rap_control_gnu' [09:41, 07:38](1088 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:37, 07:48](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:29, 07:11](1128 MB)
-PASS -- TEST 'rap_restart_gnu' [05:34, 03:51](884 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1087 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 07:59](1096 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:46, 05:40](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:32, 04:09](1074 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:05](1143 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:39](1026 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:45, 03:59](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:01](880 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:16, 02:00](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:38](1082 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:06, 03:45]
-PASS -- TEST 'control_diag_debug_gnu' [03:19, 01:11](771 MB)
-PASS -- TEST 'regional_debug_gnu' [08:27, 06:32](922 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:55](1095 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:55](1087 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:01](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:58](1092 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:04](1269 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:09](1094 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:59](1101 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:57](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:11](722 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:20](720 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:15](1505 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:14, 01:57](1099 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:17](1101 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [12:05, 03:24]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:05, 04:27]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:10](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:46](953 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:39, 06:36](968 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:34](892 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:50](949 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 05:23](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:14, 01:57](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:22, 01:09](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:25](926 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 06:17]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:27, 04:20](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:05, 05:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:03](977 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:54](970 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:23](1281 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:27](954 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:14](1196 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:21](1348 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 05:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:04](1000 MB)
-
-PASS -- COMPILE 's2swa_gnu' [17:06, 15:29]
-
-PASS -- COMPILE 's2s_gnu' [16:05, 14:56]
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:42]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 14:15]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:40]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20]
+PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:17]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 07:44](1893 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 17:55]
+PASS -- TEST 'cpld_control_gfsv17_intel' [49:15, 13:38](1764 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:27, 14:12](2184 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:27](1172 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:01, 15:19](1689 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:50]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [11:13, 20:21](1724 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:06, 09:54]
+PASS -- TEST 'cpld_control_p8_intel' [39:05, 07:36](2065 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:15, 07:45](2058 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:19](1973 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [39:05, 07:40](1969 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [15:10, 04:24](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [41:09, 08:56](2488 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:58, 07:45](2078 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:31](1878 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:09, 07:31](2065 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [03:50, 15:44](2803 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 05:46](2918 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [58:33, 08:47](3698 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:32, 06:06](3619 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [37:07, 04:58](2034 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:06, 10:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [37:58, 07:17](1781 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:03, 04:00](1821 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:16]
+PASS -- TEST 'cpld_debug_p8_intel' [52:04, 06:59](2053 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 04:56]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [44:55, 04:41](1793 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:06, 08:26]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:56, 03:59](1816 MB)
+
+PASS -- COMPILE 's2s_intel' [11:06, 09:06]
+PASS -- TEST 'cpld_control_c48_intel' [13:33, 07:14](2835 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:06, 12:40]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:21, 07:22](2068 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 15:04]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 13:56](1803 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 06:57](1274 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:21](1725 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:06, 03:57]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 21:37](1773 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:06, 07:32]
+PASS -- TEST 'control_flake_intel' [43:28, 02:53](707 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [30:21, 02:05](662 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:39, 02:12](671 MB)
+PASS -- TEST 'control_latlon_intel' [30:26, 02:08](660 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:27, 02:06](675 MB)
+PASS -- TEST 'control_c48_intel' [09:20, 05:50](857 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [48:26, 05:43](861 MB)
+PASS -- TEST 'control_c192_intel' [48:39, 07:55](999 MB)
+PASS -- TEST 'control_c384_intel' [49:16, 08:18](1439 MB)
+PASS -- TEST 'control_c384gdas_intel' [49:03, 07:24](1515 MB)
+PASS -- TEST 'control_stochy_intel' [12:26, 01:30](667 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:55](534 MB)
+PASS -- TEST 'control_lndp_intel' [09:21, 01:26](668 MB)
+PASS -- TEST 'control_iovr4_intel' [07:22, 02:11](659 MB)
+PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](665 MB)
+PASS -- TEST 'control_p8_intel' [03:49, 02:35](1644 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [56:02, 02:35](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [43:57, 02:29](1656 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:43, 01:24](917 MB)
+PASS -- TEST 'control_noqr_p8_intel' [37:53, 02:29](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:23](989 MB)
+PASS -- TEST 'control_decomp_p8_intel' [27:46, 02:36](1634 MB)
+PASS -- TEST 'control_2threads_p8_intel' [16:38, 02:22](1732 MB)
+PASS -- TEST 'control_p8_lndp_intel' [15:40, 04:28](1637 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:53, 03:36](1729 MB)
+PASS -- TEST 'control_p8_mynn_intel' [13:01, 02:43](1659 MB)
+PASS -- TEST 'merra2_thompson_intel' [13:06, 02:59](1653 MB)
+PASS -- TEST 'regional_control_intel' [08:24, 04:33](954 MB)
+PASS -- TEST 'regional_restart_intel' [18:23, 02:32](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [12:30, 05:05](946 MB)
+PASS -- TEST 'regional_2threads_intel' [24:25, 02:55](912 MB)
+PASS -- TEST 'regional_noquilt_intel' [24:24, 04:18](1487 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [12:24, 04:36](957 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:21, 04:30](955 MB)
+PASS -- TEST 'regional_wofs_intel' [12:24, 05:35](2072 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:20]
+PASS -- TEST 'rap_control_intel' [12:49, 06:30](1209 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:43, 03:37](1401 MB)
+PASS -- TEST 'rap_decomp_intel' [12:30, 06:49](1177 MB)
+PASS -- TEST 'rap_2threads_intel' [08:31, 06:08](1381 MB)
+PASS -- TEST 'rap_restart_intel' [09:50, 03:24](1125 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:29](1185 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:48](1160 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 04:55](1200 MB)
+PASS -- TEST 'hrrr_control_intel' [05:31, 03:28](1083 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:27](1043 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:04](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [09:29, 01:52](1019 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:14](1187 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:35](2020 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:40](2157 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:05, 06:54]
+PASS -- TEST 'control_csawmg_intel' [07:25, 05:07](810 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:23, 05:01](814 MB)
+PASS -- TEST 'control_ras_intel' [04:15, 02:48](820 MB)
+
+PASS -- COMPILE 'wam_intel' [11:05, 06:29]
+PASS -- TEST 'control_wam_intel' [03:19, 01:53](787 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:05, 09:10]
+PASS -- TEST 'control_p8_faster_intel' [04:52, 02:21](1649 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:26, 04:05](962 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 03:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 02:14](819 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:13](828 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:33](823 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:17](833 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:21](880 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [11:30, 03:21](874 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:14, 02:21](834 MB)
+PASS -- TEST 'control_diag_debug_intel' [09:25, 02:23](880 MB)
+PASS -- TEST 'control_debug_p8_intel' [09:32, 02:27](1648 MB)
+PASS -- TEST 'regional_debug_intel' [21:28, 14:08](890 MB)
+PASS -- TEST 'rap_control_debug_intel' [11:18, 04:01](1211 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [10:14, 03:59](1216 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [10:15, 04:02](1217 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:15, 04:04](1223 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 04:04](1216 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:14](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:16, 04:05](1211 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:13, 04:06](1214 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [09:15, 04:04](1215 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:14, 04:03](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:17, 03:55](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 03:59](1223 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 06:26](1223 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:15, 04:01](1216 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:59](1219 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:01](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 06:50](1234 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 02:35]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:05, 06:20]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1307 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:21](1161 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:51](1031 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:34, 05:07](1288 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:39, 02:38](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:39, 03:07](978 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:46, 04:06](1097 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:38](952 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:05, 08:51]
+PASS -- TEST 'conus13km_control_intel' [13:39, 01:52](1309 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:50](1209 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:25, 01:04](1142 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:05, 06:35]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:35, 03:43](1059 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 02:57]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:15, 04:01](1091 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:13, 03:55](1089 MB)
+PASS -- TEST 'conus13km_debug_intel' [23:37, 11:48](1339 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 12:04](1003 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:39](1244 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 11:56](1410 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:06, 02:34]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:16, 04:02](1166 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:05, 09:41]
+PASS -- TEST 'hafs_regional_atm_intel' [16:00, 05:42](868 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:20, 05:21](1281 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:06, 06:32](956 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [25:59, 14:01](992 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:08, 14:58](994 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:52, 05:21](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:22, 06:55](639 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [12:43, 02:48](436 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 07:50](542 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:44, 03:55](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:50, 03:40](613 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:44, 04:55](671 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:22, 01:17](449 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [17:05, 03:06]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:40, 11:24](635 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:05, 10:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:50, 16:54](750 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:48, 17:54](812 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:05, 09:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:52, 10:17](830 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [24:05, 09:24]
+PASS -- TEST 'hafs_regional_docn_intel' [11:02, 05:36](937 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:07, 05:47](948 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:22](1337 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [20:05, 06:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:11, 02:07](1142 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:17](1093 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:04](1016 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:10, 02:05](1014 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:09, 02:05](1009 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:10, 02:07](1145 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:11, 02:08](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:03](1017 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:41, 04:59](1157 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:50](1139 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1148 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:02](2432 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:02](2384 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [19:05, 02:37]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:07](1079 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [24:05, 05:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1151 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [18:05, 00:45]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:53](339 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:49](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](562 MB)
+
+PASS -- COMPILE 'atml_intel' [23:05, 07:43]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 05:53](1632 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 05:51](1644 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 02:54](953 MB)
+
+PASS -- COMPILE 'atmw_intel' [21:05, 09:32]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:40](1687 MB)
+
+PASS -- COMPILE 'atmwm_intel' [25:06, 09:39]
+PASS -- TEST 'control_atmwav_intel' [03:40, 01:30](700 MB)
+
+PASS -- COMPILE 'atmaero_intel' [23:05, 07:09]
+PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:37](1789 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:11](1794 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 04:25](1817 MB)
+
+PASS -- COMPILE 'atmaq_intel' [22:05, 06:57]
+
+PASS -- COMPILE 'atmaq_debug_intel' [16:06, 02:40]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:27](4570 MB)
+
+PASS -- COMPILE 'atm_gnu' [22:06, 03:57]
+PASS -- TEST 'control_c48_gnu' [11:28, 09:33](864 MB)
+PASS -- TEST 'control_stochy_gnu' [04:20, 02:17](730 MB)
+PASS -- TEST 'control_ras_gnu' [05:14, 03:42](731 MB)
+PASS -- TEST 'control_p8_gnu' [07:51, 03:42](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [08:40, 03:34](1518 MB)
+PASS -- TEST 'control_flake_gnu' [08:15, 04:28](808 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [20:05, 03:57]
+PASS -- TEST 'rap_control_gnu' [12:30, 07:49](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:29, 07:41](1086 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:45, 07:05](1151 MB)
+PASS -- TEST 'rap_restart_gnu' [05:35, 03:53](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 07:40](1089 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 07:42](1085 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:43](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [08:30, 03:54](1073 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:31, 03:58](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 03:34](1027 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 03:59](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:03](883 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](934 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 07:34](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [25:06, 05:05]
+PASS -- TEST 'control_diag_debug_gnu' [05:21, 01:27](775 MB)
+PASS -- TEST 'regional_debug_gnu' [08:26, 06:15](930 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:15, 01:58](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 01:55](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:57](1098 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:03](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:09](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:04](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:00](1104 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:55](1090 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:12](726 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:15](724 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:17](1505 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1098 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:09](1107 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:13](1099 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [17:05, 02:48]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [17:05, 04:19]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:06](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:42](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:37](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:27](891 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:48](953 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:26](861 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 01:58](859 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:38, 02:27](1265 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:20, 01:03](1176 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:25](949 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [19:05, 08:41]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:20](989 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:05, 04:52]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 01:58](981 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:50](966 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:24](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:39](971 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:13](1194 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:24, 05:25](1351 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:05, 04:53]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:55](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [29:07, 16:19]
+
+PASS -- COMPILE 's2s_gnu' [29:06, 16:03]
+
+PASS -- COMPILE 's2swa_debug_gnu' [15:06, 04:37]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [26:06, 15:59]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [15:06, 02:51]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [30:06, 14:15]
SYNOPSIS:
-Starting Date/Time: 20240219 08:33:37
-Ending Date/Time: 20240219 10:09:34
-Total Time: 01h:36m:17s
+Starting Date/Time: 20240222 15:42:59
+Ending Date/Time: 20240222 20:52:32
+Total Time: 05h:10m:04s
Compiles Completed: 53/53
Tests Completed: 234/234
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 11a58e0fe6..aba1035824 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
+9904889c8c39959060b801e0cb5965f869d2a0ee
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,300 +25,246 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_75827
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_249843
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [37:20, 36:01]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 07:11](1756 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:26, 51:44]
-PASS -- TEST 'cpld_control_gfsv17_intel' [25:36, 21:15](1639 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:13](1874 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:07](977 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:06, 24:43](1611 MB)
-
-PASS -- COMPILE 's2swa_intel' [39:21, 37:53]
-PASS -- TEST 'cpld_control_p8_intel' [10:27, 07:30](1800 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 07:31](1792 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:18](1693 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 07:35](1823 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:26](1715 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [25:35, 23:04](2182 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:24, 07:31](1792 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:51, 06:24](1753 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:34](1801 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:09](1765 MB)
-
-PASS -- COMPILE 's2sw_intel' [36:19, 34:19]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 06:15](1643 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 06:09](1695 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:37]
-PASS -- TEST 'cpld_debug_p8_intel' [14:47, 10:28](1821 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:09]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:37, 10:34](1648 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:17, 31:52]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1693 MB)
-
-PASS -- COMPILE 's2s_intel' [32:17, 31:06]
-PASS -- TEST 'cpld_control_c48_intel' [15:24, 12:53](2787 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:40, 32:19]
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:05](1792 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:23, 45:56]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 21:05](1661 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 09:52](1023 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:00, 23:56](1655 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:51]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:49, 32:27](1666 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [34:18, 32:51]
-PASS -- TEST 'control_flake_intel' [06:33, 04:47](638 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:23](594 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:40, 03:54](595 MB)
-PASS -- TEST 'control_latlon_intel' [05:28, 03:17](595 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:26](594 MB)
-PASS -- TEST 'control_c48_intel' [11:36, 10:07](842 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:10](846 MB)
-PASS -- TEST 'control_c192_intel' [16:59, 12:41](724 MB)
-PASS -- TEST 'control_c384_intel' [21:02, 17:25](899 MB)
-PASS -- TEST 'control_c384gdas_intel' [22:09, 16:34](1031 MB)
-PASS -- TEST 'control_stochy_intel' [04:28, 02:15](597 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](432 MB)
-PASS -- TEST 'control_lndp_intel' [04:29, 02:11](594 MB)
-PASS -- TEST 'control_iovr4_intel' [05:30, 03:26](597 MB)
-PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](593 MB)
-PASS -- TEST 'control_p8_intel' [07:52, 04:08](1567 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:49](1568 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:47](1559 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:25, 02:08](804 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:45](1546 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:03](827 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:04](1545 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:13, 03:44](1647 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:56, 06:59](1561 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 05:07](1618 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:57](1565 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:57, 04:32](1566 MB)
-PASS -- TEST 'regional_control_intel' [10:45, 09:04](752 MB)
-PASS -- TEST 'regional_restart_intel' [05:43, 03:46](935 MB)
-PASS -- TEST 'regional_decomp_intel' [10:44, 08:45](756 MB)
-PASS -- TEST 'regional_2threads_intel' [06:43, 04:18](745 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:46, 08:57](758 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [10:44, 08:41](756 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:20, 31:23]
-PASS -- TEST 'rap_control_intel' [13:40, 10:14](973 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 05:55](1211 MB)
-PASS -- TEST 'rap_decomp_intel' [13:03, 10:53](963 MB)
-PASS -- TEST 'rap_2threads_intel' [12:39, 10:02](1063 MB)
-PASS -- TEST 'rap_restart_intel' [08:15, 05:12](975 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [13:37, 10:29](973 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 11:11](968 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [11:52, 08:24](982 MB)
-PASS -- TEST 'hrrr_control_intel' [08:11, 05:36](962 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 05:46](962 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:14](1050 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:49](907 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [13:40, 10:19](964 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:43](1929 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:11](1920 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:17, 30:19]
-PASS -- TEST 'control_csawmg_intel' [10:46, 08:41](678 MB)
-PASS -- TEST 'control_csawmgt_intel' [11:50, 09:53](682 MB)
-PASS -- TEST 'control_ras_intel' [07:27, 05:13](652 MB)
-
-PASS -- COMPILE 'wam_intel' [31:18, 29:22]
-PASS -- TEST 'control_wam_intel' [04:25, 02:40](494 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 30:53]
-PASS -- TEST 'control_p8_faster_intel' [06:55, 03:31](1556 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:55, 06:29](749 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:08]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:29, 05:14](749 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 05:08](750 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:21, 04:49](755 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:21, 04:43](757 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](802 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [08:43, 06:18](798 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:22, 04:10](760 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:37, 04:29](809 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:56, 05:27](1573 MB)
-PASS -- TEST 'regional_debug_intel' [25:53, 22:41](769 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:32, 07:38](1139 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [10:00, 06:22](1134 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:54, 06:32](1137 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:03](1138 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:02](1141 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:25](1221 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:12](1138 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:09](1143 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:09](1143 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:01](1132 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:55](1138 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:29, 06:00](1139 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:34, 09:50](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1134 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:25](1131 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:30, 06:05](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:39](1146 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:08, 04:14]
-PASS -- TEST 'control_wam_debug_intel' [07:24, 06:05](453 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:17, 29:12]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 05:23](1070 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 08:17](897 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 04:24](856 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 07:47](936 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:04](916 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 04:37](851 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:08](884 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](840 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 44:27]
-PASS -- TEST 'conus13km_control_intel' [05:14, 02:45](1092 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:15](1045 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:37](1009 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 29:40]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:06, 05:32](892 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:30]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1009 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:54](1010 MB)
-PASS -- TEST 'conus13km_debug_intel' [20:14, 18:11](1123 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [23:15, 20:51](834 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [13:02, 10:31](1077 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:07, 18:12](1188 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:09, 04:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 06:07](1051 MB)
-
-PASS -- COMPILE 'hafsw_intel' [34:23, 32:59]
-PASS -- TEST 'hafs_regional_atm_intel' [12:41, 09:37](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 11:19](1076 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:35, 10:58](762 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:47, 17:03](801 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:40, 19:35](813 MB)
-PASS -- TEST 'gnv1_nested_intel' [12:01, 08:38](771 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:17, 30:53]
-PASS -- TEST 'hafs_regional_docn_intel' [14:05, 09:44](767 MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:09, 08:15]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1040 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:11](1002 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 03:27](916 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:28](914 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:30](911 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:32](1038 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:34](1034 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:26](918 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:56](869 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:52](843 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:32](1047 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:54](2387 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:58](2391 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:24]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:56](985 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1037 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:47]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:23](225 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:12](246 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:35, 01:03](243 MB)
-
-PASS -- COMPILE 'atml_intel' [34:19, 32:27]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:03, 12:11](1585 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [15:04, 11:18](1578 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 06:20](856 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:20, 31:08]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:53, 02:24](1580 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:17, 30:40]
-PASS -- TEST 'control_atmwav_intel' [05:26, 02:13](604 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 31:08]
-PASS -- TEST 'atmaero_control_p8_intel' [08:44, 05:12](1672 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:39, 06:26](1694 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 06:42](1704 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [29:17, 27:42]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:57, 05:23](1764 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:23, 41:38]
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 15:44](1642 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 17:09](1866 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 09:21](985 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:35, 18:08](1603 MB)
+
+PASS -- COMPILE 's2swa_intel' [30:17, 28:56]
+PASS -- TEST 'cpld_control_p8_intel' [17:37, 06:24](1801 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 06:12](1796 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [21:05, 03:27](1690 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 06:12](1826 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 03:29](1715 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 05:46](2195 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:26, 05:58](1797 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:47, 05:02](1758 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 06:06](1804 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 05:57](1772 MB)
+
+PASS -- COMPILE 's2sw_intel' [28:17, 27:03]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:29, 04:30](1639 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:46, 04:37](1686 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:31]
+PASS -- TEST 'cpld_debug_p8_intel' [12:10, 08:20](1837 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:12]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:31, 05:35](1650 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [28:16, 24:26]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:56, 04:40](1689 MB)
+
+PASS -- COMPILE 's2s_intel' [26:15, 24:32]
+PASS -- TEST 'cpld_control_c48_intel' [14:22, 09:17](2798 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [05:31, 03:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [25:59, 05:43](1801 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [41:21, 39:29]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:35, 16:26](1662 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:46, 08:08](1019 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:39, 19:17](1654 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:15]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:41, 24:57](1671 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [28:15, 25:56]
+PASS -- TEST 'control_flake_intel' [22:46, 03:27](639 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [18:48, 02:26](589 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:03, 02:32](595 MB)
+PASS -- TEST 'control_latlon_intel' [21:50, 02:29](594 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:51, 02:29](589 MB)
+PASS -- TEST 'control_c48_intel' [12:58, 07:38](846 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [13:56, 07:20](841 MB)
+PASS -- TEST 'control_c192_intel' [21:07, 09:11](721 MB)
+PASS -- TEST 'control_c384_intel' [20:19, 12:02](901 MB)
+PASS -- TEST 'control_c384gdas_intel' [39:19, 10:48](1018 MB)
+PASS -- TEST 'control_stochy_intel' [20:46, 01:38](598 MB)
+PASS -- TEST 'control_stochy_restart_intel' [20:39, 00:59](427 MB)
+PASS -- TEST 'control_lndp_intel' [20:46, 01:37](593 MB)
+PASS -- TEST 'control_iovr4_intel' [16:47, 02:30](592 MB)
+PASS -- TEST 'control_iovr5_intel' [18:50, 02:28](590 MB)
+PASS -- TEST 'control_p8_intel' [24:16, 03:07](1554 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [27:18, 03:00](1573 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [24:27, 03:02](1569 MB)
+PASS -- TEST 'control_restart_p8_intel' [21:33, 01:35](819 MB)
+PASS -- TEST 'control_noqr_p8_intel' [25:08, 02:59](1556 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [21:29, 01:33](836 MB)
+PASS -- TEST 'control_decomp_p8_intel' [27:00, 03:04](1560 MB)
+PASS -- TEST 'control_2threads_p8_intel' [25:04, 02:57](1646 MB)
+PASS -- TEST 'control_p8_lndp_intel' [30:45, 05:20](1559 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [26:36, 04:00](1620 MB)
+PASS -- TEST 'control_p8_mynn_intel' [27:25, 03:06](1585 MB)
+PASS -- TEST 'merra2_thompson_intel' [23:46, 03:30](1581 MB)
+PASS -- TEST 'regional_control_intel' [11:23, 05:30](757 MB)
+PASS -- TEST 'regional_restart_intel' [25:59, 02:50](931 MB)
+PASS -- TEST 'regional_decomp_intel' [10:25, 07:17](755 MB)
+PASS -- TEST 'regional_2threads_intel' [23:14, 03:18](746 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [17:59, 05:30](758 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [20:52, 05:20](758 MB)
+
+PASS -- COMPILE 'rrfs_intel' [26:15, 24:32]
+PASS -- TEST 'rap_control_intel' [27:55, 07:42](982 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 04:23](1217 MB)
+PASS -- TEST 'rap_decomp_intel' [28:30, 08:02](967 MB)
+PASS -- TEST 'rap_2threads_intel' [25:15, 07:15](1071 MB)
+PASS -- TEST 'rap_restart_intel' [14:34, 03:57](987 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [28:45, 07:39](969 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:12, 08:01](963 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [15:29, 05:52](987 MB)
+PASS -- TEST 'hrrr_control_intel' [23:13, 04:01](964 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [21:42, 04:06](971 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [23:28, 03:36](1059 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [12:27, 02:07](902 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [28:58, 07:32](964 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [28:40, 09:15](1927 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:45, 08:57](1924 MB)
+
+PASS -- COMPILE 'csawmg_intel' [25:15, 23:14]
+PASS -- TEST 'control_csawmg_intel' [24:56, 06:05](689 MB)
+PASS -- TEST 'control_csawmgt_intel' [24:49, 06:01](688 MB)
+PASS -- TEST 'control_ras_intel' [22:34, 03:23](656 MB)
+
+PASS -- COMPILE 'wam_intel' [23:14, 21:42]
+PASS -- TEST 'control_wam_intel' [21:31, 02:05](493 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [39:22, 22:49]
+PASS -- TEST 'control_p8_faster_intel' [13:50, 02:38](1562 MB)
+PASS -- TEST 'regional_control_faster_intel' [13:51, 04:48](751 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [26:17, 05:03]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:31, 02:37](750 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:41, 02:36](749 MB)
+PASS -- TEST 'control_stochy_debug_intel' [22:31, 02:55](763 MB)
+PASS -- TEST 'control_lndp_debug_intel' [22:33, 02:37](759 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [22:53, 04:01](803 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [21:58, 04:01](801 MB)
+PASS -- TEST 'control_ras_debug_intel' [20:34, 02:40](771 MB)
+PASS -- TEST 'control_diag_debug_intel' [16:43, 02:47](808 MB)
+PASS -- TEST 'control_debug_p8_intel' [16:06, 02:47](1576 MB)
+PASS -- TEST 'regional_debug_intel' [28:06, 17:22](767 MB)
+PASS -- TEST 'rap_control_debug_intel' [14:38, 04:48](1143 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [15:31, 04:45](1139 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [15:28, 04:48](1135 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:51](1136 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:32, 04:50](1146 MB)
+PASS -- TEST 'rap_diag_debug_intel' [18:50, 05:07](1230 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 05:01](1133 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:54](1143 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [17:32, 05:00](1146 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:32, 04:49](1144 MB)
+PASS -- TEST 'rap_noah_debug_intel' [19:36, 04:41](1143 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [20:33, 04:48](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:33, 07:48](1137 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [20:32, 04:41](1140 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [22:43, 05:56](1143 MB)
+PASS -- TEST 'rap_flake_debug_intel' [21:41, 04:50](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:53, 08:14](1144 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [24:17, 03:21]
+PASS -- TEST 'control_wam_debug_intel' [22:33, 04:47](434 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:19, 21:28]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 03:59](1076 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:50, 06:25](894 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:11, 03:24](859 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:18, 06:03](942 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:25, 03:08](906 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 03:34](841 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:11, 05:48](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [37:46, 02:43](831 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 30:19]
+PASS -- TEST 'conus13km_control_intel' [23:18, 02:15](1097 MB)
+PASS -- TEST 'conus13km_2threads_intel' [30:39, 01:22](1047 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [31:37, 01:12](1017 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:18, 22:38]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:10, 04:23](895 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 03:36]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:39, 04:43](1023 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:35, 04:37](1022 MB)
+PASS -- TEST 'conus13km_debug_intel' [32:18, 14:04](1130 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [32:03, 14:19](838 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [26:51, 08:12](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:58, 14:16](1210 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:11]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:38, 04:48](1050 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:22, 25:12]
+PASS -- TEST 'hafs_regional_atm_intel' [23:32, 05:47](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:44, 05:55](1078 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:28, 07:56](766 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [38:27, 13:32](797 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:10, 15:52](819 MB)
+PASS -- TEST 'gnv1_nested_intel' [31:50, 04:27](772 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:28, 23:46]
+PASS -- TEST 'hafs_regional_docn_intel' [26:41, 06:39](768 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:45, 06:39](752 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:09, 06:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:29, 02:41](1034 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:32, 02:19](1010 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:29, 02:32](914 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:32, 02:34](919 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:29, 02:35](919 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:28, 02:39](1040 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:27, 02:41](1043 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:26, 02:37](913 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:29, 06:35](875 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:20, 06:23](835 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:28, 02:43](1045 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:23, 03:55](2391 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 04:01](2396 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:03]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:32, 06:18](995 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 06:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:23, 02:41](1044 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [13:11, 01:23]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:51, 01:56](225 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:37, 01:01](245 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](248 MB)
+
+PASS -- COMPILE 'atml_intel' [40:22, 25:17]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 08:48](1581 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [22:47, 07:59](1596 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:50, 04:10](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [42:26, 22:57]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 01:43](1576 MB)
+
+PASS -- COMPILE 'atmwm_intel' [40:25, 23:03]
+PASS -- TEST 'control_atmwav_intel' [05:22, 01:38](597 MB)
+
+PASS -- COMPILE 'atmaero_intel' [43:37, 22:10]
+PASS -- TEST 'atmaero_control_p8_intel' [06:33, 04:04](1670 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:30, 04:55](1709 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:23, 05:12](1711 MB)
SYNOPSIS:
-Starting Date/Time: 20240219 14:40:09
-Ending Date/Time: 20240219 18:32:24
-Total Time: 03h:52m:41s
+Starting Date/Time: 20240223 07:51:38
+Ending Date/Time: 20240223 11:22:41
+Total Time: 03h:31m:27s
Compiles Completed: 33/33
-Tests Completed: 160/161
-Failed Tests:
-* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
--- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2061/tests/logs/log_jet/rt_hafs_regional_docn_oisst_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF JET REGRESSION TESTING LOG====
-====START OF JET REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_299389
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: h-nems
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'hafs_all_intel' [25:14, 23:54]
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:48, 07:05](749 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240221 17:29:27
-Ending Date/Time: 20240221 18:09:29
-Total Time: 00h:40m:09s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 161/161
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 685e0a2ad6..bca26a96f8 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d31ac8854fee356e5409931c3cd5b85e9611a15
+9904889c8c39959060b801e0cb5965f869d2a0ee
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,277 +25,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_403308
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85130
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:18]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 05:13](3185 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 20:01]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 16:24](1738 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:54, 17:38](2026 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:57, 08:07](1111 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 18:29](1644 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:56]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 23:01](1681 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:07, 15:18]
-PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:37](3217 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:40](3206 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:17](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:44](3235 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:49, 03:29](3276 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:08](3551 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:42](3198 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:43](3070 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:40](3211 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:40, 10:01](3335 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:23, 06:09](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:06, 11:07](4121 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:43, 06:47](4374 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:26](3175 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 14:53]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:29](1735 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:14, 04:26](1779 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:51]
-PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:31](3249 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:43]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:58](1749 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:59]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:17](1790 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 13:16]
-PASS -- TEST 'cpld_control_c48_intel' [10:52, 08:05](2828 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:17](3213 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:24]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:29](1776 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:01](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 18:27](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:55]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:18](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:15]
-PASS -- TEST 'control_flake_intel' [05:20, 03:31](699 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:36](650 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:30](646 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](650 MB)
-PASS -- TEST 'control_c48_intel' [07:24, 06:01](871 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:57](870 MB)
-PASS -- TEST 'control_c192_intel' [11:34, 09:07](858 MB)
-PASS -- TEST 'control_c384_intel' [13:41, 10:02](1245 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:47, 09:05](1348 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:45](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](497 MB)
-PASS -- TEST 'control_lndp_intel' [03:17, 01:40](656 MB)
-PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](646 MB)
-PASS -- TEST 'control_iovr5_intel' [04:23, 02:25](652 MB)
-PASS -- TEST 'control_p8_intel' [05:14, 02:59](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:54](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:50](1638 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:16, 01:38](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:54](1612 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:39](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:59](1615 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:02](1715 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:52, 05:11](1621 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:03](1687 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:22, 02:59](1627 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:38, 03:32](1640 MB)
-PASS -- TEST 'regional_control_intel' [07:34, 05:14](855 MB)
-PASS -- TEST 'regional_restart_intel' [04:42, 02:42](1020 MB)
-PASS -- TEST 'regional_decomp_intel' [07:30, 05:29](852 MB)
-PASS -- TEST 'regional_2threads_intel' [05:34, 03:42](844 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:35, 05:01](1368 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:04](856 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:04](857 MB)
-PASS -- TEST 'regional_wofs_intel' [08:36, 06:33](1919 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:06, 12:43]
-PASS -- TEST 'rap_control_intel' [10:28, 07:47](1106 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:48](1295 MB)
-PASS -- TEST 'rap_decomp_intel' [11:15, 08:07](1028 MB)
-PASS -- TEST 'rap_2threads_intel' [10:26, 07:57](1177 MB)
-PASS -- TEST 'rap_restart_intel' [06:18, 04:03](1098 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:44](1108 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:07](1025 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:24, 05:47](1134 MB)
-PASS -- TEST 'hrrr_control_intel' [06:52, 04:11](1033 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:06](1019 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:18, 03:23](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:11](1002 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:34](1099 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:08](1992 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:51](2080 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:07, 12:00]
-PASS -- TEST 'control_csawmg_intel' [07:41, 05:54](746 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:44, 05:45](745 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:17](742 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 10:18]
-PASS -- TEST 'control_wam_intel' [04:17, 02:03](657 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:32]
-PASS -- TEST 'control_p8_faster_intel' [05:29, 02:40](1636 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:40, 04:38](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:32]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:45](815 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:45](813 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:58](817 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:50](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:10](862 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:06](864 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](825 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:23, 02:59](873 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:43, 02:55](1643 MB)
-PASS -- TEST 'regional_debug_intel' [19:41, 17:42](843 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1202 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:48](1193 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:51](1201 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1202 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:55](1204 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1282 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:02](1199 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1202 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:52](1204 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1204 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:51](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:02](1200 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:05](1205 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:47](1197 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 06:05](1197 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:54](1207 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:11](1207 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51]
-PASS -- TEST 'control_wam_debug_intel' [07:18, 05:04](517 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 11:18]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:23](1169 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:14, 06:25](1046 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:25](985 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:48, 06:42](1092 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:03](960 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](942 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:50](1028 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:39]
-PASS -- TEST 'conus13km_control_intel' [12:56, 02:05](1203 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:03](1125 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:15](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:24]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](990 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1078 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:48](1082 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:46, 14:29](1223 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 14:50](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:17](1157 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:50](1293 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:54](1130 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:07, 13:44]
-PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:31](748 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:58](1125 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:48](828 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:11, 12:49](858 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:34](886 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:12](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 07:34](525 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:09](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:10](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 04:08](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:23](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:25](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:56, 04:32](798 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:10](576 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:06, 12:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:37](669 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:37](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:59](724 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:07, 12:27]
-PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:16](831 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:27](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:14](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 08:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:42](1143 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:43](1096 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1012 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:00](1125 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:42](1135 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:57](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 05:50](1039 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:33](1128 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:39](2439 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:36](2493 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:00]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:57](1058 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:40](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:12]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:47](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:49](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](317 MB)
-
-PASS -- COMPILE 'atml_intel' [13:06, 11:46]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:14](1612 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:14](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:37, 02:21](896 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:06, 12:22]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:47](1673 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:06, 11:52]
-PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:06, 11:27]
-PASS -- TEST 'atmaero_control_p8_intel' [06:08, 03:58](3017 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:48](3091 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:05](3105 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 10:25]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:02](4576 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:09]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:09, 05:09](3184 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:09, 19:36]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:57, 16:25](1743 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 17:22](2023 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1114 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 18:27](1641 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:38]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 23:07](1687 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:07, 14:20]
+PASS -- TEST 'cpld_control_p8_intel' [13:08, 05:41](3207 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:17, 05:57](3133 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:18](3249 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:08, 05:45](3239 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 03:28](3203 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 06:06](3557 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:08, 05:47](3207 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:07, 04:41](3063 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 05:45](3211 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:18](3267 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 06:42](3544 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:19, 11:13](4110 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:11, 07:03](4365 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:08, 05:29](3178 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 14:19]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:28](1737 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:07, 04:22](1775 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:36]
+PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:24](3251 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:54](1758 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:07, 13:00]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:42](1709 MB)
+
+PASS -- COMPILE 's2s_intel' [14:07, 12:32]
+PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:04](2833 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:09, 19:41]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:00, 05:23](3208 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:20]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:27](1775 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:30](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:49](1684 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:28]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:28](1707 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:54]
+PASS -- TEST 'control_flake_intel' [05:20, 03:32](699 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:34](653 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:45](622 MB)
+PASS -- TEST 'control_latlon_intel' [04:18, 02:40](656 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:41](655 MB)
+PASS -- TEST 'control_c48_intel' [07:29, 06:00](879 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:57](866 MB)
+PASS -- TEST 'control_c192_intel' [11:35, 09:06](851 MB)
+PASS -- TEST 'control_c384_intel' [14:41, 11:07](1244 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:53, 08:51](1352 MB)
+PASS -- TEST 'control_stochy_intel' [03:22, 01:45](662 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:02](502 MB)
+PASS -- TEST 'control_lndp_intel' [03:26, 01:47](649 MB)
+PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](654 MB)
+PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](651 MB)
+PASS -- TEST 'control_p8_intel' [05:21, 03:01](1585 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 02:56](1631 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:53](1639 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:24, 01:39](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:51](1616 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 01:43](930 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:01](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:04](1727 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:18](1639 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 03:56](1695 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:31, 02:59](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:52, 03:24](1642 MB)
+PASS -- TEST 'regional_control_intel' [07:46, 05:06](855 MB)
+PASS -- TEST 'regional_restart_intel' [05:43, 02:42](1022 MB)
+PASS -- TEST 'regional_decomp_intel' [07:41, 05:28](849 MB)
+PASS -- TEST 'regional_2threads_intel' [05:44, 03:45](841 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:46, 05:05](1365 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:53, 05:08](858 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 05:06](862 MB)
+PASS -- TEST 'regional_wofs_intel' [08:44, 06:34](1923 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 11:45]
+PASS -- TEST 'rap_control_intel' [10:24, 07:42](1107 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:39](1291 MB)
+PASS -- TEST 'rap_decomp_intel' [11:16, 08:04](985 MB)
+PASS -- TEST 'rap_2threads_intel' [11:13, 07:52](1184 MB)
+PASS -- TEST 'rap_restart_intel' [07:19, 04:12](1103 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:47](1112 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 08:11](1035 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:21, 05:55](1131 MB)
+PASS -- TEST 'hrrr_control_intel' [06:55, 04:05](1034 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:06](1021 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:07, 03:21](1109 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:37](1052 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:15](1988 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:07](2019 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:06, 11:16]
+PASS -- TEST 'control_csawmg_intel' [08:47, 05:51](751 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:47, 05:46](751 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:18](742 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 10:53]
+PASS -- TEST 'control_wam_intel' [04:16, 02:05](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17]
+PASS -- TEST 'control_p8_faster_intel' [06:35, 02:36](1623 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:43, 04:32](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:44](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:37](813 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:05](817 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:50](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:04](866 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:41, 04:02](863 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:18, 02:46](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:22, 03:00](838 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1639 MB)
+PASS -- TEST 'regional_debug_intel' [19:41, 17:45](846 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:25, 05:06](1150 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:38](1199 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:52](1199 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:09](1210 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:12](1207 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:24](1281 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:13](1207 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 05:11](1199 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1213 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1209 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:41](1199 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:08](1196 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:05](1164 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:51](1198 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:46](1210 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:49](1202 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:18](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:06, 03:40]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:06](510 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:28]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 04:25](1173 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:25](1055 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:23](945 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:13, 06:42](1093 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:05](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:43](926 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:22, 04:50](1036 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:18, 01:57](940 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:49]
+PASS -- TEST 'conus13km_control_intel' [05:05, 02:07](1200 MB)
+PASS -- TEST 'conus13km_2threads_intel' [06:45, 00:58](1124 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [06:40, 01:17](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 10:45]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:14](1003 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:43]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:59](1081 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1080 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:48, 13:55](1187 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:45](931 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:41](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:19](1302 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:21]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:59](1128 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:07, 12:33]
+PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:35](745 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:47](1122 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:47](828 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 12:57](863 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 14:29](881 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 06:07](505 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 07:39](485 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [09:51, 03:09](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:27, 08:08](471 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:46, 04:10](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 03:54](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:59, 05:19](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 01:22](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:52, 04:28](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:50, 12:56](568 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:37]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 09:31](667 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:59, 09:45](657 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:08, 14:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:01, 07:10](684 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:08, 13:26]
+PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:26](829 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:31](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:01](1205 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:48]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:43](1095 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1020 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:39](1012 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:29](1021 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:41](1136 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:34](1138 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:34](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:16, 05:52](1059 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:58](1050 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1136 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](2433 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:45](2487 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:15]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:45]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:52](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:54](320 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:38](320 MB)
+
+PASS -- COMPILE 'atml_intel' [15:07, 13:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:23](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:33, 04:20](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 02:28](897 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:08, 14:07]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 01:47](1670 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:11, 12:03]
+PASS -- TEST 'control_atmwav_intel' [04:09, 01:48](672 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:06, 11:32]
+PASS -- TEST 'atmaero_control_p8_intel' [06:25, 04:00](3024 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:45](3087 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:14](3036 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:11, 10:32]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 21:02](4576 MB)
SYNOPSIS:
-Starting Date/Time: 20240219 08:28:47
-Ending Date/Time: 20240219 09:57:21
-Total Time: 01h:28m:54s
+Starting Date/Time: 20240222 15:39:11
+Ending Date/Time: 20240222 17:12:31
+Total Time: 01h:33m:46s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 12934ee963..907da481a6 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-681a70733ad51929905514527b6d5a497cd17776
+b675ab09f5d50068fdcc833fcce348b9df550362
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD)
+ 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/HEAD-16-g8e642bb)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -25,235 +25,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22069
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170835
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [22:59, 22:35]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:45, 01:38](2972 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:46]
-PASS -- TEST 'cpld_control_gfsv17_intel' [51:27, 01:59](1597 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:26, 01:45](1716 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [33:21, 01:48](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:28, 01:15](1571 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:19, 10:17]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [52:34, 02:01](1603 MB)
-
-PASS -- COMPILE 's2swa_intel' [25:07, 24:31]
-PASS -- TEST 'cpld_control_p8_intel' [38:46, 01:46](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:46, 01:55](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [29:59, 01:26](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [38:45, 01:44](3030 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [29:59, 01:22](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [38:41, 01:22](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [38:39, 01:46](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [38:03, 01:38](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 02:14](3001 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [37:56, 04:39](3950 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:43, 04:09](4252 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [37:22, 01:13](2969 MB)
-
-PASS -- COMPILE 's2sw_intel' [33:51, 32:36]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [29:59, 01:36](1587 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:53, 01:43](1633 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:18, 09:53]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:35, 01:10](1630 MB)
-
-PASS -- COMPILE 's2s_intel' [14:31, 13:48]
-PASS -- TEST 'cpld_control_c48_intel' [49:20, 01:08](2642 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:42, 16:34]
-PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 01:18](3005 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:33]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:15, 01:17](1603 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:34, 01:55](900 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:20, 01:58](1573 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:37, 15:48]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:16, 01:07](1617 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:04, 10:43]
-PASS -- TEST 'control_flake_intel' [42:30, 00:23](577 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [42:30, 00:54](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:30, 00:46](528 MB)
-PASS -- TEST 'control_latlon_intel' [42:30, 00:47](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:30, 00:55](526 MB)
-PASS -- TEST 'control_c48_intel' [42:29, 01:07](715 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [42:29, 01:03](715 MB)
-PASS -- TEST 'control_c192_intel' [42:30, 00:46](642 MB)
-PASS -- TEST 'control_c384_intel' [42:34, 01:15](952 MB)
-PASS -- TEST 'control_c384gdas_intel' [42:34, 02:03](1092 MB)
-PASS -- TEST 'control_stochy_intel' [42:30, 00:25](528 MB)
-PASS -- TEST 'control_stochy_restart_intel' [39:57, 01:04](333 MB)
-PASS -- TEST 'control_lndp_intel' [42:30, 00:30](529 MB)
-PASS -- TEST 'control_iovr4_intel' [42:30, 00:51](522 MB)
-PASS -- TEST 'control_iovr5_intel' [42:30, 00:53](524 MB)
-PASS -- TEST 'control_p8_intel' [42:30, 01:48](1511 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [42:30, 02:05](1504 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [42:30, 02:05](1510 MB)
-PASS -- TEST 'control_restart_p8_intel' [36:57, 01:13](690 MB)
-PASS -- TEST 'control_noqr_p8_intel' [42:30, 01:43](1487 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [36:57, 01:11](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [42:30, 01:41](1497 MB)
-PASS -- TEST 'control_2threads_p8_intel' [42:30, 01:12](1594 MB)
-PASS -- TEST 'control_p8_lndp_intel' [42:30, 01:25](1498 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [42:30, 01:14](1570 MB)
-PASS -- TEST 'control_p8_mynn_intel' [42:30, 02:01](1511 MB)
-PASS -- TEST 'merra2_thompson_intel' [39:56, 01:43](1516 MB)
-PASS -- TEST 'regional_control_intel' [38:50, 00:25](605 MB)
-PASS -- TEST 'regional_restart_intel' [32:52, 00:37](779 MB)
-PASS -- TEST 'regional_decomp_intel' [36:56, 01:12](605 MB)
-PASS -- TEST 'regional_2threads_intel' [36:41, 01:01](664 MB)
-PASS -- TEST 'regional_noquilt_intel' [36:39, 00:33](1138 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [36:38, 00:31](606 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [36:37, 00:25](608 MB)
-PASS -- TEST 'regional_wofs_intel' [35:25, 00:26](1580 MB)
-
-PASS -- COMPILE 'rrfs_intel' [30:49, 30:04]
-PASS -- TEST 'rap_control_intel' [21:38, 01:33](918 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:39, 01:33](1092 MB)
-PASS -- TEST 'rap_decomp_intel' [21:29, 01:25](919 MB)
-PASS -- TEST 'rap_2threads_intel' [21:19, 01:36](1007 MB)
-PASS -- TEST 'rap_restart_intel' [12:41, 01:44](784 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [20:31, 02:05](916 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:31, 01:52](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [11:02, 02:11](787 MB)
-PASS -- TEST 'hrrr_control_intel' [20:23, 01:37](906 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [20:07, 01:03](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [19:02, 01:49](994 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [14:47, 01:16](739 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [19:00, 02:08](911 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [19:00, 01:02](1876 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:43, 01:10](1863 MB)
-
-PASS -- COMPILE 'csawmg_intel' [18:29, 17:07]
-PASS -- TEST 'control_csawmg_intel' [32:42, 00:46](598 MB)
-PASS -- TEST 'control_csawmgt_intel' [32:15, 00:54](599 MB)
-PASS -- TEST 'control_ras_intel' [31:48, 00:22](562 MB)
-
-PASS -- COMPILE 'wam_intel' [19:48, 18:43]
-PASS -- TEST 'control_wam_intel' [29:07, 01:09](269 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:02, 09:42]
-PASS -- TEST 'control_p8_faster_intel' [35:25, 01:08](1501 MB)
-PASS -- TEST 'regional_control_faster_intel' [35:07, 00:48](612 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:41, 04:41]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:04, 01:43](684 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:21, 01:35](690 MB)
-PASS -- TEST 'control_stochy_debug_intel' [31:34, 01:18](693 MB)
-PASS -- TEST 'control_lndp_debug_intel' [30:57, 00:20](693 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [30:45, 01:34](731 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [30:42, 01:38](729 MB)
-PASS -- TEST 'control_ras_debug_intel' [30:39, 00:38](705 MB)
-PASS -- TEST 'control_diag_debug_intel' [30:38, 00:41](744 MB)
-PASS -- TEST 'control_debug_p8_intel' [30:32, 01:14](1518 MB)
-PASS -- TEST 'regional_debug_intel' [30:21, 00:21](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [30:13, 00:34](1073 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [29:48, 01:23](1066 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [28:49, 01:10](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [28:47, 01:11](1070 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:32, 01:20](1073 MB)
-PASS -- TEST 'rap_diag_debug_intel' [28:28, 01:10](1157 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:05, 00:23](1072 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:44, 01:24](1076 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [27:07, 01:14](1081 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [26:32, 01:51](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [26:31, 00:26](1072 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [26:25, 01:44](1078 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [25:28, 00:33](1068 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [25:27, 00:55](1066 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [25:19, 00:42](1074 MB)
-PASS -- TEST 'rap_flake_debug_intel' [24:58, 00:34](1073 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:31, 02:03](1082 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [17:19, 16:17]
-PASS -- TEST 'control_wam_debug_intel' [23:55, 01:18](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:49, 09:17]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [23:56, 01:47](952 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:48, 01:42](793 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:20, 02:29](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:20, 01:42](854 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:34, 02:06](843 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:31, 02:31](784 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:46, 02:32](689 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:16, 00:51](670 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:26, 21:13]
-PASS -- TEST 'conus13km_control_intel' [18:32, 01:36](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [13:56, 00:58](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [13:50, 00:54](888 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:59]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:28, 01:53](809 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:50]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:19, 00:28](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:49, 00:35](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:09, 00:49](1034 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 00:45](712 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 00:39](1035 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 00:49](1101 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:21, 12:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:21, 01:34](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:13, 09:54]
-PASS -- TEST 'hafs_regional_atm_intel' [16:24, 01:40](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:11, 01:10](970 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:05, 02:12](662 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 01:47](695 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:48, 02:23](706 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:58, 01:23](387 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 01:33](411 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 01:58](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:15, 02:27](370 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 01:50](413 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 01:07](420 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:30, 00:55](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:36, 00:26](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [16:12, 15:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:05, 00:52](502 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:51]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:51, 01:19](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:50, 00:58](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:29, 01:22](715 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:38, 12:17]
-PASS -- TEST 'hafs_regional_docn_intel' [09:25, 01:15](659 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 01:37](645 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:01, 00:47](880 MB)
-
-PASS -- COMPILE 'atml_intel' [17:14, 16:48]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:01, 01:23](1536 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 01:32](1549 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:03, 00:51](739 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:41, 12:06]
-PASS -- TEST 'atmaero_control_p8_intel' [08:24, 01:52](2854 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 01:23](2908 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 01:15](2925 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:00, 14:39]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:13, 06:55]
-PASS -- TEST 'regional_atmaq_debug_intel' [08:09, 01:14](4443 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [33:31, 32:47]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:23, 01:16](2972 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:49, 16:01]
+PASS -- TEST 'cpld_control_gfsv17_intel' [41:11, 02:27](1592 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:44, 02:08](1709 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [21:28, 01:22](845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:12, 01:28](1569 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:47]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [52:41, 02:12](1601 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:33, 11:04]
+PASS -- TEST 'cpld_control_p8_intel' [46:27, 01:25](3003 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:27, 01:39](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [38:05, 01:45](3059 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [46:27, 01:20](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [38:05, 01:31](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [46:27, 01:12](3316 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [46:27, 01:26](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [46:28, 01:33](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:27, 01:34](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [46:36, 03:46](3951 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:22, 03:58](4254 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [46:27, 01:54](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [24:04, 23:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [33:57, 01:51](1585 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:57, 02:02](1636 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:31, 09:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:29, 00:58](1633 MB)
+
+PASS -- COMPILE 's2s_intel' [24:04, 23:45]
+PASS -- TEST 'cpld_control_c48_intel' [33:56, 00:47](2651 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [38:44, 37:27]
+PASS -- TEST 'cpld_control_p8_faster_intel' [19:15, 01:56](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [11:33, 11:16]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:27, 01:43](1598 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:28, 00:55](900 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 01:00](1581 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:29, 09:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:31, 01:14](1617 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [34:38, 34:06]
+PASS -- TEST 'control_flake_intel' [18:01, 00:37](576 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [18:01, 00:54](521 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 00:56](529 MB)
+PASS -- TEST 'control_latlon_intel' [17:56, 00:53](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:49, 01:04](528 MB)
+PASS -- TEST 'control_c48_intel' [17:46, 01:10](718 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [17:08, 00:58](714 MB)
+PASS -- TEST 'control_c192_intel' [17:08, 00:28](641 MB)
+PASS -- TEST 'control_c384_intel' [16:52, 02:03](952 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:28, 01:55](1089 MB)
+PASS -- TEST 'control_stochy_intel' [14:54, 00:28](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [12:19, 01:03](331 MB)
+PASS -- TEST 'control_lndp_intel' [14:23, 00:32](527 MB)
+PASS -- TEST 'control_iovr4_intel' [14:21, 00:46](525 MB)
+PASS -- TEST 'control_iovr5_intel' [14:16, 00:44](525 MB)
+PASS -- TEST 'control_p8_intel' [14:11, 01:38](1498 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [14:09, 02:01](1511 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [14:01, 02:01](1504 MB)
+PASS -- TEST 'control_restart_p8_intel' [09:00, 01:03](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [13:46, 01:38](1495 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 00:41](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [13:42, 01:33](1497 MB)
+PASS -- TEST 'control_2threads_p8_intel' [13:30, 01:09](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [13:29, 01:11](1510 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 01:01](1558 MB)
+PASS -- TEST 'control_p8_mynn_intel' [12:29, 01:49](1511 MB)
+PASS -- TEST 'merra2_thompson_intel' [12:27, 01:32](1513 MB)
+PASS -- TEST 'regional_control_intel' [12:21, 00:22](610 MB)
+PASS -- TEST 'regional_restart_intel' [06:36, 00:30](779 MB)
+PASS -- TEST 'regional_decomp_intel' [12:17, 01:07](607 MB)
+PASS -- TEST 'regional_2threads_intel' [12:04, 01:01](666 MB)
+PASS -- TEST 'regional_noquilt_intel' [11:57, 00:29](1141 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:24, 00:30](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:13, 00:23](609 MB)
+PASS -- TEST 'regional_wofs_intel' [11:07, 01:04](1583 MB)
+
+PASS -- COMPILE 'rrfs_intel' [18:54, 17:44]
+PASS -- TEST 'rap_control_intel' [29:35, 01:45](914 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:36, 01:22](1089 MB)
+PASS -- TEST 'rap_decomp_intel' [29:35, 01:31](917 MB)
+PASS -- TEST 'rap_2threads_intel' [29:35, 01:42](1009 MB)
+PASS -- TEST 'rap_restart_intel' [20:21, 01:25](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [29:35, 02:03](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:35, 01:49](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [20:01, 01:52](785 MB)
+PASS -- TEST 'hrrr_control_intel' [29:35, 00:59](913 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [29:35, 00:55](906 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [29:36, 01:22](996 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [24:23, 01:04](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [29:35, 01:15](906 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [29:35, 00:58](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:35, 01:18](1862 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:29, 08:59]
+PASS -- TEST 'control_csawmg_intel' [37:59, 00:30](600 MB)
+PASS -- TEST 'control_csawmgt_intel' [37:59, 00:35](599 MB)
+PASS -- TEST 'control_ras_intel' [37:59, 01:03](560 MB)
+
+PASS -- COMPILE 'wam_intel' [11:36, 10:31]
+PASS -- TEST 'control_wam_intel' [34:51, 01:00](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 22:13]
+PASS -- TEST 'control_p8_faster_intel' [23:10, 01:59](1508 MB)
+PASS -- TEST 'regional_control_faster_intel' [21:10, 00:34](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:39, 11:08]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:31, 01:17](691 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:31, 01:22](692 MB)
+PASS -- TEST 'control_stochy_debug_intel' [29:31, 00:52](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [29:31, 01:12](698 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [29:31, 00:33](732 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [29:31, 00:47](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [29:31, 01:10](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [29:31, 01:13](747 MB)
+PASS -- TEST 'control_debug_p8_intel' [29:31, 01:05](1518 MB)
+PASS -- TEST 'regional_debug_intel' [26:25, 01:08](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [26:02, 01:06](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [25:37, 01:03](1070 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [24:59, 00:58](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [24:57, 01:01](1074 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:57, 01:00](1077 MB)
+PASS -- TEST 'rap_diag_debug_intel' [24:54, 00:56](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:52, 00:45](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:51, 00:58](1076 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [24:44, 01:04](1075 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [24:23, 00:57](1072 MB)
+PASS -- TEST 'rap_noah_debug_intel' [23:42, 01:05](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [23:41, 01:00](1074 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:59, 01:03](1073 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [20:59, 01:15](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [20:54, 00:19](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [20:21, 01:01](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:01, 01:25](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [21:08, 20:19]
+PASS -- TEST 'control_wam_debug_intel' [10:53, 01:06](300 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:50, 12:35]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:48, 01:22](952 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:47, 01:23](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:55, 01:59](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:48, 01:59](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:14, 01:32](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:12, 02:09](787 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 01:27](690 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:48, 00:23](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:08, 20:12]
+PASS -- TEST 'conus13km_control_intel' [10:24, 01:06](1004 MB)
+PASS -- TEST 'conus13km_2threads_intel' [06:34, 00:56](1005 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 00:50](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:51, 12:43]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:11, 01:29](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:39, 12:54]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 01:09](951 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:51, 00:21](950 MB)
+PASS -- TEST 'conus13km_debug_intel' [09:19, 00:49](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [09:08, 00:44](711 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 00:46](1036 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:39, 00:44](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:53, 18:55]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 01:05](978 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:44, 11:41]
+PASS -- TEST 'hafs_regional_atm_intel' [08:20, 02:13](616 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 00:43](963 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:22, 01:57](665 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [07:21, 02:06](699 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:11, 02:07](705 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 01:24](383 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 01:29](401 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 01:41](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:40, 02:27](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:34, 01:40](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 01:03](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:36, 00:54](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:34, 00:22](320 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:24, 05:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:35, 01:04](510 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:54, 17:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:08, 00:58](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:08, 00:53](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:40, 11:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:43, 01:02](714 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:51, 16:09]
+PASS -- TEST 'hafs_regional_docn_intel' [02:26, 01:42](666 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:26, 01:46](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:24, 00:38](880 MB)
+
+PASS -- COMPILE 'atml_intel' [21:02, 19:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:59, 01:18](1549 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [56:59, 01:16](1540 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [50:18, 00:18](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:47, 12:34]
+PASS -- TEST 'atmaero_control_p8_intel' [03:03, 01:31](2855 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [03:03, 00:55](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:03, 01:47](2921 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:45, 12:50]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:43, 08:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [04:14, 01:46](4434 MB)
SYNOPSIS:
-Starting Date/Time: 20240220 12:55:51
-Ending Date/Time: 20240220 14:18:54
-Total Time: 01h:23m:34s
+Starting Date/Time: 20240223 15:01:47
+Ending Date/Time: 20240223 16:22:18
+Total Time: 01h:20m:56s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/rt.conf b/tests/rt.conf
index f8abbc4158..854c935c7a 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -46,8 +46,8 @@ RUN | cpld_mpi_p8 | - noaacloud
RUN | cpld_control_ciceC_p8 | - noaacloud | baseline |
RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline |
RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8
-RUN | cpld_bmark_p8 | - s4 jet derecho acorn noaacloud | baseline |
-RUN | cpld_restart_bmark_p8 | - s4 jet derecho acorn noaacloud | | cpld_bmark_p8
+RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline |
+RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8
# Aerosol, no Wave
RUN | cpld_s2sa_p8 | - noaacloud | baseline |
@@ -71,8 +71,8 @@ RUN | cpld_control_c48 |
#RUN | cpld_warmstart_c48 | - noaacloud | baseline |
#RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48
-COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - derecho noaacloud | fv3 |
-RUN | cpld_control_p8_faster | - derecho noaacloud | baseline |
+COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 |
+RUN | cpld_control_p8_faster | - noaacloud | baseline |
# Unstructured WW3 mesh
COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 |
@@ -216,7 +216,7 @@ COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H
RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | conus13km_debug | - noaacloud | baseline |
-RUN | conus13km_debug_qr | - derecho noaacloud | |
+RUN | conus13km_debug_qr | - noaacloud | |
RUN | conus13km_debug_2threads | - derecho noaacloud | |
RUN | conus13km_radar_tten_debug | - noaacloud | baseline |
@@ -314,8 +314,8 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud
COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 |
#RUN | regional_atmaq | - jet s4 | baseline |
-COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud derecho s4 | fv3 |
-RUN | regional_atmaq_debug | - jet derecho s4 noaacloud | baseline |
+COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 |
+RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline |
### GNU TESTS ###
### CCPP PROD tests ###
diff --git a/tests/rt.sh b/tests/rt.sh
index 8571bac483..62f49d459f 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -9,7 +9,7 @@ die() { echo "$@" >&2; exit 1; }
usage() {
set +x
echo
- echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -r | -w"
+ echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w"
echo
echo " -a to use on for HPC queue"
echo " -b create new baselines only for tests listed in "
@@ -21,6 +21,7 @@ usage() {
echo " -l runs test specified in "
echo " -m compare against new baseline results"
echo " -n run single test "
+ echo " -o compile only, skip tests"
echo " -r use Rocoto workflow manager"
echo " -w for weekly_test, skip comparing baseline results"
echo
@@ -180,6 +181,7 @@ EOF
[[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}"
[[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}"
[[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}"
+ [[ $COMPILE_ONLY == true ]]&& echo "* 9 (-o) COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}"
[[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
[[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}"
[[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
@@ -258,7 +260,11 @@ EOF
fi
elif [[ $line =~ RUN ]]; then
-
+
+ if [[ $COMPILE_ONLY == true ]]; then
+ continue
+ fi
+
RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//')
@@ -497,6 +503,7 @@ TEST_35D=false
export skip_check_results=false
export delete_rundir=false
SKIP_ORDER=false
+COMPILE_ONLY=false
RTPWD_NEW_BASELINE=false
TESTS_FILE='rt.conf'
NEW_BASELINES_FILE=''
@@ -504,7 +511,7 @@ DEFINE_CONF_FILE=false
RUN_SINGLE_TEST=false
ACCNR=${ACCNR:-""}
-while getopts ":a:b:cl:mn:dwkreh" opt; do
+while getopts ":a:b:cl:mn:dwkreoh" opt; do
case $opt in
a)
ACCNR=$OPTARG
@@ -520,6 +527,9 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do
TESTS_FILE=$OPTARG
grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..."
;;
+ o)
+ COMPILE_ONLY=true
+ ;;
m)
# redefine RTPWD to point to newly created baseline outputs
RTPWD_NEW_BASELINE=true
@@ -1064,6 +1074,10 @@ while read -r line || [ "$line" ]; do
elif [[ $line == RUN* ]] ; then
+ if [[ $COMPILE_ONLY == true ]]; then
+ continue
+ fi
+
TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
CB=$( echo $line | cut -d'|' -f4)
From 8518c2c59fd92ec8a5982997d66612992b577dda Mon Sep 17 00:00:00 2001
From: Grant Firl
Date: Fri, 1 Mar 2024 11:43:59 -0500
Subject: [PATCH 06/33] tisfc bugfix (#2137)
Changes to physics code such that the ice model is used to determine the ice temperature over both sea ice and lake ice
---
FV3 | 2 +-
cmake/GNU.cmake | 5 +-
modulefiles/ufs_gaea.intel.lua | 2 +-
tests/bl_date.conf | 2 +-
tests/fv3_conf/fv3_slurm.IN_gaea | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 518 ++++++-------
tests/logs/RegressionTests_gaea.log | 523 +++++++------
tests/logs/RegressionTests_hera.log | 712 +++++++++---------
tests/logs/RegressionTests_hercules.log | 694 ++++++++---------
tests/logs/RegressionTests_jet.log | 466 ++++++------
tests/logs/RegressionTests_orion.log | 534 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 604 +++++++++------
tests/rt.sh | 65 +-
tests/test_changes.list | 193 +++++
17 files changed, 2387 insertions(+), 2031 deletions(-)
mode change 100644 => 100755 tests/logs/RegressionTests_gaea.log
diff --git a/FV3 b/FV3
index 2d34223122..4941026c58 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 2d342231225b6d00875d164cb86e09ea335fe6b1
+Subproject commit 4941026c5881ed623b39934905d2e4ecd9907b8a
diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake
index 939e25bfa7..a427e8f053 100644
--- a/cmake/GNU.cmake
+++ b/cmake/GNU.cmake
@@ -10,7 +10,10 @@ endif()
if(DEBUG)
add_definitions(-DDEBUG)
- set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -mcmodel=medium")
+ set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check")
+ if(CMAKE_Platform STREQUAL "hercules.gnu")
+ set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=medium")
+ endif()
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0")
else()
set(CMAKE_Fortran_FLAGS_RELEASE "-O2")
diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua
index 746bbef471..b6f7ae2f67 100644
--- a/modulefiles/ufs_gaea.intel.lua
+++ b/modulefiles/ufs_gaea.intel.lua
@@ -31,4 +31,4 @@ unload("cray-libsci")
setenv("CC","cc")
setenv("CXX","CC")
setenv("FC","ftn")
-setenv("CMAKE_Platform","gaea-c5.intel")
+setenv("CMAKE_Platform","gaea.intel")
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index dc476e9359..4462101f2c 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240213
+export BL_DATE=20240227
diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea
index 1d703cb712..8545e689e6 100644
--- a/tests/fv3_conf/fv3_slurm.IN_gaea
+++ b/tests/fv3_conf/fv3_slurm.IN_gaea
@@ -14,7 +14,7 @@ set -eux
echo -n " $( date +%s )," > job_timestamp.txt
set +x
-MACHINE_ID=gaea-c5
+MACHINE_ID=gaea
source ./module-setup.sh
module use --prepend $PWD/modulefiles
module load modules.fv3
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 5ab7c2b923..3fc2ff7201 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Feb 22 20:53:25 UTC 2024
+Wed Feb 28 15:14:11 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 280.439468
- 0: The maximum resident set size (KB) = 1305520
+ 0: The total amount of wall time = 281.461889
+ 0: The maximum resident set size (KB) = 1300600
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 909.185427
- 0: The maximum resident set size (KB) = 1287316
+ 0: The total amount of wall time = 901.527002
+ 0: The maximum resident set size (KB) = 1282896
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 248.211050
- 0: The maximum resident set size (KB) = 1280512
+ 0: The total amount of wall time = 249.770627
+ 0: The maximum resident set size (KB) = 1280800
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 251.581934
- 0: The maximum resident set size (KB) = 1264336
+ 0: The total amount of wall time = 252.183005
+ 0: The maximum resident set size (KB) = 1280256
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 250.725287
- 0: The maximum resident set size (KB) = 1280612
+ 0: The total amount of wall time = 249.439187
+ 0: The maximum resident set size (KB) = 1279912
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 289.617565
- 0: The maximum resident set size (KB) = 1277316
+ 0: The total amount of wall time = 255.032590
+ 0: The maximum resident set size (KB) = 1278480
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 248.771012
- 0: The maximum resident set size (KB) = 1279892
+ 0: The total amount of wall time = 251.992809
+ 0: The maximum resident set size (KB) = 1280792
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Feb 22 22:13:07 UTC 2024
-Elapsed time: 01h:19m:42s. Have a nice day!
+Wed Feb 28 16:27:22 UTC 2024
+Elapsed time: 01h:13m:11s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 92f9a7c5d4..27ff848110 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 23 14:47:29 UTC 2024
+Wed Feb 28 18:25:43 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1267.233553
- 0: The maximum resident set size (KB) = 1405904
+ 0: The total amount of wall time = 1260.280333
+ 0: The maximum resident set size (KB) = 1412828
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 391.689198
- 0: The maximum resident set size (KB) = 1402796
+ 0: The total amount of wall time = 384.587401
+ 0: The maximum resident set size (KB) = 1391428
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 387.349272
- 0: The maximum resident set size (KB) = 1402180
+ 0: The total amount of wall time = 383.528966
+ 0: The maximum resident set size (KB) = 1394880
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Feb 23 16:15:36 UTC 2024
-Elapsed time: 01h:28m:07s. Have a nice day!
+Wed Feb 28 21:03:16 UTC 2024
+Elapsed time: 02h:37m:33s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index b1caca193e..b38e4a5e4d 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Fri Feb 23 14:04:50 UTC 2024
+Wed Feb 28 17:31:35 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 524.440233
- 0: The maximum resident set size (KB) = 589460
+ 0: The total amount of wall time = 516.796008
+ 0: The maximum resident set size (KB) = 590124
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 512.660107
- 0: The maximum resident set size (KB) = 590144
+ 0: The total amount of wall time = 512.332064
+ 0: The maximum resident set size (KB) = 590524
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 516.695763
- 0: The maximum resident set size (KB) = 591548
+ 0: The total amount of wall time = 517.910868
+ 0: The maximum resident set size (KB) = 586524
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Feb 23 14:41:20 UTC 2024
-Elapsed time: 00h:36m:30s. Have a nice day!
+Wed Feb 28 18:13:30 UTC 2024
+Elapsed time: 00h:41m:55s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 92b2f84a32..f10138dcac 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-9904889c8c39959060b801e0cb5965f869d2a0ee
+3951b805f6c6071a13b4686f8fd00e93840f5040
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,271 +24,271 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2497
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_106920
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:32, 22:08]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 05:04](3076 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:32, 22:31]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:40, 13:55](1688 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:25](1825 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:37](953 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 15:51](1656 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:38, 12:02]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:15, 21:47](1694 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:42, 21:36]
-PASS -- TEST 'cpld_control_p8_intel' [09:30, 05:44](3089 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 05:43](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:31](3146 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 05:44](3120 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 03:31](3176 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3088 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 04:47](3383 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:42](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:28, 09:11](3632 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:35, 06:28](3612 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [31:52, 10:03](4342 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:48, 07:08](4646 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 05:24](3062 MB)
-
-PASS -- COMPILE 's2sw_intel' [39:38, 20:47]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:16](1677 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:11, 04:21](1728 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [29:36, 11:36]
-PASS -- TEST 'cpld_debug_p8_intel' [10:05, 07:45](3151 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [29:37, 11:01]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:23](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:39, 16:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:25](1721 MB)
-
-PASS -- COMPILE 's2s_intel' [34:37, 15:58]
-PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:39](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [43:47, 24:57]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:44](3097 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [22:32, 21:20]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:17, 14:11](1697 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:45, 07:26](1012 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 16:11](1663 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:29, 10:38]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:48](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:28, 13:56]
-PASS -- TEST 'control_flake_intel' [04:50, 03:29](665 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:11](616 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:08, 02:20](625 MB)
-PASS -- TEST 'control_latlon_intel' [03:49, 02:11](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:16](618 MB)
-PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:16](740 MB)
-PASS -- TEST 'control_c192_intel' [11:04, 08:09](737 MB)
-PASS -- TEST 'control_c384_intel' [15:41, 08:37](1064 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:32, 07:39](1198 MB)
-PASS -- TEST 'control_stochy_intel' [02:44, 01:31](625 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:58](436 MB)
-PASS -- TEST 'control_lndp_intel' [02:45, 01:26](625 MB)
-PASS -- TEST 'control_iovr4_intel' [03:56, 02:11](621 MB)
-PASS -- TEST 'control_iovr5_intel' [03:47, 02:10](618 MB)
-PASS -- TEST 'control_p8_intel' [04:51, 02:34](1602 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:38](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:35](1602 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:49, 01:32](801 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:41](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:27](805 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:42](1597 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:46, 04:30](1600 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:58, 03:28](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:37](1603 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:19, 03:07](1602 MB)
-PASS -- TEST 'regional_control_intel' [06:36, 04:35](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:35](798 MB)
-PASS -- TEST 'regional_decomp_intel' [06:35, 04:46](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:26, 04:35](627 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:37](631 MB)
-PASS -- TEST 'regional_wofs_intel' [07:22, 05:42](1600 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:28, 12:11]
-PASS -- TEST 'rap_control_intel' [08:39, 06:08](999 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:27, 03:59](1188 MB)
-PASS -- TEST 'rap_decomp_intel' [09:00, 06:33](1003 MB)
-PASS -- TEST 'rap_restart_intel' [05:38, 03:18](876 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:13](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:30](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:39](878 MB)
-PASS -- TEST 'hrrr_control_intel' [05:51, 03:20](995 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:22](1000 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 02:53](1089 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:59](831 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:05](996 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:30](1957 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:12](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:28, 11:17]
-PASS -- TEST 'control_csawmg_intel' [07:40, 05:20](691 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:36, 05:13](689 MB)
-PASS -- TEST 'control_ras_intel' [04:48, 02:59](658 MB)
-
-PASS -- COMPILE 'wam_intel' [11:21, 10:39]
-PASS -- TEST 'control_wam_intel' [03:37, 01:56](380 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:25, 13:43]
-PASS -- TEST 'control_p8_faster_intel' [05:05, 02:29](1598 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:24, 04:20](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:30, 09:53]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:38](792 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](796 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](802 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:43](801 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:26, 03:57](838 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:32, 03:59](836 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:49, 02:44](803 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:12, 02:47](855 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:31, 02:39](1624 MB)
-PASS -- TEST 'regional_debug_intel' [17:27, 15:54](664 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:51, 04:51](1177 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:50, 04:39](1402 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:50, 04:41](1178 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:47](1180 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:43, 04:43](1178 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:04, 05:00](1265 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:45, 04:49](1176 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:43, 04:53](1180 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:53, 04:48](1181 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:52](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:53, 04:43](1174 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 04:41](1179 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:46, 07:47](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:38](1171 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:55, 05:28](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:41](1181 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:27, 07:55](1179 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:25, 06:11]
-PASS -- TEST 'control_wam_debug_intel' [15:41, 04:38](423 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 10:39]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:47](1059 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:16, 05:11](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:05, 02:51](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:24, 02:57](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 03:53](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:44, 01:34](775 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:46]
-PASS -- TEST 'conus13km_control_intel' [12:26, 01:55](1081 MB)
-PASS -- TEST 'conus13km_2threads_intel' [09:31, 01:03](1082 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [09:02, 01:11](972 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 10:57]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 03:41](908 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:29, 07:05]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:57, 04:36](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:46, 04:26](1051 MB)
-PASS -- TEST 'conus13km_debug_intel' [23:36, 13:24](1133 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [22:38, 13:31](820 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 13:40](1385 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:25, 07:12]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:47, 04:41](1081 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:24, 17:43]
-PASS -- TEST 'hafs_regional_atm_intel' [13:08, 04:48](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:21, 05:23](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:26, 06:31](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:43, 11:00](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 12:12](809 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:44, 04:45](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 05:54](492 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [08:29, 02:27](389 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:12, 06:26](460 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:14, 03:25](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:59, 03:12](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:56](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:53, 01:19](428 MB)
-PASS -- TEST 'gnv1_nested_intel' [12:33, 03:30](787 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:36, 12:02](610 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:32, 21:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 07:18](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:17, 07:20](687 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:26, 18:27]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:20, 05:30](675 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:29, 15:50]
-PASS -- TEST 'hafs_regional_docn_intel' [13:53, 05:46](750 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:53, 05:45](736 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 16:11](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:29, 09:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:08, 02:30](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [24:47, 01:35](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:36, 02:21](642 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:48, 02:23](641 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:40, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:42, 02:31](1405 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:02, 02:30](1215 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:39, 02:20](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:19, 05:42](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 05:42](671 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:07, 03:53](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 03:54](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:25, 06:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:06](747 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 08:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:31](760 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:23, 02:54]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:17](308 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:12](451 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:57, 00:52](451 MB)
-
-PASS -- COMPILE 'atml_intel' [15:28, 14:18]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:47, 07:28](1624 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [32:45, 07:46](1628 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 04:50](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:26, 14:00]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:19, 01:37](1635 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:26, 13:38]
-PASS -- TEST 'control_atmwav_intel' [03:06, 01:33](635 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:25, 12:06]
-PASS -- TEST 'atmaero_control_p8_intel' [27:09, 03:46](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [28:10, 04:24](2995 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:34, 04:38](3013 MB)
-
-PASS -- COMPILE 'atmaq_intel' [36:34, 11:45]
-
-PASS -- COMPILE 'atmaq_debug_intel' [32:37, 07:22]
-PASS -- TEST 'regional_atmaq_debug_intel' [39:42, 22:28](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:21, 21:34]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:08, 05:12](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:21, 22:11]
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:55, 14:03](1685 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 15:21](1820 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 07:31](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:15, 16:01](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 11:20]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [34:08, 21:57](1706 MB)
+
+PASS -- COMPILE 's2swa_intel' [26:17, 21:09]
+PASS -- TEST 'cpld_control_p8_intel' [10:56, 05:52](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:03, 05:52](3088 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [25:23, 03:25](3146 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 05:52](3120 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [25:23, 03:28](3175 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:44, 05:45](3088 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:40, 04:50](3382 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:05, 05:46](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 09:05](3634 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [26:26, 06:18](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:12](4342 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [37:35, 07:44](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:28, 05:30](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [26:17, 20:38]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 04:24](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 04:26](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [17:17, 11:20]
+PASS -- TEST 'cpld_debug_p8_intel' [20:18, 08:06](3150 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [16:03, 10:47]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:32, 05:56](1705 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [21:19, 15:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:13, 04:29](1723 MB)
+
+PASS -- COMPILE 's2s_intel' [21:19, 16:09]
+PASS -- TEST 'cpld_control_c48_intel' [13:21, 06:40](2675 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [30:17, 24:49]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:05, 05:44](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [34:22, 22:26]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:32, 14:10](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:54, 07:37](1010 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:08](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:03, 11:35]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:09, 22:45](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [25:10, 14:23]
+PASS -- TEST 'control_flake_intel' [19:06, 03:29](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [17:14, 02:11](616 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:15, 02:14](622 MB)
+PASS -- TEST 'control_latlon_intel' [05:24, 02:06](617 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:11](617 MB)
+PASS -- TEST 'control_c48_intel' [08:26, 05:15](735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 05:16](734 MB)
+PASS -- TEST 'control_c192_intel' [10:38, 07:54](737 MB)
+PASS -- TEST 'control_c384_intel' [16:34, 08:29](1059 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:33, 07:36](1199 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:28](622 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:16, 00:58](439 MB)
+PASS -- TEST 'control_lndp_intel' [03:42, 01:24](623 MB)
+PASS -- TEST 'control_iovr4_intel' [04:23, 02:10](620 MB)
+PASS -- TEST 'control_iovr5_intel' [04:20, 02:12](617 MB)
+PASS -- TEST 'control_p8_intel' [06:11, 02:35](1592 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:10, 02:32](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 02:31](1604 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:41, 01:36](796 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:38, 02:36](1580 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 01:35](802 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:36, 02:41](1585 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:22, 04:33](1601 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 03:29](1650 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:42, 02:38](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:46, 03:06](1603 MB)
+PASS -- TEST 'regional_control_intel' [07:05, 04:34](629 MB)
+PASS -- TEST 'regional_restart_intel' [04:58, 02:30](799 MB)
+PASS -- TEST 'regional_decomp_intel' [07:05, 04:47](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:21, 04:26](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:20, 04:29](628 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:10, 04:28](630 MB)
+PASS -- TEST 'regional_wofs_intel' [07:59, 05:39](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [20:09, 13:06]
+PASS -- TEST 'rap_control_intel' [09:02, 06:10](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:07, 04:04](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [09:23, 06:30](1004 MB)
+PASS -- TEST 'rap_restart_intel' [06:09, 03:22](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:13](1002 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:22, 06:29](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:19, 04:40](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:12, 03:18](995 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:22, 03:22](997 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 02:52](1090 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:49](830 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:02, 06:04](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 07:29](1953 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:22, 07:18](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [19:01, 11:57]
+PASS -- TEST 'control_csawmg_intel' [07:59, 05:18](691 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:59, 05:16](691 MB)
+PASS -- TEST 'control_ras_intel' [04:19, 02:57](654 MB)
+
+PASS -- COMPILE 'wam_intel' [12:19, 10:28]
+PASS -- TEST 'control_wam_intel' [20:11, 02:00](381 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:27, 13:57]
+PASS -- TEST 'control_p8_faster_intel' [05:25, 02:26](1593 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:53, 04:19](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:56, 10:04]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:55, 02:36](793 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:59, 02:34](796 MB)
+PASS -- TEST 'control_stochy_debug_intel' [20:49, 02:53](801 MB)
+PASS -- TEST 'control_lndp_debug_intel' [20:52, 02:40](795 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [22:21, 04:01](839 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [22:25, 04:00](835 MB)
+PASS -- TEST 'control_ras_debug_intel' [20:49, 02:37](804 MB)
+PASS -- TEST 'control_diag_debug_intel' [22:20, 02:44](857 MB)
+PASS -- TEST 'control_debug_p8_intel' [20:18, 02:45](1628 MB)
+PASS -- TEST 'regional_debug_intel' [33:31, 16:03](666 MB)
+PASS -- TEST 'rap_control_debug_intel' [23:18, 04:43](1177 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [23:18, 04:38](1174 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [23:18, 04:44](1181 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [23:17, 04:39](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:18, 04:44](1182 MB)
+PASS -- TEST 'rap_diag_debug_intel' [24:57, 04:57](1265 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:19, 04:48](1180 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:18, 04:48](1180 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:45](1215 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:35, 04:49](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:38](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:45](1180 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:37](1178 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 04:38](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:14, 05:51](1185 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:33, 04:46](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:09, 08:10](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:58, 06:29]
+PASS -- TEST 'control_wam_debug_intel' [27:04, 04:48](432 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:09, 11:00]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:19, 03:49](1056 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:14](880 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:10, 02:59](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:02](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:29, 03:56](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:35](776 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:17, 12:56]
+PASS -- TEST 'conus13km_control_intel' [07:14, 01:58](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:53, 01:06](1084 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:05, 01:12](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:01, 10:53]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 03:40](905 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:03, 06:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 04:37](1053 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:29](1215 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:19, 13:28](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:18, 13:45](818 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:12, 14:03](1198 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:18, 06:33]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:44](1079 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:18, 17:13]
+PASS -- TEST 'hafs_regional_atm_intel' [07:47, 04:54](713 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 05:25](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:15, 06:45](778 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:29, 11:03](794 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:46, 12:05](797 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](1255 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 05:59](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:12, 02:28](386 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 06:39](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:29](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:14](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:32, 04:04](584 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:22](423 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:56, 03:35](786 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [25:13, 08:25]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:58, 12:13](613 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [36:11, 21:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:22](630 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:59, 07:24](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [32:07, 18:26]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:11, 05:31](673 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [27:12, 15:29]
+PASS -- TEST 'hafs_regional_docn_intel' [09:40, 05:48](1215 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:42, 05:50](1255 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:40, 16:15](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:59, 08:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:33](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:09, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](641 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:26](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:31](747 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:33, 05:47](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:14, 05:44](670 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:32](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:45, 04:04](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 04:00](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:46, 06:19]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](733 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:02, 08:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:29](750 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 03:04]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:43, 01:19](302 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:21](450 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:52](455 MB)
+
+PASS -- COMPILE 'atml_intel' [15:56, 14:06]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 08:20](1639 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:01, 08:16](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:15, 04:10](847 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:48, 14:08]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 01:39](1633 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:59, 13:29]
+PASS -- TEST 'control_atmwav_intel' [03:59, 01:36](635 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:59, 12:27]
+PASS -- TEST 'atmaero_control_p8_intel' [07:36, 03:41](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:33, 04:21](2997 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:30, 04:33](3012 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:58, 12:03]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:57, 07:35]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:19, 22:25](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240222 14:58:31
-Ending Date/Time: 20240222 17:18:46
-Total Time: 02h:21m:07s
+Starting Date/Time: 20240228 10:13:25
+Ending Date/Time: 20240228 12:18:57
+Total Time: 02h:06m:38s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
old mode 100644
new mode 100755
index 593a36407a..77b60b1745
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-9904889c8c39959060b801e0cb5965f869d2a0ee
+ee6612850685d9e2b9b0858845eeb3df2dd44e49
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,278 +24,277 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_55800
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_218944
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:21]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:13](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:35]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:31](1696 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:19](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 06:35](946 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:05, 14:34](1670 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:07, 07:32]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:02, 24:05](1699 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:09, 13:00]
-PASS -- TEST 'cpld_control_p8_intel' [08:17, 06:01](3098 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:00](3098 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:09, 03:35](3156 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:04](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 03:38](3177 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:17, 05:28](3411 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:17, 05:54](3097 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:03](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:59](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:54](3271 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:58, 06:50](3599 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 12:11](4038 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 08:32](4346 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:47](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:09, 12:21]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:23](1691 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:38](1737 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:55]
-PASS -- TEST 'cpld_debug_p8_intel' [11:06, 08:13](3130 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:07, 06:42]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:32](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:20]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1727 MB)
-
-PASS -- COMPILE 's2s_intel' [13:08, 11:11]
-PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2660 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:14]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:09, 05:57](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 18:02]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:14, 14:29](1704 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:04](1003 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 17:00](1684 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:14]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 26:52](1711 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:23]
-PASS -- TEST 'control_flake_intel' [05:24, 03:34](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:19](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:26](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:24, 02:21](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:25](623 MB)
-PASS -- TEST 'control_c48_intel' [07:34, 05:41](722 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:38](721 MB)
-PASS -- TEST 'control_c192_intel' [10:32, 08:40](739 MB)
-PASS -- TEST 'control_c384_intel' [18:50, 16:15](1041 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:38, 14:03](1185 MB)
-PASS -- TEST 'control_stochy_intel' [03:24, 01:38](628 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:34](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:22, 02:21](622 MB)
-PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](623 MB)
-PASS -- TEST 'control_p8_intel' [04:53, 02:41](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:45](1609 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:41](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:42, 01:35](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:41](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:34](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:43](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:43, 02:25](1679 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:43](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:33](1657 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:10]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:02, 05:13](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:04, 13:33](1697 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:08, 14:19](1813 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:07, 06:26](950 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:58, 14:33](1665 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:08, 07:31]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:05, 25:48](1698 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:09, 13:24]
+PASS -- TEST 'cpld_control_p8_intel' [08:12, 06:00](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 06:02](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:34](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:04](3123 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:55, 03:39](3176 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:06, 05:26](3412 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:07, 05:53](3097 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 05:05](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 06:02](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 09:50](3270 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:50, 06:49](3599 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [17:25, 12:14](4035 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:53, 08:31](4343 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:46](3066 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:09, 12:13]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:29](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:37](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:08, 07:22]
+PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:19](3127 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:08, 07:02]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:31](1694 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:37](1731 MB)
+
+PASS -- COMPILE 's2s_intel' [13:08, 10:55]
+PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:55](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:01]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:04, 05:54](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:07]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:09, 14:30](1703 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:09](1001 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:52](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:06]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:50](1711 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:08, 11:19]
+PASS -- TEST 'control_flake_intel' [05:24, 03:29](673 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:20](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:24](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:23, 02:20](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:21](623 MB)
+PASS -- TEST 'control_c48_intel' [07:34, 05:39](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:36](728 MB)
+PASS -- TEST 'control_c192_intel' [10:30, 08:38](738 MB)
+PASS -- TEST 'control_c384_intel' [18:48, 16:22](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:40, 14:04](1185 MB)
+PASS -- TEST 'control_stochy_intel' [03:23, 01:39](629 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](429 MB)
+PASS -- TEST 'control_lndp_intel' [03:23, 01:33](627 MB)
+PASS -- TEST 'control_iovr4_intel' [04:25, 02:19](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:25, 02:21](623 MB)
+PASS -- TEST 'control_p8_intel' [04:51, 02:42](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 02:47](1609 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:46, 02:40](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:38, 01:34](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:42, 02:42](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:34](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:49](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:26](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:44](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 03:37](1657 MB)
PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:45, 03:14](1616 MB)
-PASS -- TEST 'regional_control_intel' [06:29, 04:34](615 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:44, 03:17](1615 MB)
+PASS -- TEST 'regional_control_intel' [06:31, 04:35](615 MB)
PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:27, 02:49](757 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:33](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:33](615 MB)
+PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:30, 02:49](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:33, 04:29](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:36](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:36](615 MB)
PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB)
-PASS -- COMPILE 'rrfs_intel' [11:08, 09:44]
-PASS -- TEST 'rap_control_intel' [08:42, 06:33](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:57](1182 MB)
-PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [07:36, 05:52](1099 MB)
-PASS -- TEST 'rap_restart_intel' [05:37, 03:28](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:24](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 06:42](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 04:51](879 MB)
-PASS -- TEST 'hrrr_control_intel' [05:40, 03:29](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:33](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:00](1079 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:55](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:25](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:40](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 07:24](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:08, 09:25]
-PASS -- TEST 'control_csawmg_intel' [07:28, 05:32](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:28, 05:29](693 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:08](657 MB)
-
-PASS -- COMPILE 'wam_intel' [10:08, 09:06]
-PASS -- TEST 'control_wam_intel' [04:20, 02:09](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:10]
-PASS -- TEST 'control_p8_faster_intel' [04:45, 02:40](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:31, 04:25](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 06:58]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:43](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:40](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:07](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:05](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:46](844 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:28, 02:44](1619 MB)
-PASS -- TEST 'regional_debug_intel' [18:35, 16:49](634 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:22, 04:51](1167 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:41](1166 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:46](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:48](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:01](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1167 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1168 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:51](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:47](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:52](1165 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:51](1167 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:45](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:43](1169 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:54](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:14](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:08, 05:28]
-PASS -- TEST 'control_wam_debug_intel' [08:22, 04:52](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:18]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:43](1054 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 05:27](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 02:58](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:44, 05:06](946 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:37](936 MB)
+PASS -- COMPILE 'rrfs_intel' [12:08, 09:47]
+PASS -- TEST 'rap_control_intel' [08:37, 06:35](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:57](1183 MB)
+PASS -- TEST 'rap_decomp_intel' [08:41, 06:49](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [07:40, 06:01](1093 MB)
+PASS -- TEST 'rap_restart_intel' [05:36, 03:24](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:23](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:39](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:55](879 MB)
+PASS -- TEST 'hrrr_control_intel' [05:34, 03:28](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:33](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 02:59](1078 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:55](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:44, 06:25](1002 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:53](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:32](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:08, 09:22]
+PASS -- TEST 'control_csawmg_intel' [07:28, 05:34](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:27, 05:34](693 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:10](657 MB)
+
+PASS -- COMPILE 'wam_intel' [11:08, 09:07]
+PASS -- TEST 'control_wam_intel' [04:20, 02:08](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:05]
+PASS -- TEST 'control_p8_faster_intel' [04:46, 02:36](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:30, 04:26](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:07, 07:02]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:46](780 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:43](784 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:03](788 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](792 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:28, 04:03](827 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:07](828 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:45](798 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:25, 02:50](846 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:36, 02:48](1622 MB)
+PASS -- TEST 'regional_debug_intel' [18:42, 16:14](638 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:25, 04:58](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:43](1168 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1170 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:53](1170 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:53](1169 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:08](1254 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:02](1169 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:59](1170 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:59](1171 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:55](1169 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:28](1169 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:55](1168 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:01](1169 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1166 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1171 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:55](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:23](1174 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:07, 05:22]
+PASS -- TEST 'control_wam_debug_intel' [06:19, 04:53](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:07]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:48](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:27](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:38, 03:01](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:04](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:38](936 MB)
PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:37, 04:11](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:24, 01:44](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:35]
-PASS -- TEST 'conus13km_control_intel' [04:03, 01:57](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [06:43, 01:05](1075 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:43, 01:17](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:11]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:52](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:11]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:48](1050 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:09, 14:01](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:44](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 07:57](1111 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 14:01](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:31]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:48](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:08, 11:35]
-PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:15](708 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 04:32](1063 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:46](756 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:09, 11:42](791 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 12:46](800 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:20](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:19, 06:42](501 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [09:54, 03:04](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:10, 07:55](434 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:45](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:58, 03:32](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 04:38](569 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:49](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:55, 03:59](765 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:07, 06:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:01](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:44]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 07:37](610 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:45](780 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 12:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 06:02](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:08, 11:04]
-PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:06](748 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:03](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:09, 16:10](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:31](745 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](636 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](636 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:22](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:29](755 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:19](636 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:49](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:45](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:29](756 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:38](2015 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:23](741 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:09, 10:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:27](756 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:17](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:08](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:53](456 MB)
-
-PASS -- COMPILE 'atml_intel' [12:09, 10:47]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:08, 06:14](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:06, 06:20](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:27](836 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:09, 10:15]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:43](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:09, 10:20]
-PASS -- TEST 'control_atmwav_intel' [03:36, 01:38](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:09, 09:45]
-PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:14](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:51](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:09](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:08, 09:40]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:08, 05:38]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:13, 18:12](4480 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:06](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:42](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:27]
+PASS -- TEST 'conus13km_control_intel' [03:41, 01:57](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:32, 01:03](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:28, 01:16](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 03:53](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:53](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:43, 13:37](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 13:56](803 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:02](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:57](1196 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:30]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:21](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:08, 11:15]
+PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:18](708 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:26](1056 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 07:31](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:43](784 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:18, 12:48](791 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:16](473 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:00](435 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:47, 03:44](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 03:30](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:41](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:45](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:55, 03:59](762 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:08, 06:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:06](585 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:41](613 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:44](784 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:09, 12:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 06:01](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:09, 11:08]
+PASS -- TEST 'hafs_regional_docn_intel' [08:09, 05:58](746 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:02](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:06](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:33](745 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:33](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:24](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:24](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:26](635 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:31](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:32](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:43, 05:55](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:42, 05:51](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:33](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:33](2014 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:33](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:18]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:17](741 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [12:08, 10:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:31](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 02:03]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:22](309 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:32, 01:09](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:56](456 MB)
+
+PASS -- COMPILE 'atml_intel' [13:09, 11:22]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 06:17](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:02, 06:15](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:24](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:09, 10:26]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:45](1647 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:09, 10:26]
+PASS -- TEST 'control_atmwav_intel' [03:35, 01:39](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:08, 09:47]
+PASS -- TEST 'atmaero_control_p8_intel' [05:47, 04:02](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:35](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:52](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:08, 09:48]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:08, 06:07]
+PASS -- TEST 'regional_atmaq_debug_intel' [20:16, 18:11](4485 MB)
SYNOPSIS:
-Starting Date/Time: 20240222 16:32:44
-Ending Date/Time: 20240222 17:55:46
-Total Time: 01h:23m:24s
+Starting Date/Time: 20240229 11:15:07
+Ending Date/Time: 20240229 12:38:47
+Total Time: 01h:24m:02s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index b4ddf7103f..9525d1721d 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffc1413d43ff54ebdbba9d04e8ab95109225f0b1
+42ce413c756e127649d5c07d8f89535343390d6f
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,367 +24,367 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_29067
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26211
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
+* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:07]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:16](3153 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:03]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 16:14](1735 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 16:51](2001 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:05](1092 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:12, 18:23](1630 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:18]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:12, 22:24](1689 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:09, 12:06]
-PASS -- TEST 'cpld_control_p8_intel' [08:22, 05:43](3183 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:36, 05:41](3194 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:44, 03:28](3199 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:47](3161 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:43, 03:28](3275 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:19, 05:29](3491 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:39](3126 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:37](3049 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 05:42](3191 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 09:48](3327 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:42, 05:58](3605 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:55, 09:51](4059 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:01, 07:25](4344 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:17](3157 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:09, 11:23]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:30](1716 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:28](1743 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:17]
-PASS -- TEST 'cpld_debug_p8_intel' [11:17, 08:13](3209 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:14]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:36](1741 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:43]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:27](1764 MB)
-
-PASS -- COMPILE 's2s_intel' [13:10, 10:59]
-PASS -- TEST 'cpld_control_c48_intel' [11:47, 09:25](2808 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:45]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:22](3183 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:08, 14:47]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 16:23](1727 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:17](1152 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:20](1656 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:36](1703 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:21]
-PASS -- TEST 'control_flake_intel' [05:24, 03:20](696 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:30](653 MB)
-PASS -- TEST 'control_latlon_intel' [04:23, 02:28](619 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:28](640 MB)
-PASS -- TEST 'control_c48_intel' [08:32, 06:14](874 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 06:17](871 MB)
-PASS -- TEST 'control_c192_intel' [11:40, 09:10](820 MB)
-PASS -- TEST 'control_c384_intel' [13:43, 09:12](1261 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:05, 08:11](1383 MB)
-PASS -- TEST 'control_stochy_intel' [03:18, 01:38](650 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:59](504 MB)
-PASS -- TEST 'control_lndp_intel' [03:19, 01:36](651 MB)
-PASS -- TEST 'control_iovr4_intel' [04:22, 02:27](642 MB)
-PASS -- TEST 'control_iovr5_intel' [04:23, 02:27](646 MB)
-PASS -- TEST 'control_p8_intel' [07:04, 03:04](1624 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:08, 03:05](1616 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:09, 03:06](1620 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:46, 01:40](880 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:04](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:39](926 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:07, 03:07](1597 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:04, 02:50](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:07, 05:14](1616 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:10, 03:51](1681 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:13, 02:59](1626 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:54, 03:27](1633 MB)
-PASS -- TEST 'regional_control_intel' [07:36, 05:17](846 MB)
-PASS -- TEST 'regional_restart_intel' [05:45, 02:44](986 MB)
-PASS -- TEST 'regional_decomp_intel' [07:40, 05:31](839 MB)
-PASS -- TEST 'regional_2threads_intel' [05:43, 03:18](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:38, 05:13](1338 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:13](848 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:14](846 MB)
-PASS -- TEST 'regional_wofs_intel' [08:43, 06:40](1890 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:08, 09:54]
-PASS -- TEST 'rap_control_intel' [09:47, 07:43](1104 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:12, 04:09](1275 MB)
-PASS -- TEST 'rap_decomp_intel' [10:36, 08:03](1024 MB)
-PASS -- TEST 'rap_2threads_intel' [09:43, 07:16](1188 MB)
-PASS -- TEST 'rap_restart_intel' [05:43, 04:00](1087 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1103 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:03](1017 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 06:21](1098 MB)
-PASS -- TEST 'hrrr_control_intel' [06:42, 03:58](1029 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:05](1001 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:38, 03:39](1100 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:09](984 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:47, 07:34](1106 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:29, 09:06](1981 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 09:02](2060 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:07, 09:37]
-PASS -- TEST 'control_csawmg_intel' [08:41, 05:54](733 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:41, 05:43](742 MB)
-PASS -- TEST 'control_ras_intel' [05:22, 03:18](732 MB)
-
-PASS -- COMPILE 'wam_intel' [11:08, 09:17]
-PASS -- TEST 'control_wam_intel' [04:20, 02:03](627 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 09:50]
-PASS -- TEST 'control_p8_faster_intel' [05:07, 02:39](1589 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:39, 04:40](841 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:31]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:40](800 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](809 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:59](807 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:20, 02:42](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:41, 03:59](844 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:38, 03:57](853 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:18, 02:40](792 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:27, 02:49](868 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 02:50](1638 MB)
-PASS -- TEST 'regional_debug_intel' [18:43, 16:31](841 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:21, 04:46](1188 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:34](1194 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:27](1200 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:28](1193 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:14](1186 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:03, 05:39](1262 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1194 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:13](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:01](1196 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:55](1196 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:00](1164 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:01](1176 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:58](1188 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1174 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:04](1172 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:09](1205 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:28](1197 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:08, 03:09]
-PASS -- TEST 'control_wam_debug_intel' [06:20, 04:52](477 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:12]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:30](1149 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:57](1011 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:59](958 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:36](1075 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:08](953 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:33](918 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:00](1044 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:51](911 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:44]
-PASS -- TEST 'conus13km_control_intel' [03:51, 02:02](1180 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:54](1113 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](1101 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:24]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:17](954 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:25]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:43](1074 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1073 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:55, 13:56](1216 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 13:45](911 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:48](1143 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:50](1293 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:07]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:49](1083 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:11, 10:55]
-PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:51](734 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 05:48](1101 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:46](806 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:02](844 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:44](845 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 05:20](473 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:30](492 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:45](351 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:06](484 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:40](506 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:26](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:10](584 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:18](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:45, 03:59](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:08, 04:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:16](538 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 08:26](647 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:28](696 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 11:20]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:05, 06:17](664 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:09, 10:30]
-PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:16](819 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:12](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:15](1218 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:08, 06:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1134 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:39](1058 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:36](1011 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:30](992 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:36](1002 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:43](1104 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1113 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1001 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 06:55](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:13](1029 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:38](1127 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](2421 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2411 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:01]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:58](1046 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:08, 05:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:38](1129 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:09, 01:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:44](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:47](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:31](316 MB)
-
-PASS -- COMPILE 'atml_intel' [12:09, 10:53]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 04:15](1584 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 04:08](1606 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 02:14](887 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:11, 10:08]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:42](1647 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:15, 10:06]
-PASS -- TEST 'control_atmwav_intel' [06:34, 01:39](638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:09, 09:50]
-PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:56](2967 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 04:44](3080 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:44, 05:03](3061 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:08, 09:26]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:09, 03:34]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 19:58](4345 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:09, 03:30]
-PASS -- TEST 'control_c48_gnu' [13:26, 11:41](790 MB)
-PASS -- TEST 'control_stochy_gnu' [06:18, 03:54](548 MB)
-PASS -- TEST 'control_ras_gnu' [07:18, 04:53](555 MB)
-PASS -- TEST 'control_p8_gnu' [06:57, 04:50](1301 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:44](1304 MB)
-PASS -- TEST 'control_flake_gnu' [07:21, 05:52](596 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:06, 03:31]
-PASS -- TEST 'rap_control_gnu' [13:33, 11:37](900 MB)
-PASS -- TEST 'rap_decomp_gnu' [14:34, 12:01](894 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:41, 10:30](974 MB)
-PASS -- TEST 'rap_restart_gnu' [08:38, 06:03](626 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:36](895 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:55](894 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:43](620 MB)
-PASS -- TEST 'hrrr_control_gnu' [07:32, 06:00](889 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:56](879 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 05:24](969 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 05:58](889 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:22, 03:13](608 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:13](704 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [15:42, 11:28](898 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:07, 03:17]
-PASS -- TEST 'control_diag_debug_gnu' [05:26, 01:42](588 MB)
-PASS -- TEST 'regional_debug_gnu' [09:38, 07:33](593 MB)
-PASS -- TEST 'rap_control_debug_gnu' [05:22, 02:43](907 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [05:18, 02:38](901 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [05:18, 02:40](903 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](903 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:45](991 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 03:52](904 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:27](904 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:31](900 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](541 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [04:26, 02:13](528 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1286 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:32](905 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:49](908 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:07](907 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:40]
-PASS -- TEST 'control_wam_debug_gnu' [05:17, 02:27](238 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 04:00]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:31, 11:42](751 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:31, 06:07](747 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:38, 10:40](803 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 05:20](802 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:31, 06:05](745 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:48, 09:17](595 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:23, 03:18](579 MB)
-PASS -- TEST 'conus13km_control_gnu' [06:54, 04:10](896 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:52, 01:55](930 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:52, 02:17](597 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:10, 05:24]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:54](778 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:09, 03:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:32](760 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:31](753 MB)
-PASS -- TEST 'conus13km_debug_gnu' [09:45, 07:15](915 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:58, 07:10](634 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [06:45, 04:19](949 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:59](982 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:53]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:33](786 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:10, 13:52]
-PASS -- TEST 'cpld_control_p8_gnu' [14:16, 11:04](1506 MB)
-
-PASS -- COMPILE 's2s_gnu' [15:08, 13:51]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:30](1405 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:59]
-PASS -- TEST 'cpld_debug_p8_gnu' [08:01, 06:03](1513 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 14:03]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:28](1376 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:49]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1388 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:08, 13:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:57](695 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [29:59, 12:17]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:15](3132 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:59, 15:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 16:14](1702 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:23, 16:54](1970 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [04:15, 07:44](1114 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:13](1626 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:58, 04:53]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 22:10](1672 MB)
+
+PASS -- COMPILE 's2swa_intel' [29:59, 12:14]
+PASS -- TEST 'cpld_control_p8_intel' [09:22, 05:38](3164 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 05:47](3162 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:24, 03:27](3223 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 05:44](3181 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:28](3254 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:16, 05:30](3498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:15, 05:42](3160 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:17, 04:39](3014 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:28, 05:42](3163 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:17, 09:45](3320 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:07](3616 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 10:05](4103 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:47, 07:02](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:20](3159 MB)
+
+PASS -- COMPILE 's2sw_intel' [28:59, 11:35]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:02, 04:29](1735 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:22](1763 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [22:58, 04:49]
+PASS -- TEST 'cpld_debug_p8_intel' [11:09, 08:09](3203 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [21:58, 04:18]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:30](1744 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [28:58, 10:50]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:27](1740 MB)
+
+PASS -- COMPILE 's2s_intel' [28:58, 10:48]
+PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:23](2819 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:59, 16:43]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:17, 05:16](3165 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:08]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 16:20](1727 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:18, 07:41](1137 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:08, 18:46](1636 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:01]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:32](1698 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:35]
+PASS -- TEST 'control_flake_intel' [07:23, 03:17](696 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:22](627 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:31, 02:31](623 MB)
+PASS -- TEST 'control_latlon_intel' [05:20, 02:25](620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:28, 02:27](629 MB)
+PASS -- TEST 'control_c48_intel' [09:23, 06:12](873 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:24, 06:14](874 MB)
+PASS -- TEST 'control_c192_intel' [12:36, 09:01](824 MB)
+PASS -- TEST 'control_c384_intel' [14:28, 09:03](1277 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:01, 08:11](1357 MB)
+PASS -- TEST 'control_stochy_intel' [04:20, 01:40](646 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:03](500 MB)
+PASS -- TEST 'control_lndp_intel' [04:19, 01:33](621 MB)
+PASS -- TEST 'control_iovr4_intel' [05:27, 02:26](626 MB)
+PASS -- TEST 'control_iovr5_intel' [04:21, 02:26](654 MB)
+PASS -- TEST 'control_p8_intel' [04:59, 03:02](1612 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:00, 03:00](1616 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:52](1595 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:46, 01:37](881 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:00, 02:55](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:04, 01:36](912 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:10](1582 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:48, 02:50](1702 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:17](1598 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:55, 03:53](1682 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:57, 02:59](1608 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:59, 03:27](1638 MB)
+PASS -- TEST 'regional_control_intel' [07:43, 05:06](848 MB)
+PASS -- TEST 'regional_restart_intel' [58:48, 02:49](1013 MB)
+PASS -- TEST 'regional_decomp_intel' [07:43, 05:26](843 MB)
+PASS -- TEST 'regional_2threads_intel' [05:40, 03:20](813 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:35, 05:06](1331 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:04](817 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 05:02](847 MB)
+PASS -- TEST 'regional_wofs_intel' [08:43, 06:35](1900 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:06, 09:47]
+PASS -- TEST 'rap_control_intel' [09:41, 07:42](1069 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:12, 04:11](1278 MB)
+PASS -- TEST 'rap_decomp_intel' [10:33, 08:03](1036 MB)
+PASS -- TEST 'rap_2threads_intel' [10:31, 07:14](1184 MB)
+PASS -- TEST 'rap_restart_intel' [59:48, 04:04](1084 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:37](1108 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:01](1026 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [59:59, 05:51](1104 MB)
+PASS -- TEST 'hrrr_control_intel' [06:37, 04:03](1013 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:06](1020 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [01:37, 03:38](1097 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [58:30, 02:11](970 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:34](1087 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [05:31, 09:09](1985 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:29, 08:54](2075 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:06, 09:31]
+PASS -- TEST 'control_csawmg_intel' [03:45, 05:52](705 MB)
+PASS -- TEST 'control_csawmgt_intel' [02:50, 05:50](708 MB)
+PASS -- TEST 'control_ras_intel' [00:25, 03:20](725 MB)
+
+PASS -- COMPILE 'wam_intel' [11:06, 09:04]
+PASS -- TEST 'control_wam_intel' [58:26, 02:04](650 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:46]
+PASS -- TEST 'control_p8_faster_intel' [59:05, 02:40](1588 MB)
+PASS -- TEST 'regional_control_faster_intel' [01:07, 04:45](850 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:29, 02:39](805 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:34, 02:42](780 MB)
+PASS -- TEST 'control_stochy_debug_intel' [58:25, 03:01](809 MB)
+PASS -- TEST 'control_lndp_debug_intel' [57:22, 02:43](811 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [59:43, 04:06](831 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [59:44, 04:03](837 MB)
+PASS -- TEST 'control_ras_debug_intel' [58:26, 02:45](807 MB)
+PASS -- TEST 'control_diag_debug_intel' [58:33, 02:49](856 MB)
+PASS -- TEST 'control_debug_p8_intel' [58:45, 02:56](1611 MB)
+PASS -- TEST 'regional_debug_intel' [10:45, 16:47](815 MB)
+PASS -- TEST 'rap_control_debug_intel' [58:27, 04:55](1200 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:22, 04:43](1185 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:20, 04:47](1193 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:00](1179 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:01](1175 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:07](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 04:54](1210 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:57](1198 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:49](1201 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:45](1211 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:45](1206 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:40](1196 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 07:46](1189 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:47](1186 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 05:47](1201 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:41](1201 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:09](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:06, 03:18]
+PASS -- TEST 'control_wam_debug_intel' [08:17, 04:48](513 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 09:15]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 03:59](1158 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:34, 03:24](992 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:09](1068 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:30, 03:09](947 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](912 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:52, 04:56](1036 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:28, 01:55](914 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:07, 11:23]
+PASS -- TEST 'conus13km_control_intel' [06:59, 02:04](1193 MB)
+PASS -- TEST 'conus13km_2threads_intel' [22:49, 00:57](1112 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [22:50, 01:19](1071 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 09:19]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:42, 04:13](961 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:09]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:24, 04:45](1073 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:24, 04:41](1044 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:55, 13:48](1214 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [18:54, 13:57](910 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:53](1135 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 13:39](1283 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 03:04]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 04:48](1113 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:07, 10:33]
+PASS -- TEST 'hafs_regional_atm_intel' [09:16, 05:05](739 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:29, 06:52](1109 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 06:56](825 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 13:04](858 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:35, 15:02](874 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:14, 05:40](500 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:28, 06:59](518 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [22:51, 02:48](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:07, 07:59](475 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:54, 04:05](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 03:36](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:59, 04:27](576 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:29, 01:19](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [26:09, 04:32](796 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:57, 12:38](548 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:08, 11:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:11, 08:56](645 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:18, 08:59](703 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:06, 10:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:16, 06:52](711 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:07, 10:28]
+PASS -- TEST 'hafs_regional_docn_intel' [26:18, 06:37](803 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [27:25, 06:37](796 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:01, 16:34](1206 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:21]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [25:18, 02:45](1117 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:40](1064 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [24:18, 02:35](1007 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:17, 02:38](1009 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:15, 02:36](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:16, 02:40](1124 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:16, 02:37](1125 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:16, 02:31](1003 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:27, 06:47](1052 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:24, 06:26](1017 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:13, 02:43](1129 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:57](2434 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [10:16, 04:01](2491 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:57]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:16, 06:00](1041 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 06:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:41](1113 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:52](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 00:52](320 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB)
+
+PASS -- COMPILE 'atml_intel' [12:07, 10:48]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:16, 04:28](1591 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:23](1578 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:05, 02:17](885 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:07, 10:06]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 01:49](1623 MB)
+
+PASS -- COMPILE 'atmwm_intel' [04:12, 10:26]
+PASS -- TEST 'control_atmwav_intel' [04:34, 01:42](641 MB)
+
+PASS -- COMPILE 'atmaero_intel' [04:10, 10:30]
+PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:03](3019 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:54](3084 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:48, 05:03](3043 MB)
+
+PASS -- COMPILE 'atmaq_intel' [04:12, 09:43]
+
+PASS -- COMPILE 'atmaq_debug_intel' [58:10, 03:32]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:20, 20:31](4417 MB)
+
+PASS -- COMPILE 'atm_gnu' [58:10, 03:43]
+PASS -- TEST 'control_c48_gnu' [14:25, 11:36](790 MB)
+PASS -- TEST 'control_stochy_gnu' [07:23, 04:02](545 MB)
+PASS -- TEST 'control_ras_gnu' [07:22, 04:56](524 MB)
+PASS -- TEST 'control_p8_gnu' [07:08, 04:54](1304 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [08:03, 04:46](1309 MB)
+PASS -- TEST 'control_flake_gnu' [08:21, 05:54](593 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [57:10, 03:33]
+PASS -- TEST 'rap_control_gnu' [14:33, 11:34](894 MB)
+PASS -- TEST 'rap_decomp_gnu' [14:35, 11:47](896 MB)
+PASS -- TEST 'rap_2threads_gnu' [13:47, 10:31](992 MB)
+PASS -- TEST 'rap_restart_gnu' [30:54, 05:58](621 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [14:43, 11:46](894 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:41, 11:54](897 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [36:48, 08:46](627 MB)
+PASS -- TEST 'hrrr_control_gnu' [08:35, 06:04](889 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:34, 06:07](879 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:17](973 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 05:59](895 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [32:32, 03:12](608 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [32:32, 03:15](701 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [48:46, 11:21](889 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [59:10, 03:27]
+PASS -- TEST 'control_diag_debug_gnu' [38:32, 01:38](592 MB)
+PASS -- TEST 'regional_debug_gnu' [44:46, 07:50](606 MB)
+PASS -- TEST 'rap_control_debug_gnu' [39:25, 02:30](910 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [37:26, 02:31](905 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [37:27, 02:33](909 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [37:24, 02:34](909 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [37:41, 02:45](996 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [38:25, 03:52](914 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [36:24, 02:33](912 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [35:27, 02:32](908 MB)
+PASS -- TEST 'control_ras_debug_gnu' [34:20, 01:32](543 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [35:22, 02:14](541 MB)
+PASS -- TEST 'control_debug_p8_gnu' [33:51, 01:41](1295 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [34:29, 02:33](911 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [33:27, 02:49](911 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [34:39, 04:09](915 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [57:10, 01:41]
+PASS -- TEST 'control_wam_debug_gnu' [32:26, 02:28](238 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [55:10, 03:35]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [39:34, 11:55](748 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [32:40, 06:05](744 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [35:40, 10:41](801 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [30:41, 05:18](799 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [30:38, 06:07](741 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [35:43, 09:04](596 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:26, 03:15](580 MB)
+PASS -- TEST 'conus13km_control_gnu' [32:02, 04:11](897 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:53](933 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:20](599 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [57:10, 05:07]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [28:50, 07:03](780 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:34](770 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:20, 02:32](758 MB)
+PASS -- TEST 'conus13km_debug_gnu' [12:52, 07:12](914 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [13:44, 07:24](631 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [06:46, 04:26](950 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:45, 07:05](981 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:31]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [09:22, 02:41](786 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:07, 13:49]
+PASS -- TEST 'cpld_control_p8_gnu' [16:23, 10:55](1503 MB)
+
+PASS -- COMPILE 's2s_gnu' [16:08, 13:50]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:10, 06:47](1394 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:24]
+PASS -- TEST 'cpld_debug_p8_gnu' [13:10, 06:19](1511 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 14:11]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:11, 21:58](1379 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:07, 02:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:59, 12:53](1385 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [24:08, 13:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [40:59, 03:03](694 MB)
SYNOPSIS:
-Starting Date/Time: 20240222 18:39:16
-Ending Date/Time: 20240222 20:22:06
-Total Time: 01h:43m:23s
+Starting Date/Time: 20240228 05:59:41
+Ending Date/Time: 20240229 07:59:24
+Total Time: 02h:00m:18s
Compiles Completed: 53/53
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 2520164ea8..98d94e2a3e 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffc1413d43ff54ebdbba9d04e8ab95109225f0b1
+3951b805f6c6071a13b4686f8fd00e93840f5040
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,358 +24,358 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2262511
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4072729
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
+* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:17]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 07:44](1893 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 17:55]
-PASS -- TEST 'cpld_control_gfsv17_intel' [49:15, 13:38](1764 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:27, 14:12](2184 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:27](1172 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:01, 15:19](1689 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:50]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [11:13, 20:21](1724 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:06, 09:54]
-PASS -- TEST 'cpld_control_p8_intel' [39:05, 07:36](2065 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:15, 07:45](2058 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:19](1973 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [39:05, 07:40](1969 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [15:10, 04:24](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [41:09, 08:56](2488 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:58, 07:45](2078 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:31](1878 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:09, 07:31](2065 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [03:50, 15:44](2803 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 05:46](2918 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [58:33, 08:47](3698 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:32, 06:06](3619 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [37:07, 04:58](2034 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:06, 10:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [37:58, 07:17](1781 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:03, 04:00](1821 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:16]
-PASS -- TEST 'cpld_debug_p8_intel' [52:04, 06:59](2053 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 04:56]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [44:55, 04:41](1793 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:06, 08:26]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:56, 03:59](1816 MB)
-
-PASS -- COMPILE 's2s_intel' [11:06, 09:06]
-PASS -- TEST 'cpld_control_c48_intel' [13:33, 07:14](2835 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:06, 12:40]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:21, 07:22](2068 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 15:04]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 13:56](1803 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 06:57](1274 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:21](1725 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:06, 03:57]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 21:37](1773 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:06, 07:32]
-PASS -- TEST 'control_flake_intel' [43:28, 02:53](707 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [30:21, 02:05](662 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:39, 02:12](671 MB)
-PASS -- TEST 'control_latlon_intel' [30:26, 02:08](660 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:27, 02:06](675 MB)
-PASS -- TEST 'control_c48_intel' [09:20, 05:50](857 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [48:26, 05:43](861 MB)
-PASS -- TEST 'control_c192_intel' [48:39, 07:55](999 MB)
-PASS -- TEST 'control_c384_intel' [49:16, 08:18](1439 MB)
-PASS -- TEST 'control_c384gdas_intel' [49:03, 07:24](1515 MB)
-PASS -- TEST 'control_stochy_intel' [12:26, 01:30](667 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:55](534 MB)
-PASS -- TEST 'control_lndp_intel' [09:21, 01:26](668 MB)
-PASS -- TEST 'control_iovr4_intel' [07:22, 02:11](659 MB)
-PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](665 MB)
-PASS -- TEST 'control_p8_intel' [03:49, 02:35](1644 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [56:02, 02:35](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [43:57, 02:29](1656 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:43, 01:24](917 MB)
-PASS -- TEST 'control_noqr_p8_intel' [37:53, 02:29](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:23](989 MB)
-PASS -- TEST 'control_decomp_p8_intel' [27:46, 02:36](1634 MB)
-PASS -- TEST 'control_2threads_p8_intel' [16:38, 02:22](1732 MB)
-PASS -- TEST 'control_p8_lndp_intel' [15:40, 04:28](1637 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:53, 03:36](1729 MB)
-PASS -- TEST 'control_p8_mynn_intel' [13:01, 02:43](1659 MB)
-PASS -- TEST 'merra2_thompson_intel' [13:06, 02:59](1653 MB)
-PASS -- TEST 'regional_control_intel' [08:24, 04:33](954 MB)
-PASS -- TEST 'regional_restart_intel' [18:23, 02:32](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [12:30, 05:05](946 MB)
-PASS -- TEST 'regional_2threads_intel' [24:25, 02:55](912 MB)
-PASS -- TEST 'regional_noquilt_intel' [24:24, 04:18](1487 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [12:24, 04:36](957 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:21, 04:30](955 MB)
-PASS -- TEST 'regional_wofs_intel' [12:24, 05:35](2072 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:20]
-PASS -- TEST 'rap_control_intel' [12:49, 06:30](1209 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:43, 03:37](1401 MB)
-PASS -- TEST 'rap_decomp_intel' [12:30, 06:49](1177 MB)
-PASS -- TEST 'rap_2threads_intel' [08:31, 06:08](1381 MB)
-PASS -- TEST 'rap_restart_intel' [09:50, 03:24](1125 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:29](1185 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:48](1160 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 04:55](1200 MB)
-PASS -- TEST 'hrrr_control_intel' [05:31, 03:28](1083 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:27](1043 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:04](1121 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [09:29, 01:52](1019 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:14](1187 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:35](2020 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:40](2157 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:05, 06:54]
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:07](810 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:23, 05:01](814 MB)
-PASS -- TEST 'control_ras_intel' [04:15, 02:48](820 MB)
-
-PASS -- COMPILE 'wam_intel' [11:05, 06:29]
-PASS -- TEST 'control_wam_intel' [03:19, 01:53](787 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:05, 09:10]
-PASS -- TEST 'control_p8_faster_intel' [04:52, 02:21](1649 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:26, 04:05](962 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 03:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 02:14](819 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:13](828 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:33](823 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:17](833 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:21](880 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [11:30, 03:21](874 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:14, 02:21](834 MB)
-PASS -- TEST 'control_diag_debug_intel' [09:25, 02:23](880 MB)
-PASS -- TEST 'control_debug_p8_intel' [09:32, 02:27](1648 MB)
-PASS -- TEST 'regional_debug_intel' [21:28, 14:08](890 MB)
-PASS -- TEST 'rap_control_debug_intel' [11:18, 04:01](1211 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [10:14, 03:59](1216 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [10:15, 04:02](1217 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [09:15, 04:04](1223 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 04:04](1216 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:14](1293 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:16, 04:05](1211 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:13, 04:06](1214 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [09:15, 04:04](1215 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:14, 04:03](1217 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:17, 03:55](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 03:59](1223 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 06:26](1223 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:15, 04:01](1216 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:59](1219 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:01](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 06:50](1234 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 02:35]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:05, 06:20]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1307 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:21](1161 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:51](1031 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:34, 05:07](1288 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:39, 02:38](1041 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:39, 03:07](978 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:46, 04:06](1097 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:38](952 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:05, 08:51]
-PASS -- TEST 'conus13km_control_intel' [13:39, 01:52](1309 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:50](1209 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:25, 01:04](1142 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:05, 06:35]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:35, 03:43](1059 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 02:57]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:15, 04:01](1091 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:13, 03:55](1089 MB)
-PASS -- TEST 'conus13km_debug_intel' [23:37, 11:48](1339 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 12:04](1003 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:39](1244 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 11:56](1410 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:06, 02:34]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:16, 04:02](1166 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:05, 09:41]
-PASS -- TEST 'hafs_regional_atm_intel' [16:00, 05:42](868 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:20, 05:21](1281 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:06, 06:32](956 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [25:59, 14:01](992 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:08, 14:58](994 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:52, 05:21](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:22, 06:55](639 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [12:43, 02:48](436 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 07:50](542 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:44, 03:55](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:50, 03:40](613 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:44, 04:55](671 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:22, 01:17](449 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [17:05, 03:06]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:40, 11:24](635 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:05, 10:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:50, 16:54](750 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:48, 17:54](812 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:05, 09:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:52, 10:17](830 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [24:05, 09:24]
-PASS -- TEST 'hafs_regional_docn_intel' [11:02, 05:36](937 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:07, 05:47](948 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:22](1337 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [20:05, 06:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:11, 02:07](1142 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:17](1093 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:04](1016 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:10, 02:05](1014 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:09, 02:05](1009 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:10, 02:07](1145 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:11, 02:08](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:03](1017 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:41, 04:59](1157 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:50](1139 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1148 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:02](2432 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:02](2384 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [19:05, 02:37]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:07](1079 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [24:05, 05:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1151 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [18:05, 00:45]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:53](339 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:49](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](562 MB)
-
-PASS -- COMPILE 'atml_intel' [23:05, 07:43]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 05:53](1632 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 05:51](1644 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 02:54](953 MB)
-
-PASS -- COMPILE 'atmw_intel' [21:05, 09:32]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:40](1687 MB)
-
-PASS -- COMPILE 'atmwm_intel' [25:06, 09:39]
-PASS -- TEST 'control_atmwav_intel' [03:40, 01:30](700 MB)
-
-PASS -- COMPILE 'atmaero_intel' [23:05, 07:09]
-PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:37](1789 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:11](1794 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 04:25](1817 MB)
-
-PASS -- COMPILE 'atmaq_intel' [22:05, 06:57]
-
-PASS -- COMPILE 'atmaq_debug_intel' [16:06, 02:40]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:27](4570 MB)
-
-PASS -- COMPILE 'atm_gnu' [22:06, 03:57]
-PASS -- TEST 'control_c48_gnu' [11:28, 09:33](864 MB)
-PASS -- TEST 'control_stochy_gnu' [04:20, 02:17](730 MB)
-PASS -- TEST 'control_ras_gnu' [05:14, 03:42](731 MB)
-PASS -- TEST 'control_p8_gnu' [07:51, 03:42](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [08:40, 03:34](1518 MB)
-PASS -- TEST 'control_flake_gnu' [08:15, 04:28](808 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [20:05, 03:57]
-PASS -- TEST 'rap_control_gnu' [12:30, 07:49](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:29, 07:41](1086 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:45, 07:05](1151 MB)
-PASS -- TEST 'rap_restart_gnu' [05:35, 03:53](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 07:40](1089 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 07:42](1085 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:43](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [08:30, 03:54](1073 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:31, 03:58](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 03:34](1027 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 03:59](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:03](883 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](934 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 07:34](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [25:06, 05:05]
-PASS -- TEST 'control_diag_debug_gnu' [05:21, 01:27](775 MB)
-PASS -- TEST 'regional_debug_gnu' [08:26, 06:15](930 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:15, 01:58](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 01:55](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:57](1098 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:03](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:09](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:04](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:00](1104 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:55](1090 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:12](726 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:15](724 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:17](1505 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1098 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:09](1107 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:13](1099 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [17:05, 02:48]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [17:05, 04:19]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:06](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:42](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:37](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:27](891 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:48](953 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:26](861 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 01:58](859 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:38, 02:27](1265 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:20, 01:03](1176 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:25](949 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [19:05, 08:41]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:20](989 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:05, 04:52]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 01:58](981 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:50](966 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:24](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:39](971 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:13](1194 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:24, 05:25](1351 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:05, 04:53]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:55](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [29:07, 16:19]
-
-PASS -- COMPILE 's2s_gnu' [29:06, 16:03]
-
-PASS -- COMPILE 's2swa_debug_gnu' [15:06, 04:37]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [26:06, 15:59]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [15:06, 02:51]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [30:06, 14:15]
+PASS -- COMPILE 's2swa_32bit_intel' [13:07, 11:21]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:37](1904 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:11]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:02, 13:49](1777 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:25, 14:05](2193 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:38](1175 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:03, 15:12](1693 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:54]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:29](1734 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:06, 11:12]
+PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:38](2079 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:10, 07:28](2076 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:15](1972 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:32](1974 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:46](2487 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:51, 07:38](2059 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:01, 06:24](1894 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:04, 07:40](2076 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 15:17](2808 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:04, 05:38](2921 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 08:59](3632 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:58, 05:45](3615 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:56, 04:57](2060 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:08, 11:17]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:54, 07:06](1771 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:03, 03:58](1819 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:52]
+PASS -- TEST 'cpld_debug_p8_intel' [09:10, 06:57](2147 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 04:40](1793 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:18]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 03:57](1835 MB)
+
+PASS -- COMPILE 's2s_intel' [10:06, 08:28]
+PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:12](2820 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:55]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:16](2088 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:37]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:06](1807 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:37](1278 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:47, 15:16](1732 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:56, 21:48](1786 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:05, 08:56]
+PASS -- TEST 'control_flake_intel' [04:15, 02:52](712 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 02:04](666 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:08](680 MB)
+PASS -- TEST 'control_latlon_intel' [04:15, 02:06](677 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:09](666 MB)
+PASS -- TEST 'control_c48_intel' [07:22, 05:44](856 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 05:42](863 MB)
+PASS -- TEST 'control_c192_intel' [09:28, 07:47](957 MB)
+PASS -- TEST 'control_c384_intel' [10:17, 08:01](1454 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:57, 07:03](1504 MB)
+PASS -- TEST 'control_stochy_intel' [03:15, 01:28](670 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:49](545 MB)
+PASS -- TEST 'control_lndp_intel' [03:15, 01:23](666 MB)
+PASS -- TEST 'control_iovr4_intel' [03:25, 02:04](673 MB)
+PASS -- TEST 'control_iovr5_intel' [03:16, 02:02](671 MB)
+PASS -- TEST 'control_p8_intel' [04:52, 02:33](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:32](1629 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:06, 02:22](1639 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:50, 01:25](908 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:52, 02:24](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 01:24](983 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:30](1626 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:16](1721 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:40, 04:20](1643 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 03:22](1708 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:58, 02:29](1648 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:57, 02:59](1648 MB)
+PASS -- TEST 'regional_control_intel' [06:27, 04:33](959 MB)
+PASS -- TEST 'regional_restart_intel' [04:37, 02:27](1109 MB)
+PASS -- TEST 'regional_decomp_intel' [06:29, 04:43](945 MB)
+PASS -- TEST 'regional_2threads_intel' [04:29, 02:48](907 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:26, 04:21](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:27](956 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:33](962 MB)
+PASS -- TEST 'regional_wofs_intel' [07:26, 05:51](2076 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:26]
+PASS -- TEST 'rap_control_intel' [08:51, 06:36](1189 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:23](1412 MB)
+PASS -- TEST 'rap_decomp_intel' [08:35, 06:50](1129 MB)
+PASS -- TEST 'rap_2threads_intel' [08:32, 06:16](1367 MB)
+PASS -- TEST 'rap_restart_intel' [05:50, 03:25](1148 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:33](1182 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:54](1139 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:57](1176 MB)
+PASS -- TEST 'hrrr_control_intel' [05:53, 03:22](1083 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1044 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:07](1134 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:50](1028 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:15](1186 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:35](2009 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:24](2168 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:29]
+PASS -- TEST 'control_csawmg_intel' [07:25, 05:09](837 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:24, 04:59](793 MB)
+PASS -- TEST 'control_ras_intel' [04:16, 02:50](825 MB)
+
+PASS -- COMPILE 'wam_intel' [09:06, 07:52]
+PASS -- TEST 'control_wam_intel' [03:23, 01:49](775 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:09, 10:12]
+PASS -- TEST 'control_p8_faster_intel' [04:53, 02:22](1627 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:32, 04:02](955 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:08]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:20](825 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:11](822 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:32](826 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:20](824 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:20](865 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:31, 03:20](869 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:12, 02:16](842 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:22, 02:17](885 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:28, 02:18](1658 MB)
+PASS -- TEST 'regional_debug_intel' [16:25, 14:13](893 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1218 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:14, 03:55](1210 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:14, 04:05](1217 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:03](1217 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:04](1211 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:15](1301 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:05](1217 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1217 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:21, 04:04](1214 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:59](1211 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:01](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1207 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:24](1213 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:55](1206 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:10](1220 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:59](1222 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:53](1225 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:13, 03:12]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:40]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:12](1281 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:22](1133 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:56](1014 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:09](1287 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 02:42](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:00](976 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 04:07](1092 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](966 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:35]
+PASS -- TEST 'conus13km_control_intel' [03:36, 01:46](1289 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:42](1197 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1154 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:39]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:40](1065 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:56](1095 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:50](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:39, 11:42](1326 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:49](993 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1243 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:32, 11:42](1412 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:58](1150 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:11, 09:47]
+PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:26](878 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1270 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:08, 06:18](949 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:37](978 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:09, 15:13](990 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:39](608 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:17, 06:55](621 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:53](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:40](544 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 03:54](611 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:36](622 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 05:56](683 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:19](450 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:16](637 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:07](740 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 17:02](841 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:07, 09:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:01](829 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:08, 09:08]
+PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:18](958 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:58, 05:23](943 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:26](1342 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:48]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:10, 02:07](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:20](1093 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:02](1018 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:05](1012 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 02:05](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:08](1156 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:07](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1003 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1163 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:46, 04:44](1149 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1132 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:59](2436 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:02](2437 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:56]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:10](1079 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:06, 04:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1147 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:56]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 00:53](332 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:50](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:31](561 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:51]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:57, 06:34](1657 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:53, 06:13](1645 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:35, 03:05](952 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:05, 09:30]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:30](1692 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:05, 09:03]
+PASS -- TEST 'control_atmwav_intel' [03:39, 01:29](691 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:14]
+PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1803 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:20](1806 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:35](1812 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:05, 06:56]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:07, 02:35]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:29, 16:49](4598 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:05, 03:59]
+PASS -- TEST 'control_c48_gnu' [11:24, 09:25](867 MB)
+PASS -- TEST 'control_stochy_gnu' [04:18, 02:19](731 MB)
+PASS -- TEST 'control_ras_gnu' [05:13, 03:41](733 MB)
+PASS -- TEST 'control_p8_gnu' [05:47, 03:35](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:39, 03:29](1515 MB)
+PASS -- TEST 'control_flake_gnu' [06:14, 04:17](809 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:05, 04:02]
+PASS -- TEST 'rap_control_gnu' [09:49, 07:43](1089 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:37, 07:47](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:37, 07:08](1154 MB)
+PASS -- TEST 'rap_restart_gnu' [06:38, 04:05](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1088 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:35, 07:51](1085 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:41, 05:50](883 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:39, 03:53](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:30, 04:02](1137 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:36](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:01](879 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:00](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:26](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 05:44]
+PASS -- TEST 'control_diag_debug_gnu' [03:18, 01:15](776 MB)
+PASS -- TEST 'regional_debug_gnu' [08:27, 06:16](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:00](1107 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1089 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:55](1093 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:53](1097 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:22, 02:06](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 03:03](1106 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:15, 01:55](1096 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:54](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:08](722 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:17](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:12](1503 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:15, 01:59](1099 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:06](1100 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:12](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:30]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:50]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:29, 07:11](963 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 03:56](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:45, 06:43](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 03:44](872 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:50](948 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:56, 05:34](862 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 01:58](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:38, 02:30](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:25, 01:07](1174 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:25, 01:40](942 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:07, 08:00]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:22](993 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:16, 02:07](976 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:58](975 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:26](1283 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:38](954 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:12](1193 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:28](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:52]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:07, 16:26]
+
+PASS -- COMPILE 's2s_gnu' [17:06, 15:44]
+
+PASS -- COMPILE 's2swa_debug_gnu' [05:05, 03:07]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:06, 14:01]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:08, 03:01]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [17:07, 15:17]
SYNOPSIS:
-Starting Date/Time: 20240222 15:42:59
-Ending Date/Time: 20240222 20:52:32
-Total Time: 05h:10m:04s
+Starting Date/Time: 20240229 07:55:18
+Ending Date/Time: 20240229 09:15:49
+Total Time: 01h:20m:52s
Compiles Completed: 53/53
Tests Completed: 234/234
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index aba1035824..45d63f7d3d 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-9904889c8c39959060b801e0cb5965f869d2a0ee
+42ce413c756e127649d5c07d8f89535343390d6f
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,245 +24,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_249843
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_168407
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [29:17, 27:42]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:57, 05:23](1764 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:23, 41:38]
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 15:44](1642 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 17:09](1866 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 09:21](985 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:35, 18:08](1603 MB)
-
-PASS -- COMPILE 's2swa_intel' [30:17, 28:56]
-PASS -- TEST 'cpld_control_p8_intel' [17:37, 06:24](1801 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 06:12](1796 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [21:05, 03:27](1690 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 06:12](1826 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 03:29](1715 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 05:46](2195 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:26, 05:58](1797 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:47, 05:02](1758 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 06:06](1804 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 05:57](1772 MB)
-
-PASS -- COMPILE 's2sw_intel' [28:17, 27:03]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:29, 04:30](1639 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:46, 04:37](1686 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:31]
-PASS -- TEST 'cpld_debug_p8_intel' [12:10, 08:20](1837 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:12]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:31, 05:35](1650 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [28:16, 24:26]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:56, 04:40](1689 MB)
-
-PASS -- COMPILE 's2s_intel' [26:15, 24:32]
-PASS -- TEST 'cpld_control_c48_intel' [14:22, 09:17](2798 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [05:31, 03:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [25:59, 05:43](1801 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [41:21, 39:29]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:35, 16:26](1662 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:46, 08:08](1019 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:39, 19:17](1654 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:15]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:41, 24:57](1671 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [28:15, 25:56]
-PASS -- TEST 'control_flake_intel' [22:46, 03:27](639 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [18:48, 02:26](589 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:03, 02:32](595 MB)
-PASS -- TEST 'control_latlon_intel' [21:50, 02:29](594 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:51, 02:29](589 MB)
-PASS -- TEST 'control_c48_intel' [12:58, 07:38](846 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [13:56, 07:20](841 MB)
-PASS -- TEST 'control_c192_intel' [21:07, 09:11](721 MB)
-PASS -- TEST 'control_c384_intel' [20:19, 12:02](901 MB)
-PASS -- TEST 'control_c384gdas_intel' [39:19, 10:48](1018 MB)
-PASS -- TEST 'control_stochy_intel' [20:46, 01:38](598 MB)
-PASS -- TEST 'control_stochy_restart_intel' [20:39, 00:59](427 MB)
-PASS -- TEST 'control_lndp_intel' [20:46, 01:37](593 MB)
-PASS -- TEST 'control_iovr4_intel' [16:47, 02:30](592 MB)
-PASS -- TEST 'control_iovr5_intel' [18:50, 02:28](590 MB)
-PASS -- TEST 'control_p8_intel' [24:16, 03:07](1554 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [27:18, 03:00](1573 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [24:27, 03:02](1569 MB)
-PASS -- TEST 'control_restart_p8_intel' [21:33, 01:35](819 MB)
-PASS -- TEST 'control_noqr_p8_intel' [25:08, 02:59](1556 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [21:29, 01:33](836 MB)
-PASS -- TEST 'control_decomp_p8_intel' [27:00, 03:04](1560 MB)
-PASS -- TEST 'control_2threads_p8_intel' [25:04, 02:57](1646 MB)
-PASS -- TEST 'control_p8_lndp_intel' [30:45, 05:20](1559 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [26:36, 04:00](1620 MB)
-PASS -- TEST 'control_p8_mynn_intel' [27:25, 03:06](1585 MB)
-PASS -- TEST 'merra2_thompson_intel' [23:46, 03:30](1581 MB)
-PASS -- TEST 'regional_control_intel' [11:23, 05:30](757 MB)
-PASS -- TEST 'regional_restart_intel' [25:59, 02:50](931 MB)
-PASS -- TEST 'regional_decomp_intel' [10:25, 07:17](755 MB)
-PASS -- TEST 'regional_2threads_intel' [23:14, 03:18](746 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [17:59, 05:30](758 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [20:52, 05:20](758 MB)
-
-PASS -- COMPILE 'rrfs_intel' [26:15, 24:32]
-PASS -- TEST 'rap_control_intel' [27:55, 07:42](982 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 04:23](1217 MB)
-PASS -- TEST 'rap_decomp_intel' [28:30, 08:02](967 MB)
-PASS -- TEST 'rap_2threads_intel' [25:15, 07:15](1071 MB)
-PASS -- TEST 'rap_restart_intel' [14:34, 03:57](987 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [28:45, 07:39](969 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:12, 08:01](963 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [15:29, 05:52](987 MB)
-PASS -- TEST 'hrrr_control_intel' [23:13, 04:01](964 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [21:42, 04:06](971 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [23:28, 03:36](1059 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [12:27, 02:07](902 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [28:58, 07:32](964 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [28:40, 09:15](1927 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:45, 08:57](1924 MB)
-
-PASS -- COMPILE 'csawmg_intel' [25:15, 23:14]
-PASS -- TEST 'control_csawmg_intel' [24:56, 06:05](689 MB)
-PASS -- TEST 'control_csawmgt_intel' [24:49, 06:01](688 MB)
-PASS -- TEST 'control_ras_intel' [22:34, 03:23](656 MB)
-
-PASS -- COMPILE 'wam_intel' [23:14, 21:42]
-PASS -- TEST 'control_wam_intel' [21:31, 02:05](493 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [39:22, 22:49]
-PASS -- TEST 'control_p8_faster_intel' [13:50, 02:38](1562 MB)
-PASS -- TEST 'regional_control_faster_intel' [13:51, 04:48](751 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [26:17, 05:03]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:31, 02:37](750 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:41, 02:36](749 MB)
-PASS -- TEST 'control_stochy_debug_intel' [22:31, 02:55](763 MB)
-PASS -- TEST 'control_lndp_debug_intel' [22:33, 02:37](759 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [22:53, 04:01](803 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [21:58, 04:01](801 MB)
-PASS -- TEST 'control_ras_debug_intel' [20:34, 02:40](771 MB)
-PASS -- TEST 'control_diag_debug_intel' [16:43, 02:47](808 MB)
-PASS -- TEST 'control_debug_p8_intel' [16:06, 02:47](1576 MB)
-PASS -- TEST 'regional_debug_intel' [28:06, 17:22](767 MB)
-PASS -- TEST 'rap_control_debug_intel' [14:38, 04:48](1143 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [15:31, 04:45](1139 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [15:28, 04:48](1135 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:51](1136 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:32, 04:50](1146 MB)
-PASS -- TEST 'rap_diag_debug_intel' [18:50, 05:07](1230 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 05:01](1133 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:54](1143 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [17:32, 05:00](1146 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:32, 04:49](1144 MB)
-PASS -- TEST 'rap_noah_debug_intel' [19:36, 04:41](1143 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [20:33, 04:48](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:33, 07:48](1137 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [20:32, 04:41](1140 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [22:43, 05:56](1143 MB)
-PASS -- TEST 'rap_flake_debug_intel' [21:41, 04:50](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:53, 08:14](1144 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [24:17, 03:21]
-PASS -- TEST 'control_wam_debug_intel' [22:33, 04:47](434 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:19, 21:28]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 03:59](1076 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:50, 06:25](894 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:11, 03:24](859 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:18, 06:03](942 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:25, 03:08](906 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 03:34](841 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:11, 05:48](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [37:46, 02:43](831 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 30:19]
-PASS -- TEST 'conus13km_control_intel' [23:18, 02:15](1097 MB)
-PASS -- TEST 'conus13km_2threads_intel' [30:39, 01:22](1047 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [31:37, 01:12](1017 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:18, 22:38]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:10, 04:23](895 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 03:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:39, 04:43](1023 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:35, 04:37](1022 MB)
-PASS -- TEST 'conus13km_debug_intel' [32:18, 14:04](1130 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [32:03, 14:19](838 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [26:51, 08:12](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:58, 14:16](1210 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:11]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:38, 04:48](1050 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:22, 25:12]
-PASS -- TEST 'hafs_regional_atm_intel' [23:32, 05:47](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:44, 05:55](1078 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:28, 07:56](766 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [38:27, 13:32](797 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:10, 15:52](819 MB)
-PASS -- TEST 'gnv1_nested_intel' [31:50, 04:27](772 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:28, 23:46]
-PASS -- TEST 'hafs_regional_docn_intel' [26:41, 06:39](768 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:45, 06:39](752 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:09, 06:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:29, 02:41](1034 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:32, 02:19](1010 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:29, 02:32](914 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:32, 02:34](919 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:29, 02:35](919 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:28, 02:39](1040 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:27, 02:41](1043 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:26, 02:37](913 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:29, 06:35](875 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:20, 06:23](835 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:28, 02:43](1045 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:23, 03:55](2391 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 04:01](2396 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:03]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:32, 06:18](995 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 06:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:23, 02:41](1044 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [13:11, 01:23]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:51, 01:56](225 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:37, 01:01](245 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](248 MB)
-
-PASS -- COMPILE 'atml_intel' [40:22, 25:17]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 08:48](1581 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [22:47, 07:59](1596 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:50, 04:10](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [42:26, 22:57]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 01:43](1576 MB)
-
-PASS -- COMPILE 'atmwm_intel' [40:25, 23:03]
-PASS -- TEST 'control_atmwav_intel' [05:22, 01:38](597 MB)
-
-PASS -- COMPILE 'atmaero_intel' [43:37, 22:10]
-PASS -- TEST 'atmaero_control_p8_intel' [06:33, 04:04](1670 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:30, 04:55](1709 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:23, 05:12](1711 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [55:28, 27:58]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:46, 05:34](1758 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [07:33, 42:07]
+PASS -- TEST 'cpld_control_gfsv17_intel' [50:01, 16:00](1644 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:25, 16:53](1864 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [24:09, 07:35](988 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:37, 18:27](1617 MB)
+
+PASS -- COMPILE 's2swa_intel' [30:17, 27:40]
+PASS -- TEST 'cpld_control_p8_intel' [33:35, 05:56](1803 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:00, 06:03](1797 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [26:35, 03:28](1695 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [45:32, 06:06](1826 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:10, 04:27](1715 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [27:21, 06:26](2191 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [05:14, 06:01](1800 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [20:21, 05:17](1752 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [52:04, 06:00](1803 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [59:26, 05:42](1774 MB)
+
+PASS -- COMPILE 's2sw_intel' [34:19, 26:50]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [52:34, 04:33](1639 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:40, 04:40](1687 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [35:20, 04:39]
+PASS -- TEST 'cpld_debug_p8_intel' [59:51, 08:14](1819 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [17:39, 04:13]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [38:18, 05:31](1650 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [38:47, 24:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:34, 04:37](1692 MB)
+
+PASS -- COMPILE 's2s_intel' [05:57, 24:02]
+PASS -- TEST 'cpld_control_c48_intel' [12:22, 09:16](2790 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:07, 03:28]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 05:44](1808 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:50, 40:13]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 16:28](1661 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [50:17, 08:00](1026 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:16, 19:06](1634 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [33:18, 04:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:22, 24:15](1670 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [33:20, 25:24]
+PASS -- TEST 'control_flake_intel' [10:09, 03:32](642 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:11, 02:27](590 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:18, 02:34](594 MB)
+PASS -- TEST 'control_latlon_intel' [09:07, 02:32](591 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:07, 02:30](594 MB)
+PASS -- TEST 'control_c48_intel' [09:51, 07:18](844 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [17:56, 07:18](842 MB)
+PASS -- TEST 'control_c192_intel' [16:31, 09:12](720 MB)
+PASS -- TEST 'control_c384_intel' [23:34, 13:06](900 MB)
+PASS -- TEST 'control_c384gdas_intel' [35:45, 10:42](1016 MB)
+PASS -- TEST 'control_stochy_intel' [08:09, 01:41](596 MB)
+PASS -- TEST 'control_stochy_restart_intel' [59:57, 00:57](425 MB)
+PASS -- TEST 'control_lndp_intel' [08:08, 01:37](595 MB)
+PASS -- TEST 'control_iovr4_intel' [54:07, 02:34](589 MB)
+PASS -- TEST 'control_iovr5_intel' [09:13, 02:31](596 MB)
+PASS -- TEST 'control_p8_intel' [19:33, 03:04](1564 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:44, 02:56](1566 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [10:49, 02:55](1576 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:54, 01:35](806 MB)
+PASS -- TEST 'control_noqr_p8_intel' [14:27, 02:55](1549 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [07:15, 01:45](834 MB)
+PASS -- TEST 'control_decomp_p8_intel' [22:28, 03:12](1550 MB)
+PASS -- TEST 'control_2threads_p8_intel' [13:36, 02:48](1652 MB)
+PASS -- TEST 'control_p8_lndp_intel' [28:07, 05:17](1556 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [27:56, 03:58](1618 MB)
+PASS -- TEST 'control_p8_mynn_intel' [24:32, 03:00](1565 MB)
+PASS -- TEST 'merra2_thompson_intel' [55:48, 03:46](1572 MB)
+PASS -- TEST 'regional_control_intel' [11:01, 05:23](756 MB)
+PASS -- TEST 'regional_restart_intel' [06:49, 02:49](925 MB)
+PASS -- TEST 'regional_decomp_intel' [12:49, 05:44](747 MB)
+PASS -- TEST 'regional_2threads_intel' [18:22, 03:19](741 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [22:07, 05:17](751 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 05:44](751 MB)
+
+PASS -- COMPILE 'rrfs_intel' [29:18, 24:55]
+PASS -- TEST 'rap_control_intel' [16:23, 07:50](968 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 04:26](1197 MB)
+PASS -- TEST 'rap_decomp_intel' [06:39, 08:09](987 MB)
+PASS -- TEST 'rap_2threads_intel' [05:33, 07:19](1073 MB)
+PASS -- TEST 'rap_restart_intel' [32:58, 04:00](973 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:04, 07:58](968 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:44, 08:15](963 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [37:56, 05:49](981 MB)
+PASS -- TEST 'hrrr_control_intel' [08:06, 04:14](965 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:36, 04:22](956 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [11:39, 03:42](1065 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [33:47, 02:12](900 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:57](962 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:05, 09:18](1927 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:16, 09:01](1928 MB)
+
+PASS -- COMPILE 'csawmg_intel' [35:21, 23:04]
+PASS -- TEST 'control_csawmg_intel' [11:28, 06:19](671 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:14, 06:10](688 MB)
+PASS -- TEST 'control_ras_intel' [03:55, 03:24](650 MB)
+
+PASS -- COMPILE 'wam_intel' [30:20, 22:20]
+PASS -- TEST 'control_wam_intel' [03:53, 02:23](499 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [52:29, 22:37]
+PASS -- TEST 'control_p8_faster_intel' [05:23, 02:51](1555 MB)
+PASS -- TEST 'regional_control_faster_intel' [16:56, 04:57](752 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [34:20, 04:49]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [00:00, 02:40](756 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:58, 02:38](755 MB)
+PASS -- TEST 'control_stochy_debug_intel' [54:52, 03:04](755 MB)
+PASS -- TEST 'control_lndp_debug_intel' [47:53, 02:39](756 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [47:13, 04:03](804 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [44:07, 04:02](803 MB)
+PASS -- TEST 'control_ras_debug_intel' [29:41, 02:40](762 MB)
+PASS -- TEST 'control_diag_debug_intel' [31:50, 02:44](809 MB)
+PASS -- TEST 'control_debug_p8_intel' [33:21, 02:44](1577 MB)
+PASS -- TEST 'regional_debug_intel' [46:19, 16:41](765 MB)
+PASS -- TEST 'rap_control_debug_intel' [31:41, 04:47](1142 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [34:42, 04:46](1136 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [35:44, 04:48](1134 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [36:43, 04:47](1133 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:38, 04:48](1148 MB)
+PASS -- TEST 'rap_diag_debug_intel' [34:52, 05:07](1220 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:41, 04:54](1134 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:39, 04:52](1137 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [35:42, 04:57](1141 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:43, 04:49](1145 MB)
+PASS -- TEST 'rap_noah_debug_intel' [34:43, 04:41](1143 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [35:44, 04:49](1144 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [37:45, 07:47](1134 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [36:43, 04:43](1137 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [37:40, 05:49](1142 MB)
+PASS -- TEST 'rap_flake_debug_intel' [35:44, 04:49](1134 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:02, 08:16](1141 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:11, 03:10]
+PASS -- TEST 'control_wam_debug_intel' [39:42, 04:48](439 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:35, 22:05]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [35:53, 04:03](1077 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:35, 06:26](896 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:45, 03:25](858 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:21, 06:10](935 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:31, 03:07](907 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:32, 03:36](839 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:59, 04:50](895 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [31:43, 01:54](833 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:43, 30:46]
+PASS -- TEST 'conus13km_control_intel' [30:29, 02:11](1090 MB)
+PASS -- TEST 'conus13km_2threads_intel' [39:11, 01:09](1042 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [39:59, 01:10](1005 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:36, 22:58]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [28:11, 04:37](887 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [49:26, 03:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:40, 04:53](1033 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:38, 04:40](1024 MB)
+PASS -- TEST 'conus13km_debug_intel' [33:08, 14:06](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [35:08, 14:10](835 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [25:56, 08:06](1081 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:00, 13:53](1196 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [38:20, 03:33]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:37, 04:50](1048 MB)
+
+PASS -- COMPILE 'hafsw_intel' [56:30, 25:21]
+PASS -- TEST 'hafs_regional_atm_intel' [31:52, 06:41](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [35:49, 06:29](1085 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:17, 07:58](768 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [44:52, 13:31](798 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:06, 15:13](818 MB)
+PASS -- TEST 'gnv1_nested_intel' [38:51, 05:04](771 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [56:28, 23:51]
+PASS -- TEST 'hafs_regional_docn_intel' [49:45, 06:38](770 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:55, 06:48](751 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [43:23, 07:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:28, 02:42](1039 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:37](1009 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:31](914 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:43](917 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:53](914 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:20, 02:50](1033 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:22, 02:40](1043 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:16, 02:33](920 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [46:45, 06:20](882 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:44, 06:24](829 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:14, 02:44](1035 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:02](2341 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [17:27, 03:59](2342 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [34:21, 03:01]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:27, 05:56](990 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [32:18, 06:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:26, 02:38](1038 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [21:14, 01:24]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:52, 01:12](224 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:44, 01:05](246 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:34, 00:38](245 MB)
+
+PASS -- COMPILE 'atml_intel' [41:21, 24:44]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:25, 09:25](1583 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [50:10, 09:11](1582 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:03, 04:29](859 MB)
+
+PASS -- COMPILE 'atmw_intel' [37:21, 22:55]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [43:55, 01:45](1579 MB)
+
+PASS -- COMPILE 'atmwm_intel' [37:23, 23:03]
+PASS -- TEST 'control_atmwav_intel' [42:44, 01:40](605 MB)
+
+PASS -- COMPILE 'atmaero_intel' [35:21, 22:30]
+PASS -- TEST 'atmaero_control_p8_intel' [44:08, 04:04](1675 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [45:54, 04:56](1704 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:39, 05:09](1714 MB)
SYNOPSIS:
-Starting Date/Time: 20240223 07:51:38
-Ending Date/Time: 20240223 11:22:41
-Total Time: 03h:31m:27s
+Starting Date/Time: 20240228 05:58:22
+Ending Date/Time: 20240228 13:01:55
+Total Time: 07h:03m:59s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index bca26a96f8..18731b706a 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-9904889c8c39959060b801e0cb5965f869d2a0ee
+3951b805f6c6071a13b4686f8fd00e93840f5040
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,278 +24,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85130
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_246111
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
+* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:09]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:09, 05:09](3184 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:09, 19:36]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:57, 16:25](1743 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 17:22](2023 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1114 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 18:27](1641 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:38]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 23:07](1687 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:07, 14:20]
-PASS -- TEST 'cpld_control_p8_intel' [13:08, 05:41](3207 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:17, 05:57](3133 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:18](3249 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:08, 05:45](3239 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 03:28](3203 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 06:06](3557 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:08, 05:47](3207 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:07, 04:41](3063 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 05:45](3211 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:18](3267 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 06:42](3544 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:19, 11:13](4110 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:11, 07:03](4365 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:08, 05:29](3178 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 14:19]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:28](1737 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:07, 04:22](1775 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:36]
-PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:24](3251 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:54](1758 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:07, 13:00]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:42](1709 MB)
-
-PASS -- COMPILE 's2s_intel' [14:07, 12:32]
-PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:04](2833 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:09, 19:41]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:00, 05:23](3208 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:20]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:27](1775 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:30](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:49](1684 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:28]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:28](1707 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:54]
-PASS -- TEST 'control_flake_intel' [05:20, 03:32](699 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:34](653 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:45](622 MB)
-PASS -- TEST 'control_latlon_intel' [04:18, 02:40](656 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:41](655 MB)
-PASS -- TEST 'control_c48_intel' [07:29, 06:00](879 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:57](866 MB)
-PASS -- TEST 'control_c192_intel' [11:35, 09:06](851 MB)
-PASS -- TEST 'control_c384_intel' [14:41, 11:07](1244 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:53, 08:51](1352 MB)
-PASS -- TEST 'control_stochy_intel' [03:22, 01:45](662 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:02](502 MB)
-PASS -- TEST 'control_lndp_intel' [03:26, 01:47](649 MB)
-PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](654 MB)
-PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](651 MB)
-PASS -- TEST 'control_p8_intel' [05:21, 03:01](1585 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 02:56](1631 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:53](1639 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:24, 01:39](893 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:51](1616 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 01:43](930 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:01](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:04](1727 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:18](1639 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 03:56](1695 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:31, 02:59](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:52, 03:24](1642 MB)
-PASS -- TEST 'regional_control_intel' [07:46, 05:06](855 MB)
-PASS -- TEST 'regional_restart_intel' [05:43, 02:42](1022 MB)
-PASS -- TEST 'regional_decomp_intel' [07:41, 05:28](849 MB)
-PASS -- TEST 'regional_2threads_intel' [05:44, 03:45](841 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:46, 05:05](1365 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:53, 05:08](858 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 05:06](862 MB)
-PASS -- TEST 'regional_wofs_intel' [08:44, 06:34](1923 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 11:45]
-PASS -- TEST 'rap_control_intel' [10:24, 07:42](1107 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:39](1291 MB)
-PASS -- TEST 'rap_decomp_intel' [11:16, 08:04](985 MB)
-PASS -- TEST 'rap_2threads_intel' [11:13, 07:52](1184 MB)
-PASS -- TEST 'rap_restart_intel' [07:19, 04:12](1103 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:47](1112 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 08:11](1035 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:21, 05:55](1131 MB)
-PASS -- TEST 'hrrr_control_intel' [06:55, 04:05](1034 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:06](1021 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:07, 03:21](1109 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:37](1052 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:15](1988 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:07](2019 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:06, 11:16]
-PASS -- TEST 'control_csawmg_intel' [08:47, 05:51](751 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:47, 05:46](751 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:18](742 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 10:53]
-PASS -- TEST 'control_wam_intel' [04:16, 02:05](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17]
-PASS -- TEST 'control_p8_faster_intel' [06:35, 02:36](1623 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:43, 04:32](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:44](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:37](813 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:05](817 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:50](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:04](866 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:41, 04:02](863 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:18, 02:46](823 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:22, 03:00](838 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1639 MB)
-PASS -- TEST 'regional_debug_intel' [19:41, 17:45](846 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:25, 05:06](1150 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:38](1199 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:52](1199 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:09](1210 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:12](1207 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:24](1281 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:13](1207 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 05:11](1199 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1213 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1209 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:41](1199 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:08](1196 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:05](1164 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:51](1198 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:46](1210 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:49](1202 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:18](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:06, 03:40]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:06](510 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:28]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 04:25](1173 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:25](1055 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:23](945 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:13, 06:42](1093 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:05](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:43](926 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:22, 04:50](1036 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:18, 01:57](940 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:49]
-PASS -- TEST 'conus13km_control_intel' [05:05, 02:07](1200 MB)
-PASS -- TEST 'conus13km_2threads_intel' [06:45, 00:58](1124 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [06:40, 01:17](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 10:45]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:14](1003 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:43]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:59](1081 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1080 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:48, 13:55](1187 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:45](931 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:41](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:19](1302 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:21]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:59](1128 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:07, 12:33]
-PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:35](745 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:47](1122 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:47](828 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 12:57](863 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 14:29](881 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 06:07](505 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 07:39](485 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [09:51, 03:09](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:27, 08:08](471 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:46, 04:10](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 03:54](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:59, 05:19](589 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 01:22](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:52, 04:28](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:50, 12:56](568 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:37]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 09:31](667 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:59, 09:45](657 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:08, 14:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:01, 07:10](684 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:08, 13:26]
-PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:26](829 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:31](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:01](1205 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:48]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:43](1095 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1020 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:39](1012 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:29](1021 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:41](1136 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:34](1138 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:34](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:16, 05:52](1059 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:58](1050 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1136 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](2433 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:45](2487 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:15]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:45]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:52](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:54](320 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:38](320 MB)
-
-PASS -- COMPILE 'atml_intel' [15:07, 13:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:23](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:33, 04:20](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 02:28](897 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:08, 14:07]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 01:47](1670 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:11, 12:03]
-PASS -- TEST 'control_atmwav_intel' [04:09, 01:48](672 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:06, 11:32]
-PASS -- TEST 'atmaero_control_p8_intel' [06:25, 04:00](3024 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:45](3087 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:14](3036 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:11, 10:32]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 21:02](4576 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:22]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:15](3178 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:33]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 16:37](1737 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:59, 17:14](2027 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 08:15](1110 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:41, 18:40](1645 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:10]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:59, 23:49](1686 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:07, 15:12]
+PASS -- TEST 'cpld_control_p8_intel' [08:23, 05:41](3216 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:42](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:16](3259 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:23, 05:51](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:16](3276 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:28, 06:16](3498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:23, 05:42](3203 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:23, 04:45](3068 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:40, 05:41](3214 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:38, 09:54](3341 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:28, 06:17](3627 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:31, 11:09](4123 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:01, 06:56](4369 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:34, 05:26](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:07, 13:23]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:22](1733 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:21, 04:40](1773 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:42]
+PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:54](3252 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:01]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 06:00](1753 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:53]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:29](1779 MB)
+
+PASS -- COMPILE 's2s_intel' [14:07, 12:23]
+PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:14](2834 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:16]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:24, 05:39](3203 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 19:03]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:10, 16:31](1725 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:05](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:11, 18:33](1687 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:05, 05:53]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:49](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:59]
+PASS -- TEST 'control_flake_intel' [05:19, 03:34](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:33](642 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:37](661 MB)
+PASS -- TEST 'control_latlon_intel' [04:19, 02:35](654 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:37](655 MB)
+PASS -- TEST 'control_c48_intel' [07:24, 05:57](873 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:00](880 MB)
+PASS -- TEST 'control_c192_intel' [11:38, 09:32](859 MB)
+PASS -- TEST 'control_c384_intel' [13:33, 10:06](1248 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:43, 08:58](1358 MB)
+PASS -- TEST 'control_stochy_intel' [03:20, 01:45](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:11](504 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:40](657 MB)
+PASS -- TEST 'control_iovr4_intel' [04:24, 02:32](651 MB)
+PASS -- TEST 'control_iovr5_intel' [04:20, 02:26](655 MB)
+PASS -- TEST 'control_p8_intel' [05:06, 03:03](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:04](1636 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:58](1629 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:07, 01:39](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:07, 02:52](1621 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:11, 01:48](925 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:20, 03:09](1611 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:04](1703 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1628 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 03:52](1702 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:33, 02:56](1630 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:40, 03:23](1649 MB)
+PASS -- TEST 'regional_control_intel' [06:39, 05:02](857 MB)
+PASS -- TEST 'regional_restart_intel' [04:39, 02:44](1024 MB)
+PASS -- TEST 'regional_decomp_intel' [07:38, 05:30](851 MB)
+PASS -- TEST 'regional_2threads_intel' [05:29, 03:44](850 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:30, 05:12](1361 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:10](852 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:09](859 MB)
+PASS -- TEST 'regional_wofs_intel' [11:35, 09:13](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:07, 12:09]
+PASS -- TEST 'rap_control_intel' [10:22, 07:58](1108 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:47](1302 MB)
+PASS -- TEST 'rap_decomp_intel' [11:08, 08:07](1035 MB)
+PASS -- TEST 'rap_2threads_intel' [10:04, 07:53](1178 MB)
+PASS -- TEST 'rap_restart_intel' [07:19, 04:07](1101 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:28, 07:44](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:07](1028 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:18, 06:01](1134 MB)
+PASS -- TEST 'hrrr_control_intel' [06:24, 04:01](1023 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:07](1025 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:09, 04:05](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:10](998 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:13, 07:36](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:10](1993 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 08:52](2071 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:06, 11:06]
+PASS -- TEST 'control_csawmg_intel' [07:47, 05:50](749 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:41, 05:47](750 MB)
+PASS -- TEST 'control_ras_intel' [05:19, 03:16](744 MB)
+
+PASS -- COMPILE 'wam_intel' [13:06, 11:33]
+PASS -- TEST 'control_wam_intel' [04:18, 02:04](656 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 12:10]
+PASS -- TEST 'control_p8_faster_intel' [05:33, 02:34](1631 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:41, 04:40](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:06, 05:21]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:50](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:40](809 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:17](818 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:52](814 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](864 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:08](866 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:48](826 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:25, 04:13](873 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:42, 02:52](1648 MB)
+PASS -- TEST 'regional_debug_intel' [19:41, 17:42](833 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:22, 04:59](1207 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:45](1200 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:56](1196 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:58](1205 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:57](1201 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:14](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:04](1198 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1210 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1202 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1197 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1204 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:51](1208 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1203 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:55](1195 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:52](1204 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:19, 05:15](1208 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:40](1203 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:06, 04:11]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:29](506 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:33]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 04:28](1170 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 06:23](1056 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:25](978 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:44](1052 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](968 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:35](935 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:12, 04:56](1034 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:54](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:31]
+PASS -- TEST 'conus13km_control_intel' [04:51, 02:06](1204 MB)
+PASS -- TEST 'conus13km_2threads_intel' [15:49, 01:01](1127 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](1113 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:07, 11:36]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:12](1000 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:51]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:53](1085 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1072 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:51, 14:43](1231 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:45](923 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:18](1160 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:10](1292 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:54]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:57](1117 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:07, 13:57]
+PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:36](738 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:59](1124 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:16, 06:55](833 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:01](866 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:33](883 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:06](500 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:37](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:08](352 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:00](517 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:03](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:56](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:24](583 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:37](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:50, 04:29](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:23](568 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:33](669 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:58, 09:35](738 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:25]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 07:05](729 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:06, 13:02]
+PASS -- TEST 'hafs_regional_docn_intel' [09:09, 06:10](829 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:18](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 15:56](1208 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:30]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:40](1137 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:36](1091 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:36](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:33](1021 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:36](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1128 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1013 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:51](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:07, 05:59](1042 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:42](1129 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:36](2441 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:41](2491 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:20]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:17](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 08:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:45](1139 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:47](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](323 MB)
+
+PASS -- COMPILE 'atml_intel' [18:07, 16:27]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:26](1609 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:19](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:19](896 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:07, 11:32]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:55](1674 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:07, 11:52]
+PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:07, 11:45]
+PASS -- TEST 'atmaero_control_p8_intel' [06:16, 03:59](3025 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:48](3086 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 05:08](3101 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:07, 10:15]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:49, 21:23](4578 MB)
SYNOPSIS:
-Starting Date/Time: 20240222 15:39:11
-Ending Date/Time: 20240222 17:12:31
-Total Time: 01h:33m:46s
+Starting Date/Time: 20240229 07:59:33
+Ending Date/Time: 20240229 09:30:04
+Total Time: 01h:30m:56s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 907da481a6..8f74579901 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-b675ab09f5d50068fdcc833fcce348b9df550362
+870b560324452362e10a1cdace0b2941e445d7f0
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/HEAD-16-g8e642bb)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
@@ -24,238 +24,388 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170835
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_145152
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [33:31, 32:47]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:23, 01:16](2972 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:49, 16:01]
-PASS -- TEST 'cpld_control_gfsv17_intel' [41:11, 02:27](1592 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:44, 02:08](1709 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [21:28, 01:22](845 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:12, 01:28](1569 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:47]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [52:41, 02:12](1601 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:33, 11:04]
-PASS -- TEST 'cpld_control_p8_intel' [46:27, 01:25](3003 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:27, 01:39](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [38:05, 01:45](3059 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [46:27, 01:20](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [38:05, 01:31](3080 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [46:27, 01:12](3316 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [46:27, 01:26](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [46:28, 01:33](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:27, 01:34](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [46:36, 03:46](3951 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:22, 03:58](4254 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [46:27, 01:54](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [24:04, 23:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [33:57, 01:51](1585 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:57, 02:02](1636 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:31, 09:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:29, 00:58](1633 MB)
-
-PASS -- COMPILE 's2s_intel' [24:04, 23:45]
-PASS -- TEST 'cpld_control_c48_intel' [33:56, 00:47](2651 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [38:44, 37:27]
-PASS -- TEST 'cpld_control_p8_faster_intel' [19:15, 01:56](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [11:33, 11:16]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:27, 01:43](1598 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:28, 00:55](900 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 01:00](1581 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:29, 09:13]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:31, 01:14](1617 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [34:38, 34:06]
-PASS -- TEST 'control_flake_intel' [18:01, 00:37](576 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [18:01, 00:54](521 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 00:56](529 MB)
-PASS -- TEST 'control_latlon_intel' [17:56, 00:53](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:49, 01:04](528 MB)
-PASS -- TEST 'control_c48_intel' [17:46, 01:10](718 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [17:08, 00:58](714 MB)
-PASS -- TEST 'control_c192_intel' [17:08, 00:28](641 MB)
-PASS -- TEST 'control_c384_intel' [16:52, 02:03](952 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:28, 01:55](1089 MB)
-PASS -- TEST 'control_stochy_intel' [14:54, 00:28](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [12:19, 01:03](331 MB)
-PASS -- TEST 'control_lndp_intel' [14:23, 00:32](527 MB)
-PASS -- TEST 'control_iovr4_intel' [14:21, 00:46](525 MB)
-PASS -- TEST 'control_iovr5_intel' [14:16, 00:44](525 MB)
-PASS -- TEST 'control_p8_intel' [14:11, 01:38](1498 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [14:09, 02:01](1511 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [14:01, 02:01](1504 MB)
-PASS -- TEST 'control_restart_p8_intel' [09:00, 01:03](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [13:46, 01:38](1495 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 00:41](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [13:42, 01:33](1497 MB)
-PASS -- TEST 'control_2threads_p8_intel' [13:30, 01:09](1594 MB)
-PASS -- TEST 'control_p8_lndp_intel' [13:29, 01:11](1510 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 01:01](1558 MB)
-PASS -- TEST 'control_p8_mynn_intel' [12:29, 01:49](1511 MB)
-PASS -- TEST 'merra2_thompson_intel' [12:27, 01:32](1513 MB)
-PASS -- TEST 'regional_control_intel' [12:21, 00:22](610 MB)
-PASS -- TEST 'regional_restart_intel' [06:36, 00:30](779 MB)
-PASS -- TEST 'regional_decomp_intel' [12:17, 01:07](607 MB)
-PASS -- TEST 'regional_2threads_intel' [12:04, 01:01](666 MB)
-PASS -- TEST 'regional_noquilt_intel' [11:57, 00:29](1141 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:24, 00:30](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:13, 00:23](609 MB)
-PASS -- TEST 'regional_wofs_intel' [11:07, 01:04](1583 MB)
-
-PASS -- COMPILE 'rrfs_intel' [18:54, 17:44]
-PASS -- TEST 'rap_control_intel' [29:35, 01:45](914 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:36, 01:22](1089 MB)
-PASS -- TEST 'rap_decomp_intel' [29:35, 01:31](917 MB)
-PASS -- TEST 'rap_2threads_intel' [29:35, 01:42](1009 MB)
-PASS -- TEST 'rap_restart_intel' [20:21, 01:25](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [29:35, 02:03](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:35, 01:49](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [20:01, 01:52](785 MB)
-PASS -- TEST 'hrrr_control_intel' [29:35, 00:59](913 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [29:35, 00:55](906 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [29:36, 01:22](996 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [24:23, 01:04](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [29:35, 01:15](906 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [29:35, 00:58](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:35, 01:18](1862 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:29, 08:59]
-PASS -- TEST 'control_csawmg_intel' [37:59, 00:30](600 MB)
-PASS -- TEST 'control_csawmgt_intel' [37:59, 00:35](599 MB)
-PASS -- TEST 'control_ras_intel' [37:59, 01:03](560 MB)
-
-PASS -- COMPILE 'wam_intel' [11:36, 10:31]
-PASS -- TEST 'control_wam_intel' [34:51, 01:00](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 22:13]
-PASS -- TEST 'control_p8_faster_intel' [23:10, 01:59](1508 MB)
-PASS -- TEST 'regional_control_faster_intel' [21:10, 00:34](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:39, 11:08]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:31, 01:17](691 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:31, 01:22](692 MB)
-PASS -- TEST 'control_stochy_debug_intel' [29:31, 00:52](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [29:31, 01:12](698 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [29:31, 00:33](732 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [29:31, 00:47](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [29:31, 01:10](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [29:31, 01:13](747 MB)
-PASS -- TEST 'control_debug_p8_intel' [29:31, 01:05](1518 MB)
-PASS -- TEST 'regional_debug_intel' [26:25, 01:08](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [26:02, 01:06](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [25:37, 01:03](1070 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [24:59, 00:58](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [24:57, 01:01](1074 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:57, 01:00](1077 MB)
-PASS -- TEST 'rap_diag_debug_intel' [24:54, 00:56](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:52, 00:45](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:51, 00:58](1076 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [24:44, 01:04](1075 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [24:23, 00:57](1072 MB)
-PASS -- TEST 'rap_noah_debug_intel' [23:42, 01:05](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [23:41, 01:00](1074 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:59, 01:03](1073 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [20:59, 01:15](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [20:54, 00:19](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [20:21, 01:01](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:01, 01:25](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [21:08, 20:19]
-PASS -- TEST 'control_wam_debug_intel' [10:53, 01:06](300 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:50, 12:35]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:48, 01:22](952 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:47, 01:23](793 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:55, 01:59](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:48, 01:59](849 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:14, 01:32](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:12, 02:09](787 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 01:27](690 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:48, 00:23](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:08, 20:12]
-PASS -- TEST 'conus13km_control_intel' [10:24, 01:06](1004 MB)
-PASS -- TEST 'conus13km_2threads_intel' [06:34, 00:56](1005 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 00:50](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:51, 12:43]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:11, 01:29](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:39, 12:54]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 01:09](951 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:51, 00:21](950 MB)
-PASS -- TEST 'conus13km_debug_intel' [09:19, 00:49](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [09:08, 00:44](711 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 00:46](1036 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:39, 00:44](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:53, 18:55]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 01:05](978 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:44, 11:41]
-PASS -- TEST 'hafs_regional_atm_intel' [08:20, 02:13](616 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 00:43](963 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:22, 01:57](665 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [07:21, 02:06](699 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:11, 02:07](705 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 01:24](383 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 01:29](401 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 01:41](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:40, 02:27](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:34, 01:40](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 01:03](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:36, 00:54](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:34, 00:22](320 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:24, 05:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:35, 01:04](510 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:54, 17:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:08, 00:58](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:08, 00:53](710 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:40, 11:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:43, 01:02](714 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:51, 16:09]
-PASS -- TEST 'hafs_regional_docn_intel' [02:26, 01:42](666 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:26, 01:46](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:24, 00:38](880 MB)
-
-PASS -- COMPILE 'atml_intel' [21:02, 19:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:59, 01:18](1549 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [56:59, 01:16](1540 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [50:18, 00:18](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:47, 12:34]
-PASS -- TEST 'atmaero_control_p8_intel' [03:03, 01:31](2855 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [03:03, 00:55](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:03, 01:47](2921 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:45, 12:50]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:43, 08:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [04:14, 01:46](4434 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [46:01, 44:47]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 01:19](2972 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:13, 27:03]
+PASS -- TEST 'cpld_control_gfsv17_intel' [29:41, 02:16](1586 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:28, 02:09](1706 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 01:28](845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:42, 01:47](1567 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:28, 04:19]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [52:27, 02:08](1608 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:47, 14:54]
+PASS -- TEST 'cpld_control_p8_intel' [42:07, 01:23](3003 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:07, 01:35](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [33:48, 01:58](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [42:07, 01:23](3028 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [33:47, 01:56](3081 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [42:07, 01:10](3320 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [42:07, 01:26](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [42:08, 01:33](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:07, 01:40](3003 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [42:16, 03:15](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:44, 04:01](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [42:07, 01:54](2966 MB)
+
+PASS -- COMPILE 's2sw_intel' [26:08, 25:27]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [31:45, 00:53](1584 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [31:45, 01:01](1639 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:45, 14:23]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:08, 00:59](1634 MB)
+
+PASS -- COMPILE 's2s_intel' [10:36, 09:47]
+PASS -- TEST 'cpld_control_c48_intel' [47:16, 00:48](2651 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:28]
+PASS -- TEST 'cpld_control_p8_faster_intel' [41:03, 01:47](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:50, 16:05]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:03, 01:29](1604 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [23:16, 00:50](900 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:17, 00:59](1582 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:45]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:04, 01:30](1618 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [40:48, 40:35]
+PASS -- TEST 'control_flake_intel' [11:37, 00:27](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [11:37, 00:50](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:37, 00:51](528 MB)
+PASS -- TEST 'control_latlon_intel' [11:37, 00:46](524 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:37, 00:52](523 MB)
+PASS -- TEST 'control_c48_intel' [11:36, 00:54](718 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:36, 00:58](718 MB)
+PASS -- TEST 'control_c192_intel' [11:37, 00:25](641 MB)
+PASS -- TEST 'control_c384_intel' [11:41, 01:05](949 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:41, 01:56](1090 MB)
+PASS -- TEST 'control_stochy_intel' [11:37, 00:27](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [09:09, 01:00](327 MB)
+PASS -- TEST 'control_lndp_intel' [11:37, 00:28](526 MB)
+PASS -- TEST 'control_iovr4_intel' [11:37, 00:47](525 MB)
+PASS -- TEST 'control_iovr5_intel' [11:37, 00:47](525 MB)
+PASS -- TEST 'control_p8_intel' [11:37, 01:40](1513 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:37, 02:00](1507 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:37, 02:01](1511 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:22, 01:04](689 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:37, 01:40](1490 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:21, 01:09](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [11:37, 01:31](1501 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:37, 01:22](1590 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:37, 01:23](1500 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 01:04](1554 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:06, 01:53](1513 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:24, 01:38](1514 MB)
+PASS -- TEST 'regional_control_intel' [09:07, 00:26](608 MB)
+PASS -- TEST 'regional_restart_intel' [03:17, 00:27](776 MB)
+PASS -- TEST 'regional_decomp_intel' [08:17, 00:11](606 MB)
+PASS -- TEST 'regional_2threads_intel' [08:05, 01:06](667 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:01, 00:30](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 00:29](611 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:01, 00:22](611 MB)
+PASS -- TEST 'regional_wofs_intel' [07:53, 01:03](1578 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:40, 13:07]
+PASS -- TEST 'rap_control_intel' [33:36, 01:11](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:37, 01:14](1097 MB)
+PASS -- TEST 'rap_decomp_intel' [33:36, 01:48](919 MB)
+PASS -- TEST 'rap_2threads_intel' [33:36, 01:51](1008 MB)
+PASS -- TEST 'rap_restart_intel' [25:04, 01:31](784 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [33:36, 01:18](917 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:36, 01:42](914 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [25:02, 02:00](783 MB)
+PASS -- TEST 'hrrr_control_intel' [33:36, 01:09](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [33:36, 01:03](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [33:37, 01:32](999 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [28:25, 01:06](743 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [33:36, 01:19](908 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [33:36, 01:16](1879 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:36, 00:24](1858 MB)
+
+PASS -- COMPILE 'csawmg_intel' [25:05, 24:00]
+PASS -- TEST 'control_csawmg_intel' [18:03, 00:26](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [18:03, 00:29](599 MB)
+PASS -- TEST 'control_ras_intel' [18:03, 00:56](559 MB)
+
+PASS -- COMPILE 'wam_intel' [12:38, 12:20]
+PASS -- TEST 'control_wam_intel' [29:28, 00:55](272 MB)
+
+FAIL TO RUN -- COMPILE 'atm_faster_dyn32_intel' [, ]
+MISSING -- TEST 'control_p8_faster_intel' [, ]( MB)
+MISSING -- TEST 'regional_control_faster_intel' [, ]( MB)
+
+FAIL TO RUN -- COMPILE 'atm_debug_dyn32_intel' [, ]
+MISSING -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_stochy_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_lndp_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_csawmg_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_csawmgt_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_ras_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_diag_debug_intel' [, ]( MB)
+MISSING -- TEST 'control_debug_p8_intel' [, ]( MB)
+MISSING -- TEST 'regional_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_control_debug_intel' [, ]( MB)
+MISSING -- TEST 'hrrr_control_debug_intel' [, ]( MB)
+MISSING -- TEST 'hrrr_gf_debug_intel' [, ]( MB)
+MISSING -- TEST 'hrrr_c3_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_diag_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_lndp_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_noah_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB)
+MISSING -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_clm_lake_debug_intel' [, ]( MB)
+MISSING -- TEST 'rap_flake_debug_intel' [, ]( MB)
+MISSING -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'wam_debug_intel' [22:01, 21:22]
+PASS -- TEST 'control_wam_debug_intel' [21:11, 00:50](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:27, 31:14]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:09, 01:24](950 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:08, 01:22](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:08, 01:43](785 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:08, 01:52](853 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:09, 01:34](840 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:08, 01:34](787 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:38, 01:40](685 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:57, 00:22](666 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:55, 18:53]
+PASS -- TEST 'conus13km_control_intel' [11:49, 01:17](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [07:46, 00:56](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [07:46, 00:43](879 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 11:47]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:01, 01:32](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:50, 42:30]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:37, 01:18](956 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:37, 01:25](955 MB)
+PASS -- TEST 'conus13km_debug_intel' [46:37, 00:48](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [46:37, 00:37](711 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [46:38, 00:56](1039 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [46:37, 00:42](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [34:29, 33:56]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:34, 01:05](977 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:57, 20:01]
+PASS -- TEST 'hafs_regional_atm_intel' [56:06, 01:20](620 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [56:06, 00:53](964 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [56:04, 02:06](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [56:04, 02:12](695 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:05, 01:51](704 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [56:04, 01:22](388 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:05, 01:23](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [56:05, 01:39](282 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:08, 02:43](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:04, 00:42](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [56:04, 01:03](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [56:06, 00:54](490 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [56:05, 00:26](313 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:47, 14:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:08, 00:58](499 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:53, 17:43]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [52:59, 01:06](525 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:59, 01:01](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [26:06, 25:11]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [45:34, 01:06](712 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:48, 13:47]
+PASS -- TEST 'hafs_regional_docn_intel' [46:21, 01:29](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:21, 01:32](648 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:19, 03:40](881 MB)
+
+PASS -- COMPILE 'atml_intel' [14:44, 12:59]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:28, 01:19](1542 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:28, 01:18](1543 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [59:49, 00:21](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:39, 10:12]
+PASS -- TEST 'atmaero_control_p8_intel' [08:32, 01:36](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 00:58](2910 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 01:45](2923 MB)
+
+FAIL TO RUN -- COMPILE 'atmaq_intel' [, ]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:30, 06:58]
+PASS -- TEST 'regional_atmaq_debug_intel' [12:41, 01:04](4441 MB)
SYNOPSIS:
-Starting Date/Time: 20240223 15:01:47
-Ending Date/Time: 20240223 16:22:18
-Total Time: 01h:20m:56s
-Compiles Completed: 31/31
-Tests Completed: 157/157
+Starting Date/Time: 20240229 13:01:47
+Ending Date/Time: 20240229 15:12:48
+Total Time: 02h:11m:29s
+Compiles Completed: 28/31
+Tests Completed: 128/157
+Failed Compiles:
+* COMPILE atm_faster_dyn32_intel: FAIL TO RUN
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_faster_dyn32_intel.log
+* COMPILE atm_debug_dyn32_intel: FAIL TO RUN
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_debug_dyn32_intel.log
+* COMPILE atmaq_intel: FAIL TO RUN
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atmaq_intel.log
+Failed Tests:
+* TEST control_p8_faster_intel: MISSING
+-- LOG: N/A
+* TEST regional_control_faster_intel: MISSING
+-- LOG: N/A
+* TEST control_CubedSphereGrid_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_wrtGauss_netcdf_parallel_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_stochy_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_lndp_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_csawmg_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_csawmgt_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_ras_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_diag_debug_intel: MISSING
+-- LOG: N/A
+* TEST control_debug_p8_intel: MISSING
+-- LOG: N/A
+* TEST regional_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_control_debug_intel: MISSING
+-- LOG: N/A
+* TEST hrrr_control_debug_intel: MISSING
+-- LOG: N/A
+* TEST hrrr_gf_debug_intel: MISSING
+-- LOG: N/A
+* TEST hrrr_c3_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_unified_drag_suite_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_diag_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_cires_ugwp_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_unified_ugwp_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_lndp_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_progcld_thompson_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_noah_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_sfcdiff_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: MISSING
+-- LOG: N/A
+* TEST rrfs_v1beta_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_clm_lake_debug_intel: MISSING
+-- LOG: N/A
+* TEST rap_flake_debug_intel: MISSING
+-- LOG: N/A
+* TEST gnv1_c96_no_nest_debug_intel: MISSING
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF WCOSS2 REGRESSION TESTING LOG====
+====START OF WCOSS2 REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+870b560324452362e10a1cdace0b2941e445d7f0
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_198527
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-l) - USE CONFIG FILE: rt.test
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [23:00, 08:41]
+PASS -- TEST 'control_p8_faster_intel' [29:49, 01:06](1500 MB)
+PASS -- TEST 'regional_control_faster_intel' [29:48, 00:40](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [18:52, 04:07]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:58, 00:31](684 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:58, 01:04](691 MB)
+PASS -- TEST 'control_stochy_debug_intel' [33:58, 01:00](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [33:58, 01:11](693 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [33:58, 00:40](735 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [33:58, 00:48](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [33:58, 00:48](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [33:58, 01:13](747 MB)
+PASS -- TEST 'control_debug_p8_intel' [22:52, 01:02](1520 MB)
+PASS -- TEST 'regional_debug_intel' [33:57, 00:59](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [33:58, 01:11](1077 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [33:58, 00:16](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [33:58, 00:16](1070 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [33:58, 01:03](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:58, 00:35](1073 MB)
+PASS -- TEST 'rap_diag_debug_intel' [33:58, 00:48](1159 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:58, 00:56](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:05, 00:49](1076 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [33:58, 00:19](1076 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:58, 00:26](1072 MB)
+PASS -- TEST 'rap_noah_debug_intel' [25:09, 00:39](1076 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [33:58, 01:17](1070 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:58, 00:17](1069 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [33:58, 00:46](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [33:58, 00:16](1076 MB)
+PASS -- TEST 'rap_flake_debug_intel' [33:58, 01:05](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:58, 01:11](1078 MB)
+
+PASS -- COMPILE 'atmaq_intel' [23:01, 08:22]
+
+SYNOPSIS:
+Starting Date/Time: 20240229 18:07:06
+Ending Date/Time: 20240229 18:52:29
+Total Time: 00h:45m:35s
+Compiles Completed: 3/3
+Tests Completed: 29/29
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/rt.sh b/tests/rt.sh
index 62f49d459f..0350e45ab8 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -82,49 +82,60 @@ update_rtconf() {
[[ ${#line} == 0 ]] && continue
[[ $line == \#* ]] && continue
- if [[ $line == COMPILE* ]] ; then
- COMPILE_LINE_USED=false
+ if [[ $line =~ COMPILE ]] ; then
MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
-
if [[ ${MACHINES} == '' ]]; then
compile_line=$line
+ COMPILE_LINE_USED=false
elif [[ ${MACHINES} == -* ]]; then
- [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false
elif [[ ${MACHINES} == +* ]]; then
- [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line; COMPILE_LINE_USED=false
fi
fi
if [[ $line =~ RUN ]]; then
+ to_run_test=false
tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}")
-
- if [[ $TEST_IDX != -1 ]]; then
- if [[ $COMPILE_LINE_USED == false ]]; then
- echo "$compile_line" >> $RT_TEMP_CONF
- COMPILE_LINE_USED=true
- fi
- dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
+ MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
+ if [[ ${MACHINES} == '' ]]; then
+ to_run_test=true
+ elif [[ ${MACHINES} == -* ]]; then
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] || to_run_test=true
+ elif [[ ${MACHINES} == +* ]]; then
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] && to_run_test=true
+ fi
+ if [[ $to_run_test == true ]]; then
+ TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}")
+
+ if [[ $TEST_IDX != -1 ]]; then
+ if [[ $COMPILE_LINE_USED == false ]]; then
+ echo -en '\n' >> $RT_TEMP_CONF
+ echo "$compile_line" >> $RT_TEMP_CONF
+ COMPILE_LINE_USED=true
+ fi
+ dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
- if [[ $dep_test != '' ]]; then
- if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then
-
- dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test")
- dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}"
- dep_line=$(echo "${dep_line}" | tr -d '\n')
- CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line")
- CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line")
+ if [[ $dep_test != '' ]]; then
+ if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then
+
+ dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test")
+ dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}"
+ dep_line=$(echo "${dep_line}" | tr -d '\n')
+ CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line")
+ CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line")
- if [[ $RT_COMPILER_IN == "intel" ]]; then
- echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF
- elif [[ $RT_COMPILER_IN == "gnu" ]]; then
- echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF
+ if [[ $RT_COMPILER_IN == "intel" ]]; then
+ echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF
+ elif [[ $RT_COMPILER_IN == "gnu" ]]; then
+ echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF
+ fi
fi
fi
- fi
- echo "$line" >> $RT_TEMP_CONF
+ echo "$line" >> $RT_TEMP_CONF
+ fi
fi
fi
done < "$TESTS_FILE"
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e69de29bb2..b5585d8b91 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -0,0 +1,193 @@
+cpld_control_p8_mixedmode intel
+cpld_control_gfsv17 intel
+cpld_control_gfsv17_iau intel
+cpld_restart_gfsv17 intel
+cpld_mpi_gfsv17 intel
+cpld_debug_gfsv17 intel
+cpld_control_p8 intel
+cpld_control_p8.v2.sfc intel
+cpld_restart_p8 intel
+cpld_control_qr_p8 intel
+cpld_restart_qr_p8 intel
+cpld_2threads_p8 intel
+cpld_decomp_p8 intel
+cpld_mpi_p8 intel
+cpld_control_ciceC_p8 intel
+cpld_control_c192_p8 intel
+cpld_restart_c192_p8 intel
+cpld_bmark_p8 intel
+cpld_restart_bmark_p8 intel
+cpld_s2sa_p8 intel
+cpld_control_noaero_p8 intel
+cpld_control_nowave_noaero_p8 intel
+cpld_debug_p8 intel
+cpld_debug_noaero_p8 intel
+cpld_control_noaero_p8_agrid intel
+cpld_control_c48 intel
+cpld_control_p8_faster intel
+cpld_control_pdlib_p8 intel
+cpld_restart_pdlib_p8 intel
+cpld_mpi_pdlib_p8 intel
+cpld_debug_pdlib_p8 intel
+control_flake intel
+control_CubedSphereGrid intel
+control_CubedSphereGrid_parallel intel
+control_latlon intel
+control_wrtGauss_netcdf_parallel intel
+control_c48 intel
+control_c48.v2.sfc intel
+control_c192 intel
+control_c384 intel
+control_c384gdas intel
+control_stochy intel
+control_stochy_restart intel
+control_lndp intel
+control_iovr4 intel
+control_iovr5 intel
+control_p8 intel
+control_p8.v2.sfc intel
+control_p8_ugwpv1 intel
+control_restart_p8 intel
+control_noqr_p8 intel
+control_restart_noqr_p8 intel
+control_decomp_p8 intel
+control_2threads_p8 intel
+control_p8_lndp intel
+control_p8_rrtmgp intel
+control_p8_mynn intel
+merra2_thompson intel
+rap_control intel
+rap_decomp intel
+rap_2threads intel
+rap_restart intel
+rap_sfcdiff intel
+rap_sfcdiff_decomp intel
+rap_sfcdiff_restart intel
+hrrr_control intel
+hrrr_control_decomp intel
+hrrr_control_2threads intel
+hrrr_control_restart intel
+rrfs_v1beta intel
+rrfs_v1nssl intel
+rrfs_v1nssl_nohailnoccn intel
+control_csawmg intel
+control_csawmgt intel
+control_ras intel
+control_wam intel
+control_p8_faster intel
+control_CubedSphereGrid_debug intel
+control_wrtGauss_netcdf_parallel_debug intel
+control_stochy_debug intel
+control_lndp_debug intel
+control_csawmg_debug intel
+control_csawmgt_debug intel
+control_ras_debug intel
+control_diag_debug intel
+control_debug_p8 intel
+rap_control_debug intel
+hrrr_control_debug intel
+hrrr_gf_debug intel
+hrrr_c3_debug intel
+rap_unified_drag_suite_debug intel
+rap_diag_debug intel
+rap_cires_ugwp_debug intel
+rap_unified_ugwp_debug intel
+rap_lndp_debug intel
+rap_progcld_thompson_debug intel
+rap_noah_debug intel
+rap_sfcdiff_debug intel
+rap_noah_sfcdiff_cires_ugwp_debug intel
+rrfs_v1beta_debug intel
+rap_clm_lake_debug intel
+rap_flake_debug intel
+gnv1_c96_no_nest_debug intel
+control_wam_debug intel
+rap_control_dyn32_phy32 intel
+hrrr_control_dyn32_phy32 intel
+rap_2threads_dyn32_phy32 intel
+hrrr_control_2threads_dyn32_phy32 intel
+hrrr_control_decomp_dyn32_phy32 intel
+rap_restart_dyn32_phy32 intel
+hrrr_control_restart_dyn32_phy32 intel
+conus13km_control intel
+conus13km_2threads intel
+conus13km_restart_mismatch intel
+rap_control_dyn64_phy32 intel
+rap_control_debug_dyn32_phy32 intel
+hrrr_control_debug_dyn32_phy32 intel
+conus13km_debug intel
+conus13km_debug_qr intel
+conus13km_debug_2threads intel
+conus13km_radar_tten_debug intel
+rap_control_dyn64_phy32_debug intel
+hafs_global_1nest_atm intel
+hafs_global_multiple_4nests_atm intel
+hafs_global_storm_following_1nest_atm intel
+gnv1_nested intel
+control_p8_atmlnd_sbs intel
+control_p8_atmlnd intel
+control_restart_p8_atmlnd intel
+atmwav_control_noaero_p8 intel
+control_atmwav intel
+atmaero_control_p8 intel
+atmaero_control_p8_rad intel
+atmaero_control_p8_rad_micro intel
+control_c48 gnu
+control_stochy gnu
+control_ras gnu
+control_p8 gnu
+control_p8_ugwpv1 gnu
+control_flake gnu
+rap_control gnu
+rap_decomp gnu
+rap_2threads gnu
+rap_restart gnu
+rap_sfcdiff gnu
+rap_sfcdiff_decomp gnu
+rap_sfcdiff_restart gnu
+hrrr_control gnu
+hrrr_control_noqr gnu
+hrrr_control_2threads gnu
+hrrr_control_decomp gnu
+hrrr_control_restart gnu
+hrrr_control_restart_noqr gnu
+rrfs_v1beta gnu
+control_diag_debug gnu
+rap_control_debug gnu
+hrrr_control_debug gnu
+hrrr_gf_debug gnu
+hrrr_c3_debug gnu
+rap_diag_debug gnu
+rap_noah_sfcdiff_cires_ugwp_debug gnu
+rap_progcld_thompson_debug gnu
+rrfs_v1beta_debug gnu
+control_ras_debug gnu
+control_stochy_debug gnu
+control_debug_p8 gnu
+rap_flake_debug gnu
+rap_clm_lake_debug gnu
+gnv1_c96_no_nest_debug gnu
+control_wam_debug gnu
+rap_control_dyn32_phy32 gnu
+hrrr_control_dyn32_phy32 gnu
+rap_2threads_dyn32_phy32 gnu
+hrrr_control_2threads_dyn32_phy32 gnu
+hrrr_control_decomp_dyn32_phy32 gnu
+rap_restart_dyn32_phy32 gnu
+hrrr_control_restart_dyn32_phy32 gnu
+conus13km_control gnu
+conus13km_2threads gnu
+conus13km_restart_mismatch gnu
+rap_control_dyn64_phy32 gnu
+rap_control_debug_dyn32_phy32 gnu
+hrrr_control_debug_dyn32_phy32 gnu
+conus13km_debug gnu
+conus13km_debug_qr gnu
+conus13km_debug_2threads gnu
+conus13km_radar_tten_debug gnu
+rap_control_dyn64_phy32_debug gnu
+cpld_control_p8 gnu
+cpld_control_nowave_noaero_p8 gnu
+cpld_debug_p8 gnu
+cpld_control_pdlib_p8 gnu
+cpld_debug_pdlib_p8 gnu
From 458486087147216a9154f2169f8a338ff747943c Mon Sep 17 00:00:00 2001
From: jiandewang
Date: Mon, 4 Mar 2024 17:25:05 -0500
Subject: [PATCH 07/33] update MOM6 to its main repo. 20240228 updating (#2166)
* MOM6 -
update MOM6 to its main repo. 20240228 updating (which is the original GFDL 20231113 candidate PR)
---
MOM6-interface/MOM6 | 2 +-
MOM6-interface/mom6_files.cmake | 7 +-
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 62 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +-
.../OpnReqTests_regional_control_hera.log | 30 +-
tests/logs/RegressionTests_derecho.log | 582 ++++++++------
tests/logs/RegressionTests_gaea.log | 535 ++++++-------
tests/logs/RegressionTests_hera.log | 712 ++++++++---------
tests/logs/RegressionTests_hercules.log | 756 ++++++++++--------
tests/logs/RegressionTests_jet.log | 468 +++++------
tests/logs/RegressionTests_orion.log | 596 +++++++-------
tests/logs/RegressionTests_wcoss2.log | 606 ++++++--------
tests/parm/MOM_input_025.IN | 4 +-
tests/parm/MOM_input_050.IN | 4 +-
tests/parm/MOM_input_100.IN | 4 +-
tests/parm/MOM_input_hafs | 4 +-
tests/test_changes.list | 193 +----
18 files changed, 2221 insertions(+), 2376 deletions(-)
diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6
index c8a7325c04..10521a921d 160000
--- a/MOM6-interface/MOM6
+++ b/MOM6-interface/MOM6
@@ -1 +1 @@
-Subproject commit c8a7325c040b4cb1327c55c8248e8e66972239a5
+Subproject commit 10521a921d2f442de19a0cda240d912fd918c40c
diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake
index 31c4dbb968..fbe95fdce7 100644
--- a/MOM6-interface/mom6_files.cmake
+++ b/MOM6-interface/mom6_files.cmake
@@ -165,6 +165,7 @@ list(APPEND mom6_src_files
MOM6/src/parameterizations/lateral/MOM_thickness_diffuse.F90
MOM6/src/parameterizations/lateral/MOM_tidal_forcing.F90
MOM6/src/parameterizations/lateral/MOM_Zanna_Bolton.F90
+ MOM6/src/parameterizations/lateral/MOM_self_attr_load.F90
MOM6/src/parameterizations/vertical/MOM_ALE_sponge.F90
MOM6/src/parameterizations/vertical/MOM_CVMix_KPP.F90
@@ -305,7 +306,11 @@ list(APPEND mom6_nuopc_src_files
MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90
MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90
MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90
- MOM6/config_src/drivers/unit_tests/MOM_unit_test_driver.F90
+ MOM6/config_src/drivers/unit_tests/test_MOM_file_parser.F90
+ MOM6/config_src/drivers/unit_tests/test_MOM_mixedlayer_restrat.F90
+ MOM6/config_src/drivers/unit_tests/test_MOM_string_functions.F90
+ MOM6/config_src/drivers/unit_tests/test_MOM_EOS.F90
+ MOM6/config_src/drivers/timing_tests/time_MOM_EOS.F90
)
list(APPEND mom6_solo_src_files
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 4462101f2c..cb675814bb 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240227
+export BL_DATE=20240301
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 3fc2ff7201..2a4d5d6017 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Feb 28 15:14:11 UTC 2024
+Sun Mar 3 15:10:20 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/bit_base_bit_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 281.461889
- 0: The maximum resident set size (KB) = 1300600
+ 0: The total amount of wall time = 206.262898
+ 0: The maximum resident set size (KB) = 1664072
Test bit_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dbg_base_dbg_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 901.527002
- 0: The maximum resident set size (KB) = 1282896
+ 0: The total amount of wall time = 1931.255793
+ 0: The maximum resident set size (KB) = 1628724
Test dbg_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dcp_dcp
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 249.770627
- 0: The maximum resident set size (KB) = 1280800
+ 0: The total amount of wall time = 168.775150
+ 0: The maximum resident set size (KB) = 1604912
Test dcp PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/mpi_mpi
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 252.183005
- 0: The maximum resident set size (KB) = 1280256
+ 0: The total amount of wall time = 170.717061
+ 0: The maximum resident set size (KB) = 1584476
Test mpi PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/rst_rst
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 249.439187
- 0: The maximum resident set size (KB) = 1279912
+ 0: The total amount of wall time = 167.829834
+ 0: The maximum resident set size (KB) = 1616120
Test rst PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 255.032590
- 0: The maximum resident set size (KB) = 1278480
+ 0: The total amount of wall time = 168.444300
+ 0: The maximum resident set size (KB) = 1614116
Test std_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/thr_thr
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 251.992809
- 0: The maximum resident set size (KB) = 1280792
+ 0: The total amount of wall time = 168.208168
+ 0: The maximum resident set size (KB) = 1619560
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 28 16:27:22 UTC 2024
-Elapsed time: 01h:13m:11s. Have a nice day!
+Sun Mar 3 20:42:09 UTC 2024
+Elapsed time: 05h:31m:49s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 27ff848110..93985761ae 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Feb 28 18:25:43 UTC 2024
+Mon Mar 4 04:04:26 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/dbg_base_dbg_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1260.280333
- 0: The maximum resident set size (KB) = 1412828
+ 0: The total amount of wall time = 2564.304437
+ 0: The maximum resident set size (KB) = 1788520
Test dbg_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/rst_rst
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 384.587401
- 0: The maximum resident set size (KB) = 1391428
+ 0: The total amount of wall time = 258.937982
+ 0: The maximum resident set size (KB) = 1735268
Test rst PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 383.528966
- 0: The maximum resident set size (KB) = 1394880
+ 0: The total amount of wall time = 264.851616
+ 0: The maximum resident set size (KB) = 1759076
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 28 21:03:16 UTC 2024
-Elapsed time: 02h:37m:33s. Have a nice day!
+Mon Mar 4 09:15:30 UTC 2024
+Elapsed time: 05h:11m:05s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index b38e4a5e4d..bc7607fc98 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Wed Feb 28 17:31:35 UTC 2024
+Sun Mar 3 20:58:22 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/dcp_dcp
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 516.796008
- 0: The maximum resident set size (KB) = 590124
+ 0: The total amount of wall time = 295.986214
+ 0: The maximum resident set size (KB) = 844440
Test dcp PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 512.332064
- 0: The maximum resident set size (KB) = 590524
+ 0: The total amount of wall time = 299.701407
+ 0: The maximum resident set size (KB) = 831600
Test std_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/thr_thr
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 517.910868
- 0: The maximum resident set size (KB) = 586524
+ 0: The total amount of wall time = 298.422637
+ 0: The maximum resident set size (KB) = 846452
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Feb 28 18:13:30 UTC 2024
-Elapsed time: 00h:41m:55s. Have a nice day!
+Sun Mar 3 21:51:52 UTC 2024
+Elapsed time: 00h:53m:31s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index f10138dcac..4c47d26d67 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-3951b805f6c6071a13b4686f8fd00e93840f5040
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,273 +24,333 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_106920
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2436
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:21, 21:34]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:08, 05:12](3076 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:21, 22:11]
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:55, 14:03](1685 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 15:21](1820 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 07:31](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:15, 16:01](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 11:20]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [34:08, 21:57](1706 MB)
-
-PASS -- COMPILE 's2swa_intel' [26:17, 21:09]
-PASS -- TEST 'cpld_control_p8_intel' [10:56, 05:52](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:03, 05:52](3088 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [25:23, 03:25](3146 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 05:52](3120 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [25:23, 03:28](3175 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:44, 05:45](3088 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:40, 04:50](3382 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:05, 05:46](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 09:05](3634 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [26:26, 06:18](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:12](4342 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [37:35, 07:44](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:28, 05:30](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [26:17, 20:38]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 04:24](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 04:26](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [17:17, 11:20]
-PASS -- TEST 'cpld_debug_p8_intel' [20:18, 08:06](3150 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [16:03, 10:47]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:32, 05:56](1705 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [21:19, 15:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:13, 04:29](1723 MB)
-
-PASS -- COMPILE 's2s_intel' [21:19, 16:09]
-PASS -- TEST 'cpld_control_c48_intel' [13:21, 06:40](2675 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [30:17, 24:49]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:05, 05:44](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [34:22, 22:26]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:32, 14:10](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:54, 07:37](1010 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:08](1664 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:03, 11:35]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:09, 22:45](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [25:10, 14:23]
-PASS -- TEST 'control_flake_intel' [19:06, 03:29](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:14, 02:11](616 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:15, 02:14](622 MB)
-PASS -- TEST 'control_latlon_intel' [05:24, 02:06](617 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:11](617 MB)
-PASS -- TEST 'control_c48_intel' [08:26, 05:15](735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 05:16](734 MB)
-PASS -- TEST 'control_c192_intel' [10:38, 07:54](737 MB)
-PASS -- TEST 'control_c384_intel' [16:34, 08:29](1059 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:33, 07:36](1199 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:28](622 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:16, 00:58](439 MB)
-PASS -- TEST 'control_lndp_intel' [03:42, 01:24](623 MB)
-PASS -- TEST 'control_iovr4_intel' [04:23, 02:10](620 MB)
-PASS -- TEST 'control_iovr5_intel' [04:20, 02:12](617 MB)
-PASS -- TEST 'control_p8_intel' [06:11, 02:35](1592 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:10, 02:32](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 02:31](1604 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:41, 01:36](796 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:38, 02:36](1580 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 01:35](802 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:36, 02:41](1585 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:22, 04:33](1601 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 03:29](1650 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:42, 02:38](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:46, 03:06](1603 MB)
-PASS -- TEST 'regional_control_intel' [07:05, 04:34](629 MB)
-PASS -- TEST 'regional_restart_intel' [04:58, 02:30](799 MB)
-PASS -- TEST 'regional_decomp_intel' [07:05, 04:47](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:21, 04:26](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:20, 04:29](628 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:10, 04:28](630 MB)
-PASS -- TEST 'regional_wofs_intel' [07:59, 05:39](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [20:09, 13:06]
-PASS -- TEST 'rap_control_intel' [09:02, 06:10](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:07, 04:04](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [09:23, 06:30](1004 MB)
-PASS -- TEST 'rap_restart_intel' [06:09, 03:22](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:13](1002 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:22, 06:29](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:19, 04:40](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:12, 03:18](995 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:22, 03:22](997 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 02:52](1090 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:49](830 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:02, 06:04](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 07:29](1953 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:22, 07:18](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [19:01, 11:57]
-PASS -- TEST 'control_csawmg_intel' [07:59, 05:18](691 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:59, 05:16](691 MB)
-PASS -- TEST 'control_ras_intel' [04:19, 02:57](654 MB)
-
-PASS -- COMPILE 'wam_intel' [12:19, 10:28]
-PASS -- TEST 'control_wam_intel' [20:11, 02:00](381 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:27, 13:57]
-PASS -- TEST 'control_p8_faster_intel' [05:25, 02:26](1593 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:53, 04:19](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:56, 10:04]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:55, 02:36](793 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:59, 02:34](796 MB)
-PASS -- TEST 'control_stochy_debug_intel' [20:49, 02:53](801 MB)
-PASS -- TEST 'control_lndp_debug_intel' [20:52, 02:40](795 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [22:21, 04:01](839 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [22:25, 04:00](835 MB)
-PASS -- TEST 'control_ras_debug_intel' [20:49, 02:37](804 MB)
-PASS -- TEST 'control_diag_debug_intel' [22:20, 02:44](857 MB)
-PASS -- TEST 'control_debug_p8_intel' [20:18, 02:45](1628 MB)
-PASS -- TEST 'regional_debug_intel' [33:31, 16:03](666 MB)
-PASS -- TEST 'rap_control_debug_intel' [23:18, 04:43](1177 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [23:18, 04:38](1174 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [23:18, 04:44](1181 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [23:17, 04:39](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:18, 04:44](1182 MB)
-PASS -- TEST 'rap_diag_debug_intel' [24:57, 04:57](1265 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:19, 04:48](1180 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:18, 04:48](1180 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:45](1215 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:35, 04:49](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:38](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:45](1180 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:37](1178 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 04:38](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:14, 05:51](1185 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:33, 04:46](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:09, 08:10](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:58, 06:29]
-PASS -- TEST 'control_wam_debug_intel' [27:04, 04:48](432 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:09, 11:00]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:19, 03:49](1056 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:14](880 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:10, 02:59](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:02](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:29, 03:56](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:35](776 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:17, 12:56]
-PASS -- TEST 'conus13km_control_intel' [07:14, 01:58](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:53, 01:06](1084 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:05, 01:12](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:01, 10:53]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 03:40](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:03, 06:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 04:37](1053 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:29](1215 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:19, 13:28](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:18, 13:45](818 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:12, 14:03](1198 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:18, 06:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:44](1079 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:18, 17:13]
-PASS -- TEST 'hafs_regional_atm_intel' [07:47, 04:54](713 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 05:25](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:15, 06:45](778 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:29, 11:03](794 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:46, 12:05](797 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](1255 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 05:59](492 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:12, 02:28](386 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 06:39](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:29](506 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:14](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:32, 04:04](584 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:22](423 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:56, 03:35](786 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [25:13, 08:25]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:58, 12:13](613 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [36:11, 21:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:22](630 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:59, 07:24](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [32:07, 18:26]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:11, 05:31](673 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [27:12, 15:29]
-PASS -- TEST 'hafs_regional_docn_intel' [09:40, 05:48](1215 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:42, 05:50](1255 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:40, 16:15](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:59, 08:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:33](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:09, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](641 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:26](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:31](747 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:33, 05:47](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:14, 05:44](670 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:32](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:45, 04:04](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 04:00](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:46, 06:19]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](733 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:02, 08:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:29](750 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 03:04]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:43, 01:19](302 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:21](450 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:52](455 MB)
-
-PASS -- COMPILE 'atml_intel' [15:56, 14:06]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 08:20](1639 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:01, 08:16](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:15, 04:10](847 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:48, 14:08]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 01:39](1633 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:59, 13:29]
-PASS -- TEST 'control_atmwav_intel' [03:59, 01:36](635 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:59, 12:27]
-PASS -- TEST 'atmaero_control_p8_intel' [07:36, 03:41](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:33, 04:21](2997 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:30, 04:33](3012 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:58, 12:03]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:57, 07:35]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:19, 22:25](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:26, 19:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:42, 05:00](3077 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:42]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:18, 13:49](1677 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:02, 15:11](1822 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 07:14](952 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:19, 15:47](1659 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:23, 09:37]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:19, 21:34](1691 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:26, 19:57]
+PASS -- TEST 'cpld_control_p8_intel' [09:46, 05:45](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:49, 05:46](3091 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:00, 03:20](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 05:41](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:00, 03:20](3177 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:21, 05:37](3094 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:26, 04:38](3397 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 05:45](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:29, 08:55](3630 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:39, 06:16](3614 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [29:37, 09:55](4344 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:43, 07:13](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:13, 05:19](3063 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:26, 19:19]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:50, 04:15](1679 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:02, 04:20](1725 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:47]
+PASS -- TEST 'cpld_debug_p8_intel' [10:15, 07:44](3152 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:26, 09:14]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:22](1707 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:24, 14:32]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 04:19](1724 MB)
+
+PASS -- COMPILE 's2s_intel' [15:25, 14:52]
+FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:28, 23:14]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:34, 05:35](3098 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:31, 20:00]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:13, 14:02](1697 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:56, 07:20](1014 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:26, 16:01](1672 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:25, 09:19]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:09, 22:44](1704 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:29, 12:36]
+PASS -- TEST 'control_flake_intel' [04:50, 03:25](665 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:05](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:10, 02:12](625 MB)
+PASS -- TEST 'control_latlon_intel' [04:03, 02:06](618 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 02:06](618 MB)
+PASS -- TEST 'control_c48_intel' [06:46, 05:14](735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 05:12](735 MB)
+PASS -- TEST 'control_c192_intel' [10:42, 07:54](742 MB)
+PASS -- TEST 'control_c384_intel' [15:01, 08:18](1060 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:36, 07:24](1205 MB)
+PASS -- TEST 'control_stochy_intel' [02:57, 01:27](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:47, 00:51](437 MB)
+PASS -- TEST 'control_lndp_intel' [02:57, 01:24](625 MB)
+PASS -- TEST 'control_iovr4_intel' [04:06, 02:08](619 MB)
+PASS -- TEST 'control_iovr5_intel' [03:48, 02:08](622 MB)
+PASS -- TEST 'control_p8_intel' [04:37, 02:30](1602 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:53, 02:29](1602 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:29](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:38, 01:26](796 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:47, 02:32](1580 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:25](803 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:38](1584 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:29, 04:24](1591 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:31, 03:19](1651 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:32, 02:33](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:44, 03:02](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:12, 04:31](632 MB)
+PASS -- TEST 'regional_restart_intel' [04:28, 02:32](799 MB)
+PASS -- TEST 'regional_decomp_intel' [06:10, 04:44](630 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:14, 04:27](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:24](1405 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:18, 04:30](631 MB)
+PASS -- TEST 'regional_wofs_intel' [07:13, 05:36](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:30, 11:22]
+PASS -- TEST 'rap_control_intel' [08:40, 06:08](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:29, 03:57](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [08:36, 06:21](1005 MB)
+PASS -- TEST 'rap_restart_intel' [05:31, 03:12](879 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:30, 06:08](1002 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 06:24](1002 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:36](878 MB)
+PASS -- TEST 'hrrr_control_intel' [05:23, 03:16](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:21](997 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:24, 02:47](1086 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:55, 01:48](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](999 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:50, 07:23](1956 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:26, 10:27]
+PASS -- TEST 'control_csawmg_intel' [07:18, 05:13](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:21, 05:10](692 MB)
+PASS -- TEST 'control_ras_intel' [04:42, 02:53](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:19, 09:43]
+PASS -- TEST 'control_wam_intel' [03:38, 01:54](379 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:33, 12:37]
+PASS -- TEST 'control_p8_faster_intel' [05:03, 02:25](1601 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:11, 04:20](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:49]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:36](792 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:33](793 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:55](801 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:42](1405 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:21, 04:02](837 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:29, 03:54](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:41, 02:37](806 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:29, 02:48](852 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:20, 02:38](1625 MB)
+PASS -- TEST 'regional_debug_intel' [17:22, 15:58](663 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:48, 04:38](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:46, 04:34](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:45, 04:37](1179 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:37](1176 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:44, 04:39](1182 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:26, 04:59](1261 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 04:52](1405 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:46, 04:43](1182 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:38, 04:44](1179 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:38, 04:41](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:35](1174 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:41, 04:42](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 07:30](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:48, 04:38](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 05:46](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:51, 04:45](1182 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:19, 07:54](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:20, 05:22]
+PASS -- TEST 'control_wam_debug_intel' [05:43, 04:39](416 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:23, 09:56]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 03:36](1056 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:09](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:47](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 02:58](882 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 03:53](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 01:35](774 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 12:01]
+PASS -- TEST 'conus13km_control_intel' [04:53, 01:57](1395 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:08, 01:00](1077 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:07, 01:09](972 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:20, 09:57]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:40](905 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:27, 06:03]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:46, 04:37](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:25](1052 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:15, 13:43](1405 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 13:26](813 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:18](1198 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:31]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:40](1082 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:31, 16:04]
+PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:36](713 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:11](1068 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 06:31](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:01, 10:58](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:10, 12:13](808 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:35, 04:45](471 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:45, 05:48](491 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:24](389 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:25, 06:28](459 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:23](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:06](505 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 03:58](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:40, 01:18](425 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:35, 03:30](783 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:20, 07:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 12:06](611 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:36, 19:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:52, 07:20](633 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:59, 07:17](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:59]
+FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:28, 14:25]
+PASS -- TEST 'hafs_regional_docn_intel' [07:34, 05:40](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:47, 05:39](738 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:11](896 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:39, 02:31](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:52, 01:35](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:47, 02:25](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 02:24](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:51, 02:25](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:32](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:36, 02:24](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 05:45](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:13, 05:43](672 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:30](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:03, 03:55](2016 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:38, 03:54](2019 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 05:12]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:10](734 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:31](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:32]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:52, 01:11](309 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:07](454 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:41, 00:45](450 MB)
+
+PASS -- COMPILE 'atml_intel' [14:21, 13:07]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:21, 06:38](1636 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:04, 07:10](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:31, 03:37](847 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:28, 12:48]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:37](1632 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:20, 12:42]
+PASS -- TEST 'control_atmwav_intel' [03:07, 01:30](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:21, 11:24]
+PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:40](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:34](3013 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:19, 10:51]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:30]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:33, 22:17](4528 MB)
SYNOPSIS:
-Starting Date/Time: 20240228 10:13:25
-Ending Date/Time: 20240228 12:18:57
-Total Time: 02h:06m:38s
+Starting Date/Time: 20240303 10:33:14
+Ending Date/Time: 20240303 12:03:38
+Total Time: 01h:31m:03s
Compiles Completed: 39/39
-Tests Completed: 175/175
+Tests Completed: 173/175
+Failed Tests:
+* TEST cpld_control_c48_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2166/tests/logs/log_derecho/rt_cpld_control_c48_intel.log
+* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2166/tests/logs/log_derecho/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_125771
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:34, 17:16]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:23](674 MB)
+
+PASS -- COMPILE 's2s_intel' [15:34, 14:57]
+PASS -- TEST 'cpld_control_c48_intel' [08:28, 06:36](2669 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240303 13:48:33
+Ending Date/Time: 20240303 14:16:59
+Total Time: 00h:28m:32s
+Compiles Completed: 2/2
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 77b60b1745..790f282fa5 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ee6612850685d9e2b9b0858845eeb3df2dd44e49
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,277 +24,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_218944
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_82051
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:10]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:02, 05:13](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:04, 13:33](1697 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:08, 14:19](1813 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:07, 06:26](950 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:58, 14:33](1665 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:08, 07:31]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:05, 25:48](1698 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:09, 13:24]
-PASS -- TEST 'cpld_control_p8_intel' [08:12, 06:00](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 06:02](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:34](3155 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:04](3123 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:55, 03:39](3176 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:06, 05:26](3412 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:07, 05:53](3097 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 05:05](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 06:02](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 09:50](3270 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:50, 06:49](3599 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [17:25, 12:14](4035 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:53, 08:31](4343 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:46](3066 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:09, 12:13]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:29](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:37](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:08, 07:22]
-PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:19](3127 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:08, 07:02]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:31](1694 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:37](1731 MB)
-
-PASS -- COMPILE 's2s_intel' [13:08, 10:55]
-PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:55](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:01]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:04, 05:54](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:07]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:09, 14:30](1703 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:09](1001 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:52](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:06]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:50](1711 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:08, 11:19]
-PASS -- TEST 'control_flake_intel' [05:24, 03:29](673 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:20](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:24](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:23, 02:20](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:21](623 MB)
-PASS -- TEST 'control_c48_intel' [07:34, 05:39](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:36](728 MB)
-PASS -- TEST 'control_c192_intel' [10:30, 08:38](738 MB)
-PASS -- TEST 'control_c384_intel' [18:48, 16:22](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:40, 14:04](1185 MB)
-PASS -- TEST 'control_stochy_intel' [03:23, 01:39](629 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](429 MB)
-PASS -- TEST 'control_lndp_intel' [03:23, 01:33](627 MB)
-PASS -- TEST 'control_iovr4_intel' [04:25, 02:19](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:25, 02:21](623 MB)
-PASS -- TEST 'control_p8_intel' [04:51, 02:42](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 02:47](1609 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:46, 02:40](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:38, 01:34](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:42, 02:42](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:34](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:49](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:26](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:44](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 03:37](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:44, 03:17](1615 MB)
-PASS -- TEST 'regional_control_intel' [06:31, 04:35](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:30, 02:49](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:33, 04:29](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:36](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:36](615 MB)
-PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:08, 09:47]
-PASS -- TEST 'rap_control_intel' [08:37, 06:35](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:57](1183 MB)
-PASS -- TEST 'rap_decomp_intel' [08:41, 06:49](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [07:40, 06:01](1093 MB)
-PASS -- TEST 'rap_restart_intel' [05:36, 03:24](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:23](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:39](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:55](879 MB)
-PASS -- TEST 'hrrr_control_intel' [05:34, 03:28](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:33](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 02:59](1078 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:55](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:44, 06:25](1002 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:53](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:32](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:08, 09:22]
-PASS -- TEST 'control_csawmg_intel' [07:28, 05:34](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:27, 05:34](693 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:10](657 MB)
-
-PASS -- COMPILE 'wam_intel' [11:08, 09:07]
-PASS -- TEST 'control_wam_intel' [04:20, 02:08](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:05]
-PASS -- TEST 'control_p8_faster_intel' [04:46, 02:36](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:30, 04:26](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:07, 07:02]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:46](780 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:43](784 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:03](788 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](792 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:28, 04:03](827 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:07](828 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:45](798 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:25, 02:50](846 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:36, 02:48](1622 MB)
-PASS -- TEST 'regional_debug_intel' [18:42, 16:14](638 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:25, 04:58](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:43](1168 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1170 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:53](1170 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:53](1169 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:08](1254 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:02](1169 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:59](1170 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:59](1171 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:55](1169 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:28](1169 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:55](1168 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:01](1169 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1166 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1171 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:55](1169 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:23](1174 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:07, 05:22]
-PASS -- TEST 'control_wam_debug_intel' [06:19, 04:53](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:07]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:48](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:27](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:38, 03:01](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:04](948 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:38](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:06](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:42](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:27]
-PASS -- TEST 'conus13km_control_intel' [03:41, 01:57](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:32, 01:03](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:28, 01:16](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 03:53](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:53](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:43, 13:37](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 13:56](803 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:02](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:57](1196 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:30]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:21](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:08, 11:15]
-PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:18](708 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:26](1056 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 07:31](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:43](784 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:18, 12:48](791 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:16](473 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:00](435 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:47, 03:44](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 03:30](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:41](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:45](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:55, 03:59](762 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:08, 06:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:06](585 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:41](613 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:44](784 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:09, 12:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 06:01](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:09, 11:08]
-PASS -- TEST 'hafs_regional_docn_intel' [08:09, 05:58](746 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:02](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:06](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:33](745 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:33](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:24](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:24](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:26](635 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:31](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:32](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:43, 05:55](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:42, 05:51](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:33](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:33](2014 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:33](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:18]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:17](741 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [12:08, 10:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:31](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 02:03]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:22](309 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:32, 01:09](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:56](456 MB)
-
-PASS -- COMPILE 'atml_intel' [13:09, 11:22]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 06:17](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:02, 06:15](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:24](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:09, 10:26]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:45](1647 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:09, 10:26]
-PASS -- TEST 'control_atmwav_intel' [03:35, 01:39](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:08, 09:47]
-PASS -- TEST 'atmaero_control_p8_intel' [05:47, 04:02](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:35](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:52](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:08, 09:48]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:08, 06:07]
-PASS -- TEST 'regional_atmaq_debug_intel' [20:16, 18:11](4485 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:09, 14:30]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 06:46](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:36]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:46, 13:26](1700 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:38, 13:58](1813 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:42, 06:43](951 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:47, 14:42](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:08, 08:59]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:45, 24:33](1702 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:09, 13:58]
+PASS -- TEST 'cpld_control_p8_intel' [10:49, 07:32](3099 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:00, 07:44](3098 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [10:58, 04:44](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 06:06](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:44](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:01, 06:06](3415 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:42, 07:33](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 06:41](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:58, 07:39](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 10:15](3273 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:12](3602 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 12:42](4038 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:04, 08:58](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:48, 07:25](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:09, 13:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:15, 04:26](1683 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 04:38](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [11:08, 08:57]
+PASS -- TEST 'cpld_debug_p8_intel' [12:16, 09:27](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:08, 08:22]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:08, 05:56](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:09, 12:39]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:35](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [14:09, 12:15]
+PASS -- TEST 'cpld_control_c48_intel' [08:56, 06:56](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:10, 17:54]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:33, 05:59](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:45]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:28, 14:43](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:16, 07:35](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 17:10](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:08, 08:45]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:22, 26:39](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:43]
+PASS -- TEST 'control_flake_intel' [05:40, 03:47](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 02:27](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:21](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:38, 02:31](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:32](623 MB)
+PASS -- TEST 'control_c48_intel' [07:47, 05:37](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:53, 05:38](721 MB)
+PASS -- TEST 'control_c192_intel' [11:40, 08:47](738 MB)
+PASS -- TEST 'control_c384_intel' [19:03, 16:19](1040 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:16, 13:59](1183 MB)
+PASS -- TEST 'control_stochy_intel' [03:37, 01:50](628 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:00](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:37, 01:44](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:41, 02:21](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:40, 02:28](623 MB)
+PASS -- TEST 'control_p8_intel' [06:04, 03:12](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 03:15](1609 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:07](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:11, 01:40](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:10](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 01:33](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:45](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:37](1678 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:53, 04:47](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:58, 03:58](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [08:14, 02:45](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:03, 03:42](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:46, 04:37](615 MB)
+PASS -- TEST 'regional_restart_intel' [05:48, 02:30](789 MB)
+PASS -- TEST 'regional_decomp_intel' [07:44, 04:50](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:18, 02:54](757 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:34, 04:34](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:31, 04:40](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:55, 04:33](615 MB)
+PASS -- TEST 'regional_wofs_intel' [07:47, 06:00](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:08, 10:41]
+PASS -- TEST 'rap_control_intel' [09:38, 06:28](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:35, 03:57](1189 MB)
+PASS -- TEST 'rap_decomp_intel' [09:46, 06:54](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [07:55, 06:03](1100 MB)
+PASS -- TEST 'rap_restart_intel' [06:16, 03:39](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:17, 06:43](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:11, 07:04](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 04:55](879 MB)
+PASS -- TEST 'hrrr_control_intel' [08:09, 04:03](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:04, 03:54](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:23, 03:03](1086 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:42, 01:57](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:48, 06:27](1002 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:18, 08:08](1966 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:15, 07:47](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:09, 10:34]
+PASS -- TEST 'control_csawmg_intel' [08:46, 05:45](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:48, 05:37](693 MB)
+PASS -- TEST 'control_ras_intel' [06:04, 03:18](657 MB)
+
+PASS -- COMPILE 'wam_intel' [11:08, 09:45]
+PASS -- TEST 'control_wam_intel' [05:36, 02:10](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:55]
+PASS -- TEST 'control_p8_faster_intel' [06:08, 03:02](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:49, 04:29](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:08, 08:43]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:46](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:19, 02:43](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:56, 03:05](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:49](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:48, 04:09](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:58, 04:10](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:33, 02:47](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:37, 02:55](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:11](1619 MB)
+PASS -- TEST 'regional_debug_intel' [19:54, 16:26](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:31, 05:01](1167 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:45](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 04:55](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:27, 05:02](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:05](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:08](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:31, 05:08](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:06](1168 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:27, 05:21](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:04](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:27, 04:56](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 05:13](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:52](1167 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:56](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:47](1172 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:13](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:53, 08:47](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:07, 05:53]
+PASS -- TEST 'control_wam_debug_intel' [07:29, 05:05](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:11]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:46](1052 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:50, 05:25](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 03:01](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 05:17](950 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:48, 02:40](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:44, 03:29](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:19](783 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:40](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 14:59]
+PASS -- TEST 'conus13km_control_intel' [04:52, 02:02](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:32, 01:05](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:29, 01:19](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:49]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:22](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:08, 06:21]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 04:49](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 04:50](1051 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:51, 13:56](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:09](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:05](1111 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:39, 13:44](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:08, 06:21]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 04:58](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:12, 13:29]
+PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:17](705 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:30](1060 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 07:31](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:37](781 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:22, 12:46](795 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:48](475 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:43](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:54](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:00, 07:55](433 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 03:46](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:55, 03:31](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:38](572 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:44](403 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:58, 03:55](764 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:16, 07:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:04](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:17, 18:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:59, 07:42](614 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:02, 07:43](788 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 14:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:58](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:16, 13:30]
+PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:04](746 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:01](729 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:05, 20:12](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [34:20, 32:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 01:33](745 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:27](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:28](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:33](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:41, 05:55](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:42, 05:54](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:34](2014 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:35](1953 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:17, 07:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:32](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:34](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:11]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:24](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:08](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:53](456 MB)
+
+PASS -- COMPILE 'atml_intel' [18:28, 16:18]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:22, 07:14](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:09, 06:47](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 03:36](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:15, 11:30]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:08](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:10, 11:34]
+PASS -- TEST 'control_atmwav_intel' [03:37, 01:50](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:08, 10:40]
+PASS -- TEST 'atmaero_control_p8_intel' [07:54, 05:30](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:56, 06:02](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:15](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:09, 11:15]
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:08, 07:51]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:17, 18:25](4482 MB)
SYNOPSIS:
-Starting Date/Time: 20240229 11:15:07
-Ending Date/Time: 20240229 12:38:47
-Total Time: 01h:24m:02s
+Starting Date/Time: 20240303 21:34:32
+Ending Date/Time: 20240303 23:00:23
+Total Time: 01h:26m:19s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 9525d1721d..23de143222 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-42ce413c756e127649d5c07d8f89535343390d6f
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,367 +24,367 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26211
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_130633
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [29:59, 12:17]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:15](3132 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:59, 15:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 16:14](1702 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:23, 16:54](1970 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [04:15, 07:44](1114 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:13](1626 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:58, 04:53]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 22:10](1672 MB)
-
-PASS -- COMPILE 's2swa_intel' [29:59, 12:14]
-PASS -- TEST 'cpld_control_p8_intel' [09:22, 05:38](3164 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 05:47](3162 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:24, 03:27](3223 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 05:44](3181 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:28](3254 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:16, 05:30](3498 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:15, 05:42](3160 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:17, 04:39](3014 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:28, 05:42](3163 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:17, 09:45](3320 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:07](3616 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 10:05](4103 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:47, 07:02](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:20](3159 MB)
-
-PASS -- COMPILE 's2sw_intel' [28:59, 11:35]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:02, 04:29](1735 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:22](1763 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [22:58, 04:49]
-PASS -- TEST 'cpld_debug_p8_intel' [11:09, 08:09](3203 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [21:58, 04:18]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:30](1744 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [28:58, 10:50]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:27](1740 MB)
-
-PASS -- COMPILE 's2s_intel' [28:58, 10:48]
-PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:23](2819 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:59, 16:43]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:17, 05:16](3165 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:08]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 16:20](1727 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:18, 07:41](1137 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:08, 18:46](1636 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:01]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:32](1698 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:35]
-PASS -- TEST 'control_flake_intel' [07:23, 03:17](696 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:22](627 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:31, 02:31](623 MB)
-PASS -- TEST 'control_latlon_intel' [05:20, 02:25](620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:28, 02:27](629 MB)
-PASS -- TEST 'control_c48_intel' [09:23, 06:12](873 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:24, 06:14](874 MB)
-PASS -- TEST 'control_c192_intel' [12:36, 09:01](824 MB)
-PASS -- TEST 'control_c384_intel' [14:28, 09:03](1277 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:01, 08:11](1357 MB)
-PASS -- TEST 'control_stochy_intel' [04:20, 01:40](646 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:03](500 MB)
-PASS -- TEST 'control_lndp_intel' [04:19, 01:33](621 MB)
-PASS -- TEST 'control_iovr4_intel' [05:27, 02:26](626 MB)
-PASS -- TEST 'control_iovr5_intel' [04:21, 02:26](654 MB)
-PASS -- TEST 'control_p8_intel' [04:59, 03:02](1612 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:00, 03:00](1616 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:52](1595 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:46, 01:37](881 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:00, 02:55](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:04, 01:36](912 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:10](1582 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:48, 02:50](1702 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:17](1598 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:55, 03:53](1682 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:57, 02:59](1608 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:59, 03:27](1638 MB)
-PASS -- TEST 'regional_control_intel' [07:43, 05:06](848 MB)
-PASS -- TEST 'regional_restart_intel' [58:48, 02:49](1013 MB)
-PASS -- TEST 'regional_decomp_intel' [07:43, 05:26](843 MB)
-PASS -- TEST 'regional_2threads_intel' [05:40, 03:20](813 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:35, 05:06](1331 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:04](817 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 05:02](847 MB)
-PASS -- TEST 'regional_wofs_intel' [08:43, 06:35](1900 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:06, 09:47]
-PASS -- TEST 'rap_control_intel' [09:41, 07:42](1069 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:12, 04:11](1278 MB)
-PASS -- TEST 'rap_decomp_intel' [10:33, 08:03](1036 MB)
-PASS -- TEST 'rap_2threads_intel' [10:31, 07:14](1184 MB)
-PASS -- TEST 'rap_restart_intel' [59:48, 04:04](1084 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:37](1108 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:01](1026 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [59:59, 05:51](1104 MB)
-PASS -- TEST 'hrrr_control_intel' [06:37, 04:03](1013 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:06](1020 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [01:37, 03:38](1097 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [58:30, 02:11](970 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:34](1087 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [05:31, 09:09](1985 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:29, 08:54](2075 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:06, 09:31]
-PASS -- TEST 'control_csawmg_intel' [03:45, 05:52](705 MB)
-PASS -- TEST 'control_csawmgt_intel' [02:50, 05:50](708 MB)
-PASS -- TEST 'control_ras_intel' [00:25, 03:20](725 MB)
-
-PASS -- COMPILE 'wam_intel' [11:06, 09:04]
-PASS -- TEST 'control_wam_intel' [58:26, 02:04](650 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:46]
-PASS -- TEST 'control_p8_faster_intel' [59:05, 02:40](1588 MB)
-PASS -- TEST 'regional_control_faster_intel' [01:07, 04:45](850 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:29, 02:39](805 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:34, 02:42](780 MB)
-PASS -- TEST 'control_stochy_debug_intel' [58:25, 03:01](809 MB)
-PASS -- TEST 'control_lndp_debug_intel' [57:22, 02:43](811 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [59:43, 04:06](831 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [59:44, 04:03](837 MB)
-PASS -- TEST 'control_ras_debug_intel' [58:26, 02:45](807 MB)
-PASS -- TEST 'control_diag_debug_intel' [58:33, 02:49](856 MB)
-PASS -- TEST 'control_debug_p8_intel' [58:45, 02:56](1611 MB)
-PASS -- TEST 'regional_debug_intel' [10:45, 16:47](815 MB)
-PASS -- TEST 'rap_control_debug_intel' [58:27, 04:55](1200 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:22, 04:43](1185 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:20, 04:47](1193 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:00](1179 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:01](1175 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:07](1293 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 04:54](1210 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:57](1198 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:49](1201 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:45](1211 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:45](1206 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:40](1196 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 07:46](1189 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:47](1186 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 05:47](1201 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:41](1201 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:09](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:06, 03:18]
-PASS -- TEST 'control_wam_debug_intel' [08:17, 04:48](513 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 09:15]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 03:59](1158 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:34, 03:24](992 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:09](1068 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:30, 03:09](947 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](912 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:52, 04:56](1036 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:28, 01:55](914 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:07, 11:23]
-PASS -- TEST 'conus13km_control_intel' [06:59, 02:04](1193 MB)
-PASS -- TEST 'conus13km_2threads_intel' [22:49, 00:57](1112 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [22:50, 01:19](1071 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 09:19]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:42, 04:13](961 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:09]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:24, 04:45](1073 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:24, 04:41](1044 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:55, 13:48](1214 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [18:54, 13:57](910 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:53](1135 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 13:39](1283 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 03:04]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 04:48](1113 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:07, 10:33]
-PASS -- TEST 'hafs_regional_atm_intel' [09:16, 05:05](739 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:29, 06:52](1109 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 06:56](825 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 13:04](858 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:35, 15:02](874 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:14, 05:40](500 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:28, 06:59](518 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [22:51, 02:48](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:07, 07:59](475 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:54, 04:05](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 03:36](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:59, 04:27](576 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:29, 01:19](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [26:09, 04:32](796 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:57, 12:38](548 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:08, 11:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:11, 08:56](645 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:18, 08:59](703 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:06, 10:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:16, 06:52](711 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:07, 10:28]
-PASS -- TEST 'hafs_regional_docn_intel' [26:18, 06:37](803 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [27:25, 06:37](796 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:01, 16:34](1206 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:21]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [25:18, 02:45](1117 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:40](1064 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [24:18, 02:35](1007 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:17, 02:38](1009 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:15, 02:36](1022 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:16, 02:40](1124 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:16, 02:37](1125 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:16, 02:31](1003 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:27, 06:47](1052 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:24, 06:26](1017 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:13, 02:43](1129 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:57](2434 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [10:16, 04:01](2491 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:57]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:16, 06:00](1041 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 06:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:41](1113 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:52](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 00:52](320 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB)
-
-PASS -- COMPILE 'atml_intel' [12:07, 10:48]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:16, 04:28](1591 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:23](1578 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:05, 02:17](885 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:07, 10:06]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 01:49](1623 MB)
-
-PASS -- COMPILE 'atmwm_intel' [04:12, 10:26]
-PASS -- TEST 'control_atmwav_intel' [04:34, 01:42](641 MB)
-
-PASS -- COMPILE 'atmaero_intel' [04:10, 10:30]
-PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:03](3019 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:54](3084 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:48, 05:03](3043 MB)
-
-PASS -- COMPILE 'atmaq_intel' [04:12, 09:43]
-
-PASS -- COMPILE 'atmaq_debug_intel' [58:10, 03:32]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:20, 20:31](4417 MB)
-
-PASS -- COMPILE 'atm_gnu' [58:10, 03:43]
-PASS -- TEST 'control_c48_gnu' [14:25, 11:36](790 MB)
-PASS -- TEST 'control_stochy_gnu' [07:23, 04:02](545 MB)
-PASS -- TEST 'control_ras_gnu' [07:22, 04:56](524 MB)
-PASS -- TEST 'control_p8_gnu' [07:08, 04:54](1304 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [08:03, 04:46](1309 MB)
-PASS -- TEST 'control_flake_gnu' [08:21, 05:54](593 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [57:10, 03:33]
-PASS -- TEST 'rap_control_gnu' [14:33, 11:34](894 MB)
-PASS -- TEST 'rap_decomp_gnu' [14:35, 11:47](896 MB)
-PASS -- TEST 'rap_2threads_gnu' [13:47, 10:31](992 MB)
-PASS -- TEST 'rap_restart_gnu' [30:54, 05:58](621 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [14:43, 11:46](894 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:41, 11:54](897 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [36:48, 08:46](627 MB)
-PASS -- TEST 'hrrr_control_gnu' [08:35, 06:04](889 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:34, 06:07](879 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:17](973 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 05:59](895 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [32:32, 03:12](608 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [32:32, 03:15](701 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [48:46, 11:21](889 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [59:10, 03:27]
-PASS -- TEST 'control_diag_debug_gnu' [38:32, 01:38](592 MB)
-PASS -- TEST 'regional_debug_gnu' [44:46, 07:50](606 MB)
-PASS -- TEST 'rap_control_debug_gnu' [39:25, 02:30](910 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [37:26, 02:31](905 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [37:27, 02:33](909 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [37:24, 02:34](909 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [37:41, 02:45](996 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [38:25, 03:52](914 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [36:24, 02:33](912 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [35:27, 02:32](908 MB)
-PASS -- TEST 'control_ras_debug_gnu' [34:20, 01:32](543 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [35:22, 02:14](541 MB)
-PASS -- TEST 'control_debug_p8_gnu' [33:51, 01:41](1295 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [34:29, 02:33](911 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [33:27, 02:49](911 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [34:39, 04:09](915 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [57:10, 01:41]
-PASS -- TEST 'control_wam_debug_gnu' [32:26, 02:28](238 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [55:10, 03:35]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [39:34, 11:55](748 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [32:40, 06:05](744 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [35:40, 10:41](801 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [30:41, 05:18](799 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [30:38, 06:07](741 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [35:43, 09:04](596 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:26, 03:15](580 MB)
-PASS -- TEST 'conus13km_control_gnu' [32:02, 04:11](897 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:53](933 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:20](599 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [57:10, 05:07]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [28:50, 07:03](780 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:34](770 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:20, 02:32](758 MB)
-PASS -- TEST 'conus13km_debug_gnu' [12:52, 07:12](914 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [13:44, 07:24](631 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [06:46, 04:26](950 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:45, 07:05](981 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:31]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [09:22, 02:41](786 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:07, 13:49]
-PASS -- TEST 'cpld_control_p8_gnu' [16:23, 10:55](1503 MB)
-
-PASS -- COMPILE 's2s_gnu' [16:08, 13:50]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:10, 06:47](1394 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:24]
-PASS -- TEST 'cpld_debug_p8_gnu' [13:10, 06:19](1511 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 14:11]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:11, 21:58](1379 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:07, 02:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:59, 12:53](1385 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [24:08, 13:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [40:59, 03:03](694 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:06]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:26, 05:16](3124 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 16:01]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:02, 16:08](1726 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:49](2015 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 07:40](1083 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 18:14](1605 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 04:08]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [31:03, 22:26](1676 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:07, 11:56]
+PASS -- TEST 'cpld_control_p8_intel' [10:22, 05:39](3163 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:30, 05:45](3175 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:28, 03:22](3239 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 05:42](3222 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:28, 03:23](3258 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:15, 05:27](3551 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:15, 05:43](3198 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:21, 04:45](3067 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:31, 05:41](3135 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:17, 09:42](3332 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:48, 06:03](3567 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:09, 09:41](4119 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:42, 06:30](4288 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 05:23](3124 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:07, 11:14]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:18, 04:31](1724 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:25, 04:21](1768 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:33]
+PASS -- TEST 'cpld_debug_p8_intel' [11:11, 08:04](3210 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:08]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:03, 05:35](1738 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:07, 10:34]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:24](1766 MB)
+
+PASS -- COMPILE 's2s_intel' [13:07, 10:53]
+PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:20](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:07, 16:30]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 05:23](3176 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 14:55]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:01, 16:13](1772 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:37, 07:50](1167 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:18, 18:49](1666 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:01]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 24:12](1698 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:06, 10:53]
+PASS -- TEST 'control_flake_intel' [06:20, 03:22](695 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:24](641 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:27, 02:32](648 MB)
+PASS -- TEST 'control_latlon_intel' [04:19, 02:25](643 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:27](650 MB)
+PASS -- TEST 'control_c48_intel' [08:24, 06:13](871 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:15](868 MB)
+PASS -- TEST 'control_c192_intel' [11:33, 09:02](829 MB)
+PASS -- TEST 'control_c384_intel' [17:23, 09:07](1256 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:42, 08:06](1388 MB)
+PASS -- TEST 'control_stochy_intel' [03:18, 01:37](632 MB)
+PASS -- TEST 'control_stochy_restart_intel' [06:24, 01:00](500 MB)
+PASS -- TEST 'control_lndp_intel' [03:16, 01:32](622 MB)
+PASS -- TEST 'control_iovr4_intel' [07:21, 02:26](653 MB)
+PASS -- TEST 'control_iovr5_intel' [08:22, 02:27](623 MB)
+PASS -- TEST 'control_p8_intel' [08:54, 02:57](1609 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:05, 02:55](1622 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 02:55](1617 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](866 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:58, 02:53](1608 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:35](911 MB)
+PASS -- TEST 'control_decomp_p8_intel' [08:56, 03:00](1593 MB)
+PASS -- TEST 'control_2threads_p8_intel' [08:53, 02:45](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:52, 05:13](1615 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:01, 03:51](1679 MB)
+PASS -- TEST 'control_p8_mynn_intel' [08:57, 02:58](1594 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:54, 03:27](1628 MB)
+PASS -- TEST 'regional_control_intel' [10:36, 05:09](851 MB)
+PASS -- TEST 'regional_restart_intel' [04:33, 02:43](1017 MB)
+PASS -- TEST 'regional_decomp_intel' [11:37, 05:30](815 MB)
+PASS -- TEST 'regional_2threads_intel' [08:38, 03:17](819 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:41, 05:06](1363 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 05:08](848 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:08](845 MB)
+PASS -- TEST 'regional_wofs_intel' [08:38, 06:36](1877 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 09:45]
+PASS -- TEST 'rap_control_intel' [09:39, 07:39](1117 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:08](1281 MB)
+PASS -- TEST 'rap_decomp_intel' [09:29, 08:03](1025 MB)
+PASS -- TEST 'rap_2threads_intel' [09:28, 07:19](1164 MB)
+PASS -- TEST 'rap_restart_intel' [07:56, 04:03](1109 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:36](1098 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1016 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [19:00, 06:03](1128 MB)
+PASS -- TEST 'hrrr_control_intel' [05:34, 03:57](1028 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:03](1012 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1107 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:08](984 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:40, 07:33](1078 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:05](1982 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:29, 08:50](2065 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:07, 09:39]
+PASS -- TEST 'control_csawmg_intel' [07:35, 05:49](739 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:34, 05:45](740 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:16](713 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 09:04]
+PASS -- TEST 'control_wam_intel' [03:17, 02:01](652 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 09:58]
+PASS -- TEST 'control_p8_faster_intel' [04:52, 02:35](1602 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:36, 04:40](822 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:28]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:39](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:40](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:58](816 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:42](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:36, 04:01](856 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 03:55](857 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:17, 02:44](819 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:27, 02:49](867 MB)
+PASS -- TEST 'control_debug_p8_intel' [00:52, 02:47](1647 MB)
+PASS -- TEST 'regional_debug_intel' [18:35, 16:36](817 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:35, 04:46](1207 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:33, 04:49](1199 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 04:46](1203 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [18:36, 04:56](1186 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:41, 04:50](1191 MB)
+PASS -- TEST 'rap_diag_debug_intel' [19:04, 05:13](1257 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:02](1196 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:40, 05:06](1178 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [17:35, 04:56](1192 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:40, 04:56](1164 MB)
+PASS -- TEST 'rap_noah_debug_intel' [16:45, 04:54](1199 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [16:38, 04:58](1193 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:39, 07:50](1188 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [16:35, 04:54](1160 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [16:49, 05:52](1201 MB)
+PASS -- TEST 'rap_flake_debug_intel' [15:37, 04:58](1199 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:55, 08:20](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:05, 03:11]
+PASS -- TEST 'control_wam_debug_intel' [06:18, 04:43](504 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:30]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:19, 04:02](1159 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:54, 06:30](1043 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:49, 03:28](949 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:12, 06:23](1093 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:53, 03:16](961 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:47, 03:40](930 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:56](1005 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:04](916 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:35]
+PASS -- TEST 'conus13km_control_intel' [05:16, 02:12](1192 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:58, 01:10](1115 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:49, 01:26](1098 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:07, 09:25]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:24, 04:21](983 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:08]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:28, 04:44](1049 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:21, 04:40](1040 MB)
+PASS -- TEST 'conus13km_debug_intel' [25:56, 14:02](1233 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [25:44, 14:01](916 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [14:39, 07:55](1148 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 13:43](1283 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:35]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:27, 04:51](1113 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:07, 10:49]
+PASS -- TEST 'hafs_regional_atm_intel' [08:23, 05:04](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:27](1110 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 07:11](812 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 13:07](829 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 14:46](860 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:56, 05:51](481 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:34, 06:57](495 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:54, 03:17](353 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:02, 07:35](473 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:49, 04:05](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:55, 04:02](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 04:28](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:54](385 MB)
+PASS -- TEST 'gnv1_nested_intel' [18:44, 04:05](778 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:07, 03:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:51, 12:19](570 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:08, 11:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:59, 08:29](631 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:09, 08:36](675 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:08, 11:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:07, 06:24](688 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:06, 10:17]
+PASS -- TEST 'hafs_regional_docn_intel' [12:17, 06:20](821 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:20, 06:24](789 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [35:01, 16:23](1201 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 05:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 02:47](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [15:16, 01:42](1075 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:14, 02:41](1007 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:17, 02:49](1013 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:15, 02:39](1019 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:14, 02:50](1128 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:17, 02:43](1116 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:16, 02:37](996 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:32, 06:29](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:26, 06:22](1021 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:14, 02:43](1119 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:16, 03:59](2484 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [17:17, 03:57](2444 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 02:59]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:15, 06:10](1044 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:16, 02:40](1126 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:28, 00:49](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:21, 00:49](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [09:23, 00:29](313 MB)
+
+PASS -- COMPILE 'atml_intel' [12:09, 10:38]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:17, 04:19](1585 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [14:17, 04:22](1584 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:46, 02:17](890 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:07, 09:47]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:51, 01:47](1650 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:52]
+PASS -- TEST 'control_atmwav_intel' [11:30, 01:44](633 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:06, 09:53]
+PASS -- TEST 'atmaero_control_p8_intel' [13:00, 04:00](3031 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [13:58, 04:48](3053 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:45, 05:01](3092 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:07, 09:28]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:20]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:12, 20:16](4449 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:06, 03:28]
+PASS -- TEST 'control_c48_gnu' [19:25, 11:35](792 MB)
+PASS -- TEST 'control_stochy_gnu' [12:23, 04:01](551 MB)
+PASS -- TEST 'control_ras_gnu' [12:18, 04:57](551 MB)
+PASS -- TEST 'control_p8_gnu' [11:01, 04:55](1302 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [10:56, 04:42](1308 MB)
+PASS -- TEST 'control_flake_gnu' [11:20, 05:52](596 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:07, 03:30]
+PASS -- TEST 'rap_control_gnu' [17:41, 11:49](895 MB)
+PASS -- TEST 'rap_decomp_gnu' [14:32, 11:50](892 MB)
+PASS -- TEST 'rap_2threads_gnu' [20:45, 10:41](983 MB)
+PASS -- TEST 'rap_restart_gnu' [08:37, 06:16](623 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [21:34, 11:58](895 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [20:46, 11:57](899 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [31:43, 08:55](620 MB)
+PASS -- TEST 'hrrr_control_gnu' [14:34, 06:01](887 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [14:35, 06:05](879 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [13:40, 05:21](969 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [13:30, 06:01](893 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:25, 03:13](610 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:25, 03:11](701 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [19:39, 11:39](891 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:20]
+PASS -- TEST 'control_diag_debug_gnu' [09:28, 01:41](592 MB)
+PASS -- TEST 'regional_debug_gnu' [14:39, 07:39](596 MB)
+PASS -- TEST 'rap_control_debug_gnu' [09:24, 02:36](907 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [09:21, 02:35](900 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [08:19, 02:36](896 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [08:19, 02:37](905 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [08:43, 02:48](989 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [09:31, 03:56](905 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [07:20, 02:35](910 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [07:20, 02:35](898 MB)
+PASS -- TEST 'control_ras_debug_gnu' [06:16, 01:35](538 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [07:16, 02:19](535 MB)
+PASS -- TEST 'control_debug_p8_gnu' [06:38, 01:43](1287 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [07:24, 02:38](903 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [06:22, 02:54](908 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:35, 04:20](910 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:41]
+PASS -- TEST 'control_wam_debug_gnu' [05:18, 02:33](239 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:23]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [15:31, 12:05](747 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:29, 06:13](741 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:38, 10:48](803 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:36, 05:33](800 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:30, 06:12](741 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:58, 09:04](595 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [27:25, 03:22](583 MB)
+PASS -- TEST 'conus13km_control_gnu' [08:12, 04:46](900 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [25:51, 02:04](932 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [25:48, 02:22](601 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [26:13, 05:12]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:40, 07:11](780 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [26:13, 03:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:22, 02:54](759 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 02:55](759 MB)
+PASS -- TEST 'conus13km_debug_gnu' [09:52, 07:28](915 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:48, 07:37](630 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [06:46, 04:50](950 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:07](982 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [26:14, 03:26]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:49](787 MB)
+
+PASS -- COMPILE 's2swa_gnu' [52:14, 14:05]
+PASS -- TEST 'cpld_control_p8_gnu' [13:34, 10:46](1506 MB)
+
+PASS -- COMPILE 's2s_gnu' [59:16, 14:05]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:18, 06:28](1400 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [58:15, 02:29]
+PASS -- TEST 'cpld_debug_p8_gnu' [09:11, 06:02](1500 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [25:19, 13:49]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:02, 21:58](1374 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:17, 02:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1389 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [25:18, 13:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:05](694 MB)
SYNOPSIS:
-Starting Date/Time: 20240228 05:59:41
-Ending Date/Time: 20240229 07:59:24
-Total Time: 02h:00m:18s
+Starting Date/Time: 20240304 03:09:54
+Ending Date/Time: 20240304 09:20:43
+Total Time: 06h:11m:14s
Compiles Completed: 53/53
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 98d94e2a3e..22d56da462 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-3951b805f6c6071a13b4686f8fd00e93840f5040
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,360 +24,420 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4072729
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1842074
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:07, 11:21]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:37](1904 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:11]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:02, 13:49](1777 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:25, 14:05](2193 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:38](1175 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:03, 15:12](1693 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:54]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:29](1734 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:06, 11:12]
-PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:38](2079 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:10, 07:28](2076 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:15](1972 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:32](1974 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:46](2487 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:51, 07:38](2059 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:01, 06:24](1894 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:04, 07:40](2076 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 15:17](2808 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:04, 05:38](2921 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 08:59](3632 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:58, 05:45](3615 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:56, 04:57](2060 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:08, 11:17]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:54, 07:06](1771 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:03, 03:58](1819 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:52]
-PASS -- TEST 'cpld_debug_p8_intel' [09:10, 06:57](2147 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 04:40](1793 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:18]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 03:57](1835 MB)
-
-PASS -- COMPILE 's2s_intel' [10:06, 08:28]
-PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:12](2820 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:55]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:16](2088 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:37]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:06](1807 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:37](1278 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:47, 15:16](1732 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:56, 21:48](1786 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:05, 08:56]
-PASS -- TEST 'control_flake_intel' [04:15, 02:52](712 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 02:04](666 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:08](680 MB)
-PASS -- TEST 'control_latlon_intel' [04:15, 02:06](677 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:09](666 MB)
-PASS -- TEST 'control_c48_intel' [07:22, 05:44](856 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 05:42](863 MB)
-PASS -- TEST 'control_c192_intel' [09:28, 07:47](957 MB)
-PASS -- TEST 'control_c384_intel' [10:17, 08:01](1454 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:57, 07:03](1504 MB)
-PASS -- TEST 'control_stochy_intel' [03:15, 01:28](670 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:49](545 MB)
-PASS -- TEST 'control_lndp_intel' [03:15, 01:23](666 MB)
-PASS -- TEST 'control_iovr4_intel' [03:25, 02:04](673 MB)
-PASS -- TEST 'control_iovr5_intel' [03:16, 02:02](671 MB)
-PASS -- TEST 'control_p8_intel' [04:52, 02:33](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:32](1629 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:06, 02:22](1639 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:50, 01:25](908 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:52, 02:24](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 01:24](983 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:30](1626 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:16](1721 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:40, 04:20](1643 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 03:22](1708 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:58, 02:29](1648 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:57, 02:59](1648 MB)
-PASS -- TEST 'regional_control_intel' [06:27, 04:33](959 MB)
-PASS -- TEST 'regional_restart_intel' [04:37, 02:27](1109 MB)
-PASS -- TEST 'regional_decomp_intel' [06:29, 04:43](945 MB)
-PASS -- TEST 'regional_2threads_intel' [04:29, 02:48](907 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:26, 04:21](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:27](956 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:33](962 MB)
-PASS -- TEST 'regional_wofs_intel' [07:26, 05:51](2076 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:26]
-PASS -- TEST 'rap_control_intel' [08:51, 06:36](1189 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:23](1412 MB)
-PASS -- TEST 'rap_decomp_intel' [08:35, 06:50](1129 MB)
-PASS -- TEST 'rap_2threads_intel' [08:32, 06:16](1367 MB)
-PASS -- TEST 'rap_restart_intel' [05:50, 03:25](1148 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:33](1182 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:54](1139 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:57](1176 MB)
-PASS -- TEST 'hrrr_control_intel' [05:53, 03:22](1083 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1044 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:07](1134 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:50](1028 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:15](1186 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:35](2009 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:24](2168 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:29]
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:09](837 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:24, 04:59](793 MB)
-PASS -- TEST 'control_ras_intel' [04:16, 02:50](825 MB)
-
-PASS -- COMPILE 'wam_intel' [09:06, 07:52]
-PASS -- TEST 'control_wam_intel' [03:23, 01:49](775 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:09, 10:12]
-PASS -- TEST 'control_p8_faster_intel' [04:53, 02:22](1627 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:32, 04:02](955 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:08]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:20](825 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:11](822 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:32](826 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:20](824 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:20](865 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:31, 03:20](869 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:12, 02:16](842 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:22, 02:17](885 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:28, 02:18](1658 MB)
-PASS -- TEST 'regional_debug_intel' [16:25, 14:13](893 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1218 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:14, 03:55](1210 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:14, 04:05](1217 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:03](1217 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:04](1211 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:15](1301 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:05](1217 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1217 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:21, 04:04](1214 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:59](1211 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:01](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1207 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:24](1213 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:55](1206 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:10](1220 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:59](1222 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:53](1225 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:13, 03:12]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:40]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:12](1281 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:22](1133 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:56](1014 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:09](1287 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 02:42](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:00](976 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 04:07](1092 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](966 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:35]
-PASS -- TEST 'conus13km_control_intel' [03:36, 01:46](1289 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:42](1197 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1154 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:39]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:40](1065 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:56](1095 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:50](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:39, 11:42](1326 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:49](993 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1243 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:32, 11:42](1412 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:58](1150 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:11, 09:47]
-PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:26](878 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1270 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:08, 06:18](949 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:37](978 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:09, 15:13](990 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:39](608 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:17, 06:55](621 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:53](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:40](544 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 03:54](611 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:36](622 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 05:56](683 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:19](450 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:16](637 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:07](740 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 17:02](841 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:07, 09:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:01](829 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:08, 09:08]
-PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:18](958 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:58, 05:23](943 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:26](1342 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:48]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:10, 02:07](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:20](1093 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:02](1018 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:05](1012 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 02:05](1022 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:08](1156 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:07](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1003 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1163 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:46, 04:44](1149 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1132 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:59](2436 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:02](2437 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:56]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:10](1079 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:06, 04:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1147 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:56]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 00:53](332 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:50](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:31](561 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:51]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:57, 06:34](1657 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:53, 06:13](1645 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:35, 03:05](952 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:05, 09:30]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:30](1692 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:05, 09:03]
-PASS -- TEST 'control_atmwav_intel' [03:39, 01:29](691 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:14]
-PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1803 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:20](1806 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:35](1812 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:05, 06:56]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:07, 02:35]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:29, 16:49](4598 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:05, 03:59]
-PASS -- TEST 'control_c48_gnu' [11:24, 09:25](867 MB)
-PASS -- TEST 'control_stochy_gnu' [04:18, 02:19](731 MB)
-PASS -- TEST 'control_ras_gnu' [05:13, 03:41](733 MB)
-PASS -- TEST 'control_p8_gnu' [05:47, 03:35](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:39, 03:29](1515 MB)
-PASS -- TEST 'control_flake_gnu' [06:14, 04:17](809 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:05, 04:02]
-PASS -- TEST 'rap_control_gnu' [09:49, 07:43](1089 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:37, 07:47](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:37, 07:08](1154 MB)
-PASS -- TEST 'rap_restart_gnu' [06:38, 04:05](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1088 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:35, 07:51](1085 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:41, 05:50](883 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:39, 03:53](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:30, 04:02](1137 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:36](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:01](879 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:00](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:26](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 05:44]
-PASS -- TEST 'control_diag_debug_gnu' [03:18, 01:15](776 MB)
-PASS -- TEST 'regional_debug_gnu' [08:27, 06:16](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:00](1107 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1089 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:55](1093 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:53](1097 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:22, 02:06](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 03:03](1106 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:15, 01:55](1096 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:54](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:08](722 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:17](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:12](1503 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:15, 01:59](1099 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:06](1100 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:12](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:30]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:50]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:29, 07:11](963 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 03:56](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:45, 06:43](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 03:44](872 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:50](948 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:56, 05:34](862 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 01:58](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:38, 02:30](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:25, 01:07](1174 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:25, 01:40](942 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:07, 08:00]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:22](993 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:16, 02:07](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:58](975 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:26](1283 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:38](954 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:12](1193 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:28](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:52]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:07, 16:26]
-
-PASS -- COMPILE 's2s_gnu' [17:06, 15:44]
-
-PASS -- COMPILE 's2swa_debug_gnu' [05:05, 03:07]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:06, 14:01]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:08, 03:01]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [17:07, 15:17]
+PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 07:33](1890 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:50]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:05, 13:20](1770 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:21, 14:10](2184 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:33, 06:34](1180 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:53, 14:52](1691 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:46]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:07, 20:20](1726 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:06, 12:20]
+PASS -- TEST 'cpld_control_p8_intel' [09:49, 07:39](2060 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2071 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:16](1974 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 07:50](1978 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:08, 04:13](1738 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:43, 08:58](2490 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:46, 07:45](2067 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:33](1889 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:35](2064 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:41, 14:55](2808 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:18, 05:49](2933 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:20, 08:54](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 05:53](3608 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 04:58](2053 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:06, 11:07]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:07](1778 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:49, 04:00](1829 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:46]
+PASS -- TEST 'cpld_debug_p8_intel' [08:57, 06:53](2070 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:30]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:53, 04:44](1784 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:46]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 03:58](1812 MB)
+
+PASS -- COMPILE 's2s_intel' [12:06, 10:15]
+FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:06, 14:45]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:02, 07:19](2067 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 14:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:51, 13:49](1803 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:09, 06:54](1294 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 15:24](1728 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:15]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:47, 21:26](1768 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:05, 07:56]
+PASS -- TEST 'control_flake_intel' [04:15, 02:50](709 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:02](662 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:18](680 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:04](663 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:06](655 MB)
+PASS -- TEST 'control_c48_intel' [07:20, 05:48](859 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:43](853 MB)
+PASS -- TEST 'control_c192_intel' [09:28, 07:50](963 MB)
+PASS -- TEST 'control_c384_intel' [10:58, 08:06](1448 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:44, 07:18](1520 MB)
+PASS -- TEST 'control_stochy_intel' [03:16, 01:25](680 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](550 MB)
+PASS -- TEST 'control_lndp_intel' [03:16, 01:22](668 MB)
+PASS -- TEST 'control_iovr4_intel' [03:15, 02:04](666 MB)
+PASS -- TEST 'control_iovr5_intel' [04:14, 02:11](673 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:33](1627 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:48, 02:30](1642 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:27](1639 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:46, 01:23](915 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:38, 02:28](1637 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:22](992 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:36, 02:34](1623 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:36, 02:20](1724 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:27](1641 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:29](1712 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:34](1647 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:55, 03:03](1658 MB)
+PASS -- TEST 'regional_control_intel' [06:26, 04:33](959 MB)
+PASS -- TEST 'regional_restart_intel' [04:25, 02:28](1103 MB)
+PASS -- TEST 'regional_decomp_intel' [06:21, 04:47](946 MB)
+PASS -- TEST 'regional_2threads_intel' [04:24, 02:56](923 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:26, 04:26](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:32](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:35](956 MB)
+PASS -- TEST 'regional_wofs_intel' [07:28, 05:38](2093 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:43]
+PASS -- TEST 'rap_control_intel' [08:39, 06:29](1197 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:25](1446 MB)
+PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1127 MB)
+PASS -- TEST 'rap_2threads_intel' [08:30, 06:12](1378 MB)
+PASS -- TEST 'rap_restart_intel' [05:49, 03:27](1133 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:46, 06:29](1188 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:56](1144 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:58](1214 MB)
+PASS -- TEST 'hrrr_control_intel' [05:47, 03:27](1068 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:25](1040 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:30, 03:07](1116 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:50](1039 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:19](1206 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:19, 07:43](2002 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:28](2222 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:06, 06:57]
+PASS -- TEST 'control_csawmg_intel' [07:25, 05:06](807 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:26, 05:04](807 MB)
+PASS -- TEST 'control_ras_intel' [04:12, 02:48](822 MB)
+
+PASS -- COMPILE 'wam_intel' [08:05, 06:38]
+PASS -- TEST 'control_wam_intel' [03:20, 01:50](792 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:40]
+PASS -- TEST 'control_p8_faster_intel' [04:53, 02:15](1648 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:24, 04:01](960 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:54]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:18, 02:22](819 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:18](823 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:29](826 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:18](828 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:23, 03:23](863 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:25, 03:20](873 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:11, 02:16](847 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:20, 02:15](887 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:27, 02:23](1659 MB)
+PASS -- TEST 'regional_debug_intel' [16:33, 14:17](897 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:17, 03:59](1211 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:55](1210 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:57](1225 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 03:56](1226 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:58](1216 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 04:14](1294 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:04](1217 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:08](1215 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:14, 04:04](1216 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 04:04](1213 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:01](1212 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:06](1214 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:31](1222 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 03:57](1206 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:14](1223 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:01](1223 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:51, 06:51](1222 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 02:45]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:22]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:45, 14:46](1299 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:56, 05:33](1149 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:54, 02:58](1035 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:23](1296 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:45](1044 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:37, 03:14](984 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:11](1093 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:35](945 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:07, 08:46]
+PASS -- TEST 'conus13km_control_intel' [03:40, 01:44](1297 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:44](1207 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:09](1151 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:50]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:49](1081 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:59](1101 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:49](1100 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:36, 11:55](1329 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:32, 12:09](990 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:33, 06:58](1237 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:27, 11:59](1404 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:40]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 04:00](1149 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:06, 09:38]
+PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:52](879 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:35](1285 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:14, 06:33](958 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 13:55](992 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 15:02](1009 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:50](608 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:16, 07:28](613 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:02](441 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 08:23](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:57](625 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:48](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 05:02](679 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:49](447 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:06, 02:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:30](628 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:05, 10:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:44, 16:27](728 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:49, 15:29](816 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:52]
+FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:05, 10:29]
+PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:30](934 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 05:34](940 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:48, 16:27](1336 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:08](1138 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:19](1098 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:04](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:05](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:05](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:07](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:09](1149 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:03](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:58](1166 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:45, 04:54](1151 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1139 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:57](2431 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:03](2445 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:01]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:00](1072 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:11, 02:05](1146 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 01:09](338 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:16, 01:14](562 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](558 MB)
+
+PASS -- COMPILE 'atml_intel' [10:06, 08:12]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 06:20](1629 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:59, 06:28](1644 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:40, 03:44](952 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:25]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:34](1696 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:40]
+PASS -- TEST 'control_atmwav_intel' [03:42, 01:31](696 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:31]
+PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:34](1803 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:20](1810 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:32](1824 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:06, 07:07]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:04]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:20, 16:27](4615 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:06, 03:58]
+PASS -- TEST 'control_c48_gnu' [11:26, 09:30](864 MB)
+PASS -- TEST 'control_stochy_gnu' [04:16, 02:16](729 MB)
+PASS -- TEST 'control_ras_gnu' [05:13, 03:44](732 MB)
+PASS -- TEST 'control_p8_gnu' [05:51, 03:38](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:43, 03:39](1517 MB)
+PASS -- TEST 'control_flake_gnu' [06:18, 04:23](810 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:06, 04:22]
+PASS -- TEST 'rap_control_gnu' [09:46, 07:48](1080 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:34, 07:57](1085 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:37, 07:19](1152 MB)
+PASS -- TEST 'rap_restart_gnu' [06:52, 04:08](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:51, 07:49](1085 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:40, 08:14](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:02, 05:50](887 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:28, 04:02](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:02](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:37](1044 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:28, 04:07](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:14](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 01:59](934 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 07:58](1083 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:05, 08:00]
+PASS -- TEST 'control_diag_debug_gnu' [03:20, 01:14](773 MB)
+PASS -- TEST 'regional_debug_gnu' [08:30, 06:28](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:16, 01:56](1097 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:14, 01:54](1091 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 02:04](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 02:01](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:12](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:11](1095 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 01:59](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 02:01](1090 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:13](722 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:19](723 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:26](1505 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:58](1102 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:16](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:21](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:56]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:05, 06:06]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:29](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:58, 03:56](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:57](993 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 03:37](876 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:47, 04:06](949 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 05:35](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:59](855 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:42, 02:35](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:01](1175 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:28](928 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:07, 10:53]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:34, 04:38](988 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:06, 08:40]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:01](980 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 01:54](970 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:32](1281 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:53](955 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:37](1189 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:43](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:06, 09:02]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 02:01](1005 MB)
+
+PASS -- COMPILE 's2swa_gnu' [19:07, 17:50]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:58]
+
+PASS -- COMPILE 's2swa_debug_gnu' [06:06, 04:54]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:05, 15:32]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:06, 05:14]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:04]
SYNOPSIS:
-Starting Date/Time: 20240229 07:55:18
-Ending Date/Time: 20240229 09:15:49
-Total Time: 01h:20m:52s
+Starting Date/Time: 20240303 11:31:58
+Ending Date/Time: 20240303 12:54:14
+Total Time: 01h:22m:37s
Compiles Completed: 53/53
-Tests Completed: 234/234
+Tests Completed: 232/234
+Failed Tests:
+* TEST cpld_control_c48_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2166/tests/logs/log_hercules/rt_cpld_control_c48_intel.log
+* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2166/tests/logs/log_hercules/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERCULES REGRESSION TESTING LOG====
+====START OF HERCULES REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2192570
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:06, 09:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:42, 09:51](789 MB)
+
+PASS -- COMPILE 's2s_intel' [10:06, 08:16]
+PASS -- TEST 'cpld_control_c48_intel' [09:30, 07:18](2836 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240303 14:45:41
+Ending Date/Time: 20240303 15:09:49
+Total Time: 00h:24m:08s
+Compiles Completed: 2/2
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 45d63f7d3d..76df10deef 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-42ce413c756e127649d5c07d8f89535343390d6f
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,245 +24,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_168407
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_130416
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [55:28, 27:58]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:46, 05:34](1758 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [07:33, 42:07]
-PASS -- TEST 'cpld_control_gfsv17_intel' [50:01, 16:00](1644 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:25, 16:53](1864 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [24:09, 07:35](988 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:37, 18:27](1617 MB)
-
-PASS -- COMPILE 's2swa_intel' [30:17, 27:40]
-PASS -- TEST 'cpld_control_p8_intel' [33:35, 05:56](1803 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:00, 06:03](1797 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [26:35, 03:28](1695 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [45:32, 06:06](1826 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:10, 04:27](1715 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [27:21, 06:26](2191 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [05:14, 06:01](1800 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [20:21, 05:17](1752 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [52:04, 06:00](1803 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [59:26, 05:42](1774 MB)
-
-PASS -- COMPILE 's2sw_intel' [34:19, 26:50]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [52:34, 04:33](1639 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:40, 04:40](1687 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [35:20, 04:39]
-PASS -- TEST 'cpld_debug_p8_intel' [59:51, 08:14](1819 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [17:39, 04:13]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [38:18, 05:31](1650 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [38:47, 24:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:34, 04:37](1692 MB)
-
-PASS -- COMPILE 's2s_intel' [05:57, 24:02]
-PASS -- TEST 'cpld_control_c48_intel' [12:22, 09:16](2790 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:07, 03:28]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 05:44](1808 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [49:50, 40:13]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 16:28](1661 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [50:17, 08:00](1026 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:16, 19:06](1634 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [33:18, 04:13]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:22, 24:15](1670 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [33:20, 25:24]
-PASS -- TEST 'control_flake_intel' [10:09, 03:32](642 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:11, 02:27](590 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:18, 02:34](594 MB)
-PASS -- TEST 'control_latlon_intel' [09:07, 02:32](591 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:07, 02:30](594 MB)
-PASS -- TEST 'control_c48_intel' [09:51, 07:18](844 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [17:56, 07:18](842 MB)
-PASS -- TEST 'control_c192_intel' [16:31, 09:12](720 MB)
-PASS -- TEST 'control_c384_intel' [23:34, 13:06](900 MB)
-PASS -- TEST 'control_c384gdas_intel' [35:45, 10:42](1016 MB)
-PASS -- TEST 'control_stochy_intel' [08:09, 01:41](596 MB)
-PASS -- TEST 'control_stochy_restart_intel' [59:57, 00:57](425 MB)
-PASS -- TEST 'control_lndp_intel' [08:08, 01:37](595 MB)
-PASS -- TEST 'control_iovr4_intel' [54:07, 02:34](589 MB)
-PASS -- TEST 'control_iovr5_intel' [09:13, 02:31](596 MB)
-PASS -- TEST 'control_p8_intel' [19:33, 03:04](1564 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:44, 02:56](1566 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:49, 02:55](1576 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:54, 01:35](806 MB)
-PASS -- TEST 'control_noqr_p8_intel' [14:27, 02:55](1549 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:15, 01:45](834 MB)
-PASS -- TEST 'control_decomp_p8_intel' [22:28, 03:12](1550 MB)
-PASS -- TEST 'control_2threads_p8_intel' [13:36, 02:48](1652 MB)
-PASS -- TEST 'control_p8_lndp_intel' [28:07, 05:17](1556 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [27:56, 03:58](1618 MB)
-PASS -- TEST 'control_p8_mynn_intel' [24:32, 03:00](1565 MB)
-PASS -- TEST 'merra2_thompson_intel' [55:48, 03:46](1572 MB)
-PASS -- TEST 'regional_control_intel' [11:01, 05:23](756 MB)
-PASS -- TEST 'regional_restart_intel' [06:49, 02:49](925 MB)
-PASS -- TEST 'regional_decomp_intel' [12:49, 05:44](747 MB)
-PASS -- TEST 'regional_2threads_intel' [18:22, 03:19](741 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [22:07, 05:17](751 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 05:44](751 MB)
-
-PASS -- COMPILE 'rrfs_intel' [29:18, 24:55]
-PASS -- TEST 'rap_control_intel' [16:23, 07:50](968 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 04:26](1197 MB)
-PASS -- TEST 'rap_decomp_intel' [06:39, 08:09](987 MB)
-PASS -- TEST 'rap_2threads_intel' [05:33, 07:19](1073 MB)
-PASS -- TEST 'rap_restart_intel' [32:58, 04:00](973 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:04, 07:58](968 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:44, 08:15](963 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [37:56, 05:49](981 MB)
-PASS -- TEST 'hrrr_control_intel' [08:06, 04:14](965 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:36, 04:22](956 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [11:39, 03:42](1065 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [33:47, 02:12](900 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:57](962 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:05, 09:18](1927 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:16, 09:01](1928 MB)
-
-PASS -- COMPILE 'csawmg_intel' [35:21, 23:04]
-PASS -- TEST 'control_csawmg_intel' [11:28, 06:19](671 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:14, 06:10](688 MB)
-PASS -- TEST 'control_ras_intel' [03:55, 03:24](650 MB)
-
-PASS -- COMPILE 'wam_intel' [30:20, 22:20]
-PASS -- TEST 'control_wam_intel' [03:53, 02:23](499 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [52:29, 22:37]
-PASS -- TEST 'control_p8_faster_intel' [05:23, 02:51](1555 MB)
-PASS -- TEST 'regional_control_faster_intel' [16:56, 04:57](752 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [34:20, 04:49]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [00:00, 02:40](756 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:58, 02:38](755 MB)
-PASS -- TEST 'control_stochy_debug_intel' [54:52, 03:04](755 MB)
-PASS -- TEST 'control_lndp_debug_intel' [47:53, 02:39](756 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [47:13, 04:03](804 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [44:07, 04:02](803 MB)
-PASS -- TEST 'control_ras_debug_intel' [29:41, 02:40](762 MB)
-PASS -- TEST 'control_diag_debug_intel' [31:50, 02:44](809 MB)
-PASS -- TEST 'control_debug_p8_intel' [33:21, 02:44](1577 MB)
-PASS -- TEST 'regional_debug_intel' [46:19, 16:41](765 MB)
-PASS -- TEST 'rap_control_debug_intel' [31:41, 04:47](1142 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [34:42, 04:46](1136 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [35:44, 04:48](1134 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [36:43, 04:47](1133 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:38, 04:48](1148 MB)
-PASS -- TEST 'rap_diag_debug_intel' [34:52, 05:07](1220 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:41, 04:54](1134 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:39, 04:52](1137 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [35:42, 04:57](1141 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:43, 04:49](1145 MB)
-PASS -- TEST 'rap_noah_debug_intel' [34:43, 04:41](1143 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [35:44, 04:49](1144 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [37:45, 07:47](1134 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [36:43, 04:43](1137 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [37:40, 05:49](1142 MB)
-PASS -- TEST 'rap_flake_debug_intel' [35:44, 04:49](1134 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:02, 08:16](1141 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:11, 03:10]
-PASS -- TEST 'control_wam_debug_intel' [39:42, 04:48](439 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:35, 22:05]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [35:53, 04:03](1077 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:35, 06:26](896 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:45, 03:25](858 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:21, 06:10](935 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:31, 03:07](907 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:32, 03:36](839 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:59, 04:50](895 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [31:43, 01:54](833 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:43, 30:46]
-PASS -- TEST 'conus13km_control_intel' [30:29, 02:11](1090 MB)
-PASS -- TEST 'conus13km_2threads_intel' [39:11, 01:09](1042 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [39:59, 01:10](1005 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:36, 22:58]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [28:11, 04:37](887 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [49:26, 03:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:40, 04:53](1033 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:38, 04:40](1024 MB)
-PASS -- TEST 'conus13km_debug_intel' [33:08, 14:06](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [35:08, 14:10](835 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [25:56, 08:06](1081 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:00, 13:53](1196 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [38:20, 03:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:37, 04:50](1048 MB)
-
-PASS -- COMPILE 'hafsw_intel' [56:30, 25:21]
-PASS -- TEST 'hafs_regional_atm_intel' [31:52, 06:41](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [35:49, 06:29](1085 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:17, 07:58](768 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [44:52, 13:31](798 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:06, 15:13](818 MB)
-PASS -- TEST 'gnv1_nested_intel' [38:51, 05:04](771 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [56:28, 23:51]
-PASS -- TEST 'hafs_regional_docn_intel' [49:45, 06:38](770 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:55, 06:48](751 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [43:23, 07:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:28, 02:42](1039 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:37](1009 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:31](914 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:43](917 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:53](914 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:20, 02:50](1033 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:22, 02:40](1043 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:16, 02:33](920 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [46:45, 06:20](882 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:44, 06:24](829 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:14, 02:44](1035 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:02](2341 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [17:27, 03:59](2342 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [34:21, 03:01]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:27, 05:56](990 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [32:18, 06:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:26, 02:38](1038 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [21:14, 01:24]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:52, 01:12](224 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:44, 01:05](246 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:34, 00:38](245 MB)
-
-PASS -- COMPILE 'atml_intel' [41:21, 24:44]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:25, 09:25](1583 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [50:10, 09:11](1582 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:03, 04:29](859 MB)
-
-PASS -- COMPILE 'atmw_intel' [37:21, 22:55]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [43:55, 01:45](1579 MB)
-
-PASS -- COMPILE 'atmwm_intel' [37:23, 23:03]
-PASS -- TEST 'control_atmwav_intel' [42:44, 01:40](605 MB)
-
-PASS -- COMPILE 'atmaero_intel' [35:21, 22:30]
-PASS -- TEST 'atmaero_control_p8_intel' [44:08, 04:04](1675 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [45:54, 04:56](1704 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:39, 05:09](1714 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [29:18, 28:00]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:15, 05:19](1756 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [46:27, 40:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:59, 16:18](1635 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:47, 16:38](1847 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [25:37, 07:38](977 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:13, 18:13](1609 MB)
+
+PASS -- COMPILE 's2swa_intel' [35:21, 28:15]
+PASS -- TEST 'cpld_control_p8_intel' [19:22, 05:58](1798 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:38, 06:00](1798 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [24:32, 03:27](1690 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:04, 06:23](1822 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [36:03, 03:37](1693 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [50:05, 05:44](2189 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [00:53, 06:16](1792 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [54:52, 05:02](1751 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:28, 06:06](1801 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [31:26, 05:39](1746 MB)
+
+PASS -- COMPILE 's2sw_intel' [34:20, 26:56]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [44:50, 04:25](1635 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:11, 04:45](1663 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:09, 04:45]
+PASS -- TEST 'cpld_debug_p8_intel' [57:40, 11:23](1791 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:15]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [56:58, 05:45](1650 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [25:16, 24:00]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:48, 04:38](1689 MB)
+
+PASS -- COMPILE 's2s_intel' [27:19, 24:17]
+PASS -- TEST 'cpld_control_c48_intel' [15:25, 09:16](2797 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [05:32, 03:19]
+PASS -- TEST 'cpld_control_p8_faster_intel' [31:42, 06:09](1807 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [41:24, 38:55]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [55:33, 17:13](1658 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:04, 07:57](1025 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 19:05](1635 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:08, 04:07]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:27, 24:51](1671 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [42:25, 25:36]
+PASS -- TEST 'control_flake_intel' [41:14, 03:59](647 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [38:14, 02:34](591 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:23, 02:38](598 MB)
+PASS -- TEST 'control_latlon_intel' [39:28, 02:38](582 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [38:19, 02:28](589 MB)
+PASS -- TEST 'control_c48_intel' [09:41, 07:32](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:42, 07:20](845 MB)
+PASS -- TEST 'control_c192_intel' [39:29, 09:41](717 MB)
+PASS -- TEST 'control_c384_intel' [46:28, 11:54](893 MB)
+PASS -- TEST 'control_c384gdas_intel' [36:13, 10:36](1011 MB)
+PASS -- TEST 'control_stochy_intel' [18:04, 01:37](582 MB)
+PASS -- TEST 'control_stochy_restart_intel' [18:37, 00:59](426 MB)
+PASS -- TEST 'control_lndp_intel' [14:01, 01:33](596 MB)
+PASS -- TEST 'control_iovr4_intel' [11:03, 02:28](585 MB)
+PASS -- TEST 'control_iovr5_intel' [46:50, 02:26](593 MB)
+PASS -- TEST 'control_p8_intel' [30:00, 02:59](1553 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [24:29, 02:58](1559 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [23:43, 02:52](1558 MB)
+PASS -- TEST 'control_restart_p8_intel' [16:21, 01:35](811 MB)
+PASS -- TEST 'control_noqr_p8_intel' [23:21, 02:52](1551 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [19:28, 01:34](829 MB)
+PASS -- TEST 'control_decomp_p8_intel' [23:17, 03:02](1544 MB)
+PASS -- TEST 'control_2threads_p8_intel' [23:16, 02:45](1644 MB)
+PASS -- TEST 'control_p8_lndp_intel' [25:20, 05:13](1561 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [27:09, 03:56](1615 MB)
+PASS -- TEST 'control_p8_mynn_intel' [23:52, 03:01](1561 MB)
+PASS -- TEST 'merra2_thompson_intel' [25:00, 03:27](1569 MB)
+PASS -- TEST 'regional_control_intel' [07:46, 05:16](752 MB)
+PASS -- TEST 'regional_restart_intel' [15:46, 02:52](925 MB)
+PASS -- TEST 'regional_decomp_intel' [08:12, 05:38](752 MB)
+PASS -- TEST 'regional_2threads_intel' [21:46, 03:19](745 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [22:53, 05:19](760 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [17:49, 05:20](755 MB)
+
+PASS -- COMPILE 'rrfs_intel' [40:21, 24:28]
+PASS -- TEST 'rap_control_intel' [35:44, 07:53](965 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:18, 04:44](1201 MB)
+PASS -- TEST 'rap_decomp_intel' [35:44, 08:18](968 MB)
+PASS -- TEST 'rap_2threads_intel' [35:21, 07:24](1062 MB)
+PASS -- TEST 'rap_restart_intel' [22:44, 03:57](978 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [35:51, 07:50](969 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [35:51, 08:06](960 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [24:53, 05:45](985 MB)
+PASS -- TEST 'hrrr_control_intel' [40:32, 04:06](969 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [40:32, 04:18](959 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [40:32, 03:53](1048 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [17:37, 02:09](904 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [36:23, 07:48](962 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [36:15, 09:25](1925 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [36:15, 09:05](1924 MB)
+
+PASS -- COMPILE 'csawmg_intel' [43:25, 23:22]
+PASS -- TEST 'control_csawmg_intel' [21:01, 06:04](682 MB)
+PASS -- TEST 'control_csawmgt_intel' [19:03, 05:59](687 MB)
+PASS -- TEST 'control_ras_intel' [20:32, 03:23](659 MB)
+
+PASS -- COMPILE 'wam_intel' [28:16, 21:30]
+PASS -- TEST 'control_wam_intel' [17:30, 02:07](492 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [25:19, 23:07]
+PASS -- TEST 'control_p8_faster_intel' [18:53, 02:41](1555 MB)
+PASS -- TEST 'regional_control_faster_intel' [20:00, 04:54](750 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 05:12]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:37, 02:41](756 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:37, 02:39](753 MB)
+PASS -- TEST 'control_stochy_debug_intel' [17:33, 02:55](754 MB)
+PASS -- TEST 'control_lndp_debug_intel' [17:29, 02:38](755 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [19:48, 04:00](807 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [20:54, 03:59](802 MB)
+PASS -- TEST 'control_ras_debug_intel' [19:28, 02:40](768 MB)
+PASS -- TEST 'control_diag_debug_intel' [19:48, 02:48](804 MB)
+PASS -- TEST 'control_debug_p8_intel' [20:02, 02:51](1571 MB)
+PASS -- TEST 'regional_debug_intel' [31:59, 16:56](767 MB)
+PASS -- TEST 'rap_control_debug_intel' [21:34, 04:49](1139 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [20:29, 04:44](1137 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [21:30, 04:47](1135 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [21:35, 04:50](1131 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:33, 04:51](1139 MB)
+PASS -- TEST 'rap_diag_debug_intel' [22:45, 05:09](1224 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [20:39, 05:01](1134 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:53](1139 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [18:31, 05:09](1147 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [19:33, 04:50](1141 MB)
+PASS -- TEST 'rap_noah_debug_intel' [18:33, 04:43](1134 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [19:35, 04:50](1142 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:34, 07:49](1132 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [18:35, 04:49](1125 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [21:39, 05:50](1140 MB)
+PASS -- TEST 'rap_flake_debug_intel' [19:34, 04:52](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:49, 08:12](1142 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:07, 03:05]
+PASS -- TEST 'control_wam_debug_intel' [19:31, 04:48](429 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:15, 21:31]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:23, 04:00](1057 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:35, 06:23](897 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:11, 03:23](865 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:13, 06:06](937 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:28, 03:06](895 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:21, 03:33](841 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:56, 04:50](885 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:49, 01:53](830 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [32:19, 30:16]
+PASS -- TEST 'conus13km_control_intel' [23:19, 02:11](1091 MB)
+PASS -- TEST 'conus13km_2threads_intel' [45:18, 01:06](1043 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [46:12, 01:10](1010 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [27:16, 22:32]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:03, 04:22](902 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:13, 03:28]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:36, 04:44](1024 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:37, 04:41](1015 MB)
+PASS -- TEST 'conus13km_debug_intel' [33:12, 14:06](1127 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [34:03, 14:21](852 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [30:01, 08:01](1077 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:10, 13:43](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 03:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:34, 04:47](1047 MB)
+
+PASS -- COMPILE 'hafsw_intel' [27:17, 25:39]
+PASS -- TEST 'hafs_regional_atm_intel' [33:39, 05:48](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:48, 05:52](1071 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [41:10, 07:42](765 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [48:49, 13:17](788 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:00, 15:15](818 MB)
+PASS -- TEST 'gnv1_nested_intel' [52:00, 04:27](763 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [27:16, 23:05]
+PASS -- TEST 'hafs_regional_docn_intel' [57:52, 06:39](759 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:53, 06:46](757 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [18:14, 06:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:40](1032 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:27, 01:41](1006 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:21, 02:40](907 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:20, 02:37](916 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:21, 02:40](907 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:22, 02:44](1041 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:24, 02:40](1038 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [15:23, 02:34](912 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:39, 06:38](881 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [54:37, 07:14](828 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [44:36, 02:39](1036 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:01](2341 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [43:38, 04:04](2399 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [17:13, 03:01]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [47:41, 06:08](982 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [30:18, 06:44]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [45:39, 02:43](1038 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [22:16, 01:21]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [45:07, 01:05](226 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [44:54, 01:04](247 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:36, 00:37](249 MB)
+
+PASS -- COMPILE 'atml_intel' [44:23, 24:56]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [52:28, 08:20](1577 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [53:22, 09:16](1580 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:08, 04:07](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [54:30, 22:52]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [45:02, 01:46](1577 MB)
+
+PASS -- COMPILE 'atmwm_intel' [01:31, 22:39]
+PASS -- TEST 'control_atmwav_intel' [44:42, 01:39](599 MB)
+
+PASS -- COMPILE 'atmaero_intel' [52:25, 22:19]
+PASS -- TEST 'atmaero_control_p8_intel' [48:01, 04:17](1649 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [46:59, 04:57](1703 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:38, 05:10](1711 MB)
SYNOPSIS:
-Starting Date/Time: 20240228 05:58:22
-Ending Date/Time: 20240228 13:01:55
-Total Time: 07h:03m:59s
+Starting Date/Time: 20240303 20:22:32
+Ending Date/Time: 20240304 01:40:10
+Total Time: 05h:18m:04s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 18731b706a..964e86ffe5 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-3951b805f6c6071a13b4686f8fd00e93840f5040
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,280 +24,340 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_246111
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_174810
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:22]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:15](3178 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:33]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 16:37](1737 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:59, 17:14](2027 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 08:15](1110 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:41, 18:40](1645 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:10]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:59, 23:49](1686 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:07, 15:12]
-PASS -- TEST 'cpld_control_p8_intel' [08:23, 05:41](3216 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:42](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:16](3259 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:23, 05:51](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:16](3276 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:28, 06:16](3498 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:23, 05:42](3203 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:23, 04:45](3068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:40, 05:41](3214 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:38, 09:54](3341 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:28, 06:17](3627 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:31, 11:09](4123 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:01, 06:56](4369 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:34, 05:26](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:07, 13:23]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:22](1733 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:21, 04:40](1773 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:42]
-PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:54](3252 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:01]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 06:00](1753 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:53]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:29](1779 MB)
-
-PASS -- COMPILE 's2s_intel' [14:07, 12:23]
-PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:14](2834 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:16]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:24, 05:39](3203 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 19:03]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:10, 16:31](1725 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:05](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:11, 18:33](1687 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:05, 05:53]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:49](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:59]
-PASS -- TEST 'control_flake_intel' [05:19, 03:34](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:33](642 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:37](661 MB)
-PASS -- TEST 'control_latlon_intel' [04:19, 02:35](654 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:37](655 MB)
-PASS -- TEST 'control_c48_intel' [07:24, 05:57](873 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:00](880 MB)
-PASS -- TEST 'control_c192_intel' [11:38, 09:32](859 MB)
-PASS -- TEST 'control_c384_intel' [13:33, 10:06](1248 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:43, 08:58](1358 MB)
-PASS -- TEST 'control_stochy_intel' [03:20, 01:45](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:11](504 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:40](657 MB)
-PASS -- TEST 'control_iovr4_intel' [04:24, 02:32](651 MB)
-PASS -- TEST 'control_iovr5_intel' [04:20, 02:26](655 MB)
-PASS -- TEST 'control_p8_intel' [05:06, 03:03](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:04](1636 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:58](1629 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:07, 01:39](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:07, 02:52](1621 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:11, 01:48](925 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:20, 03:09](1611 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:04](1703 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1628 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 03:52](1702 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:33, 02:56](1630 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:40, 03:23](1649 MB)
-PASS -- TEST 'regional_control_intel' [06:39, 05:02](857 MB)
-PASS -- TEST 'regional_restart_intel' [04:39, 02:44](1024 MB)
-PASS -- TEST 'regional_decomp_intel' [07:38, 05:30](851 MB)
-PASS -- TEST 'regional_2threads_intel' [05:29, 03:44](850 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:30, 05:12](1361 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:10](852 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:09](859 MB)
-PASS -- TEST 'regional_wofs_intel' [11:35, 09:13](1921 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:07, 12:09]
-PASS -- TEST 'rap_control_intel' [10:22, 07:58](1108 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:47](1302 MB)
-PASS -- TEST 'rap_decomp_intel' [11:08, 08:07](1035 MB)
-PASS -- TEST 'rap_2threads_intel' [10:04, 07:53](1178 MB)
-PASS -- TEST 'rap_restart_intel' [07:19, 04:07](1101 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:28, 07:44](1099 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:07](1028 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:18, 06:01](1134 MB)
-PASS -- TEST 'hrrr_control_intel' [06:24, 04:01](1023 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:07](1025 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:09, 04:05](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:10](998 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:13, 07:36](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:10](1993 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 08:52](2071 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:06, 11:06]
-PASS -- TEST 'control_csawmg_intel' [07:47, 05:50](749 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:41, 05:47](750 MB)
-PASS -- TEST 'control_ras_intel' [05:19, 03:16](744 MB)
-
-PASS -- COMPILE 'wam_intel' [13:06, 11:33]
-PASS -- TEST 'control_wam_intel' [04:18, 02:04](656 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 12:10]
-PASS -- TEST 'control_p8_faster_intel' [05:33, 02:34](1631 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:41, 04:40](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:06, 05:21]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:50](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:40](809 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:17](818 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:52](814 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](864 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:08](866 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:18, 02:48](826 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:25, 04:13](873 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:42, 02:52](1648 MB)
-PASS -- TEST 'regional_debug_intel' [19:41, 17:42](833 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:22, 04:59](1207 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:45](1200 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:56](1196 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:58](1205 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:57](1201 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:14](1293 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:04](1198 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1210 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1202 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1197 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1204 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:51](1208 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1203 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:55](1195 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:52](1204 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:19, 05:15](1208 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:40](1203 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:06, 04:11]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:29](506 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:33]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 04:28](1170 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 06:23](1056 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:25](978 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:44](1052 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](968 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:35](935 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:12, 04:56](1034 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:54](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:31]
-PASS -- TEST 'conus13km_control_intel' [04:51, 02:06](1204 MB)
-PASS -- TEST 'conus13km_2threads_intel' [15:49, 01:01](1127 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](1113 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:07, 11:36]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:12](1000 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:51]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:53](1085 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1072 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:51, 14:43](1231 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:45](923 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:18](1160 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:10](1292 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:54]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:57](1117 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:07, 13:57]
-PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:36](738 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:59](1124 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:16, 06:55](833 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:01](866 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:33](883 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:06](500 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:37](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:08](352 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:00](517 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:03](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:56](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:24](583 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:37](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:50, 04:29](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:23](568 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:33](669 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:58, 09:35](738 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:25]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 07:05](729 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:06, 13:02]
-PASS -- TEST 'hafs_regional_docn_intel' [09:09, 06:10](829 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:18](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 15:56](1208 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:30]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:40](1137 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:36](1091 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:36](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:33](1021 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:36](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1128 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1013 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:51](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:07, 05:59](1042 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:42](1129 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:36](2441 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:41](2491 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:20]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:17](1056 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 08:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:45](1139 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:47](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](323 MB)
-
-PASS -- COMPILE 'atml_intel' [18:07, 16:27]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:26](1609 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:19](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:19](896 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:07, 11:32]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:55](1674 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:07, 11:52]
-PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:07, 11:45]
-PASS -- TEST 'atmaero_control_p8_intel' [06:16, 03:59](3025 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:48](3086 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 05:08](3101 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:07, 10:15]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:49, 21:23](4578 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [17:07, 14:33]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:10, 05:08](3184 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 18:36]
+PASS -- TEST 'cpld_control_gfsv17_intel' [00:15, 16:18](1744 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:58, 17:20](2021 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1117 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:17, 18:24](1645 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [49:43, 23:07](1697 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:07, 14:36]
+PASS -- TEST 'cpld_control_p8_intel' [01:59, 05:44](3208 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [43:15, 05:41](3210 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [52:00, 03:22](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [01:59, 05:44](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [52:01, 03:33](3203 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [03:04, 06:07](3552 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [01:59, 05:39](3204 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [55:55, 04:43](3070 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [02:09, 05:38](3207 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [07:09, 09:52](3342 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [51:23, 06:13](3627 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [11:45, 11:04](4166 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:44, 07:18](4296 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [02:01, 05:24](3170 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:07, 15:09]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [00:39, 04:24](1737 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [00:59, 04:19](1780 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:09]
+PASS -- TEST 'cpld_debug_p8_intel' [59:26, 08:25](3242 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:01]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [57:08, 05:53](1748 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:07, 12:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:19, 04:21](1778 MB)
+
+PASS -- COMPILE 's2s_intel' [16:12, 13:25]
+FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [22:12, 19:31]
+PASS -- TEST 'cpld_control_p8_faster_intel' [28:42, 05:29](3212 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:07, 19:16]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:44, 16:32](1768 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:25, 08:23](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 18:32](1674 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 04:55]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:12, 24:28](1719 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [19:06, 13:24]
+PASS -- TEST 'control_flake_intel' [42:52, 03:41](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [39:49, 02:27](648 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:53, 02:38](654 MB)
+PASS -- TEST 'control_latlon_intel' [41:47, 02:40](599 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:55, 02:31](650 MB)
+PASS -- TEST 'control_c48_intel' [47:32, 06:01](875 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [47:28, 06:01](862 MB)
+PASS -- TEST 'control_c192_intel' [12:10, 09:04](857 MB)
+PASS -- TEST 'control_c384_intel' [11:55, 10:13](1240 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:13, 08:55](1355 MB)
+PASS -- TEST 'control_stochy_intel' [54:40, 01:44](655 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:18, 01:09](479 MB)
+PASS -- TEST 'control_lndp_intel' [53:35, 01:38](654 MB)
+PASS -- TEST 'control_iovr4_intel' [54:41, 02:31](652 MB)
+PASS -- TEST 'control_iovr5_intel' [50:41, 02:33](653 MB)
+PASS -- TEST 'control_p8_intel' [51:27, 03:03](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [51:31, 03:08](1586 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [51:53, 02:55](1634 MB)
+PASS -- TEST 'control_restart_p8_intel' [11:07, 01:48](894 MB)
+PASS -- TEST 'control_noqr_p8_intel' [51:24, 02:56](1617 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:04, 01:39](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [51:21, 03:01](1612 MB)
+PASS -- TEST 'control_2threads_p8_intel' [50:18, 03:05](1723 MB)
+PASS -- TEST 'control_p8_lndp_intel' [51:59, 05:15](1630 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [12:28, 04:03](1686 MB)
+PASS -- TEST 'control_p8_mynn_intel' [20:24, 03:03](1635 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:22, 03:35](1635 MB)
+PASS -- TEST 'regional_control_intel' [07:32, 05:06](858 MB)
+PASS -- TEST 'regional_restart_intel' [04:32, 02:49](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:27, 05:30](852 MB)
+PASS -- TEST 'regional_2threads_intel' [05:28, 03:42](845 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:30, 05:03](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 05:03](861 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:09](858 MB)
+PASS -- TEST 'regional_wofs_intel' [08:29, 06:38](1925 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:06, 12:25]
+PASS -- TEST 'rap_control_intel' [10:18, 07:44](1072 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:45](1298 MB)
+PASS -- TEST 'rap_decomp_intel' [10:53, 08:10](1023 MB)
+PASS -- TEST 'rap_2threads_intel' [10:18, 07:55](1171 MB)
+PASS -- TEST 'rap_restart_intel' [06:08, 04:03](1064 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:21, 07:43](1092 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:12, 08:08](1028 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:26, 05:52](1129 MB)
+PASS -- TEST 'hrrr_control_intel' [06:00, 04:00](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:14, 04:10](1019 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:24](1120 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:14](968 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:16, 07:42](1096 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:15](1991 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:52](2077 MB)
+
+PASS -- COMPILE 'csawmg_intel' [18:06, 11:47]
+PASS -- TEST 'control_csawmg_intel' [07:40, 05:50](745 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:43, 05:45](749 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:21](742 MB)
+
+PASS -- COMPILE 'wam_intel' [16:06, 10:19]
+PASS -- TEST 'control_wam_intel' [04:18, 02:08](659 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:06, 11:52]
+PASS -- TEST 'control_p8_faster_intel' [05:28, 02:39](1632 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:46, 04:37](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:06, 04:36]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:46](815 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:43](811 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:02](814 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](814 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:11](869 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 04:16](862 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:46](829 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:23, 02:56](872 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1633 MB)
+PASS -- TEST 'regional_debug_intel' [18:40, 16:46](844 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:21, 04:50](1200 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:55](1195 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 04:47](1212 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 04:50](1196 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 04:48](1206 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:12](1287 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 05:39](1158 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 04:54](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1210 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:57](1197 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:45](1208 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:40](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:03](1204 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 05:04](1198 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:00](1206 MB)
+PASS -- TEST 'rap_flake_debug_intel' [42:23, 05:07](1206 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:27, 08:29](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:06, 03:09]
+PASS -- TEST 'control_wam_debug_intel' [43:41, 04:56](511 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 11:14]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:04, 04:30](1168 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:22, 06:26](1049 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:02, 03:28](995 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:54, 06:44](1086 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:21, 03:04](967 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [24:00, 03:41](933 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:48, 04:55](1031 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:23, 01:56](932 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:06, 13:02]
+PASS -- TEST 'conus13km_control_intel' [21:59, 02:08](1201 MB)
+PASS -- TEST 'conus13km_2threads_intel' [16:01, 01:06](1127 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [07:53, 01:22](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:20]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 04:27](938 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:05, 03:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:32, 05:07](1024 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:25, 04:55](1078 MB)
+PASS -- TEST 'conus13km_debug_intel' [31:55, 14:19](1229 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 14:08](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:55, 08:26](1152 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:58, 14:15](1294 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:05, 03:48]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:02](1119 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:06, 12:23]
+PASS -- TEST 'hafs_regional_atm_intel' [23:18, 05:34](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 06:01](1123 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:32, 07:01](782 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [40:22, 12:51](868 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:29, 14:34](883 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:35, 06:10](504 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 07:26](518 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [23:59, 03:13](370 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:36, 08:04](484 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:18, 04:15](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:14, 04:01](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:57, 05:22](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:44, 01:41](406 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:50, 04:31](805 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:06, 03:58]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:12, 12:59](568 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:06, 13:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:13, 09:33](669 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:18, 09:33](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:07, 13:25]
+FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:06, 11:37]
+PASS -- TEST 'hafs_regional_docn_intel' [19:37, 06:26](826 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:30, 06:27](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [52:02, 16:12](1216 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:06, 08:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [38:19, 02:37](1138 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:22, 01:37](1086 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [53:20, 02:37](1018 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [55:19, 02:44](1019 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [17:21, 02:38](1013 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [17:25, 02:43](1124 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [16:21, 02:38](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:27, 02:33](1016 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [32:25, 06:02](1060 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:22, 06:17](1013 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 02:38](1135 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [14:14, 03:39](2491 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [38:27, 03:41](2418 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 04:06]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [39:34, 06:17](1050 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:07, 08:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [39:28, 02:44](1112 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:06, 01:06]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:05](264 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [57:31, 00:49](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:32](323 MB)
+
+PASS -- COMPILE 'atml_intel' [14:08, 12:02]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:38, 04:19](1604 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [42:32, 04:24](1603 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:19](894 MB)
+
+PASS -- COMPILE 'atmw_intel' [19:06, 13:18]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [21:19, 01:49](1667 MB)
+
+PASS -- COMPILE 'atmwm_intel' [17:06, 13:20]
+PASS -- TEST 'control_atmwav_intel' [15:09, 01:46](673 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:07, 11:56]
+PASS -- TEST 'atmaero_control_p8_intel' [16:17, 04:02](3027 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [17:15, 04:51](3098 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:07](3113 MB)
+
+PASS -- COMPILE 'atmaq_intel' [18:07, 11:49]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:07, 03:31]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 21:12](4583 MB)
SYNOPSIS:
-Starting Date/Time: 20240229 07:59:33
-Ending Date/Time: 20240229 09:30:04
-Total Time: 01h:30m:56s
+Starting Date/Time: 20240303 11:32:14
+Ending Date/Time: 20240303 21:01:05
+Total Time: 09h:29m:43s
Compiles Completed: 39/39
-Tests Completed: 182/182
+Tests Completed: 180/182
+Failed Tests:
+* TEST cpld_control_c48_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2166/tests/logs/log_orion/rt_cpld_control_c48_intel.log
+* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2166/tests/logs/log_orion/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_340961
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-c) - CREATE NEW BASELINES
+* (-l) - USE CONFIG FILE: rt.conf
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:06, 13:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:42, 07:21](812 MB)
+
+PASS -- COMPILE 's2s_intel' [14:06, 12:26]
+PASS -- TEST 'cpld_control_c48_intel' [10:35, 08:12](2829 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240304 08:49:31
+Ending Date/Time: 20240304 11:13:01
+Total Time: 02h:23m:43s
+Compiles Completed: 2/2
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 8f74579901..ce63e4104c 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-870b560324452362e10a1cdace0b2941e445d7f0
+9773ef5e7aaf8c57a26abe2647efe981582ca031
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
+ 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (remotes/origin/HEAD)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
+ 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -24,388 +24,238 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_145152
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240301
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_190987
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [46:01, 44:47]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 01:19](2972 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:13, 27:03]
-PASS -- TEST 'cpld_control_gfsv17_intel' [29:41, 02:16](1586 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:28, 02:09](1706 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 01:28](845 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:42, 01:47](1567 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:28, 04:19]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [52:27, 02:08](1608 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:47, 14:54]
-PASS -- TEST 'cpld_control_p8_intel' [42:07, 01:23](3003 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:07, 01:35](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [33:48, 01:58](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [42:07, 01:23](3028 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [33:47, 01:56](3081 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [42:07, 01:10](3320 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [42:07, 01:26](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [42:08, 01:33](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:07, 01:40](3003 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [42:16, 03:15](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:44, 04:01](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [42:07, 01:54](2966 MB)
-
-PASS -- COMPILE 's2sw_intel' [26:08, 25:27]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [31:45, 00:53](1584 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [31:45, 01:01](1639 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:45, 14:23]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:08, 00:59](1634 MB)
-
-PASS -- COMPILE 's2s_intel' [10:36, 09:47]
-PASS -- TEST 'cpld_control_c48_intel' [47:16, 00:48](2651 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:28]
-PASS -- TEST 'cpld_control_p8_faster_intel' [41:03, 01:47](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:50, 16:05]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:03, 01:29](1604 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [23:16, 00:50](900 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:17, 00:59](1582 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:45]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:04, 01:30](1618 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [40:48, 40:35]
-PASS -- TEST 'control_flake_intel' [11:37, 00:27](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [11:37, 00:50](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:37, 00:51](528 MB)
-PASS -- TEST 'control_latlon_intel' [11:37, 00:46](524 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:37, 00:52](523 MB)
-PASS -- TEST 'control_c48_intel' [11:36, 00:54](718 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:36, 00:58](718 MB)
-PASS -- TEST 'control_c192_intel' [11:37, 00:25](641 MB)
-PASS -- TEST 'control_c384_intel' [11:41, 01:05](949 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:41, 01:56](1090 MB)
-PASS -- TEST 'control_stochy_intel' [11:37, 00:27](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [09:09, 01:00](327 MB)
-PASS -- TEST 'control_lndp_intel' [11:37, 00:28](526 MB)
-PASS -- TEST 'control_iovr4_intel' [11:37, 00:47](525 MB)
-PASS -- TEST 'control_iovr5_intel' [11:37, 00:47](525 MB)
-PASS -- TEST 'control_p8_intel' [11:37, 01:40](1513 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [11:37, 02:00](1507 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [11:37, 02:01](1511 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:22, 01:04](689 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:37, 01:40](1490 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:21, 01:09](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [11:37, 01:31](1501 MB)
-PASS -- TEST 'control_2threads_p8_intel' [11:37, 01:22](1590 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:37, 01:23](1500 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 01:04](1554 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:06, 01:53](1513 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:24, 01:38](1514 MB)
-PASS -- TEST 'regional_control_intel' [09:07, 00:26](608 MB)
-PASS -- TEST 'regional_restart_intel' [03:17, 00:27](776 MB)
-PASS -- TEST 'regional_decomp_intel' [08:17, 00:11](606 MB)
-PASS -- TEST 'regional_2threads_intel' [08:05, 01:06](667 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:01, 00:30](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 00:29](611 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:01, 00:22](611 MB)
-PASS -- TEST 'regional_wofs_intel' [07:53, 01:03](1578 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:40, 13:07]
-PASS -- TEST 'rap_control_intel' [33:36, 01:11](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:37, 01:14](1097 MB)
-PASS -- TEST 'rap_decomp_intel' [33:36, 01:48](919 MB)
-PASS -- TEST 'rap_2threads_intel' [33:36, 01:51](1008 MB)
-PASS -- TEST 'rap_restart_intel' [25:04, 01:31](784 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [33:36, 01:18](917 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:36, 01:42](914 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [25:02, 02:00](783 MB)
-PASS -- TEST 'hrrr_control_intel' [33:36, 01:09](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [33:36, 01:03](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [33:37, 01:32](999 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [28:25, 01:06](743 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [33:36, 01:19](908 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [33:36, 01:16](1879 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:36, 00:24](1858 MB)
-
-PASS -- COMPILE 'csawmg_intel' [25:05, 24:00]
-PASS -- TEST 'control_csawmg_intel' [18:03, 00:26](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [18:03, 00:29](599 MB)
-PASS -- TEST 'control_ras_intel' [18:03, 00:56](559 MB)
-
-PASS -- COMPILE 'wam_intel' [12:38, 12:20]
-PASS -- TEST 'control_wam_intel' [29:28, 00:55](272 MB)
-
-FAIL TO RUN -- COMPILE 'atm_faster_dyn32_intel' [, ]
-MISSING -- TEST 'control_p8_faster_intel' [, ]( MB)
-MISSING -- TEST 'regional_control_faster_intel' [, ]( MB)
-
-FAIL TO RUN -- COMPILE 'atm_debug_dyn32_intel' [, ]
-MISSING -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_stochy_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_lndp_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_csawmg_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_csawmgt_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_ras_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_diag_debug_intel' [, ]( MB)
-MISSING -- TEST 'control_debug_p8_intel' [, ]( MB)
-MISSING -- TEST 'regional_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_control_debug_intel' [, ]( MB)
-MISSING -- TEST 'hrrr_control_debug_intel' [, ]( MB)
-MISSING -- TEST 'hrrr_gf_debug_intel' [, ]( MB)
-MISSING -- TEST 'hrrr_c3_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_diag_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_lndp_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_noah_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB)
-MISSING -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_clm_lake_debug_intel' [, ]( MB)
-MISSING -- TEST 'rap_flake_debug_intel' [, ]( MB)
-MISSING -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'wam_debug_intel' [22:01, 21:22]
-PASS -- TEST 'control_wam_debug_intel' [21:11, 00:50](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:27, 31:14]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:09, 01:24](950 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:08, 01:22](793 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:08, 01:43](785 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:08, 01:52](853 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:09, 01:34](840 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:08, 01:34](787 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:38, 01:40](685 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:57, 00:22](666 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:55, 18:53]
-PASS -- TEST 'conus13km_control_intel' [11:49, 01:17](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [07:46, 00:56](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [07:46, 00:43](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 11:47]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:01, 01:32](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:50, 42:30]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:37, 01:18](956 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:37, 01:25](955 MB)
-PASS -- TEST 'conus13km_debug_intel' [46:37, 00:48](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [46:37, 00:37](711 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [46:38, 00:56](1039 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [46:37, 00:42](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [34:29, 33:56]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:34, 01:05](977 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:57, 20:01]
-PASS -- TEST 'hafs_regional_atm_intel' [56:06, 01:20](620 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [56:06, 00:53](964 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [56:04, 02:06](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [56:04, 02:12](695 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:05, 01:51](704 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [56:04, 01:22](388 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:05, 01:23](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [56:05, 01:39](282 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:08, 02:43](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:04, 00:42](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [56:04, 01:03](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [56:06, 00:54](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [56:05, 00:26](313 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:47, 14:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:08, 00:58](499 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:53, 17:43]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [52:59, 01:06](525 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:59, 01:01](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [26:06, 25:11]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [45:34, 01:06](712 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:48, 13:47]
-PASS -- TEST 'hafs_regional_docn_intel' [46:21, 01:29](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:21, 01:32](648 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:19, 03:40](881 MB)
-
-PASS -- COMPILE 'atml_intel' [14:44, 12:59]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:28, 01:19](1542 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:28, 01:18](1543 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [59:49, 00:21](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:39, 10:12]
-PASS -- TEST 'atmaero_control_p8_intel' [08:32, 01:36](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 00:58](2910 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 01:45](2923 MB)
-
-FAIL TO RUN -- COMPILE 'atmaq_intel' [, ]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:30, 06:58]
-PASS -- TEST 'regional_atmaq_debug_intel' [12:41, 01:04](4441 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [31:22, 30:23]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:30, 01:28](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:47, 14:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [37:06, 01:22](1597 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:49, 02:01](1704 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:49, 01:12](846 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:07, 02:02](1565 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:37, 10:22]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [42:17, 01:29](1613 MB)
+
+PASS -- COMPILE 's2swa_intel' [29:19, 24:00]
+PASS -- TEST 'cpld_control_p8_intel' [37:47, 01:30](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:25, 01:34](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [28:23, 01:39](3062 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [37:00, 01:43](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [27:31, 01:03](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [36:52, 01:25](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [36:03, 01:19](2995 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [35:36, 01:13](2928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:06, 01:24](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [35:09, 04:01](3956 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:56, 04:08](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [34:57, 01:42](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [24:02, 22:28]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [29:50, 00:43](1583 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:50, 01:56](1634 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [21:59, 20:53]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:54, 01:11](1631 MB)
+
+PASS -- COMPILE 's2s_intel' [11:37, 09:47]
+PASS -- TEST 'cpld_control_c48_intel' [42:15, 00:46](2645 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [40:42, 39:16]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:10, 01:37](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [11:36, 10:46]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:17, 01:14](1608 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:31, 00:44](899 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 00:55](1567 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:37, 10:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:17, 00:59](1611 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [29:22, 28:37]
+PASS -- TEST 'control_flake_intel' [12:55, 00:26](575 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [12:55, 01:03](520 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:55, 00:52](531 MB)
+PASS -- TEST 'control_latlon_intel' [12:55, 00:45](525 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:55, 00:58](525 MB)
+PASS -- TEST 'control_c48_intel' [12:54, 01:14](717 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:54, 01:08](714 MB)
+PASS -- TEST 'control_c192_intel' [12:55, 00:23](642 MB)
+PASS -- TEST 'control_c384_intel' [12:59, 01:34](952 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:59, 02:22](1090 MB)
+PASS -- TEST 'control_stochy_intel' [12:55, 00:36](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [09:21, 00:34](328 MB)
+PASS -- TEST 'control_lndp_intel' [12:55, 00:30](529 MB)
+PASS -- TEST 'control_iovr4_intel' [12:55, 00:47](524 MB)
+PASS -- TEST 'control_iovr5_intel' [12:55, 00:56](525 MB)
+PASS -- TEST 'control_p8_intel' [12:55, 01:30](1505 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:55, 01:54](1503 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:55, 01:56](1513 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:34, 01:23](693 MB)
+PASS -- TEST 'control_noqr_p8_intel' [12:55, 01:29](1502 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:31](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [12:55, 01:34](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [12:55, 01:18](1588 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:55, 01:11](1511 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [12:55, 01:06](1561 MB)
+PASS -- TEST 'control_p8_mynn_intel' [12:55, 01:53](1509 MB)
+PASS -- TEST 'merra2_thompson_intel' [12:21, 01:29](1511 MB)
+PASS -- TEST 'regional_control_intel' [09:20, 00:10](609 MB)
+PASS -- TEST 'regional_restart_intel' [00:21, 01:11](782 MB)
+PASS -- TEST 'regional_decomp_intel' [09:08, 01:02](607 MB)
+PASS -- TEST 'regional_2threads_intel' [09:08, 00:47](664 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:17, 00:45](1141 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:15, 00:47](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:15, 00:41](609 MB)
+PASS -- TEST 'regional_wofs_intel' [08:15, 00:18](1577 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:33, 33:35]
+PASS -- TEST 'rap_control_intel' [07:18, 01:38](915 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 01:24](1087 MB)
+PASS -- TEST 'rap_decomp_intel' [06:38, 00:49](920 MB)
+PASS -- TEST 'rap_2threads_intel' [06:36, 01:46](1009 MB)
+PASS -- TEST 'rap_restart_intel' [54:30, 01:33](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [06:15, 02:16](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:13, 01:39](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [53:17, 01:26](784 MB)
+PASS -- TEST 'hrrr_control_intel' [06:12, 01:30](911 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 01:21](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 01:32](998 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [57:04, 01:09](739 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [05:03, 01:25](911 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [05:03, 01:09](1874 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:47, 00:47](1860 MB)
+
+PASS -- COMPILE 'csawmg_intel' [23:07, 22:28]
+PASS -- TEST 'control_csawmg_intel' [19:08, 01:14](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [19:08, 01:20](595 MB)
+PASS -- TEST 'control_ras_intel' [19:08, 01:10](559 MB)
+
+PASS -- COMPILE 'wam_intel' [35:36, 34:40]
+PASS -- TEST 'control_wam_intel' [03:45, 00:14](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [28:20, 27:24]
+PASS -- TEST 'control_p8_faster_intel' [08:13, 01:15](1502 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:06, 00:53](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [39:47, 37:15]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:06, 00:47](688 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:06, 00:53](687 MB)
+PASS -- TEST 'control_stochy_debug_intel' [52:06, 00:25](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [52:06, 00:41](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [52:06, 00:42](730 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [52:06, 00:45](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [52:06, 00:46](703 MB)
+PASS -- TEST 'control_diag_debug_intel' [52:06, 00:35](747 MB)
+PASS -- TEST 'control_debug_p8_intel' [52:06, 01:01](1516 MB)
+PASS -- TEST 'regional_debug_intel' [52:05, 00:14](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [52:06, 00:56](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [52:06, 01:16](1070 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [52:06, 00:57](1077 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [52:06, 01:06](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:06, 00:47](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [52:06, 00:52](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:06, 00:19](1075 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:06, 00:49](1080 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [52:06, 00:37](1076 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:56, 00:59](1077 MB)
+PASS -- TEST 'rap_noah_debug_intel' [51:55, 01:03](1068 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [49:40, 00:35](1074 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [49:40, 00:29](1068 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [49:17, 00:49](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [48:59, 01:16](1078 MB)
+PASS -- TEST 'rap_flake_debug_intel' [48:04, 00:23](1073 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:39, 01:47](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [31:30, 29:06]
+PASS -- TEST 'control_wam_debug_intel' [58:20, 00:40](300 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:03, 19:15]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:27, 00:30](953 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:26, 01:43](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:26, 02:21](783 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:15, 01:48](848 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [59:37, 02:23](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [59:11, 01:45](791 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:58, 01:35](684 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [53:35, 00:40](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:04, 19:54]
+PASS -- TEST 'conus13km_control_intel' [56:03, 00:48](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [45:29, 01:00](1007 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [45:27, 00:53](883 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:51, 40:09]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:18, 00:35](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:11, 24:00]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:27, 00:20](956 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:25, 00:27](953 MB)
+PASS -- TEST 'conus13km_debug_intel' [45:22, 00:57](1036 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [45:16, 00:44](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [43:34, 00:39](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:06, 00:47](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:51, 13:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [42:14, 00:30](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:55, 13:35]
+PASS -- TEST 'hafs_regional_atm_intel' [42:17, 01:48](616 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [42:16, 01:11](969 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:14, 01:30](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [42:14, 01:20](693 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:15, 02:11](702 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:14, 00:47](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:06, 01:51](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [42:05, 00:53](284 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:17, 02:45](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:10, 00:46](424 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:10, 01:08](412 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:06, 01:23](491 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:41, 00:54](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:43, 08:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [52:58, 01:26](498 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [47:00, 44:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:28, 01:25](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:28, 01:13](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:54, 11:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [40:40, 01:31](710 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:49, 11:41]
+PASS -- TEST 'hafs_regional_docn_intel' [39:59, 01:20](658 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:38, 01:55](645 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:17, 00:30](881 MB)
+
+PASS -- COMPILE 'atml_intel' [22:03, 19:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:53, 01:26](1548 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [30:53, 01:28](1545 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:09, 01:05](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:46, 10:10]
+PASS -- TEST 'atmaero_control_p8_intel' [38:13, 01:42](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [37:49, 01:05](2910 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:20, 01:17](2925 MB)
+
+PASS -- COMPILE 'atmaq_intel' [31:30, 27:35]
+
+PASS -- COMPILE 'atmaq_debug_intel' [09:35, 06:02]
+PASS -- TEST 'regional_atmaq_debug_intel' [33:56, 01:17](4436 MB)
SYNOPSIS:
-Starting Date/Time: 20240229 13:01:47
-Ending Date/Time: 20240229 15:12:48
-Total Time: 02h:11m:29s
-Compiles Completed: 28/31
-Tests Completed: 128/157
-Failed Compiles:
-* COMPILE atm_faster_dyn32_intel: FAIL TO RUN
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_faster_dyn32_intel.log
-* COMPILE atm_debug_dyn32_intel: FAIL TO RUN
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_debug_dyn32_intel.log
-* COMPILE atmaq_intel: FAIL TO RUN
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atmaq_intel.log
-Failed Tests:
-* TEST control_p8_faster_intel: MISSING
--- LOG: N/A
-* TEST regional_control_faster_intel: MISSING
--- LOG: N/A
-* TEST control_CubedSphereGrid_debug_intel: MISSING
--- LOG: N/A
-* TEST control_wrtGauss_netcdf_parallel_debug_intel: MISSING
--- LOG: N/A
-* TEST control_stochy_debug_intel: MISSING
--- LOG: N/A
-* TEST control_lndp_debug_intel: MISSING
--- LOG: N/A
-* TEST control_csawmg_debug_intel: MISSING
--- LOG: N/A
-* TEST control_csawmgt_debug_intel: MISSING
--- LOG: N/A
-* TEST control_ras_debug_intel: MISSING
--- LOG: N/A
-* TEST control_diag_debug_intel: MISSING
--- LOG: N/A
-* TEST control_debug_p8_intel: MISSING
--- LOG: N/A
-* TEST regional_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_control_debug_intel: MISSING
--- LOG: N/A
-* TEST hrrr_control_debug_intel: MISSING
--- LOG: N/A
-* TEST hrrr_gf_debug_intel: MISSING
--- LOG: N/A
-* TEST hrrr_c3_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_unified_drag_suite_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_diag_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_cires_ugwp_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_unified_ugwp_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_lndp_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_progcld_thompson_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_noah_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_sfcdiff_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: MISSING
--- LOG: N/A
-* TEST rrfs_v1beta_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_clm_lake_debug_intel: MISSING
--- LOG: N/A
-* TEST rap_flake_debug_intel: MISSING
--- LOG: N/A
-* TEST gnv1_c96_no_nest_debug_intel: MISSING
--- LOG: N/A
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF WCOSS2 REGRESSION TESTING LOG====
-====START OF WCOSS2 REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-870b560324452362e10a1cdace0b2941e445d7f0
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_198527
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
-* (-l) - USE CONFIG FILE: rt.test
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [23:00, 08:41]
-PASS -- TEST 'control_p8_faster_intel' [29:49, 01:06](1500 MB)
-PASS -- TEST 'regional_control_faster_intel' [29:48, 00:40](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [18:52, 04:07]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:58, 00:31](684 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:58, 01:04](691 MB)
-PASS -- TEST 'control_stochy_debug_intel' [33:58, 01:00](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [33:58, 01:11](693 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [33:58, 00:40](735 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [33:58, 00:48](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [33:58, 00:48](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [33:58, 01:13](747 MB)
-PASS -- TEST 'control_debug_p8_intel' [22:52, 01:02](1520 MB)
-PASS -- TEST 'regional_debug_intel' [33:57, 00:59](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [33:58, 01:11](1077 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [33:58, 00:16](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [33:58, 00:16](1070 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [33:58, 01:03](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:58, 00:35](1073 MB)
-PASS -- TEST 'rap_diag_debug_intel' [33:58, 00:48](1159 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:58, 00:56](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:05, 00:49](1076 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [33:58, 00:19](1076 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:58, 00:26](1072 MB)
-PASS -- TEST 'rap_noah_debug_intel' [25:09, 00:39](1076 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [33:58, 01:17](1070 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:58, 00:17](1069 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [33:58, 00:46](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [33:58, 00:16](1076 MB)
-PASS -- TEST 'rap_flake_debug_intel' [33:58, 01:05](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:58, 01:11](1078 MB)
-
-PASS -- COMPILE 'atmaq_intel' [23:01, 08:22]
-
-SYNOPSIS:
-Starting Date/Time: 20240229 18:07:06
-Ending Date/Time: 20240229 18:52:29
-Total Time: 00h:45m:35s
-Compiles Completed: 3/3
-Tests Completed: 29/29
+Starting Date/Time: 20240304 14:05:49
+Ending Date/Time: 20240304 16:08:00
+Total Time: 02h:02m:43s
+Compiles Completed: 31/31
+Tests Completed: 157/157
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/parm/MOM_input_025.IN b/tests/parm/MOM_input_025.IN
index 47c95c8f42..58ad534ab3 100644
--- a/tests/parm/MOM_input_025.IN
+++ b/tests/parm/MOM_input_025.IN
@@ -91,8 +91,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0
BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1
! The value of SST below which a bad value message is triggered, if
! CHECK_BAD_SURFACE_VALS is true.
-DEFAULT_2018_ANSWERS = True ! [Boolean] default = True
- ! This sets the default value for the various _2018_ANSWERS parameters.
+DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231
+ ! This sets the default value for the various _ANSWER_DATE parameters.
WRITE_GEOM = 2 ! default = 1
! If =0, never write the geometry and vertical grid files. If =1, write the
! geometry and vertical grid files only for a new simulation. If =2, always
diff --git a/tests/parm/MOM_input_050.IN b/tests/parm/MOM_input_050.IN
index 6e088a7474..ece8b95416 100644
--- a/tests/parm/MOM_input_050.IN
+++ b/tests/parm/MOM_input_050.IN
@@ -91,8 +91,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0
BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1
! The value of SST below which a bad value message is triggered, if
! CHECK_BAD_SURFACE_VALS is true.
-DEFAULT_2018_ANSWERS = True ! [Boolean] default = True
- ! This sets the default value for the various _2018_ANSWERS parameters.
+DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231
+ ! This sets the default value for the various _ANSWER_DATE parameters.
WRITE_GEOM = 2 ! default = 1
! If =0, never write the geometry and vertical grid files. If =1, write the
! geometry and vertical grid files only for a new simulation. If =2, always
diff --git a/tests/parm/MOM_input_100.IN b/tests/parm/MOM_input_100.IN
index eb0bbac7be..3c58b0cdf5 100644
--- a/tests/parm/MOM_input_100.IN
+++ b/tests/parm/MOM_input_100.IN
@@ -65,8 +65,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0
BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1
! The value of SST below which a bad value message is triggered, if
! CHECK_BAD_SURFACE_VALS is true.
-DEFAULT_2018_ANSWERS = True ! [Boolean] default = False
- ! This sets the default value for the various _2018_ANSWERS parameters.
+DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231
+ ! This sets the default value for the various _ANSWER_DATE parameters.
WRITE_GEOM = 2 ! default = 1
! If =0, never write the geometry and vertical grid files. If =1, write the
! geometry and vertical grid files only for a new simulation. If =2, always
diff --git a/tests/parm/MOM_input_hafs b/tests/parm/MOM_input_hafs
index 1eddf0054f..b7fd7e72bc 100644
--- a/tests/parm/MOM_input_hafs
+++ b/tests/parm/MOM_input_hafs
@@ -93,8 +93,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0
BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1
! The value of SST below which a bad value message is triggered, if
! CHECK_BAD_SURFACE_VALS is true.
-DEFAULT_2018_ANSWERS = False !True ! [Boolean] default = True
- ! This sets the default value for the various _2018_ANSWERS parameters.
+DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231
+ ! This sets the default value for the various _ANSWER_DATE parameters.
WRITE_GEOM = 0 ! default = 1
! If =0, never write the geometry and vertical grid files. If =1, write the
! geometry and vertical grid files only for a new simulation. If =2, always
diff --git a/tests/test_changes.list b/tests/test_changes.list
index b5585d8b91..e9271bd81c 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,193 +1,2 @@
-cpld_control_p8_mixedmode intel
-cpld_control_gfsv17 intel
-cpld_control_gfsv17_iau intel
-cpld_restart_gfsv17 intel
-cpld_mpi_gfsv17 intel
-cpld_debug_gfsv17 intel
-cpld_control_p8 intel
-cpld_control_p8.v2.sfc intel
-cpld_restart_p8 intel
-cpld_control_qr_p8 intel
-cpld_restart_qr_p8 intel
-cpld_2threads_p8 intel
-cpld_decomp_p8 intel
-cpld_mpi_p8 intel
-cpld_control_ciceC_p8 intel
-cpld_control_c192_p8 intel
-cpld_restart_c192_p8 intel
-cpld_bmark_p8 intel
-cpld_restart_bmark_p8 intel
-cpld_s2sa_p8 intel
-cpld_control_noaero_p8 intel
-cpld_control_nowave_noaero_p8 intel
-cpld_debug_p8 intel
-cpld_debug_noaero_p8 intel
-cpld_control_noaero_p8_agrid intel
cpld_control_c48 intel
-cpld_control_p8_faster intel
-cpld_control_pdlib_p8 intel
-cpld_restart_pdlib_p8 intel
-cpld_mpi_pdlib_p8 intel
-cpld_debug_pdlib_p8 intel
-control_flake intel
-control_CubedSphereGrid intel
-control_CubedSphereGrid_parallel intel
-control_latlon intel
-control_wrtGauss_netcdf_parallel intel
-control_c48 intel
-control_c48.v2.sfc intel
-control_c192 intel
-control_c384 intel
-control_c384gdas intel
-control_stochy intel
-control_stochy_restart intel
-control_lndp intel
-control_iovr4 intel
-control_iovr5 intel
-control_p8 intel
-control_p8.v2.sfc intel
-control_p8_ugwpv1 intel
-control_restart_p8 intel
-control_noqr_p8 intel
-control_restart_noqr_p8 intel
-control_decomp_p8 intel
-control_2threads_p8 intel
-control_p8_lndp intel
-control_p8_rrtmgp intel
-control_p8_mynn intel
-merra2_thompson intel
-rap_control intel
-rap_decomp intel
-rap_2threads intel
-rap_restart intel
-rap_sfcdiff intel
-rap_sfcdiff_decomp intel
-rap_sfcdiff_restart intel
-hrrr_control intel
-hrrr_control_decomp intel
-hrrr_control_2threads intel
-hrrr_control_restart intel
-rrfs_v1beta intel
-rrfs_v1nssl intel
-rrfs_v1nssl_nohailnoccn intel
-control_csawmg intel
-control_csawmgt intel
-control_ras intel
-control_wam intel
-control_p8_faster intel
-control_CubedSphereGrid_debug intel
-control_wrtGauss_netcdf_parallel_debug intel
-control_stochy_debug intel
-control_lndp_debug intel
-control_csawmg_debug intel
-control_csawmgt_debug intel
-control_ras_debug intel
-control_diag_debug intel
-control_debug_p8 intel
-rap_control_debug intel
-hrrr_control_debug intel
-hrrr_gf_debug intel
-hrrr_c3_debug intel
-rap_unified_drag_suite_debug intel
-rap_diag_debug intel
-rap_cires_ugwp_debug intel
-rap_unified_ugwp_debug intel
-rap_lndp_debug intel
-rap_progcld_thompson_debug intel
-rap_noah_debug intel
-rap_sfcdiff_debug intel
-rap_noah_sfcdiff_cires_ugwp_debug intel
-rrfs_v1beta_debug intel
-rap_clm_lake_debug intel
-rap_flake_debug intel
-gnv1_c96_no_nest_debug intel
-control_wam_debug intel
-rap_control_dyn32_phy32 intel
-hrrr_control_dyn32_phy32 intel
-rap_2threads_dyn32_phy32 intel
-hrrr_control_2threads_dyn32_phy32 intel
-hrrr_control_decomp_dyn32_phy32 intel
-rap_restart_dyn32_phy32 intel
-hrrr_control_restart_dyn32_phy32 intel
-conus13km_control intel
-conus13km_2threads intel
-conus13km_restart_mismatch intel
-rap_control_dyn64_phy32 intel
-rap_control_debug_dyn32_phy32 intel
-hrrr_control_debug_dyn32_phy32 intel
-conus13km_debug intel
-conus13km_debug_qr intel
-conus13km_debug_2threads intel
-conus13km_radar_tten_debug intel
-rap_control_dyn64_phy32_debug intel
-hafs_global_1nest_atm intel
-hafs_global_multiple_4nests_atm intel
-hafs_global_storm_following_1nest_atm intel
-gnv1_nested intel
-control_p8_atmlnd_sbs intel
-control_p8_atmlnd intel
-control_restart_p8_atmlnd intel
-atmwav_control_noaero_p8 intel
-control_atmwav intel
-atmaero_control_p8 intel
-atmaero_control_p8_rad intel
-atmaero_control_p8_rad_micro intel
-control_c48 gnu
-control_stochy gnu
-control_ras gnu
-control_p8 gnu
-control_p8_ugwpv1 gnu
-control_flake gnu
-rap_control gnu
-rap_decomp gnu
-rap_2threads gnu
-rap_restart gnu
-rap_sfcdiff gnu
-rap_sfcdiff_decomp gnu
-rap_sfcdiff_restart gnu
-hrrr_control gnu
-hrrr_control_noqr gnu
-hrrr_control_2threads gnu
-hrrr_control_decomp gnu
-hrrr_control_restart gnu
-hrrr_control_restart_noqr gnu
-rrfs_v1beta gnu
-control_diag_debug gnu
-rap_control_debug gnu
-hrrr_control_debug gnu
-hrrr_gf_debug gnu
-hrrr_c3_debug gnu
-rap_diag_debug gnu
-rap_noah_sfcdiff_cires_ugwp_debug gnu
-rap_progcld_thompson_debug gnu
-rrfs_v1beta_debug gnu
-control_ras_debug gnu
-control_stochy_debug gnu
-control_debug_p8 gnu
-rap_flake_debug gnu
-rap_clm_lake_debug gnu
-gnv1_c96_no_nest_debug gnu
-control_wam_debug gnu
-rap_control_dyn32_phy32 gnu
-hrrr_control_dyn32_phy32 gnu
-rap_2threads_dyn32_phy32 gnu
-hrrr_control_2threads_dyn32_phy32 gnu
-hrrr_control_decomp_dyn32_phy32 gnu
-rap_restart_dyn32_phy32 gnu
-hrrr_control_restart_dyn32_phy32 gnu
-conus13km_control gnu
-conus13km_2threads gnu
-conus13km_restart_mismatch gnu
-rap_control_dyn64_phy32 gnu
-rap_control_debug_dyn32_phy32 gnu
-hrrr_control_debug_dyn32_phy32 gnu
-conus13km_debug gnu
-conus13km_debug_qr gnu
-conus13km_debug_2threads gnu
-conus13km_radar_tten_debug gnu
-rap_control_dyn64_phy32_debug gnu
-cpld_control_p8 gnu
-cpld_control_nowave_noaero_p8 gnu
-cpld_debug_p8 gnu
-cpld_control_pdlib_p8 gnu
-cpld_debug_pdlib_p8 gnu
+hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel
From 5b62e1aa2e67ea58680d58ab16264d69b4085ea8 Mon Sep 17 00:00:00 2001
From: Dom Heinzeller
Date: Mon, 11 Mar 2024 10:43:08 -0600
Subject: [PATCH 08/33] Add conflict for MOVING_NEST option with GNU Fortran,
use mcmodel=small on macOS arm64 (also contains #2017) (#2164)
* UFSWM - "Add conflict for MOVING_NEST option with GNU Fortran, use mcmodel=small on macOS arm64"
* FV3 - "Bug fix for unallocated array sfcprop%wetness in GFS_diagnostics.F90"
* ccpp-physics -
* ccpp-framework - "Bug fix required to use chunked arrays and retain backward compatibility with blocked data
structures in ccpp_prebuild.py"
* Creation of UFS-WM jenkinsfile for pipeline integration
* Jet Rocky8 updates
* spack-stack module path
* eflow location and version
---
FV3 | 2 +-
cmake/GNU.cmake | 12 +-
modulefiles/ufs_gaea.intel.lua | 2 +-
modulefiles/ufs_jet.intel.lua | 2 +-
tests/ci/Jenkinsfile.combined | 301 +++++++
tests/logs/OpnReqTests_control_p8_hera.log | 62 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +-
.../OpnReqTests_regional_control_hera.log | 30 +-
tests/logs/RegressionTests_derecho.log | 585 +++++++-------
tests/logs/RegressionTests_gaea.log | 555 ++++++-------
tests/logs/RegressionTests_hera.log | 716 ++++++++---------
tests/logs/RegressionTests_hercules.log | 750 ++++++++----------
tests/logs/RegressionTests_jet.log | 468 +++++------
tests/logs/RegressionTests_orion.log | 597 +++++++-------
tests/logs/RegressionTests_wcoss2.log | 473 +++++------
tests/rt.sh | 22 +-
16 files changed, 2462 insertions(+), 2145 deletions(-)
create mode 100644 tests/ci/Jenkinsfile.combined
diff --git a/FV3 b/FV3
index 4941026c58..062f7958cc 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 4941026c5881ed623b39934905d2e4ecd9907b8a
+Subproject commit 062f7958ccd9bd97b8737432f75b06ec734777a7
diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake
index a427e8f053..5f59acfcc9 100644
--- a/cmake/GNU.cmake
+++ b/cmake/GNU.cmake
@@ -1,3 +1,8 @@
+# https://github.com/ufs-community/ufs-weather-model/issues/2159
+if(MOVING_NEST)
+ message(FATAL_ERROR "Option MOVING_NEST not compatible with ${CMAKE_Fortran_COMPILER_ID}}")
+endif()
+
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check")
if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10)
@@ -11,8 +16,11 @@ endif()
if(DEBUG)
add_definitions(-DDEBUG)
set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check")
- if(CMAKE_Platform STREQUAL "hercules.gnu")
- set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=medium")
+ # https://github.com/ufs-community/ufs-weather-model/issues/2155
+ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND ${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "arm64")
+ set( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=small" )
+ else()
+ set( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=medium" )
endif()
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0")
else()
diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua
index b6f7ae2f67..c40c1a056d 100644
--- a/modulefiles/ufs_gaea.intel.lua
+++ b/modulefiles/ufs_gaea.intel.lua
@@ -3,7 +3,7 @@ help([[
on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0.
]])
-whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 ]===])
+whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===])
load("PrgEnv-intel/8.3.3")
load("intel-classic/2023.1.0")
diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua
index 7cd0e39465..e7c76783f1 100644
--- a/modulefiles/ufs_jet.intel.lua
+++ b/modulefiles/ufs_jet.intel.lua
@@ -2,7 +2,7 @@ help([[
loads UFS Model prerequisites for Jet/Intel
]])
-prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
+prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core")
stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0"
load(pathJoin("stack-intel", stack_intel_ver))
diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined
new file mode 100644
index 0000000000..38c9efc589
--- /dev/null
+++ b/tests/ci/Jenkinsfile.combined
@@ -0,0 +1,301 @@
+matchedNode = []
+generateBaselineNode = []
+for (label in pullRequest.labels) {
+ listOfLabelNodeNames = jenkins.model.Jenkins.instance.nodes.collect {
+ node -> node.getLabelString().contains(label) ? node.name : null
+
+ if ((label.matches(node.getLabelString()+"-(.*)"))) {
+ matchedNode += node.getLabelString()
+ }
+
+ if ((label.matches(node.getLabelString()+"(.*)-BL"))) {
+ generateBaselineNode += node.getLabelString()
+ }
+
+ }
+}
+
+modifiedLabels = matchedNode.collect{"'" + it + "'"}
+baselineLabels = generateBaselineNode.collect{"'" + it + "'"}
+def generateStage(nodeLabel) {
+ return {
+ stage("Running on ${nodeLabel}") {
+ node(nodeLabel) {
+ cleanWs()
+ checkout scm
+ script {
+ try {
+ echo "Running on ${nodeLabel}"
+ if (baselineLabels.contains(nodeLabel)) {
+ sh '''
+ git submodule update --init --recursive
+ cd tests
+ pwd
+ export BL_DATE=$(cat bl_date.conf | cut -d '=' -f2)
+ export machine=${NODE_NAME}
+ export PATH=$PATH:~/bin
+ echo $CHANGE_ID
+ export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url')
+ export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref')
+
+ if [[ $machine =~ "Jet" ]]
+ then
+ echo "Creating baselines on $machine"
+ export dprefix=/lfs1/NAGAPE/$ACCNR/$USER
+ ./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Hercules" ]]
+ then
+ echo "Creating baselines on $machine"
+ export dprefix=/work2/noaa/$ACCNR/$USER
+ sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
+ export ACCNR=epic
+ ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ export DISKNM=/work/noaa/epic/hercules/UFS-WM_RT
+ cd ${DISKNM}/NEMSfv3gfs/
+ mkdir develop-${BL_DATE}
+ cd /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT
+ rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
+ cd ${DISKNM}/NEMSfv3gfs/
+ ./adjust_permissions.sh hercules develop-${BL_DATE}
+ chgrp noaa-hpc develop-${BL_DATE}
+ cd $WORKSPACE/tests
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Orion" ]]
+ then
+ echo "Creating baselines on $machine"
+ export dprefix=/work2/noaa/$ACCNR/$USER
+ sed -i 's|/work/noaa/stmp/${USER}|/work/noaa/epic/stmp/role-epic/|g' rt.sh
+ export ACCNR=epic
+ ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ export DISKNM=/work/noaa/epic/UFS-WM_RT
+ cd ${DISKNM}/NEMSfv3gfs/
+ mkdir develop-${BL_DATE}
+ cd /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/
+ rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
+ cd ${DISKNM}/NEMSfv3gfs/
+ ./adjust_permissions.sh orion develop-${BL_DATE}
+ chgrp noaa-hpc develop-${BL_DATE}
+ cd $WORKSPACE/tests
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Gaea" ]]
+ then
+ echo "Creating baselines on $machine"
+ ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ unset LD_LIBRARY_PATH
+ export DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT
+ cd ${DISKNM}/NEMSfv3gfs/
+ mkdir develop-${BL_DATE}
+ cd /lustre/f2/scratch/role.epic/FV3_RT
+ rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
+ cd ${DISKNM}/NEMSfv3gfs/
+ chgrp ncep develop-${BL_DATE}
+ cd $WORKSPACE/tests
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Hera" ]]
+ then
+ echo "Creating baselines on $machine"
+ export ACCNR=nems
+ ./rt.sh -a ${ACCNR} -c -r -l rt.conf
+ export DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT
+ cd ${DISKNM}/NEMSfv3gfs/
+ mkdir develop-${BL_DATE}
+ cd /scratch1/NCEPDEV/stmp4/role.epic/FV3_RT
+ rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
+ cd $WORKSPACE/tests
+ ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Derecho" ]]
+ then
+ echo "Creating baselines on $machine"
+ export ACCNR=nral0032
+ ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ export DISKNM=/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/
+ cd ${DISKNM}/NEMSfv3gfs/
+ mkdir develop-${BL_DATE}
+ cd /glade/derecho/scratch/epicufsrt/FV3_RT
+ rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
+ cd $WORKSPACE/tests
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ else
+ echo "Creating baselines on $machine"
+ ./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ fi
+ git config user.email "ecc.platform@noaa.gov"
+ git config user.name "epic-cicd-jenkins"
+ echo "Testing concluded...removing labels for $machine from $GIT_URL"
+
+ export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }')
+ git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1
+ git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1
+ git add logs/RegressionTests_$machine_name_logs.log
+ git commit -m "[AutoRT] $machine Job Completed.\n\n\n on-behalf-of @ufs-community "
+ git pull sshorigin $FORK_BRANCH
+ git push sshorigin HEAD:$FORK_BRANCH
+
+ tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log
+
+ GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4)
+ GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1)
+
+ curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/$machine-BL
+ '''
+ s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: []
+
+ }
+ else {
+ sh '''
+ git submodule update --init --recursive
+ pwd
+ cd tests
+ export machine=${NODE_NAME}
+ export PATH=$PATH:~/bin
+ echo $CHANGE_ID
+ export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url')
+ export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref')
+
+ if [[ $machine =~ "Jet" ]]
+ then
+ echo "Running regression tests on $machine"
+ export dprefix=/lfs1/NAGAPE/$ACCNR/$USER
+ ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Hercules" ]]
+ then
+ echo "Running regression tests on $machine"
+ export dprefix=/work2/noaa/$ACCNR/$USER
+ sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
+ export ACCNR=epic
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Orion" ]]
+ then
+ echo "Running regression tests on $machine"
+ export dprefix=/work2/noaa/$ACCNR/$USER
+ sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Gaea" ]]
+ then
+ echo "Running regression tests on $machine"
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ unset LD_LIBRARY_PATH
+ elif [[ $machine =~ "Hera" ]]
+ then
+ echo "Running regression tests on $machine"
+ export ACCNR=nems
+ ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ elif [[ $machine =~ "Derecho" ]]
+ then
+ echo "Running regression tests on $machine"
+ export ACCNR=nral0032
+ ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ else
+ echo "Running regression tests on $machine"
+ ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ fi
+
+ git config user.email "ecc.platform@noaa.gov"
+ git config user.name "epic-cicd-jenkins"
+ export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }')
+ echo "Testing concluded...removing labels for $machine from $GIT_URL"
+ git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1
+ git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1
+ git add logs/RegressionTests_$machine_name_logs.log
+ git commit -m "[AutoRT] $machine Job Completed.\n\n\n on-behalf-of @ufs-community "
+ git pull sshorigin $FORK_BRANCH
+ git push sshorigin HEAD:$FORK_BRANCH
+
+ tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log
+
+ GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4)
+ GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1)
+
+ curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/$machine-RT
+
+ '''
+ s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: []
+ }
+ }
+ catch(err) {
+ sh '''
+ export machine=${NODE_NAME}
+ export CHANGE_ID=${CHANGE_ID}
+ export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url')
+ export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref')
+ cd $WORKSPACE/tests
+ git config user.email "ecc.platform@noaa.gov"
+ git config user.name "epic-cicd-jenkins"
+ export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }')
+ echo "Testing concluded...removing labels for $machine from $GIT_URL"
+ git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1
+ git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1
+
+ if [[ -f $WORKSPACE/tests/logs/RT-run-$machine.log ]] ; then
+ git add $WORKSPACE/tests/logs/RT-run-$machine.log
+ fi
+ git commit --allow-empty -m "[AutoRT] $machine Job Failed!\n\n\n on-behalf-of @ufs-community "
+
+ git pull sshorigin $FORK_BRANCH
+ git push sshorigin HEAD:$FORK_BRANCH
+
+ tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log
+
+ GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4)
+ GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1)
+
+ curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":["$machine-.*RT|$machine-.*BL"]}'
+ '''
+ s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: []
+ currentBuild.result = 'FAILURE'
+ }
+ }
+ }
+ }
+ }
+}
+
+def parallelStagesMap = modifiedLabels.collectEntries {
+ ["${it}" : generateStage(it)]
+}
+
+pipeline {
+ agent none
+ environment {
+ ACCNR = 'epic'
+ GITHUB_TOKEN = credentials('GithubJenkinsNew')
+ GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git'
+ }
+ stages {
+ stage('Run SonarQube Testing') {
+ steps {
+ script {
+ build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [
+ string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'),
+ string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '')
+ ], wait: false
+ }
+ }
+ }
+ stage('Run Regression Tests in Parallel') {
+ steps {
+ script {
+ parallel parallelStagesMap
+ }
+ }
+ }
+ }
+ post {
+ success {
+ node('built-in') {
+ echo 'This will run only if successful.'
+ sh '''
+ aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}'
+ '''
+ }
+ }
+ failure {
+ node('built-in') {
+ echo 'This will run only if the run was marked as unstable.'
+ sh '''
+ aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}'
+ '''
+ }
+ }
+ }
+}
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 2a4d5d6017..6f5435a587 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Sun Mar 3 15:10:20 UTC 2024
+Fri Mar 8 03:19:22 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/bit_base_bit_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 206.262898
- 0: The maximum resident set size (KB) = 1664072
+ 0: The total amount of wall time = 281.726798
+ 0: The maximum resident set size (KB) = 1310164
Test bit_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/dbg_base_dbg_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 1931.255793
- 0: The maximum resident set size (KB) = 1628724
+ 0: The total amount of wall time = 899.537419
+ 0: The maximum resident set size (KB) = 1292576
Test dbg_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/dcp_dcp
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 168.775150
- 0: The maximum resident set size (KB) = 1604912
+ 0: The total amount of wall time = 247.982005
+ 0: The maximum resident set size (KB) = 1281952
Test dcp PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/mpi_mpi
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 170.717061
- 0: The maximum resident set size (KB) = 1584476
+ 0: The total amount of wall time = 251.637706
+ 0: The maximum resident set size (KB) = 1282692
Test mpi PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/rst_rst
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 167.829834
- 0: The maximum resident set size (KB) = 1616120
+ 0: The total amount of wall time = 247.894872
+ 0: The maximum resident set size (KB) = 1282620
Test rst PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 168.444300
- 0: The maximum resident set size (KB) = 1614116
+ 0: The total amount of wall time = 247.036431
+ 0: The maximum resident set size (KB) = 1286556
Test std_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_70579/thr_thr
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 168.208168
- 0: The maximum resident set size (KB) = 1619560
+ 0: The total amount of wall time = 249.898262
+ 0: The maximum resident set size (KB) = 1279316
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Sun Mar 3 20:42:09 UTC 2024
-Elapsed time: 05h:31m:49s. Have a nice day!
+Fri Mar 8 08:01:31 UTC 2024
+Elapsed time: 04h:42m:10s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 93985761ae..0f58831c0e 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Mar 4 04:04:26 UTC 2024
+Fri Mar 8 13:50:47 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/dbg_base_dbg_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 2564.304437
- 0: The maximum resident set size (KB) = 1788520
+ 0: The total amount of wall time = 1247.398743
+ 0: The maximum resident set size (KB) = 1418360
Test dbg_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/rst_rst
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 258.937982
- 0: The maximum resident set size (KB) = 1735268
+ 0: The total amount of wall time = 380.961022
+ 0: The maximum resident set size (KB) = 1408744
Test rst PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_45944/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 264.851616
- 0: The maximum resident set size (KB) = 1759076
+ 0: The total amount of wall time = 381.454424
+ 0: The maximum resident set size (KB) = 1407480
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Mar 4 09:15:30 UTC 2024
-Elapsed time: 05h:11m:05s. Have a nice day!
+Fri Mar 8 16:18:50 UTC 2024
+Elapsed time: 02h:28m:03s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index bc7607fc98..3d9ec97a47 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Sun Mar 3 20:58:22 UTC 2024
+Fri Mar 8 12:38:35 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/dcp_dcp
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 295.986214
- 0: The maximum resident set size (KB) = 844440
+ 0: The total amount of wall time = 518.666889
+ 0: The maximum resident set size (KB) = 591560
Test dcp PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/std_base_std_base
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 299.701407
- 0: The maximum resident set size (KB) = 831600
+ 0: The total amount of wall time = 510.630263
+ 0: The maximum resident set size (KB) = 589856
Test std_base PASS
-baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_intel
-working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_138827/thr_thr
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 298.422637
- 0: The maximum resident set size (KB) = 846452
+ 0: The total amount of wall time = 526.308695
+ 0: The maximum resident set size (KB) = 591688
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Sun Mar 3 21:51:52 UTC 2024
-Elapsed time: 00h:53m:31s. Have a nice day!
+Fri Mar 8 13:43:33 UTC 2024
+Elapsed time: 01h:04m:59s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 4c47d26d67..8defe17942 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,325 +1,41 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+33c6f8a535e2fd522fb661a120aaaa35c5a397c1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2436
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [21:26, 19:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:42, 05:00](3077 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:42]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:18, 13:49](1677 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:02, 15:11](1822 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 07:14](952 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:19, 15:47](1659 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:23, 09:37]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:19, 21:34](1691 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:26, 19:57]
-PASS -- TEST 'cpld_control_p8_intel' [09:46, 05:45](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:49, 05:46](3091 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:00, 03:20](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 05:41](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:00, 03:20](3177 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:21, 05:37](3094 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:26, 04:38](3397 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 05:45](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:29, 08:55](3630 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:39, 06:16](3614 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [29:37, 09:55](4344 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:43, 07:13](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:13, 05:19](3063 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:26, 19:19]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:50, 04:15](1679 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:02, 04:20](1725 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:47]
-PASS -- TEST 'cpld_debug_p8_intel' [10:15, 07:44](3152 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:26, 09:14]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:22](1707 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:24, 14:32]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 04:19](1724 MB)
-
-PASS -- COMPILE 's2s_intel' [15:25, 14:52]
-FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:28, 23:14]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:34, 05:35](3098 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:31, 20:00]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:13, 14:02](1697 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:56, 07:20](1014 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:26, 16:01](1672 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:25, 09:19]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:09, 22:44](1704 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:29, 12:36]
-PASS -- TEST 'control_flake_intel' [04:50, 03:25](665 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:05](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:10, 02:12](625 MB)
-PASS -- TEST 'control_latlon_intel' [04:03, 02:06](618 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 02:06](618 MB)
-PASS -- TEST 'control_c48_intel' [06:46, 05:14](735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 05:12](735 MB)
-PASS -- TEST 'control_c192_intel' [10:42, 07:54](742 MB)
-PASS -- TEST 'control_c384_intel' [15:01, 08:18](1060 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:36, 07:24](1205 MB)
-PASS -- TEST 'control_stochy_intel' [02:57, 01:27](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:47, 00:51](437 MB)
-PASS -- TEST 'control_lndp_intel' [02:57, 01:24](625 MB)
-PASS -- TEST 'control_iovr4_intel' [04:06, 02:08](619 MB)
-PASS -- TEST 'control_iovr5_intel' [03:48, 02:08](622 MB)
-PASS -- TEST 'control_p8_intel' [04:37, 02:30](1602 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:53, 02:29](1602 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:29](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:38, 01:26](796 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:47, 02:32](1580 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:25](803 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:38](1584 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:29, 04:24](1591 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:31, 03:19](1651 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:32, 02:33](1607 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:44, 03:02](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:12, 04:31](632 MB)
-PASS -- TEST 'regional_restart_intel' [04:28, 02:32](799 MB)
-PASS -- TEST 'regional_decomp_intel' [06:10, 04:44](630 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:14, 04:27](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:24](1405 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:18, 04:30](631 MB)
-PASS -- TEST 'regional_wofs_intel' [07:13, 05:36](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:30, 11:22]
-PASS -- TEST 'rap_control_intel' [08:40, 06:08](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:29, 03:57](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [08:36, 06:21](1005 MB)
-PASS -- TEST 'rap_restart_intel' [05:31, 03:12](879 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:30, 06:08](1002 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 06:24](1002 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:36](878 MB)
-PASS -- TEST 'hrrr_control_intel' [05:23, 03:16](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:21](997 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:24, 02:47](1086 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:55, 01:48](832 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](999 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:50, 07:23](1956 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:26, 10:27]
-PASS -- TEST 'control_csawmg_intel' [07:18, 05:13](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:21, 05:10](692 MB)
-PASS -- TEST 'control_ras_intel' [04:42, 02:53](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:19, 09:43]
-PASS -- TEST 'control_wam_intel' [03:38, 01:54](379 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:33, 12:37]
-PASS -- TEST 'control_p8_faster_intel' [05:03, 02:25](1601 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:11, 04:20](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:49]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:36](792 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:33](793 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:55](801 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:42](1405 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:21, 04:02](837 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:29, 03:54](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:41, 02:37](806 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:29, 02:48](852 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:20, 02:38](1625 MB)
-PASS -- TEST 'regional_debug_intel' [17:22, 15:58](663 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:48, 04:38](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:46, 04:34](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:45, 04:37](1179 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:37](1176 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:44, 04:39](1182 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:26, 04:59](1261 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:43, 04:52](1405 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:46, 04:43](1182 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:38, 04:44](1179 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:38, 04:41](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:35](1174 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:41, 04:42](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 07:30](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:48, 04:38](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 05:46](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:51, 04:45](1182 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:19, 07:54](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:20, 05:22]
-PASS -- TEST 'control_wam_debug_intel' [05:43, 04:39](416 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:23, 09:56]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 03:36](1056 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:09](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:17, 02:47](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 02:58](882 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 03:53](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 01:35](774 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 12:01]
-PASS -- TEST 'conus13km_control_intel' [04:53, 01:57](1395 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:08, 01:00](1077 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:07, 01:09](972 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:20, 09:57]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:40](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:27, 06:03]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:46, 04:37](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:25](1052 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:15, 13:43](1405 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:06, 13:26](813 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:59, 13:18](1198 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:31]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:40](1082 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:31, 16:04]
-PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:36](713 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:11](1068 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 06:31](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:01, 10:58](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:10, 12:13](808 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:35, 04:45](471 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:45, 05:48](491 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:24](389 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:25, 06:28](459 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:23](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:06](505 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 03:58](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:40, 01:18](425 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:35, 03:30](783 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:20, 07:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 12:06](611 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:36, 19:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:52, 07:20](633 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:59, 07:17](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:59]
-FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:28, 14:25]
-PASS -- TEST 'hafs_regional_docn_intel' [07:34, 05:40](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:47, 05:39](738 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:11](896 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:39, 02:31](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:52, 01:35](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:47, 02:25](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:54, 02:24](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:51, 02:25](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:32](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:36, 02:24](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 05:45](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:13, 05:43](672 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:30](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:03, 03:55](2016 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:38, 03:54](2019 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 05:12]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:10](734 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:31](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:32]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:52, 01:11](309 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:07](454 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:41, 00:45](450 MB)
-
-PASS -- COMPILE 'atml_intel' [14:21, 13:07]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:21, 06:38](1636 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:04, 07:10](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:31, 03:37](847 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:28, 12:48]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:37](1632 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:20, 12:42]
-PASS -- TEST 'control_atmwav_intel' [03:07, 01:30](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:21, 11:24]
-PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:40](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:34](3013 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:19, 10:51]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:30]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:33, 22:17](4528 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240303 10:33:14
-Ending Date/Time: 20240303 12:03:38
-Total Time: 01h:31m:03s
-Compiles Completed: 39/39
-Tests Completed: 173/175
-Failed Tests:
-* TEST cpld_control_c48_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2166/tests/logs/log_derecho/rt_cpld_control_c48_intel.log
-* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2166/tests/logs/log_derecho/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
-
-Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -332,25 +48,272 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_125771
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_99771
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'hafs_mom6w_intel' [18:34, 17:16]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:23](674 MB)
-
-PASS -- COMPILE 's2s_intel' [15:34, 14:57]
-PASS -- TEST 'cpld_control_c48_intel' [08:28, 06:36](2669 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [22:37, 21:40]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 05:07](3077 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:35, 22:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:19, 13:53](1687 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:57, 15:28](1827 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:34, 07:38](954 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:51](1653 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:34, 10:59]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:49, 21:58](1699 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:42, 21:28]
+PASS -- TEST 'cpld_control_p8_intel' [11:06, 05:51](3092 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 05:46](3091 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:52, 03:27](3152 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:04, 05:51](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:29](3174 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:44](3087 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 04:51](3384 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:13, 05:48](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:09, 09:04](3634 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [18:49, 06:23](3613 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [37:16, 10:21](4342 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:06, 07:49](4645 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 05:27](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:44, 20:31]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:22](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 04:28](1723 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [12:30, 11:06]
+PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:47](3152 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [11:35, 10:35]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 05:21](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:38, 15:37]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:12, 04:27](1722 MB)
+
+PASS -- COMPILE 's2s_intel' [16:38, 15:54]
+PASS -- TEST 'cpld_control_c48_intel' [08:50, 06:43](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:38]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 05:45](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [22:31, 21:25]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 14:10](1694 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:35, 07:43](1405 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:32, 16:08](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:34, 10:53]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 22:53](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:31, 13:36]
+PASS -- TEST 'control_flake_intel' [05:13, 03:35](665 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:07, 02:10](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:20](621 MB)
+PASS -- TEST 'control_latlon_intel' [04:03, 02:11](620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:11](618 MB)
+PASS -- TEST 'control_c48_intel' [07:01, 05:18](735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:03, 05:15](738 MB)
+PASS -- TEST 'control_c192_intel' [10:27, 07:56](736 MB)
+PASS -- TEST 'control_c384_intel' [17:47, 08:42](1058 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:57, 07:48](1198 MB)
+PASS -- TEST 'control_stochy_intel' [03:00, 01:30](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:55](438 MB)
+PASS -- TEST 'control_lndp_intel' [03:01, 01:26](626 MB)
+PASS -- TEST 'control_iovr4_intel' [04:14, 02:10](618 MB)
+PASS -- TEST 'control_iovr5_intel' [04:06, 02:10](623 MB)
+PASS -- TEST 'control_p8_intel' [06:08, 02:36](1592 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 02:44](1597 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:37](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:03, 01:30](797 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:26, 02:34](1592 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:10, 01:30](804 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:14, 02:40](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:07, 04:29](1601 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:26](1648 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:27, 02:46](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:30, 03:11](1607 MB)
+PASS -- TEST 'regional_control_intel' [06:34, 04:36](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:58, 02:37](800 MB)
+PASS -- TEST 'regional_decomp_intel' [07:35, 04:47](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:53, 04:29](1161 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 04:35](625 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:36](632 MB)
+PASS -- TEST 'regional_wofs_intel' [07:19, 05:40](1600 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:33, 12:20]
+PASS -- TEST 'rap_control_intel' [09:04, 06:12](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:41, 03:53](1189 MB)
+PASS -- TEST 'rap_decomp_intel' [09:16, 06:29](1004 MB)
+PASS -- TEST 'rap_restart_intel' [05:55, 03:15](881 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:11](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:04, 06:27](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 04:44](881 MB)
+PASS -- TEST 'hrrr_control_intel' [06:00, 03:20](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:18, 03:26](1000 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 02:55](1092 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:51](833 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:03](997 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:30](1955 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:18, 07:16](1946 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:39, 11:26]
+PASS -- TEST 'control_csawmg_intel' [07:56, 05:13](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:50, 05:16](693 MB)
+PASS -- TEST 'control_ras_intel' [04:25, 02:57](655 MB)
+
+PASS -- COMPILE 'wam_intel' [11:28, 10:39]
+PASS -- TEST 'control_wam_intel' [04:11, 01:58](382 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 13:37]
+PASS -- TEST 'control_p8_faster_intel' [05:20, 02:31](1593 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:38, 04:24](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:29, 09:55]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:41](790 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:12, 02:34](791 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:02](798 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:38](797 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:42, 03:57](837 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:50, 04:01](837 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:56, 02:38](805 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:58, 02:46](851 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:49, 02:51](1624 MB)
+PASS -- TEST 'regional_debug_intel' [18:34, 16:25](665 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:09, 04:44](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:17, 04:34](1175 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:41](1178 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:00, 04:45](1178 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:09, 04:45](1179 MB)
+PASS -- TEST 'rap_diag_debug_intel' [10:01, 04:54](1263 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:07, 04:50](1179 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 04:56](1177 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:15, 04:50](1181 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:44](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:04, 04:35](1177 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:27, 04:42](1178 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:02, 07:30](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:06, 04:42](1170 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:08, 05:36](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:44](1178 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:58, 07:58](1181 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:32, 06:24]
+PASS -- TEST 'control_wam_debug_intel' [06:52, 04:41](425 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 10:38]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:51](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 05:14](882 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 02:50](880 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:59, 03:00](1255 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 03:55](793 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:09, 01:37](773 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:28, 12:52]
+PASS -- TEST 'conus13km_control_intel' [06:53, 02:04](1081 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:11, 01:14](1082 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:13](972 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:40, 10:50]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 03:42](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:37, 06:55]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:00, 04:39](1056 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:05, 04:32](1056 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:26, 13:33](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 13:43](817 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:32, 13:46](1200 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:36, 06:48]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:09, 04:40](1082 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:48, 17:20]
+PASS -- TEST 'hafs_regional_atm_intel' [07:51, 04:49](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:14, 05:32](1063 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:34, 06:42](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 11:10](791 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:40, 12:24](813 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:45](473 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:42, 05:58](487 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 02:36](504 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 06:40](456 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:38](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:44, 03:19](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:10, 04:08](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:16, 01:25](425 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:17, 03:35](785 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:28, 08:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:24, 12:13](618 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:42, 20:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:18](634 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:55, 07:30](686 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:47, 18:28]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 05:33](673 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:32, 15:51]
+PASS -- TEST 'hafs_regional_docn_intel' [08:40, 05:48](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:39, 05:48](735 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:21](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:39, 08:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:36](748 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:36](738 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:31](1354 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:08, 02:29](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:04, 02:26](1255 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:34](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:07, 02:37](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 02:28](640 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:59, 05:57](686 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:39, 06:00](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:00, 02:34](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:06](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 04:10](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:38, 06:25]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:14](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:33, 08:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:36](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:29, 02:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:28](846 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 01:30](451 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:56, 00:52](451 MB)
+
+PASS -- COMPILE 'atml_intel' [14:46, 13:58]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:23, 07:54](1625 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:18, 07:22](1627 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:36, 03:54](852 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:36, 13:36]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:44](1626 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:44, 13:37]
+PASS -- TEST 'control_atmwav_intel' [03:32, 01:34](635 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:44, 12:38]
+PASS -- TEST 'atmaero_control_p8_intel' [06:56, 03:48](2945 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:38, 04:25](3001 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:12, 04:36](3011 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:40, 12:01]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:38, 07:41]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:33, 22:42](4530 MB)
SYNOPSIS:
-Starting Date/Time: 20240303 13:48:33
-Ending Date/Time: 20240303 14:16:59
-Total Time: 00h:28m:32s
-Compiles Completed: 2/2
-Tests Completed: 2/2
+Starting Date/Time: 20240308 07:21:30
+Ending Date/Time: 20240308 09:01:22
+Total Time: 01h:41m:04s
+Compiles Completed: 39/39
+Tests Completed: 175/175
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 790f282fa5..66d1ffb3f8 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,18 +1,41 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+61e86c66145af77f68ab88bd931b7706228a4879
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_82051
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_166703
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:09, 14:30]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 06:46](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 20:36]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:46, 13:26](1700 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:38, 13:58](1813 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:42, 06:43](951 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:47, 14:42](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:08, 08:59]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:45, 24:33](1702 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:09, 13:58]
-PASS -- TEST 'cpld_control_p8_intel' [10:49, 07:32](3099 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:00, 07:44](3098 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:58, 04:44](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 06:06](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:44](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:01, 06:06](3415 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:42, 07:33](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 06:41](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:58, 07:39](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 10:15](3273 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 07:12](3602 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 12:42](4038 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:04, 08:58](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:48, 07:25](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:09, 13:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:15, 04:26](1683 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 04:38](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [11:08, 08:57]
-PASS -- TEST 'cpld_debug_p8_intel' [12:16, 09:27](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:08, 08:22]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:08, 05:56](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:09, 12:39]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:35](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [14:09, 12:15]
-PASS -- TEST 'cpld_control_c48_intel' [08:56, 06:56](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:10, 17:54]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:33, 05:59](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 20:45]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:28, 14:43](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:16, 07:35](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 17:10](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:08, 08:45]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:22, 26:39](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:43]
-PASS -- TEST 'control_flake_intel' [05:40, 03:47](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 02:27](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:21](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:38, 02:31](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:32](623 MB)
-PASS -- TEST 'control_c48_intel' [07:47, 05:37](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:53, 05:38](721 MB)
-PASS -- TEST 'control_c192_intel' [11:40, 08:47](738 MB)
-PASS -- TEST 'control_c384_intel' [19:03, 16:19](1040 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:16, 13:59](1183 MB)
-PASS -- TEST 'control_stochy_intel' [03:37, 01:50](628 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:24, 01:00](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:37, 01:44](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:41, 02:21](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:40, 02:28](623 MB)
-PASS -- TEST 'control_p8_intel' [06:04, 03:12](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 03:15](1609 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 03:07](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:11, 01:40](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:10](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:22, 01:33](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:45](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:37](1678 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:53, 04:47](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:58, 03:58](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:14, 02:45](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:03, 03:42](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:46, 04:37](615 MB)
-PASS -- TEST 'regional_restart_intel' [05:48, 02:30](789 MB)
-PASS -- TEST 'regional_decomp_intel' [07:44, 04:50](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:18, 02:54](757 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:34, 04:34](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:31, 04:40](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:55, 04:33](615 MB)
-PASS -- TEST 'regional_wofs_intel' [07:47, 06:00](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:08, 10:41]
-PASS -- TEST 'rap_control_intel' [09:38, 06:28](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:35, 03:57](1189 MB)
-PASS -- TEST 'rap_decomp_intel' [09:46, 06:54](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [07:55, 06:03](1100 MB)
-PASS -- TEST 'rap_restart_intel' [06:16, 03:39](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:17, 06:43](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:11, 07:04](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 04:55](879 MB)
-PASS -- TEST 'hrrr_control_intel' [08:09, 04:03](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:04, 03:54](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:23, 03:03](1086 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:42, 01:57](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:48, 06:27](1002 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:18, 08:08](1966 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:15, 07:47](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:09, 10:34]
-PASS -- TEST 'control_csawmg_intel' [08:46, 05:45](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:48, 05:37](693 MB)
-PASS -- TEST 'control_ras_intel' [06:04, 03:18](657 MB)
-
-PASS -- COMPILE 'wam_intel' [11:08, 09:45]
-PASS -- TEST 'control_wam_intel' [05:36, 02:10](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:55]
-PASS -- TEST 'control_p8_faster_intel' [06:08, 03:02](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:49, 04:29](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:08, 08:43]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:46](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:19, 02:43](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:56, 03:05](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:49](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:48, 04:09](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:58, 04:10](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:33, 02:47](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:37, 02:55](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:11](1619 MB)
-PASS -- TEST 'regional_debug_intel' [19:54, 16:26](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:31, 05:01](1167 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:28, 04:45](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 04:55](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:27, 05:02](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:05](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:08](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:31, 05:08](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:06](1168 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:27, 05:21](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:04](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:27, 04:56](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 05:13](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:52](1167 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:56](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:47](1172 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:28, 05:13](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:53, 08:47](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:07, 05:53]
-PASS -- TEST 'control_wam_debug_intel' [07:29, 05:05](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 10:11]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:46](1052 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:50, 05:25](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 03:01](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:41, 05:17](950 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:48, 02:40](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:44, 03:29](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:19](783 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:25, 01:40](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 14:59]
-PASS -- TEST 'conus13km_control_intel' [04:52, 02:02](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:32, 01:05](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:29, 01:19](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 09:49]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:22](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:08, 06:21]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 04:49](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 04:50](1051 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:51, 13:56](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:51, 14:09](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:05](1111 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:39, 13:44](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:08, 06:21]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 04:58](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:12, 13:29]
-PASS -- TEST 'hafs_regional_atm_intel' [08:10, 05:17](705 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:30](1060 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 07:31](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:37](781 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:22, 12:46](795 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:48](475 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:43](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:54](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:00, 07:55](433 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 03:46](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:55, 03:31](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:38](572 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:44](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:58, 03:55](764 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:16, 07:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:04](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:17, 18:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:59, 07:42](614 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:02, 07:43](788 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 14:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:58](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:16, 13:30]
-PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:04](746 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:01](729 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:05, 20:12](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [34:20, 32:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:59, 01:33](745 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:27](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:28](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:33](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:41, 05:55](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:42, 05:54](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:18, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:34](2014 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:35](1953 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:17, 07:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:32](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:34](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:16, 03:11]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:24](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:08](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:42, 00:53](456 MB)
-
-PASS -- COMPILE 'atml_intel' [18:28, 16:18]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:22, 07:14](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:09, 06:47](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 03:36](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:15, 11:30]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 02:08](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:10, 11:34]
-PASS -- TEST 'control_atmwav_intel' [03:37, 01:50](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:08, 10:40]
-PASS -- TEST 'atmaero_control_p8_intel' [07:54, 05:30](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:56, 06:02](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:50, 06:15](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:09, 11:15]
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:08, 07:51]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:17, 18:25](4482 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [19:15, 17:32]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:57, 07:29](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 21:10]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:35, 13:41](1701 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:07, 14:10](1814 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:31, 06:52](952 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:45, 15:24](1673 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 11:04]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [32:44, 24:14](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [23:13, 21:17]
+PASS -- TEST 'cpld_control_p8_intel' [14:11, 08:15](3101 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:36, 08:45](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [13:53, 06:10](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:08, 08:16](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [13:53, 06:08](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:05, 06:45](3416 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [14:43, 08:28](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [13:55, 07:21](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:24, 08:38](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [22:54, 10:34](3270 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [19:10, 07:50](3600 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [26:51, 13:13](4037 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:02, 09:09](4347 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:55, 08:06](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:13, 20:28]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [12:16, 05:24](1684 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:15](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:52]
+PASS -- TEST 'cpld_debug_p8_intel' [15:44, 10:05](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [13:12, 11:26]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:52, 05:59](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:55]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:30, 05:25](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [16:10, 14:34]
+PASS -- TEST 'cpld_control_c48_intel' [10:12, 06:53](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:13, 21:23]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:03](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:38]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 15:58](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:17, 07:12](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:04, 17:30](1681 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:20, 12:36]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:49, 26:43](1707 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:21, 15:11]
+PASS -- TEST 'control_flake_intel' [07:41, 04:04](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:34](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 02:38](627 MB)
+PASS -- TEST 'control_latlon_intel' [05:32, 02:38](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:41, 02:37](623 MB)
+PASS -- TEST 'control_c48_intel' [10:23, 05:37](722 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 05:38](727 MB)
+PASS -- TEST 'control_c192_intel' [13:38, 09:11](740 MB)
+PASS -- TEST 'control_c384_intel' [20:49, 16:34](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [22:25, 14:19](1184 MB)
+PASS -- TEST 'control_stochy_intel' [04:42, 01:56](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:56, 01:23](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:42, 01:51](627 MB)
+PASS -- TEST 'control_iovr4_intel' [05:19, 02:39](623 MB)
+PASS -- TEST 'control_iovr5_intel' [07:04, 02:56](623 MB)
+PASS -- TEST 'control_p8_intel' [11:15, 04:22](1607 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [10:44, 03:41](1609 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:20, 03:53](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [09:11, 01:42](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:01, 03:48](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 01:48](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:09, 03:22](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:08, 03:12](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:35, 05:24](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [11:08, 04:57](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:00, 04:25](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:51, 04:21](1615 MB)
+PASS -- TEST 'regional_control_intel' [09:06, 05:03](615 MB)
+PASS -- TEST 'regional_restart_intel' [06:43, 02:34](788 MB)
+PASS -- TEST 'regional_decomp_intel' [09:03, 05:10](615 MB)
+PASS -- TEST 'regional_2threads_intel' [07:09, 03:30](759 MB)
+PASS -- TEST 'regional_noquilt_intel' [09:52, 04:34](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:01, 04:38](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 04:51](615 MB)
+PASS -- TEST 'regional_wofs_intel' [10:29, 05:59](1590 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:12, 13:29]
+PASS -- TEST 'rap_control_intel' [13:45, 06:50](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 04:09](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [12:22, 07:06](1008 MB)
+PASS -- TEST 'rap_2threads_intel' [12:12, 06:13](1094 MB)
+PASS -- TEST 'rap_restart_intel' [08:44, 03:40](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:13, 07:00](1006 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:12, 07:12](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 04:56](879 MB)
+PASS -- TEST 'hrrr_control_intel' [10:30, 04:13](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [09:40, 03:41](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [09:17, 03:11](1082 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:01](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [13:03, 06:44](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:37, 08:07](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:43, 07:47](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:12, 13:22]
+PASS -- TEST 'control_csawmg_intel' [11:08, 06:14](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [11:12, 05:50](693 MB)
+PASS -- TEST 'control_ras_intel' [07:58, 03:43](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:17, 12:05]
+PASS -- TEST 'control_wam_intel' [06:02, 02:07](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [29:25, 27:35]
+PASS -- TEST 'control_p8_faster_intel' [09:49, 03:18](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:03, 04:51](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [31:29, 29:12]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:14, 02:56](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:49](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:17](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:14, 03:19](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:35, 04:32](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 04:52](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:22, 03:35](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:41, 03:31](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:51, 03:17](1619 MB)
+PASS -- TEST 'regional_debug_intel' [20:49, 16:46](634 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:02, 05:10](1167 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:02](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 05:07](1169 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 05:04](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:35, 05:22](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:00, 05:18](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:08](1167 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:49, 05:26](1170 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:37, 05:13](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:35, 05:12](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:06, 05:08](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [09:35, 05:03](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:18, 08:16](1167 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [09:24, 05:07](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [10:36, 05:54](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [09:24, 05:02](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:28, 08:34](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:12, 08:17]
+PASS -- TEST 'control_wam_debug_intel' [07:32, 04:53](393 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 11:52]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:40, 03:48](1049 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:00, 05:54](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:55, 03:25](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 05:25](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 02:55](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:04, 03:26](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 04:11](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:47, 01:58](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:20, 15:31]
+PASS -- TEST 'conus13km_control_intel' [06:36, 02:12](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:43, 01:09](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:34](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:17, 13:26]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:48, 04:46](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 09:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:13, 04:59](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1047 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:01, 14:13](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:02, 13:55](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:43, 08:14](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 13:53](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:06]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:16, 04:57](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:20, 16:44]
+PASS -- TEST 'hafs_regional_atm_intel' [09:21, 05:19](705 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 04:38](1058 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:46, 07:47](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 11:48](784 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:00, 12:50](797 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:23, 05:21](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:09, 06:55](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [08:12, 02:56](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:51, 08:08](431 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:12, 03:55](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:30](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:04, 04:52](566 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:21, 01:57](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:55, 04:06](762 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:23, 11:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:55, 12:54](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:24, 18:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:19, 07:51](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:19, 07:43](786 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:27, 16:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:08](784 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:16, 14:26]
+PASS -- TEST 'hafs_regional_docn_intel' [09:54, 06:14](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:47, 06:22](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:05](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:31]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:40](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:43, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:33, 02:29](635 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:42, 02:33](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:34, 02:27](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:03, 02:35](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:52, 02:25](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 06:11](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 06:03](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 02:33](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:54, 04:34](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:47, 04:36](2012 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 07:15]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:42, 05:29](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:22, 11:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:43, 02:33](745 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:36]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:23, 01:55](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:03, 01:46](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:18, 01:18](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:26, 15:20]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:49, 07:32](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 07:37](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [14:31, 04:19](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:25, 15:16]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:29, 02:22](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [29:17, 27:20]
+PASS -- TEST 'control_atmwav_intel' [04:53, 01:57](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:22, 13:54]
+PASS -- TEST 'atmaero_control_p8_intel' [10:23, 06:21](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:25, 07:07](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:57, 07:32](3020 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:15, 14:28]
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:17, 09:57]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 18:08](4479 MB)
SYNOPSIS:
-Starting Date/Time: 20240303 21:34:32
-Ending Date/Time: 20240303 23:00:23
-Total Time: 01h:26m:19s
+Starting Date/Time: 20240308 07:21:09
+Ending Date/Time: 20240308 09:13:54
+Total Time: 01h:54m:16s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 23de143222..96bdf4f51e 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+8ec162797729fa6ae3c67f4b02f4a92719b2816a
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,366 +25,366 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_130633
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_79929
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
+* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:06]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:26, 05:16](3124 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 16:01]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:02, 16:08](1726 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:49](2015 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 07:40](1083 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 18:14](1605 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 04:08]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [31:03, 22:26](1676 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:07, 11:56]
-PASS -- TEST 'cpld_control_p8_intel' [10:22, 05:39](3163 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:30, 05:45](3175 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:28, 03:22](3239 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 05:42](3222 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:28, 03:23](3258 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:15, 05:27](3551 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:15, 05:43](3198 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:21, 04:45](3067 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:31, 05:41](3135 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:17, 09:42](3332 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:48, 06:03](3567 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:09, 09:41](4119 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:42, 06:30](4288 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:21, 05:23](3124 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:07, 11:14]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:18, 04:31](1724 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:25, 04:21](1768 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:33]
-PASS -- TEST 'cpld_debug_p8_intel' [11:11, 08:04](3210 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:08]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:03, 05:35](1738 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:07, 10:34]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:24](1766 MB)
-
-PASS -- COMPILE 's2s_intel' [13:07, 10:53]
-PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:20](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:07, 16:30]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 05:23](3176 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:07, 14:55]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:01, 16:13](1772 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:37, 07:50](1167 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:18, 18:49](1666 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:01]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 24:12](1698 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:06, 10:53]
-PASS -- TEST 'control_flake_intel' [06:20, 03:22](695 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:24](641 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:27, 02:32](648 MB)
-PASS -- TEST 'control_latlon_intel' [04:19, 02:25](643 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:27](650 MB)
-PASS -- TEST 'control_c48_intel' [08:24, 06:13](871 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 06:15](868 MB)
-PASS -- TEST 'control_c192_intel' [11:33, 09:02](829 MB)
-PASS -- TEST 'control_c384_intel' [17:23, 09:07](1256 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:42, 08:06](1388 MB)
-PASS -- TEST 'control_stochy_intel' [03:18, 01:37](632 MB)
-PASS -- TEST 'control_stochy_restart_intel' [06:24, 01:00](500 MB)
-PASS -- TEST 'control_lndp_intel' [03:16, 01:32](622 MB)
-PASS -- TEST 'control_iovr4_intel' [07:21, 02:26](653 MB)
-PASS -- TEST 'control_iovr5_intel' [08:22, 02:27](623 MB)
-PASS -- TEST 'control_p8_intel' [08:54, 02:57](1609 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:05, 02:55](1622 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:01, 02:55](1617 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](866 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:58, 02:53](1608 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:35](911 MB)
-PASS -- TEST 'control_decomp_p8_intel' [08:56, 03:00](1593 MB)
-PASS -- TEST 'control_2threads_p8_intel' [08:53, 02:45](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:52, 05:13](1615 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:01, 03:51](1679 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:57, 02:58](1594 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:54, 03:27](1628 MB)
-PASS -- TEST 'regional_control_intel' [10:36, 05:09](851 MB)
-PASS -- TEST 'regional_restart_intel' [04:33, 02:43](1017 MB)
-PASS -- TEST 'regional_decomp_intel' [11:37, 05:30](815 MB)
-PASS -- TEST 'regional_2threads_intel' [08:38, 03:17](819 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:41, 05:06](1363 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 05:08](848 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:08](845 MB)
-PASS -- TEST 'regional_wofs_intel' [08:38, 06:36](1877 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 09:45]
-PASS -- TEST 'rap_control_intel' [09:39, 07:39](1117 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:08](1281 MB)
-PASS -- TEST 'rap_decomp_intel' [09:29, 08:03](1025 MB)
-PASS -- TEST 'rap_2threads_intel' [09:28, 07:19](1164 MB)
-PASS -- TEST 'rap_restart_intel' [07:56, 04:03](1109 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:42, 07:36](1098 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1016 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [19:00, 06:03](1128 MB)
-PASS -- TEST 'hrrr_control_intel' [05:34, 03:57](1028 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:03](1012 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1107 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:08](984 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:40, 07:33](1078 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:05](1982 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:29, 08:50](2065 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:07, 09:39]
-PASS -- TEST 'control_csawmg_intel' [07:35, 05:49](739 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:34, 05:45](740 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:16](713 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 09:04]
-PASS -- TEST 'control_wam_intel' [03:17, 02:01](652 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 09:58]
-PASS -- TEST 'control_p8_faster_intel' [04:52, 02:35](1602 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:36, 04:40](822 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:28]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:39](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:40](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:58](816 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:42](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:36, 04:01](856 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 03:55](857 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:17, 02:44](819 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:27, 02:49](867 MB)
-PASS -- TEST 'control_debug_p8_intel' [00:52, 02:47](1647 MB)
-PASS -- TEST 'regional_debug_intel' [18:35, 16:36](817 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:35, 04:46](1207 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:33, 04:49](1199 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:36, 04:46](1203 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [18:36, 04:56](1186 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:41, 04:50](1191 MB)
-PASS -- TEST 'rap_diag_debug_intel' [19:04, 05:13](1257 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:02](1196 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:40, 05:06](1178 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [17:35, 04:56](1192 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:40, 04:56](1164 MB)
-PASS -- TEST 'rap_noah_debug_intel' [16:45, 04:54](1199 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [16:38, 04:58](1193 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:39, 07:50](1188 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [16:35, 04:54](1160 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [16:49, 05:52](1201 MB)
-PASS -- TEST 'rap_flake_debug_intel' [15:37, 04:58](1199 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:55, 08:20](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:05, 03:11]
-PASS -- TEST 'control_wam_debug_intel' [06:18, 04:43](504 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:30]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:19, 04:02](1159 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:54, 06:30](1043 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:49, 03:28](949 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:12, 06:23](1093 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:53, 03:16](961 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:47, 03:40](930 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:56](1005 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 02:04](916 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:35]
-PASS -- TEST 'conus13km_control_intel' [05:16, 02:12](1192 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:58, 01:10](1115 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:49, 01:26](1098 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:07, 09:25]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:24, 04:21](983 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:08]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:28, 04:44](1049 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:21, 04:40](1040 MB)
-PASS -- TEST 'conus13km_debug_intel' [25:56, 14:02](1233 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [25:44, 14:01](916 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [14:39, 07:55](1148 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 13:43](1283 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:35]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:27, 04:51](1113 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:07, 10:49]
-PASS -- TEST 'hafs_regional_atm_intel' [08:23, 05:04](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:27](1110 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 07:11](812 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 13:07](829 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 14:46](860 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:56, 05:51](481 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:34, 06:57](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:54, 03:17](353 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:02, 07:35](473 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:49, 04:05](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:55, 04:02](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 04:28](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:54](385 MB)
-PASS -- TEST 'gnv1_nested_intel' [18:44, 04:05](778 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:07, 03:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:51, 12:19](570 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:08, 11:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:59, 08:29](631 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:09, 08:36](675 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:08, 11:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:07, 06:24](688 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:06, 10:17]
-PASS -- TEST 'hafs_regional_docn_intel' [12:17, 06:20](821 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:20, 06:24](789 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [35:01, 16:23](1201 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 05:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 02:47](1136 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [15:16, 01:42](1075 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [10:14, 02:41](1007 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:17, 02:49](1013 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:15, 02:39](1019 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:14, 02:50](1128 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:17, 02:43](1116 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [17:16, 02:37](996 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [23:32, 06:29](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:26, 06:22](1021 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:14, 02:43](1119 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:16, 03:59](2484 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [17:17, 03:57](2444 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 02:59]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:15, 06:10](1044 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:16, 02:40](1126 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:28, 00:49](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:21, 00:49](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [09:23, 00:29](313 MB)
-
-PASS -- COMPILE 'atml_intel' [12:09, 10:38]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:17, 04:19](1585 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [14:17, 04:22](1584 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:46, 02:17](890 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:07, 09:47]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [10:51, 01:47](1650 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:52]
-PASS -- TEST 'control_atmwav_intel' [11:30, 01:44](633 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:06, 09:53]
-PASS -- TEST 'atmaero_control_p8_intel' [13:00, 04:00](3031 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [13:58, 04:48](3053 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:45, 05:01](3092 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:07, 09:28]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:20]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:12, 20:16](4449 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:06, 03:28]
-PASS -- TEST 'control_c48_gnu' [19:25, 11:35](792 MB)
-PASS -- TEST 'control_stochy_gnu' [12:23, 04:01](551 MB)
-PASS -- TEST 'control_ras_gnu' [12:18, 04:57](551 MB)
-PASS -- TEST 'control_p8_gnu' [11:01, 04:55](1302 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [10:56, 04:42](1308 MB)
-PASS -- TEST 'control_flake_gnu' [11:20, 05:52](596 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:07, 03:30]
-PASS -- TEST 'rap_control_gnu' [17:41, 11:49](895 MB)
-PASS -- TEST 'rap_decomp_gnu' [14:32, 11:50](892 MB)
-PASS -- TEST 'rap_2threads_gnu' [20:45, 10:41](983 MB)
-PASS -- TEST 'rap_restart_gnu' [08:37, 06:16](623 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [21:34, 11:58](895 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [20:46, 11:57](899 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [31:43, 08:55](620 MB)
-PASS -- TEST 'hrrr_control_gnu' [14:34, 06:01](887 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [14:35, 06:05](879 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [13:40, 05:21](969 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [13:30, 06:01](893 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:25, 03:13](610 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:25, 03:11](701 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [19:39, 11:39](891 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:20]
-PASS -- TEST 'control_diag_debug_gnu' [09:28, 01:41](592 MB)
-PASS -- TEST 'regional_debug_gnu' [14:39, 07:39](596 MB)
-PASS -- TEST 'rap_control_debug_gnu' [09:24, 02:36](907 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [09:21, 02:35](900 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [08:19, 02:36](896 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [08:19, 02:37](905 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [08:43, 02:48](989 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [09:31, 03:56](905 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [07:20, 02:35](910 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [07:20, 02:35](898 MB)
-PASS -- TEST 'control_ras_debug_gnu' [06:16, 01:35](538 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [07:16, 02:19](535 MB)
-PASS -- TEST 'control_debug_p8_gnu' [06:38, 01:43](1287 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [07:24, 02:38](903 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [06:22, 02:54](908 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:35, 04:20](910 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:41]
-PASS -- TEST 'control_wam_debug_gnu' [05:18, 02:33](239 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:23]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [15:31, 12:05](747 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:29, 06:13](741 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:38, 10:48](803 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:36, 05:33](800 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:30, 06:12](741 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:58, 09:04](595 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [27:25, 03:22](583 MB)
-PASS -- TEST 'conus13km_control_gnu' [08:12, 04:46](900 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [25:51, 02:04](932 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [25:48, 02:22](601 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [26:13, 05:12]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:40, 07:11](780 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [26:13, 03:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:22, 02:54](759 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 02:55](759 MB)
-PASS -- TEST 'conus13km_debug_gnu' [09:52, 07:28](915 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:48, 07:37](630 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [06:46, 04:50](950 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:44, 07:07](982 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [26:14, 03:26]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:49](787 MB)
-
-PASS -- COMPILE 's2swa_gnu' [52:14, 14:05]
-PASS -- TEST 'cpld_control_p8_gnu' [13:34, 10:46](1506 MB)
-
-PASS -- COMPILE 's2s_gnu' [59:16, 14:05]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:18, 06:28](1400 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [58:15, 02:29]
-PASS -- TEST 'cpld_debug_p8_gnu' [09:11, 06:02](1500 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [25:19, 13:49]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:02, 21:58](1374 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:17, 02:13]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1389 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [25:18, 13:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:05](694 MB)
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [11:47, 11:47]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:01, 05:12](3170 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:30, 15:30]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:48, 16:06](1679 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 16:46](2000 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:29, 07:36](1091 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 18:09](1591 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:02, 04:01]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:04, 22:18](1608 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:52, 11:52]
+PASS -- TEST 'cpld_control_p8_intel' [06:30, 05:43](3133 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:39, 05:48](3132 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:19, 03:20](3181 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:29, 05:43](3176 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:19](3274 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:07, 05:23](3536 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:20, 05:38](3186 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](2988 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:28, 05:38](3168 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:06, 09:37](3275 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:05, 05:57](3586 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [14:37, 09:45](4051 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:59, 06:24](4301 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 05:21](3101 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:20, 11:20]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:14, 04:32](1708 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 04:26](1750 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:02, 04:00]
+PASS -- TEST 'cpld_debug_p8_intel' [08:56, 08:07](3165 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [03:43, 03:42]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:24, 05:40](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:12, 10:12]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:12, 04:23](1751 MB)
+
+PASS -- COMPILE 's2s_intel' [10:20, 10:20]
+PASS -- TEST 'cpld_control_c48_intel' [09:50, 09:20](2810 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:49, 15:49]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:15, 05:25](3181 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [14:50, 14:50]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:05, 16:21](1711 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:34, 07:39](1173 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:22, 18:38](1654 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:43, 03:42]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:56, 24:14](1694 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:41, 10:41]
+PASS -- TEST 'control_flake_intel' [03:27, 03:15](665 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:37, 02:25](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](653 MB)
+PASS -- TEST 'control_latlon_intel' [02:35, 02:24](650 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:41, 02:25](640 MB)
+PASS -- TEST 'control_c48_intel' [06:32, 06:20](870 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 06:16](870 MB)
+PASS -- TEST 'control_c192_intel' [09:20, 08:59](845 MB)
+PASS -- TEST 'control_c384_intel' [09:56, 09:01](1262 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:46, 07:48](1390 MB)
+PASS -- TEST 'control_stochy_intel' [01:48, 01:38](650 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](472 MB)
+PASS -- TEST 'control_lndp_intel' [01:43, 01:32](650 MB)
+PASS -- TEST 'control_iovr4_intel' [02:37, 02:26](649 MB)
+PASS -- TEST 'control_iovr5_intel' [02:39, 02:27](617 MB)
+PASS -- TEST 'control_p8_intel' [03:36, 02:59](1578 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:54](1630 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:32, 02:54](1602 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:10, 01:38](882 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:55](1598 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:12, 01:38](921 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:36, 03:03](1558 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:19, 02:45](1679 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:43, 05:12](1577 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:49](1644 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:01](1573 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:01, 03:23](1640 MB)
+PASS -- TEST 'regional_control_intel' [05:35, 05:08](818 MB)
+PASS -- TEST 'regional_restart_intel' [03:07, 02:44](986 MB)
+PASS -- TEST 'regional_decomp_intel' [05:48, 05:21](844 MB)
+PASS -- TEST 'regional_2threads_intel' [03:40, 03:15](809 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:32, 05:08](1351 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:07](817 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:08](854 MB)
+PASS -- TEST 'regional_wofs_intel' [07:04, 06:36](1887 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:38, 09:38]
+PASS -- TEST 'rap_control_intel' [08:05, 07:39](1111 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 04:03](1282 MB)
+PASS -- TEST 'rap_decomp_intel' [08:26, 08:02](1033 MB)
+PASS -- TEST 'rap_2threads_intel' [07:36, 07:12](1172 MB)
+PASS -- TEST 'rap_restart_intel' [04:32, 03:59](1091 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:03, 07:37](1076 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:23, 08:02](996 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:45](1103 MB)
+PASS -- TEST 'hrrr_control_intel' [04:18, 03:56](1027 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 04:03](992 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 03:37](1100 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:10](1003 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:32](1057 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1951 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 08:48](2072 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:21, 09:21]
+PASS -- TEST 'control_csawmg_intel' [06:19, 05:53](746 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:08, 05:42](707 MB)
+PASS -- TEST 'control_ras_intel' [03:25, 03:15](736 MB)
+
+PASS -- COMPILE 'wam_intel' [08:58, 08:57]
+PASS -- TEST 'control_wam_intel' [02:14, 02:03](624 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:46, 09:46]
+PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1603 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:04, 04:37](847 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:09, 04:09]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:51, 02:37](809 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:54, 02:37](811 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:55](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:40](810 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:04](828 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:20, 03:56](859 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:55, 02:43](819 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:04, 02:43](870 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1599 MB)
+PASS -- TEST 'regional_debug_intel' [16:53, 16:26](834 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1160 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:46, 04:34](1195 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:56, 04:41](1196 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:50, 04:38](1197 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:58, 04:42](1198 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:26, 05:04](1277 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:48](1165 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:03, 04:52](1196 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:46](1199 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:01, 04:44](1197 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:58, 04:42](1195 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:03, 04:47](1196 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:50, 07:33](1195 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:57, 04:40](1174 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:43](1192 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:01, 04:45](1209 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:32, 08:03](1207 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:06, 03:05]
+PASS -- TEST 'control_wam_debug_intel' [04:53, 04:42](483 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:15, 09:14]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:38, 03:49](1147 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:40, 06:19](1029 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 03:23](990 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 06:06](1078 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:06](960 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:31](913 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:12, 04:47](1037 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:06, 01:49](921 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:20, 11:20]
+PASS -- TEST 'conus13km_control_intel' [02:40, 02:03](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:51](1115 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:43, 01:12](1070 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:14, 09:14]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:11](984 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:14, 03:13]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:42](1081 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:47, 04:35](1050 MB)
+PASS -- TEST 'conus13km_debug_intel' [14:20, 13:43](1192 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:21, 13:49](920 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 07:58](1119 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:55, 13:24](1290 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:09]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:57, 04:42](1119 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:38, 10:38]
+PASS -- TEST 'hafs_regional_atm_intel' [05:35, 04:43](739 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 05:36](1077 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:48, 06:44](825 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:40, 12:46](854 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:45, 14:38](881 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:54, 05:14](488 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:22](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:05, 02:33](361 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:31, 06:57](464 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:56, 03:27](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:54, 03:17](535 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:36, 03:57](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:08](395 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:24, 03:53](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:45, 03:44]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:55, 12:16](567 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [10:56, 10:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:05, 08:24](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:09, 08:23](745 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:43, 10:43]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:03, 06:16](703 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:15, 10:14]
+PASS -- TEST 'hafs_regional_docn_intel' [07:01, 06:06](825 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:06, 06:10](814 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:27, 15:49](1205 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:18, 06:18]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:57, 02:50](1105 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:40](1067 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:37](989 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:35](1006 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:37](1014 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:42](1138 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:39](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:37, 02:29](1004 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:22](1048 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:20](1030 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:40, 02:34](1125 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:50, 03:42](2429 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:54, 03:45](2481 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [02:58, 02:57]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:10, 06:01](1049 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:03, 06:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:44](1113 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:08, 01:07]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:00, 00:42](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:56, 00:44](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:40, 00:26](319 MB)
+
+PASS -- COMPILE 'atml_intel' [10:31, 10:31]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:15](1569 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:14](1571 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](882 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:55, 09:54]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:44](1623 MB)
+
+PASS -- COMPILE 'atmwm_intel' [09:51, 09:51]
+PASS -- TEST 'control_atmwav_intel' [01:59, 01:39](660 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:39, 09:38]
+PASS -- TEST 'atmaero_control_p8_intel' [04:38, 03:54](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:46](3028 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:27, 04:58](3108 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:19, 09:19]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:14, 03:13]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:18, 19:48](4486 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:26, 03:25]
+PASS -- TEST 'control_c48_gnu' [11:47, 11:34](793 MB)
+PASS -- TEST 'control_stochy_gnu' [04:09, 03:57](549 MB)
+PASS -- TEST 'control_ras_gnu' [05:03, 04:51](560 MB)
+PASS -- TEST 'control_p8_gnu' [05:34, 04:49](1308 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:19, 04:36](1315 MB)
+PASS -- TEST 'control_flake_gnu' [06:04, 05:53](599 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:30, 03:29]
+PASS -- TEST 'rap_control_gnu' [11:50, 11:28](902 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:07, 11:46](899 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:53, 10:27](976 MB)
+PASS -- TEST 'rap_restart_gnu' [06:28, 05:56](626 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:58, 11:33](894 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:09, 11:48](863 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:12, 08:43](630 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:17, 05:53](892 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:18, 05:58](879 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 05:08](970 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:13, 05:50](896 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 03:14](611 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:24, 03:08](705 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 11:20](893 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:14, 03:14]
+PASS -- TEST 'control_diag_debug_gnu' [01:52, 01:34](589 MB)
+PASS -- TEST 'regional_debug_gnu' [08:03, 07:31](595 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:42, 02:28](906 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:26](902 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:45, 02:34](904 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:43, 02:32](909 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:09, 02:42](992 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:02, 03:50](905 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:44, 02:30](906 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:42, 02:28](899 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:40, 01:30](540 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:14, 02:03](537 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:39](1287 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:50, 02:37](906 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:02, 02:50](910 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:30, 04:06](923 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:37, 01:36]
+PASS -- TEST 'control_wam_debug_gnu' [02:37, 02:26](245 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:29, 03:29]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:11, 11:50](749 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:21, 06:02](747 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:01, 10:34](807 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 05:14](798 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:16, 05:58](746 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:21, 08:56](597 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 03:15](582 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:53, 04:12](897 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:16, 01:50](931 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 02:14](597 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:01, 05:00]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:25, 06:58](784 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:15, 03:15]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:28](759 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:42, 02:30](757 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:40, 07:11](918 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 07:00](632 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:50, 04:22](951 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:36, 07:08](985 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:20, 03:19]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:49, 02:36](789 MB)
+
+PASS -- COMPILE 's2swa_gnu' [13:45, 13:44]
+PASS -- TEST 'cpld_control_p8_gnu' [11:23, 10:34](1514 MB)
+
+PASS -- COMPILE 's2s_gnu' [13:38, 13:38]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:16, 06:27](1401 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:18, 02:17]
+PASS -- TEST 'cpld_debug_p8_gnu' [06:54, 06:06](1508 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [13:43, 13:42]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:45, 22:01](1360 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:03, 02:03]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:41, 12:59](1366 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [13:20, 13:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB)
SYNOPSIS:
-Starting Date/Time: 20240304 03:09:54
-Ending Date/Time: 20240304 09:20:43
-Total Time: 06h:11m:14s
+Starting Date/Time: 20240309 16:43:42
+Ending Date/Time: 20240309 21:25:17
+Total Time: 04h:42m:03s
Compiles Completed: 53/53
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 22d56da462..effbb3706c 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+d4bf6f3ada023864cca106d27994f69b90edba87
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,419 +25,359 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1842074
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_4129469
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 07:33](1890 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:50]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:05, 13:20](1770 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:21, 14:10](2184 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:33, 06:34](1180 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:53, 14:52](1691 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:46]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:07, 20:20](1726 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:06, 12:20]
-PASS -- TEST 'cpld_control_p8_intel' [09:49, 07:39](2060 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2071 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:16](1974 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 07:50](1978 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:08, 04:13](1738 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:43, 08:58](2490 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:46, 07:45](2067 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:33](1889 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:35](2064 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:41, 14:55](2808 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:18, 05:49](2933 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:20, 08:54](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 05:53](3608 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 04:58](2053 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:06, 11:07]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:07](1778 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:49, 04:00](1829 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:46]
-PASS -- TEST 'cpld_debug_p8_intel' [08:57, 06:53](2070 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:30]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:53, 04:44](1784 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:46]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 03:58](1812 MB)
-
-PASS -- COMPILE 's2s_intel' [12:06, 10:15]
-FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:06, 14:45]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:02, 07:19](2067 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 14:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:51, 13:49](1803 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:09, 06:54](1294 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 15:24](1728 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:15]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:47, 21:26](1768 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:05, 07:56]
-PASS -- TEST 'control_flake_intel' [04:15, 02:50](709 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:17, 02:02](662 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:18](680 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:04](663 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:06](655 MB)
-PASS -- TEST 'control_c48_intel' [07:20, 05:48](859 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:43](853 MB)
-PASS -- TEST 'control_c192_intel' [09:28, 07:50](963 MB)
-PASS -- TEST 'control_c384_intel' [10:58, 08:06](1448 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:44, 07:18](1520 MB)
-PASS -- TEST 'control_stochy_intel' [03:16, 01:25](680 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](550 MB)
-PASS -- TEST 'control_lndp_intel' [03:16, 01:22](668 MB)
-PASS -- TEST 'control_iovr4_intel' [03:15, 02:04](666 MB)
-PASS -- TEST 'control_iovr5_intel' [04:14, 02:11](673 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:33](1627 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:48, 02:30](1642 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:27](1639 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:46, 01:23](915 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:38, 02:28](1637 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:22](992 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:36, 02:34](1623 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:36, 02:20](1724 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:27](1641 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:29](1712 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:34](1647 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:55, 03:03](1658 MB)
-PASS -- TEST 'regional_control_intel' [06:26, 04:33](959 MB)
-PASS -- TEST 'regional_restart_intel' [04:25, 02:28](1103 MB)
-PASS -- TEST 'regional_decomp_intel' [06:21, 04:47](946 MB)
-PASS -- TEST 'regional_2threads_intel' [04:24, 02:56](923 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:26, 04:26](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:32](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:35](956 MB)
-PASS -- TEST 'regional_wofs_intel' [07:28, 05:38](2093 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:43]
-PASS -- TEST 'rap_control_intel' [08:39, 06:29](1197 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:25](1446 MB)
-PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1127 MB)
-PASS -- TEST 'rap_2threads_intel' [08:30, 06:12](1378 MB)
-PASS -- TEST 'rap_restart_intel' [05:49, 03:27](1133 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:46, 06:29](1188 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:56](1144 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:58](1214 MB)
-PASS -- TEST 'hrrr_control_intel' [05:47, 03:27](1068 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:25](1040 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:30, 03:07](1116 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:50](1039 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:19](1206 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:19, 07:43](2002 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:28](2222 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:06, 06:57]
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:06](807 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:26, 05:04](807 MB)
-PASS -- TEST 'control_ras_intel' [04:12, 02:48](822 MB)
-
-PASS -- COMPILE 'wam_intel' [08:05, 06:38]
-PASS -- TEST 'control_wam_intel' [03:20, 01:50](792 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:40]
-PASS -- TEST 'control_p8_faster_intel' [04:53, 02:15](1648 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:24, 04:01](960 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:54]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:18, 02:22](819 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:18](823 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:29](826 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:18](828 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:23, 03:23](863 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:25, 03:20](873 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:11, 02:16](847 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:20, 02:15](887 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:27, 02:23](1659 MB)
-PASS -- TEST 'regional_debug_intel' [16:33, 14:17](897 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:17, 03:59](1211 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:55](1210 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:57](1225 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 03:56](1226 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 03:58](1216 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 04:14](1294 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:04](1217 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:08](1215 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:14, 04:04](1216 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 04:04](1213 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:01](1212 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:06](1214 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:31](1222 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:18, 03:57](1206 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:14](1223 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:01](1223 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:51, 06:51](1222 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 02:45]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:22]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:45, 14:46](1299 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:56, 05:33](1149 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:54, 02:58](1035 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 05:23](1296 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:45](1044 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:37, 03:14](984 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:11](1093 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:35](945 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:07, 08:46]
-PASS -- TEST 'conus13km_control_intel' [03:40, 01:44](1297 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:44](1207 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:09](1151 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:50]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:49](1081 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:59](1101 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:49](1100 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:36, 11:55](1329 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:32, 12:09](990 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:33, 06:58](1237 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:27, 11:59](1404 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:40]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 04:00](1149 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:06, 09:38]
-PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:52](879 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:35](1285 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:14, 06:33](958 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 13:55](992 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 15:02](1009 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:50](608 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:16, 07:28](613 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:02](441 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 08:23](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:57](625 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:48](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 05:02](679 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:49](447 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:06, 02:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:30](628 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:05, 10:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:44, 16:27](728 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:49, 15:29](816 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:52]
-FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:05, 10:29]
-PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:30](934 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 05:34](940 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:48, 16:27](1336 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:08](1138 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:19](1098 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:04](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:05](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:05](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:07](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:09](1149 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:03](1014 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:58](1166 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:45, 04:54](1151 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1139 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:57](2431 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:03](2445 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:01]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:00](1072 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:11, 02:05](1146 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 01:09](338 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:16, 01:14](562 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](558 MB)
-
-PASS -- COMPILE 'atml_intel' [10:06, 08:12]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 06:20](1629 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:59, 06:28](1644 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:40, 03:44](952 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:25]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:34](1696 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:40]
-PASS -- TEST 'control_atmwav_intel' [03:42, 01:31](696 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:31]
-PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:34](1803 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:20](1810 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:32](1824 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:06, 07:07]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:04]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:20, 16:27](4615 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:06, 03:58]
-PASS -- TEST 'control_c48_gnu' [11:26, 09:30](864 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:05, 10:59]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:55, 07:49](1890 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:43]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:19, 13:25](1769 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:30, 14:39](2227 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 07:08](1180 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:57, 15:16](1693 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:23]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:22](1732 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:05, 10:29]
+PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:28](2073 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:24](1979 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:32](1983 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:05, 04:23](1741 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 08:54](2503 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:40](2055 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:21](1908 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:57, 07:29](2061 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:23](2808 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:26, 05:52](2920 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:48, 08:54](3635 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 06:25](3611 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:49, 04:56](2028 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:05, 09:58]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:03](1768 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:49, 04:04](1816 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:05, 04:58]
+PASS -- TEST 'cpld_debug_p8_intel' [09:03, 06:51](2058 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:40]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:47](1797 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:05, 08:40]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:57, 04:00](1822 MB)
+
+PASS -- COMPILE 's2s_intel' [10:05, 08:28]
+PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:17](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:05, 12:16]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:00, 07:19](2064 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:04]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:04, 14:10](1810 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:16, 06:42](1294 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:01, 15:11](1735 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:07]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:52, 21:42](1768 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:44]
+PASS -- TEST 'control_flake_intel' [04:17, 02:53](714 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:06](668 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 02:27](666 MB)
+PASS -- TEST 'control_latlon_intel' [04:17, 02:08](660 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:10](656 MB)
+PASS -- TEST 'control_c48_intel' [07:23, 05:45](861 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:09](857 MB)
+PASS -- TEST 'control_c192_intel' [09:38, 07:53](957 MB)
+PASS -- TEST 'control_c384_intel' [11:04, 08:21](1442 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:46, 07:24](1523 MB)
+PASS -- TEST 'control_stochy_intel' [03:16, 01:29](667 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:51](551 MB)
+PASS -- TEST 'control_lndp_intel' [03:16, 01:25](672 MB)
+PASS -- TEST 'control_iovr4_intel' [04:17, 02:07](659 MB)
+PASS -- TEST 'control_iovr5_intel' [04:15, 02:09](661 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:36](1646 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1628 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:26](1641 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:13, 01:29](913 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:27](1632 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 01:27](983 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:32](1627 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:59, 02:20](1735 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:37, 04:36](1632 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:27](1705 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:37](1659 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:59, 03:13](1656 MB)
+PASS -- TEST 'regional_control_intel' [06:24, 04:39](955 MB)
+PASS -- TEST 'regional_restart_intel' [04:29, 02:35](1106 MB)
+PASS -- TEST 'regional_decomp_intel' [06:22, 05:02](946 MB)
+PASS -- TEST 'regional_2threads_intel' [05:28, 03:07](923 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:27, 04:31](1483 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:53](958 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:48](967 MB)
+PASS -- TEST 'regional_wofs_intel' [07:28, 05:54](2096 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:41]
+PASS -- TEST 'rap_control_intel' [08:51, 06:50](1193 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:47](1442 MB)
+PASS -- TEST 'rap_decomp_intel' [08:36, 07:01](1136 MB)
+PASS -- TEST 'rap_2threads_intel' [08:39, 06:19](1358 MB)
+PASS -- TEST 'rap_restart_intel' [05:43, 03:33](1129 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:45, 06:38](1195 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:44, 06:59](1145 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 05:13](1196 MB)
+PASS -- TEST 'hrrr_control_intel' [05:41, 03:30](1072 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:31](1039 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:23](1115 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](1037 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:36](1215 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:25, 07:57](2020 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:41](2177 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:19]
+PASS -- TEST 'control_csawmg_intel' [07:27, 05:13](815 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:30, 05:09](839 MB)
+PASS -- TEST 'control_ras_intel' [04:14, 02:55](811 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:37]
+PASS -- TEST 'control_wam_intel' [03:22, 01:49](784 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:25]
+PASS -- TEST 'control_p8_faster_intel' [04:55, 02:17](1655 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:29, 04:07](960 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:50]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:13](820 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:14](824 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](832 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:18](831 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:31](882 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:21](872 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:14, 02:17](843 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:22, 02:48](888 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:29, 02:37](1648 MB)
+PASS -- TEST 'regional_debug_intel' [16:29, 14:18](896 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:18, 04:02](1220 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:16, 04:04](1214 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:11](1216 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:05](1220 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:07](1222 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 04:27](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:18](1220 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:15, 04:16](1221 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:15](1220 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:08](1219 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:03](1224 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1223 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 06:33](1215 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:00](1225 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:54](1222 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:03](1219 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:51, 06:47](1220 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:42]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:30]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:41, 03:34](1274 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:39, 05:31](1133 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 03:00](1009 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:22](1284 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:54](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:01](979 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 04:02](1091 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:35](952 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:12]
+PASS -- TEST 'conus13km_control_intel' [03:40, 01:52](1304 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:42](1204 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:22, 01:04](1162 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:54](1091 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:39]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 03:57](1092 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:50](1096 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:39, 11:33](1345 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:52](1000 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1230 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:37](1390 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:41]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:55](1163 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:06, 10:17]
+PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:34](880 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:17, 05:04](1281 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:12, 06:20](953 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:01, 14:09](975 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:12, 15:48](1007 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:34](608 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:59](616 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:48](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 07:48](540 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:51](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 03:48](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 04:46](669 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:28](451 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:23](639 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:50](722 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:53, 17:25](815 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:51, 10:27](798 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:06, 09:30]
+PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:25](958 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:00, 05:23](937 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:27](1342 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:05, 04:50]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:08](1147 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:10, 02:05](1010 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:07](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1015 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:07](1149 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1147 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:10, 02:04](1023 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:55](1152 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:49, 04:56](1152 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1139 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:02](2380 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:02](2380 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:55]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:09, 05:02](1083 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:26]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1142 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:56](336 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:51](563 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:32](560 MB)
+
+PASS -- COMPILE 'atml_intel' [10:06, 08:23]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:23](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 06:15](1634 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:12](961 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:05, 08:48]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:30](1706 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:05, 09:04]
+PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](707 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:24]
+PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:29](1785 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:14](1799 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 04:26](1826 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:06, 06:54]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:56]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 16:09](4588 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:05, 04:34]
+PASS -- TEST 'control_c48_gnu' [11:24, 09:51](882 MB)
PASS -- TEST 'control_stochy_gnu' [04:16, 02:16](729 MB)
PASS -- TEST 'control_ras_gnu' [05:13, 03:44](732 MB)
-PASS -- TEST 'control_p8_gnu' [05:51, 03:38](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:43, 03:39](1517 MB)
-PASS -- TEST 'control_flake_gnu' [06:18, 04:23](810 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:06, 04:22]
-PASS -- TEST 'rap_control_gnu' [09:46, 07:48](1080 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:34, 07:57](1085 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:37, 07:19](1152 MB)
-PASS -- TEST 'rap_restart_gnu' [06:52, 04:08](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:51, 07:49](1085 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:40, 08:14](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:02, 05:50](887 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:28, 04:02](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:02](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:37](1044 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:28, 04:07](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:14](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 01:59](934 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 07:58](1083 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:05, 08:00]
-PASS -- TEST 'control_diag_debug_gnu' [03:20, 01:14](773 MB)
-PASS -- TEST 'regional_debug_gnu' [08:30, 06:28](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:16, 01:56](1097 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:14, 01:54](1091 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 02:04](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 02:01](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:12](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:11](1095 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 01:59](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 02:01](1090 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:13](722 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:19](723 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:26](1505 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:58](1102 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:16](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:21](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:56]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:05, 06:06]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:29](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:58, 03:56](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:57](993 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 03:37](876 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:47, 04:06](949 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 05:35](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:59](855 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:42, 02:35](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:01](1175 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:28](928 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:07, 10:53]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:34, 04:38](988 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:06, 08:40]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:01](980 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 01:54](970 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:32](1281 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:53](955 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:37](1189 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:43](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:06, 09:02]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 02:01](1005 MB)
-
-PASS -- COMPILE 's2swa_gnu' [19:07, 17:50]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:58]
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:06, 04:54]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:05, 15:32]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:06, 05:14]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:04]
+PASS -- TEST 'control_p8_gnu' [05:49, 03:33](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:27](1514 MB)
+PASS -- TEST 'control_flake_gnu' [06:13, 04:23](811 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:06, 04:41]
+PASS -- TEST 'rap_control_gnu' [09:42, 07:43](1086 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:33, 07:54](1083 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:31, 07:11](1123 MB)
+PASS -- TEST 'rap_restart_gnu' [05:51, 04:02](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:34, 08:04](1084 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:53](1084 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:56](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:38, 03:58](1070 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:04](1137 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:39](1026 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:34, 04:08](1070 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:16, 02:04](884 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:02](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 07:43](1090 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:06, 08:06]
+PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:11](775 MB)
+PASS -- TEST 'regional_debug_gnu' [08:27, 06:25](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:56](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:17, 02:05](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:15, 02:05](1093 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:03](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:08](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:11](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:10](1096 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:07](1093 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:21](729 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:22](727 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:19](1503 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:02](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1100 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:20]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:10, 06:49]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:26](967 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:50, 03:55](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:46, 06:51](969 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:38, 03:27](894 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:50](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:39](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:16, 02:03](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:41, 02:35](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:05](1175 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:27](946 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:06, 13:45]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:28](995 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:06, 13:42]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:58](973 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:33, 05:24](1279 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](950 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:14](1189 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:22](1349 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:10, 13:49]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 01:59](1005 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:10, 16:14]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:05]
+
+PASS -- COMPILE 's2swa_debug_gnu' [15:10, 13:43]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 17:23]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:09, 12:48]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:06]
SYNOPSIS:
-Starting Date/Time: 20240303 11:31:58
-Ending Date/Time: 20240303 12:54:14
-Total Time: 01h:22m:37s
+Starting Date/Time: 20240307 12:40:39
+Ending Date/Time: 20240307 14:01:16
+Total Time: 01h:21m:01s
Compiles Completed: 53/53
-Tests Completed: 232/234
-Failed Tests:
-* TEST cpld_control_c48_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2166/tests/logs/log_hercules/rt_cpld_control_c48_intel.log
-* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2166/tests/logs/log_hercules/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERCULES REGRESSION TESTING LOG====
-====START OF HERCULES REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2192570
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:06, 09:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:42, 09:51](789 MB)
-
-PASS -- COMPILE 's2s_intel' [10:06, 08:16]
-PASS -- TEST 'cpld_control_c48_intel' [09:30, 07:18](2836 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240303 14:45:41
-Ending Date/Time: 20240303 15:09:49
-Total Time: 00h:24m:08s
-Compiles Completed: 2/2
-Tests Completed: 2/2
+Tests Completed: 234/234
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 76df10deef..212c002f65 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,18 +1,18 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+d4bf6f3ada023864cca106d27994f69b90edba87
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,244 +25,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_130416
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3482337
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [29:18, 28:00]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:15, 05:19](1756 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [46:27, 40:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:59, 16:18](1635 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:47, 16:38](1847 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [25:37, 07:38](977 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:13, 18:13](1609 MB)
-
-PASS -- COMPILE 's2swa_intel' [35:21, 28:15]
-PASS -- TEST 'cpld_control_p8_intel' [19:22, 05:58](1798 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [25:38, 06:00](1798 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [24:32, 03:27](1690 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:04, 06:23](1822 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [36:03, 03:37](1693 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [50:05, 05:44](2189 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [00:53, 06:16](1792 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [54:52, 05:02](1751 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:28, 06:06](1801 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [31:26, 05:39](1746 MB)
-
-PASS -- COMPILE 's2sw_intel' [34:20, 26:56]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [44:50, 04:25](1635 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:11, 04:45](1663 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:09, 04:45]
-PASS -- TEST 'cpld_debug_p8_intel' [57:40, 11:23](1791 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:15]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [56:58, 05:45](1650 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [25:16, 24:00]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:48, 04:38](1689 MB)
-
-PASS -- COMPILE 's2s_intel' [27:19, 24:17]
-PASS -- TEST 'cpld_control_c48_intel' [15:25, 09:16](2797 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [05:32, 03:19]
-PASS -- TEST 'cpld_control_p8_faster_intel' [31:42, 06:09](1807 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [41:24, 38:55]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [55:33, 17:13](1658 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [25:04, 07:57](1025 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 19:05](1635 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:08, 04:07]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:27, 24:51](1671 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [42:25, 25:36]
-PASS -- TEST 'control_flake_intel' [41:14, 03:59](647 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [38:14, 02:34](591 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [38:23, 02:38](598 MB)
-PASS -- TEST 'control_latlon_intel' [39:28, 02:38](582 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [38:19, 02:28](589 MB)
-PASS -- TEST 'control_c48_intel' [09:41, 07:32](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:42, 07:20](845 MB)
-PASS -- TEST 'control_c192_intel' [39:29, 09:41](717 MB)
-PASS -- TEST 'control_c384_intel' [46:28, 11:54](893 MB)
-PASS -- TEST 'control_c384gdas_intel' [36:13, 10:36](1011 MB)
-PASS -- TEST 'control_stochy_intel' [18:04, 01:37](582 MB)
-PASS -- TEST 'control_stochy_restart_intel' [18:37, 00:59](426 MB)
-PASS -- TEST 'control_lndp_intel' [14:01, 01:33](596 MB)
-PASS -- TEST 'control_iovr4_intel' [11:03, 02:28](585 MB)
-PASS -- TEST 'control_iovr5_intel' [46:50, 02:26](593 MB)
-PASS -- TEST 'control_p8_intel' [30:00, 02:59](1553 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [24:29, 02:58](1559 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [23:43, 02:52](1558 MB)
-PASS -- TEST 'control_restart_p8_intel' [16:21, 01:35](811 MB)
-PASS -- TEST 'control_noqr_p8_intel' [23:21, 02:52](1551 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [19:28, 01:34](829 MB)
-PASS -- TEST 'control_decomp_p8_intel' [23:17, 03:02](1544 MB)
-PASS -- TEST 'control_2threads_p8_intel' [23:16, 02:45](1644 MB)
-PASS -- TEST 'control_p8_lndp_intel' [25:20, 05:13](1561 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [27:09, 03:56](1615 MB)
-PASS -- TEST 'control_p8_mynn_intel' [23:52, 03:01](1561 MB)
-PASS -- TEST 'merra2_thompson_intel' [25:00, 03:27](1569 MB)
-PASS -- TEST 'regional_control_intel' [07:46, 05:16](752 MB)
-PASS -- TEST 'regional_restart_intel' [15:46, 02:52](925 MB)
-PASS -- TEST 'regional_decomp_intel' [08:12, 05:38](752 MB)
-PASS -- TEST 'regional_2threads_intel' [21:46, 03:19](745 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [22:53, 05:19](760 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [17:49, 05:20](755 MB)
-
-PASS -- COMPILE 'rrfs_intel' [40:21, 24:28]
-PASS -- TEST 'rap_control_intel' [35:44, 07:53](965 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:18, 04:44](1201 MB)
-PASS -- TEST 'rap_decomp_intel' [35:44, 08:18](968 MB)
-PASS -- TEST 'rap_2threads_intel' [35:21, 07:24](1062 MB)
-PASS -- TEST 'rap_restart_intel' [22:44, 03:57](978 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [35:51, 07:50](969 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [35:51, 08:06](960 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [24:53, 05:45](985 MB)
-PASS -- TEST 'hrrr_control_intel' [40:32, 04:06](969 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [40:32, 04:18](959 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [40:32, 03:53](1048 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [17:37, 02:09](904 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [36:23, 07:48](962 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [36:15, 09:25](1925 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [36:15, 09:05](1924 MB)
-
-PASS -- COMPILE 'csawmg_intel' [43:25, 23:22]
-PASS -- TEST 'control_csawmg_intel' [21:01, 06:04](682 MB)
-PASS -- TEST 'control_csawmgt_intel' [19:03, 05:59](687 MB)
-PASS -- TEST 'control_ras_intel' [20:32, 03:23](659 MB)
-
-PASS -- COMPILE 'wam_intel' [28:16, 21:30]
-PASS -- TEST 'control_wam_intel' [17:30, 02:07](492 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [25:19, 23:07]
-PASS -- TEST 'control_p8_faster_intel' [18:53, 02:41](1555 MB)
-PASS -- TEST 'regional_control_faster_intel' [20:00, 04:54](750 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 05:12]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:37, 02:41](756 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:37, 02:39](753 MB)
-PASS -- TEST 'control_stochy_debug_intel' [17:33, 02:55](754 MB)
-PASS -- TEST 'control_lndp_debug_intel' [17:29, 02:38](755 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [19:48, 04:00](807 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [20:54, 03:59](802 MB)
-PASS -- TEST 'control_ras_debug_intel' [19:28, 02:40](768 MB)
-PASS -- TEST 'control_diag_debug_intel' [19:48, 02:48](804 MB)
-PASS -- TEST 'control_debug_p8_intel' [20:02, 02:51](1571 MB)
-PASS -- TEST 'regional_debug_intel' [31:59, 16:56](767 MB)
-PASS -- TEST 'rap_control_debug_intel' [21:34, 04:49](1139 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [20:29, 04:44](1137 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [21:30, 04:47](1135 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [21:35, 04:50](1131 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:33, 04:51](1139 MB)
-PASS -- TEST 'rap_diag_debug_intel' [22:45, 05:09](1224 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [20:39, 05:01](1134 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:53](1139 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [18:31, 05:09](1147 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [19:33, 04:50](1141 MB)
-PASS -- TEST 'rap_noah_debug_intel' [18:33, 04:43](1134 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [19:35, 04:50](1142 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:34, 07:49](1132 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [18:35, 04:49](1125 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [21:39, 05:50](1140 MB)
-PASS -- TEST 'rap_flake_debug_intel' [19:34, 04:52](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:49, 08:12](1142 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:07, 03:05]
-PASS -- TEST 'control_wam_debug_intel' [19:31, 04:48](429 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:15, 21:31]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:23, 04:00](1057 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:35, 06:23](897 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:11, 03:23](865 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:13, 06:06](937 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:28, 03:06](895 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [23:21, 03:33](841 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [52:56, 04:50](885 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:49, 01:53](830 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [32:19, 30:16]
-PASS -- TEST 'conus13km_control_intel' [23:19, 02:11](1091 MB)
-PASS -- TEST 'conus13km_2threads_intel' [45:18, 01:06](1043 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [46:12, 01:10](1010 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [27:16, 22:32]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:03, 04:22](902 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:13, 03:28]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [24:36, 04:44](1024 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:37, 04:41](1015 MB)
-PASS -- TEST 'conus13km_debug_intel' [33:12, 14:06](1127 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [34:03, 14:21](852 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [30:01, 08:01](1077 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [48:10, 13:43](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 03:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:34, 04:47](1047 MB)
-
-PASS -- COMPILE 'hafsw_intel' [27:17, 25:39]
-PASS -- TEST 'hafs_regional_atm_intel' [33:39, 05:48](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:48, 05:52](1071 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [41:10, 07:42](765 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [48:49, 13:17](788 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:00, 15:15](818 MB)
-PASS -- TEST 'gnv1_nested_intel' [52:00, 04:27](763 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [27:16, 23:05]
-PASS -- TEST 'hafs_regional_docn_intel' [57:52, 06:39](759 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:53, 06:46](757 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [18:14, 06:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:40](1032 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [14:27, 01:41](1006 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:21, 02:40](907 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [09:20, 02:37](916 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:21, 02:40](907 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [12:22, 02:44](1041 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [17:24, 02:40](1038 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [15:23, 02:34](912 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:39, 06:38](881 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [54:37, 07:14](828 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [44:36, 02:39](1036 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:01](2341 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [43:38, 04:04](2399 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [17:13, 03:01]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [47:41, 06:08](982 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [30:18, 06:44]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [45:39, 02:43](1038 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [22:16, 01:21]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [45:07, 01:05](226 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [44:54, 01:04](247 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [08:36, 00:37](249 MB)
-
-PASS -- COMPILE 'atml_intel' [44:23, 24:56]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [52:28, 08:20](1577 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [53:22, 09:16](1580 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:08, 04:07](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [54:30, 22:52]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [45:02, 01:46](1577 MB)
-
-PASS -- COMPILE 'atmwm_intel' [01:31, 22:39]
-PASS -- TEST 'control_atmwav_intel' [44:42, 01:39](599 MB)
-
-PASS -- COMPILE 'atmaero_intel' [52:25, 22:19]
-PASS -- TEST 'atmaero_control_p8_intel' [48:01, 04:17](1649 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [46:59, 04:57](1703 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:38, 05:10](1711 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:17, 37:43]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:41, 06:56](1791 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 49:10]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 20:47](1648 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:16](1878 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:27](998 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:28, 23:50](1623 MB)
+
+PASS -- COMPILE 's2swa_intel' [38:16, 36:56]
+PASS -- TEST 'cpld_control_p8_intel' [13:24, 07:39](1831 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:42, 07:50](1813 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:26](1705 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:23, 07:30](1867 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:45, 04:39](1729 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 07:01](2263 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:24, 07:43](1813 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:45, 06:37](1789 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:55](1820 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:19](1798 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:16, 35:54]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 06:00](1657 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:25, 05:48](1706 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:03]
+PASS -- TEST 'cpld_debug_p8_intel' [13:43, 10:47](1854 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:45]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:23](1677 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:15, 32:01]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:48](1707 MB)
+
+PASS -- COMPILE 's2s_intel' [33:17, 32:02]
+PASS -- TEST 'cpld_control_c48_intel' [15:01, 12:40](2795 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:41, 33:07]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:08](1831 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [51:24, 47:24]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:18, 21:04](1679 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:31, 10:36](1034 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:14, 24:19](1659 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:49]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:28, 32:17](1692 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:35]
+PASS -- TEST 'control_flake_intel' [06:28, 04:24](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:28, 04:05](601 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:49](601 MB)
+PASS -- TEST 'control_latlon_intel' [05:25, 03:19](595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:25](595 MB)
+PASS -- TEST 'control_c48_intel' [11:36, 10:07](840 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:10](843 MB)
+PASS -- TEST 'control_c192_intel' [14:47, 12:27](730 MB)
+PASS -- TEST 'control_c384_intel' [19:37, 16:26](892 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:10, 14:07](1015 MB)
+PASS -- TEST 'control_stochy_intel' [04:25, 02:15](599 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:18](432 MB)
+PASS -- TEST 'control_lndp_intel' [04:25, 02:15](608 MB)
+PASS -- TEST 'control_iovr4_intel' [05:29, 03:21](597 MB)
+PASS -- TEST 'control_iovr5_intel' [05:28, 03:23](601 MB)
+PASS -- TEST 'control_p8_intel' [07:17, 04:11](1575 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 04:12](1574 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1575 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:17, 02:10](813 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:26, 04:11](1565 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:08, 02:07](843 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:22, 04:07](1564 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:58](1663 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:03, 07:15](1575 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:46, 05:19](1638 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:44, 04:03](1580 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:01, 04:45](1581 MB)
+PASS -- TEST 'regional_control_intel' [09:53, 07:10](763 MB)
+PASS -- TEST 'regional_restart_intel' [05:37, 03:50](935 MB)
+PASS -- TEST 'regional_decomp_intel' [09:53, 07:43](760 MB)
+PASS -- TEST 'regional_2threads_intel' [06:53, 04:36](758 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 07:06](770 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:34, 07:07](760 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:16, 32:41]
+PASS -- TEST 'rap_control_intel' [12:59, 10:07](993 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 05:43](1213 MB)
+PASS -- TEST 'rap_decomp_intel' [12:56, 10:36](987 MB)
+PASS -- TEST 'rap_2threads_intel' [12:32, 09:44](1085 MB)
+PASS -- TEST 'rap_restart_intel' [08:26, 05:18](995 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:31, 10:05](989 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:14, 10:47](981 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 07:37](999 MB)
+PASS -- TEST 'hrrr_control_intel' [07:55, 05:14](986 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:22](984 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 04:47](1054 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:55](914 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:19, 10:01](988 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:22](1946 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:26, 11:59](1937 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:16, 31:08]
+PASS -- TEST 'control_csawmg_intel' [09:47, 07:55](691 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:48, 07:49](696 MB)
+PASS -- TEST 'control_ras_intel' [06:23, 04:22](670 MB)
+
+PASS -- COMPILE 'wam_intel' [31:17, 29:58]
+PASS -- TEST 'control_wam_intel' [04:18, 02:42](495 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:16, 31:48]
+PASS -- TEST 'control_p8_faster_intel' [06:30, 03:45](1582 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:39, 06:37](762 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:44]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:21](767 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:22](767 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:45](780 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:23](770 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:17](811 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:41, 05:10](814 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:20, 03:28](776 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:32, 03:29](826 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:43, 03:37](1606 MB)
+PASS -- TEST 'regional_debug_intel' [23:50, 21:41](783 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:25, 06:00](1156 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:53](1149 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:59](1150 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 06:01](1154 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 06:00](1154 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:23](1242 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:08](1155 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:07](1156 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:04](1154 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 06:04](1159 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:04](1155 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 06:01](1155 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:22, 09:50](1153 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:58](1152 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:24](1159 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:22, 06:03](1155 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:32, 10:23](1168 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:45]
+PASS -- TEST 'control_wam_debug_intel' [08:21, 06:11](443 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:17, 30:06]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 05:08](1075 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:54, 08:17](901 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:25](864 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 07:53](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:01](910 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:05, 04:39](853 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:26, 06:17](907 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 02:22](847 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:20, 42:33]
+PASS -- TEST 'conus13km_control_intel' [04:59, 02:57](1106 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:25](1055 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1026 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:16, 30:23]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 05:33](903 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:10]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:55](1030 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:20, 05:49](1034 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:04, 18:25](1148 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:32](854 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:38](1090 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:59, 18:20](1208 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 06:05](1071 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:17, 34:53]
+PASS -- TEST 'hafs_regional_atm_intel' [10:19, 07:10](714 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:35](1083 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:33](767 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](804 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:38, 18:24](824 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:04, 05:47](774 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:15, 31:36]
+PASS -- TEST 'hafs_regional_docn_intel' [11:23, 08:45](768 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:24, 08:44](757 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:08, 08:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:36](1058 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 02:15](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 03:31](920 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:37](927 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:31](922 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1076 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:37](1061 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:34](930 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:50](885 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:44](840 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:35](1068 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:57](2402 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:03](2400 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:13]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:16, 08:03](993 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:59]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 03:36](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 01:38](227 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 01:28](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:49](248 MB)
+
+PASS -- COMPILE 'atml_intel' [40:18, 38:37]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:38, 09:06](1598 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:39, 08:46](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 04:16](874 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:18, 31:29]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:20](1591 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:19, 31:31]
+PASS -- TEST 'control_atmwav_intel' [05:13, 02:18](610 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 30:57]
+PASS -- TEST 'atmaero_control_p8_intel' [08:23, 05:16](1699 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:23](1720 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:40](1730 MB)
SYNOPSIS:
-Starting Date/Time: 20240303 20:22:32
-Ending Date/Time: 20240304 01:40:10
-Total Time: 05h:18m:04s
+Starting Date/Time: 20240308 14:58:48
+Ending Date/Time: 20240308 18:29:17
+Total Time: 03h:31m:04s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 964e86ffe5..f82c2e41f7 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,18 +1,41 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+6865423137e59e6b2343fada23bfe5582e2fedfa
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,284 +48,284 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_174810
+COMPARISON DIRECTORY: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_11060
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:07, 14:33]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:10, 05:08](3184 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 18:36]
-PASS -- TEST 'cpld_control_gfsv17_intel' [00:15, 16:18](1744 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:58, 17:20](2021 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1117 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:17, 18:24](1645 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [49:43, 23:07](1697 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:07, 14:36]
-PASS -- TEST 'cpld_control_p8_intel' [01:59, 05:44](3208 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [43:15, 05:41](3210 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [52:00, 03:22](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [01:59, 05:44](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [52:01, 03:33](3203 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [03:04, 06:07](3552 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [01:59, 05:39](3204 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [55:55, 04:43](3070 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [02:09, 05:38](3207 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [07:09, 09:52](3342 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [51:23, 06:13](3627 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [11:45, 11:04](4166 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:44, 07:18](4296 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [02:01, 05:24](3170 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:07, 15:09]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [00:39, 04:24](1737 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [00:59, 04:19](1780 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:09]
-PASS -- TEST 'cpld_debug_p8_intel' [59:26, 08:25](3242 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:01]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [57:08, 05:53](1748 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:07, 12:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:19, 04:21](1778 MB)
-
-PASS -- COMPILE 's2s_intel' [16:12, 13:25]
+PASS -- COMPILE 's2swa_32bit_intel' [17:08, 15:39]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 05:21](3182 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:30]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 16:26](1747 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:08, 17:16](2025 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:07](1063 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 18:37](1649 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:07, 06:23]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:52, 22:49](1690 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:08, 15:35]
+PASS -- TEST 'cpld_control_p8_intel' [08:40, 05:44](3208 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 05:45](3206 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:33](3254 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 05:46](3237 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:03, 03:21](3273 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:57, 06:11](3558 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:40, 05:45](3204 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 04:46](3068 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 05:49](3213 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 09:54](3345 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:32, 06:12](3623 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 11:41](4114 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:50, 06:54](4353 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:52, 05:20](3175 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:08, 14:31]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 04:30](1736 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 04:25](1778 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:22]
+PASS -- TEST 'cpld_debug_p8_intel' [12:35, 08:36](3240 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:07, 05:27]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 06:10](1752 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:08, 13:40]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:35, 04:21](1778 MB)
+
+PASS -- COMPILE 's2s_intel' [15:08, 13:30]
FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
-PASS -- COMPILE 's2swa_faster_intel' [22:12, 19:31]
-PASS -- TEST 'cpld_control_p8_faster_intel' [28:42, 05:29](3212 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:07, 19:16]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:44, 16:32](1768 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:25, 08:23](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:11, 18:32](1674 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 04:55]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:12, 24:28](1719 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [19:06, 13:24]
-PASS -- TEST 'control_flake_intel' [42:52, 03:41](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [39:49, 02:27](648 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:53, 02:38](654 MB)
-PASS -- TEST 'control_latlon_intel' [41:47, 02:40](599 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:55, 02:31](650 MB)
-PASS -- TEST 'control_c48_intel' [47:32, 06:01](875 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [47:28, 06:01](862 MB)
-PASS -- TEST 'control_c192_intel' [12:10, 09:04](857 MB)
-PASS -- TEST 'control_c384_intel' [11:55, 10:13](1240 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:13, 08:55](1355 MB)
-PASS -- TEST 'control_stochy_intel' [54:40, 01:44](655 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:18, 01:09](479 MB)
-PASS -- TEST 'control_lndp_intel' [53:35, 01:38](654 MB)
-PASS -- TEST 'control_iovr4_intel' [54:41, 02:31](652 MB)
-PASS -- TEST 'control_iovr5_intel' [50:41, 02:33](653 MB)
-PASS -- TEST 'control_p8_intel' [51:27, 03:03](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [51:31, 03:08](1586 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [51:53, 02:55](1634 MB)
-PASS -- TEST 'control_restart_p8_intel' [11:07, 01:48](894 MB)
-PASS -- TEST 'control_noqr_p8_intel' [51:24, 02:56](1617 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:04, 01:39](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [51:21, 03:01](1612 MB)
-PASS -- TEST 'control_2threads_p8_intel' [50:18, 03:05](1723 MB)
-PASS -- TEST 'control_p8_lndp_intel' [51:59, 05:15](1630 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [12:28, 04:03](1686 MB)
-PASS -- TEST 'control_p8_mynn_intel' [20:24, 03:03](1635 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:22, 03:35](1635 MB)
-PASS -- TEST 'regional_control_intel' [07:32, 05:06](858 MB)
-PASS -- TEST 'regional_restart_intel' [04:32, 02:49](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:27, 05:30](852 MB)
-PASS -- TEST 'regional_2threads_intel' [05:28, 03:42](845 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:30, 05:03](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 05:03](861 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:31, 05:09](858 MB)
-PASS -- TEST 'regional_wofs_intel' [08:29, 06:38](1925 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:06, 12:25]
-PASS -- TEST 'rap_control_intel' [10:18, 07:44](1072 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:45](1298 MB)
-PASS -- TEST 'rap_decomp_intel' [10:53, 08:10](1023 MB)
-PASS -- TEST 'rap_2threads_intel' [10:18, 07:55](1171 MB)
-PASS -- TEST 'rap_restart_intel' [06:08, 04:03](1064 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:21, 07:43](1092 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:12, 08:08](1028 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:26, 05:52](1129 MB)
-PASS -- TEST 'hrrr_control_intel' [06:00, 04:00](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:14, 04:10](1019 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:24](1120 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:14](968 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:16, 07:42](1096 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 09:15](1991 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:52](2077 MB)
-
-PASS -- COMPILE 'csawmg_intel' [18:06, 11:47]
-PASS -- TEST 'control_csawmg_intel' [07:40, 05:50](745 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:43, 05:45](749 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:21](742 MB)
-
-PASS -- COMPILE 'wam_intel' [16:06, 10:19]
-PASS -- TEST 'control_wam_intel' [04:18, 02:08](659 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:06, 11:52]
-PASS -- TEST 'control_p8_faster_intel' [05:28, 02:39](1632 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:46, 04:37](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:06, 04:36]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:46](815 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:43](811 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:02](814 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:49](814 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:11](869 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 04:16](862 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:18, 02:46](829 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:23, 02:56](872 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1633 MB)
-PASS -- TEST 'regional_debug_intel' [18:40, 16:46](844 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:21, 04:50](1200 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:55](1195 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 04:47](1212 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 04:50](1196 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 04:48](1206 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:12](1287 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 05:39](1158 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:22, 04:54](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1210 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:57](1197 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:45](1208 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:40](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:03](1204 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 05:04](1198 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 06:00](1206 MB)
-PASS -- TEST 'rap_flake_debug_intel' [42:23, 05:07](1206 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [31:27, 08:29](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:06, 03:09]
-PASS -- TEST 'control_wam_debug_intel' [43:41, 04:56](511 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:12, 11:14]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:04, 04:30](1168 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:22, 06:26](1049 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:02, 03:28](995 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:54, 06:44](1086 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:21, 03:04](967 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [24:00, 03:41](933 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:48, 04:55](1031 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:23, 01:56](932 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:06, 13:02]
-PASS -- TEST 'conus13km_control_intel' [21:59, 02:08](1201 MB)
-PASS -- TEST 'conus13km_2threads_intel' [16:01, 01:06](1127 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [07:53, 01:22](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:20]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 04:27](938 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:05, 03:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:32, 05:07](1024 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [22:25, 04:55](1078 MB)
-PASS -- TEST 'conus13km_debug_intel' [31:55, 14:19](1229 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 14:08](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:55, 08:26](1152 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:58, 14:15](1294 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:05, 03:48]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:02](1119 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:06, 12:23]
-PASS -- TEST 'hafs_regional_atm_intel' [23:18, 05:34](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 06:01](1123 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:32, 07:01](782 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [40:22, 12:51](868 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:29, 14:34](883 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:35, 06:10](504 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:29, 07:26](518 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [23:59, 03:13](370 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:36, 08:04](484 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [30:18, 04:15](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:14, 04:01](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:57, 05:22](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:44, 01:41](406 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:50, 04:31](805 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:06, 03:58]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:12, 12:59](568 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:06, 13:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:13, 09:33](669 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:18, 09:33](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:07, 13:25]
+PASS -- COMPILE 's2swa_faster_intel' [22:09, 20:05]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:44, 05:41](3209 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:08]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:20, 16:34](1774 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 08:01](1175 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:24, 18:28](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:45]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:08, 24:45](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:28]
+PASS -- TEST 'control_flake_intel' [06:24, 03:52](697 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:39](655 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:44](659 MB)
+PASS -- TEST 'control_latlon_intel' [05:25, 02:47](652 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:57](649 MB)
+PASS -- TEST 'control_c48_intel' [08:28, 06:09](876 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 06:03](872 MB)
+PASS -- TEST 'control_c192_intel' [11:37, 09:30](858 MB)
+PASS -- TEST 'control_c384_intel' [14:46, 10:31](1246 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:12, 09:50](1358 MB)
+PASS -- TEST 'control_stochy_intel' [04:24, 01:58](658 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:23, 01:00](503 MB)
+PASS -- TEST 'control_lndp_intel' [04:24, 01:50](656 MB)
+PASS -- TEST 'control_iovr4_intel' [05:29, 02:50](646 MB)
+PASS -- TEST 'control_iovr5_intel' [05:29, 02:32](648 MB)
+PASS -- TEST 'control_p8_intel' [06:24, 02:57](1632 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:08](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:46, 02:53](1634 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:29, 01:36](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:18, 02:53](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:29, 01:38](934 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:04](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:21, 03:01](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:49, 05:16](1636 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 03:58](1698 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:01](1640 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:48, 03:27](1633 MB)
+PASS -- TEST 'regional_control_intel' [07:41, 05:12](858 MB)
+PASS -- TEST 'regional_restart_intel' [05:47, 02:43](1024 MB)
+PASS -- TEST 'regional_decomp_intel' [07:40, 05:35](850 MB)
+PASS -- TEST 'regional_2threads_intel' [06:30, 03:41](848 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:41, 05:10](1370 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:09](855 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:07](857 MB)
+PASS -- TEST 'regional_wofs_intel' [09:39, 06:40](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 12:03]
+PASS -- TEST 'rap_control_intel' [11:34, 07:42](1101 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:40](1299 MB)
+PASS -- TEST 'rap_decomp_intel' [11:09, 08:08](1035 MB)
+PASS -- TEST 'rap_2threads_intel' [11:07, 07:54](1181 MB)
+PASS -- TEST 'rap_restart_intel' [07:27, 04:02](1095 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:35, 07:43](1103 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 08:08](1029 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 05:48](1128 MB)
+PASS -- TEST 'hrrr_control_intel' [07:05, 03:59](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:53, 04:04](1020 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 03:22](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](988 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:26, 07:35](1099 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:10](1997 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 08:55](2073 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:06, 12:12]
+PASS -- TEST 'control_csawmg_intel' [08:52, 05:55](750 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:45, 05:51](747 MB)
+PASS -- TEST 'control_ras_intel' [05:20, 03:17](739 MB)
+
+PASS -- COMPILE 'wam_intel' [13:06, 11:47]
+PASS -- TEST 'control_wam_intel' [04:20, 02:02](658 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:47]
+PASS -- TEST 'control_p8_faster_intel' [06:38, 02:37](1630 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:45, 04:35](854 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 02:45](812 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 02:49](811 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:06](818 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:48](815 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:06](863 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:10](862 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:19, 02:45](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:27, 02:50](872 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:46, 02:54](1642 MB)
+PASS -- TEST 'regional_debug_intel' [19:43, 17:09](841 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1205 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:45](1208 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:48](1199 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 04:52](1201 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:55](1203 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1279 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 04:57](1191 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:00](1198 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:56](1197 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1207 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:49](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 04:51](1205 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:57](1194 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:59](1195 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:45](1197 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:51](1197 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:25](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:05, 03:52]
+PASS -- TEST 'control_wam_debug_intel' [07:19, 05:03](514 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:07, 11:32]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:25](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:32](1006 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 03:22](985 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 06:41](1096 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:48, 03:17](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:08, 03:35](921 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 04:48](1028 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](923 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 14:15]
+PASS -- TEST 'conus13km_control_intel' [04:58, 02:05](1202 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:05](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:15](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 10:51]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 04:11](993 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:58](1087 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:48](1075 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:01, 14:22](1228 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:28](925 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:26](1154 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:21](1298 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:30]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:01](1132 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:07, 13:39]
+PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:36](747 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:04](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:28, 07:48](832 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 12:50](974 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:26, 14:33](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 06:07](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 07:23](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:16](370 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:45, 08:14](477 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:07](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:02](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 05:21](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:30](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [15:02, 04:31](805 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:52, 13:46](615 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:43]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:30](675 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 09:33](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12]
FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
-PASS -- COMPILE 'hafs_all_intel' [15:06, 11:37]
-PASS -- TEST 'hafs_regional_docn_intel' [19:37, 06:26](826 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:30, 06:27](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [52:02, 16:12](1216 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:06, 08:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [38:19, 02:37](1138 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:22, 01:37](1086 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [53:20, 02:37](1018 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [55:19, 02:44](1019 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [17:21, 02:38](1013 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [17:25, 02:43](1124 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [16:21, 02:38](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:27, 02:33](1016 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [32:25, 06:02](1060 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:22, 06:17](1013 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 02:38](1135 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [14:14, 03:39](2491 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [38:27, 03:41](2418 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 04:06]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [39:34, 06:17](1050 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:07, 08:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [39:28, 02:44](1112 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:06, 01:06]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:05](264 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [57:31, 00:49](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:32](323 MB)
-
-PASS -- COMPILE 'atml_intel' [14:08, 12:02]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:38, 04:19](1604 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [42:32, 04:24](1603 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:19](894 MB)
-
-PASS -- COMPILE 'atmw_intel' [19:06, 13:18]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [21:19, 01:49](1667 MB)
-
-PASS -- COMPILE 'atmwm_intel' [17:06, 13:20]
-PASS -- TEST 'control_atmwav_intel' [15:09, 01:46](673 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:07, 11:56]
-PASS -- TEST 'atmaero_control_p8_intel' [16:17, 04:02](3027 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [17:15, 04:51](3098 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:08, 05:07](3113 MB)
-
-PASS -- COMPILE 'atmaq_intel' [18:07, 11:49]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:07, 03:31]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:41, 21:12](4583 MB)
+PASS -- COMPILE 'hafs_all_intel' [15:07, 13:00]
+PASS -- TEST 'hafs_regional_docn_intel' [09:11, 06:15](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 06:18](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:07](1208 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 06:34]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:38](1151 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:18, 01:40](1089 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:30](1021 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:44](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:41](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:43](1137 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:46](1135 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:38](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:15, 05:56](1051 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:09, 05:56](1031 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 02:42](1132 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:17, 03:30](2447 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [15:17, 03:38](2437 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:55]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:17, 06:16](1067 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 07:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:15, 02:43](1129 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:47](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:24, 00:48](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](320 MB)
+
+PASS -- COMPILE 'atml_intel' [14:07, 12:15]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:43, 04:13](1613 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [14:35, 04:16](1604 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:24](896 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:07, 11:45]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:24, 01:41](1663 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:07, 12:04]
+PASS -- TEST 'control_atmwav_intel' [12:07, 01:39](671 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:06, 12:07]
+PASS -- TEST 'atmaero_control_p8_intel' [13:31, 03:52](3029 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [14:29, 04:47](3087 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:11, 05:00](3110 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:06, 10:48]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:13]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:56, 21:02](4579 MB)
SYNOPSIS:
-Starting Date/Time: 20240303 11:32:14
-Ending Date/Time: 20240303 21:01:05
-Total Time: 09h:29m:43s
+Starting Date/Time: 20240308 10:08:28
+Ending Date/Time: 20240308 11:48:33
+Total Time: 01h:40m:51s
Compiles Completed: 39/39
Tests Completed: 180/182
Failed Tests:
* TEST cpld_control_c48_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2166/tests/logs/log_orion/rt_cpld_control_c48_intel.log
+-- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_cpld_control_c48_intel.log
* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2166/tests/logs/log_orion/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
+-- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -315,18 +338,41 @@ Result: FAILURE
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2c7ba1c49ba1c7afd62dd046d760b52ebf738664
+8eee1bc778ec0b6d8a357341c859edb8799367da
Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (heads/develop)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -339,23 +385,22 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_340961
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221010
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-c) - CREATE NEW BASELINES
* (-l) - USE CONFIG FILE: rt.conf
-PASS -- COMPILE 'hafs_mom6w_intel' [19:06, 13:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:42, 07:21](812 MB)
+PASS -- COMPILE 's2s_intel' [14:06, 12:08]
+PASS -- TEST 'cpld_control_c48_intel' [10:46, 08:07](2823 MB)
-PASS -- COMPILE 's2s_intel' [14:06, 12:26]
-PASS -- TEST 'cpld_control_c48_intel' [10:35, 08:12](2829 MB)
+PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:53, 07:13](731 MB)
SYNOPSIS:
-Starting Date/Time: 20240304 08:49:31
-Ending Date/Time: 20240304 11:13:01
-Total Time: 02h:23m:43s
+Starting Date/Time: 20240308 14:10:08
+Ending Date/Time: 20240308 15:01:01
+Total Time: 00h:51m:04s
Compiles Completed: 2/2
Tests Completed: 2/2
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index ce63e4104c..6724076365 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,18 +1,41 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-9773ef5e7aaf8c57a26abe2647efe981582ca031
+84a930a976683e48188f3c0bede701116a9971f6
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 4941026c5881ed623b39934905d2e4ecd9907b8a FV3 (remotes/origin/HEAD)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 2ab885eddfc47fc0c8c0bae46bc61531104428d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10029-g2ab885edd)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
@@ -25,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_190987
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178951
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [31:22, 30:23]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:30, 01:28](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:47, 14:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [37:06, 01:22](1597 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:49, 02:01](1704 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:49, 01:12](846 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:07, 02:02](1565 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:37, 10:22]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [42:17, 01:29](1613 MB)
-
-PASS -- COMPILE 's2swa_intel' [29:19, 24:00]
-PASS -- TEST 'cpld_control_p8_intel' [37:47, 01:30](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:25, 01:34](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [28:23, 01:39](3062 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [37:00, 01:43](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [27:31, 01:03](3080 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [36:52, 01:25](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [36:03, 01:19](2995 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [35:36, 01:13](2928 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:06, 01:24](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [35:09, 04:01](3956 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:56, 04:08](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [34:57, 01:42](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [24:02, 22:28]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [29:50, 00:43](1583 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:50, 01:56](1634 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [21:59, 20:53]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:54, 01:11](1631 MB)
-
-PASS -- COMPILE 's2s_intel' [11:37, 09:47]
-PASS -- TEST 'cpld_control_c48_intel' [42:15, 00:46](2645 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [40:42, 39:16]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:10, 01:37](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [11:36, 10:46]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:17, 01:14](1608 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:31, 00:44](899 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 00:55](1567 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:37, 10:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:17, 00:59](1611 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [29:22, 28:37]
-PASS -- TEST 'control_flake_intel' [12:55, 00:26](575 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [12:55, 01:03](520 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:55, 00:52](531 MB)
-PASS -- TEST 'control_latlon_intel' [12:55, 00:45](525 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:55, 00:58](525 MB)
-PASS -- TEST 'control_c48_intel' [12:54, 01:14](717 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:54, 01:08](714 MB)
-PASS -- TEST 'control_c192_intel' [12:55, 00:23](642 MB)
-PASS -- TEST 'control_c384_intel' [12:59, 01:34](952 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:59, 02:22](1090 MB)
-PASS -- TEST 'control_stochy_intel' [12:55, 00:36](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [09:21, 00:34](328 MB)
-PASS -- TEST 'control_lndp_intel' [12:55, 00:30](529 MB)
-PASS -- TEST 'control_iovr4_intel' [12:55, 00:47](524 MB)
-PASS -- TEST 'control_iovr5_intel' [12:55, 00:56](525 MB)
-PASS -- TEST 'control_p8_intel' [12:55, 01:30](1505 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:55, 01:54](1503 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:55, 01:56](1513 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:34, 01:23](693 MB)
-PASS -- TEST 'control_noqr_p8_intel' [12:55, 01:29](1502 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:31](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [12:55, 01:34](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [12:55, 01:18](1588 MB)
-PASS -- TEST 'control_p8_lndp_intel' [12:55, 01:11](1511 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [12:55, 01:06](1561 MB)
-PASS -- TEST 'control_p8_mynn_intel' [12:55, 01:53](1509 MB)
-PASS -- TEST 'merra2_thompson_intel' [12:21, 01:29](1511 MB)
-PASS -- TEST 'regional_control_intel' [09:20, 00:10](609 MB)
-PASS -- TEST 'regional_restart_intel' [00:21, 01:11](782 MB)
-PASS -- TEST 'regional_decomp_intel' [09:08, 01:02](607 MB)
-PASS -- TEST 'regional_2threads_intel' [09:08, 00:47](664 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:17, 00:45](1141 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:15, 00:47](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:15, 00:41](609 MB)
-PASS -- TEST 'regional_wofs_intel' [08:15, 00:18](1577 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:33, 33:35]
-PASS -- TEST 'rap_control_intel' [07:18, 01:38](915 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:17, 01:24](1087 MB)
-PASS -- TEST 'rap_decomp_intel' [06:38, 00:49](920 MB)
-PASS -- TEST 'rap_2threads_intel' [06:36, 01:46](1009 MB)
-PASS -- TEST 'rap_restart_intel' [54:30, 01:33](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [06:15, 02:16](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:13, 01:39](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [53:17, 01:26](784 MB)
-PASS -- TEST 'hrrr_control_intel' [06:12, 01:30](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 01:21](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 01:32](998 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [57:04, 01:09](739 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [05:03, 01:25](911 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [05:03, 01:09](1874 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:47, 00:47](1860 MB)
-
-PASS -- COMPILE 'csawmg_intel' [23:07, 22:28]
-PASS -- TEST 'control_csawmg_intel' [19:08, 01:14](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [19:08, 01:20](595 MB)
-PASS -- TEST 'control_ras_intel' [19:08, 01:10](559 MB)
-
-PASS -- COMPILE 'wam_intel' [35:36, 34:40]
-PASS -- TEST 'control_wam_intel' [03:45, 00:14](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [28:20, 27:24]
-PASS -- TEST 'control_p8_faster_intel' [08:13, 01:15](1502 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:06, 00:53](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [39:47, 37:15]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [52:06, 00:47](688 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:06, 00:53](687 MB)
-PASS -- TEST 'control_stochy_debug_intel' [52:06, 00:25](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [52:06, 00:41](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [52:06, 00:42](730 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [52:06, 00:45](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [52:06, 00:46](703 MB)
-PASS -- TEST 'control_diag_debug_intel' [52:06, 00:35](747 MB)
-PASS -- TEST 'control_debug_p8_intel' [52:06, 01:01](1516 MB)
-PASS -- TEST 'regional_debug_intel' [52:05, 00:14](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [52:06, 00:56](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [52:06, 01:16](1070 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [52:06, 00:57](1077 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [52:06, 01:06](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [52:06, 00:47](1076 MB)
-PASS -- TEST 'rap_diag_debug_intel' [52:06, 00:52](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:06, 00:19](1075 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:06, 00:49](1080 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [52:06, 00:37](1076 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:56, 00:59](1077 MB)
-PASS -- TEST 'rap_noah_debug_intel' [51:55, 01:03](1068 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [49:40, 00:35](1074 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [49:40, 00:29](1068 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [49:17, 00:49](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [48:59, 01:16](1078 MB)
-PASS -- TEST 'rap_flake_debug_intel' [48:04, 00:23](1073 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:39, 01:47](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [31:30, 29:06]
-PASS -- TEST 'control_wam_debug_intel' [58:20, 00:40](300 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:03, 19:15]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:27, 00:30](953 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:26, 01:43](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:26, 02:21](783 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:15, 01:48](848 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [59:37, 02:23](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [59:11, 01:45](791 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:58, 01:35](684 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [53:35, 00:40](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:04, 19:54]
-PASS -- TEST 'conus13km_control_intel' [56:03, 00:48](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [45:29, 01:00](1007 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [45:27, 00:53](883 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:51, 40:09]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:18, 00:35](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:11, 24:00]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:27, 00:20](956 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:25, 00:27](953 MB)
-PASS -- TEST 'conus13km_debug_intel' [45:22, 00:57](1036 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [45:16, 00:44](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [43:34, 00:39](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:06, 00:47](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:51, 13:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [42:14, 00:30](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:55, 13:35]
-PASS -- TEST 'hafs_regional_atm_intel' [42:17, 01:48](616 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [42:16, 01:11](969 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:14, 01:30](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [42:14, 01:20](693 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:15, 02:11](702 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:14, 00:47](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [42:06, 01:51](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [42:05, 00:53](284 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:17, 02:45](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [41:10, 00:46](424 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:10, 01:08](412 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:06, 01:23](491 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [40:41, 00:54](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:43, 08:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [52:58, 01:26](498 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [47:00, 44:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:28, 01:25](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:28, 01:13](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:54, 11:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [40:40, 01:31](710 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:49, 11:41]
-PASS -- TEST 'hafs_regional_docn_intel' [39:59, 01:20](658 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:38, 01:55](645 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:17, 00:30](881 MB)
-
-PASS -- COMPILE 'atml_intel' [22:03, 19:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:53, 01:26](1548 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [30:53, 01:28](1545 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:09, 01:05](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:46, 10:10]
-PASS -- TEST 'atmaero_control_p8_intel' [38:13, 01:42](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [37:49, 01:05](2910 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:20, 01:17](2925 MB)
-
-PASS -- COMPILE 'atmaq_intel' [31:30, 27:35]
-
-PASS -- COMPILE 'atmaq_debug_intel' [09:35, 06:02]
-PASS -- TEST 'regional_atmaq_debug_intel' [33:56, 01:17](4436 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [19:01, 14:49]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:11, 01:59](2976 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:45, 11:13]
+PASS -- TEST 'cpld_control_gfsv17_intel' [27:28, 02:14](1592 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [08:07, 01:31](1717 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:07, 01:40](845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:29, 01:17](1576 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:12, 18:53]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [20:01, 01:26](1606 MB)
+
+PASS -- COMPILE 's2swa_intel' [31:24, 27:02]
+PASS -- TEST 'cpld_control_p8_intel' [11:49, 01:35](3015 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:49, 01:49](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [01:53, 01:43](3061 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:49, 01:19](3026 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [01:51, 01:37](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:49, 01:59](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 01:30](3002 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:50, 01:58](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:49, 01:56](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [11:58, 03:49](3951 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [51:39, 04:12](4251 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:49, 02:00](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:43, 10:35]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [28:30, 01:11](1586 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:30, 01:20](1635 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [23:07, 19:25]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:04, 01:23](1631 MB)
+
+PASS -- COMPILE 's2s_intel' [13:41, 09:43]
+PASS -- TEST 'cpld_control_c48_intel' [29:31, 01:04](2645 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [31:28, 27:03]
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:44, 02:12](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 21:31]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:01, 01:48](1605 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:52, 00:54](899 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:13, 01:01](1582 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:28, 04:14]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:45, 01:06](1616 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [32:34, 28:33]
+PASS -- TEST 'control_flake_intel' [01:56, 00:38](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [01:56, 00:49](523 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:37, 00:47](531 MB)
+PASS -- TEST 'control_latlon_intel' [01:30, 00:53](523 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:30, 01:05](523 MB)
+PASS -- TEST 'control_c48_intel' [01:27, 01:08](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [01:19, 01:22](715 MB)
+PASS -- TEST 'control_c192_intel' [01:07, 01:04](639 MB)
+PASS -- TEST 'control_c384_intel' [55:01, 01:45](955 MB)
+PASS -- TEST 'control_c384gdas_intel' [54:59, 02:10](1092 MB)
+PASS -- TEST 'control_stochy_intel' [54:54, 01:11](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [50:09, 00:30](333 MB)
+PASS -- TEST 'control_lndp_intel' [54:41, 00:17](528 MB)
+PASS -- TEST 'control_iovr4_intel' [54:41, 00:27](522 MB)
+PASS -- TEST 'control_iovr5_intel' [54:21, 01:20](522 MB)
+PASS -- TEST 'control_p8_intel' [54:21, 01:15](1500 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [54:03, 02:00](1499 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [53:46, 01:34](1500 MB)
+PASS -- TEST 'control_restart_p8_intel' [46:40, 01:10](687 MB)
+PASS -- TEST 'control_noqr_p8_intel' [53:41, 01:08](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [45:28, 01:29](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [53:35, 01:09](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [53:10, 00:51](1591 MB)
+PASS -- TEST 'control_p8_lndp_intel' [52:23, 00:59](1500 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [52:22, 01:58](1564 MB)
+PASS -- TEST 'control_p8_mynn_intel' [51:32, 00:59](1515 MB)
+PASS -- TEST 'merra2_thompson_intel' [51:19, 01:56](1514 MB)
+PASS -- TEST 'regional_control_intel' [51:12, 00:45](608 MB)
+PASS -- TEST 'regional_restart_intel' [41:07, 00:54](778 MB)
+PASS -- TEST 'regional_decomp_intel' [50:54, 01:08](608 MB)
+PASS -- TEST 'regional_2threads_intel' [50:33, 00:23](663 MB)
+PASS -- TEST 'regional_noquilt_intel' [50:32, 00:50](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [50:28, 00:52](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [50:14, 00:47](611 MB)
+PASS -- TEST 'regional_wofs_intel' [49:48, 00:46](1577 MB)
+
+PASS -- COMPILE 'rrfs_intel' [26:11, 22:04]
+PASS -- TEST 'rap_control_intel' [03:19, 01:26](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:20, 00:48](1091 MB)
+PASS -- TEST 'rap_decomp_intel' [03:19, 01:07](917 MB)
+PASS -- TEST 'rap_2threads_intel' [03:18, 01:26](1005 MB)
+PASS -- TEST 'rap_restart_intel' [49:11, 01:21](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [03:19, 01:43](917 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:27, 02:14](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [48:41, 01:54](787 MB)
+PASS -- TEST 'hrrr_control_intel' [02:21, 01:24](911 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [47:52, 01:39](916 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [47:14, 01:27](994 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [45:24, 00:41](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [45:20, 02:06](911 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [45:19, 00:57](1877 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:04, 01:13](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [17:50, 14:56]
+PASS -- TEST 'control_csawmg_intel' [10:40, 00:54](602 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:40, 01:02](593 MB)
+PASS -- TEST 'control_ras_intel' [10:40, 00:33](559 MB)
+
+PASS -- COMPILE 'wam_intel' [14:43, 13:04]
+PASS -- TEST 'control_wam_intel' [12:45, 00:13](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [20:06, 19:16]
+PASS -- TEST 'control_p8_faster_intel' [04:05, 02:01](1508 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:04, 00:33](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [18:02, 16:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:52, 00:21](689 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:31](692 MB)
+PASS -- TEST 'control_stochy_debug_intel' [44:05, 00:53](689 MB)
+PASS -- TEST 'control_lndp_debug_intel' [44:00, 01:15](691 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [44:00, 00:45](733 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [42:55, 00:22](729 MB)
+PASS -- TEST 'control_ras_debug_intel' [42:36, 00:47](705 MB)
+PASS -- TEST 'control_diag_debug_intel' [41:27, 00:48](747 MB)
+PASS -- TEST 'control_debug_p8_intel' [41:23, 00:43](1525 MB)
+PASS -- TEST 'regional_debug_intel' [41:03, 00:59](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [41:03, 00:34](1080 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [40:52, 00:39](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [40:32, 00:39](1072 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [40:26, 00:50](1077 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 01:02](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [39:56, 01:13](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:20, 00:31](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:00, 00:56](1074 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [38:45, 00:32](1077 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:16, 00:46](1075 MB)
+PASS -- TEST 'rap_noah_debug_intel' [38:15, 00:51](1070 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [38:08, 00:58](1070 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:03, 01:05](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [37:40, 01:11](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [37:34, 01:14](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [37:01, 01:20](1074 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:29, 01:50](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:43, 08:13]
+PASS -- TEST 'control_wam_debug_intel' [10:17, 00:34](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:07, 18:36]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:27, 00:52](952 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [36:03, 01:26](791 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:47, 01:57](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [35:33, 01:39](851 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:21, 01:14](840 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:08, 02:10](788 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:54, 01:50](685 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 00:56](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:14, 22:23]
+PASS -- TEST 'conus13km_control_intel' [35:06, 00:54](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [30:46, 00:38](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [30:37, 00:20](882 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:46, 14:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:57, 01:02](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:35, 05:59]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:08, 00:56](949 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:08, 00:57](952 MB)
+PASS -- TEST 'conus13km_debug_intel' [04:08, 00:45](1035 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [04:08, 00:27](712 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [04:09, 00:18](1039 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [04:08, 00:42](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:41, 08:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:17, 01:08](982 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:40, 10:40]
+PASS -- TEST 'hafs_regional_atm_intel' [33:10, 02:10](624 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 00:34](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:45, 02:08](667 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [32:36, 01:22](700 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:32, 02:03](706 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [32:13, 01:04](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:04, 02:16](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [31:59, 01:21](278 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:44, 02:40](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:16, 01:21](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:55, 00:53](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:40, 01:28](491 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:36, 01:17](312 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:26, 03:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:28, 00:48](501 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:59, 14:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:13, 01:37](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:00, 01:05](709 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:47, 12:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:52, 01:11](711 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:56, 09:53]
+PASS -- TEST 'hafs_regional_docn_intel' [29:18, 01:39](659 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:46, 01:37](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:32, 00:56](881 MB)
+
+PASS -- COMPILE 'atml_intel' [13:51, 10:01]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:01, 01:26](1546 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [28:00, 01:31](1545 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:00, 01:09](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [20:07, 17:38]
+PASS -- TEST 'atmaero_control_p8_intel' [27:56, 01:45](2854 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [27:54, 01:08](2913 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:06, 01:11](2920 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:58, 13:23]
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:42, 08:57]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:58, 00:52](4434 MB)
SYNOPSIS:
-Starting Date/Time: 20240304 14:05:49
-Ending Date/Time: 20240304 16:08:00
-Total Time: 02h:02m:43s
+Starting Date/Time: 20240307 21:16:31
+Ending Date/Time: 20240307 22:59:22
+Total Time: 01h:43m:27s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/rt.sh b/tests/rt.sh
index 0350e45ab8..fd6464c60f 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -168,6 +168,9 @@ $(git rev-parse HEAD)
Submodule hashes used in testing:
EOF
cd ..
+ if [[ $MACHINE_ID != hera ]]; then
+ git submodule status --recursive >> "${REGRESSIONTEST_LOG}"
+ fi
git submodule status >> "${REGRESSIONTEST_LOG}"
echo; echo >> "${REGRESSIONTEST_LOG}"
cd tests
@@ -738,8 +741,8 @@ elif [[ $MACHINE_ID = hercules ]]; then
ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh
ECF_PORT=$(( $(id -u) + 1500 ))
- QUEUE=windfall
- COMPILE_QUEUE=windfall
+ QUEUE=batch
+ COMPILE_QUEUE=batch
PARTITION=hercules
dprefix=/work2/noaa/stmp/${USER}
DISKNM=/work/noaa/epic/hercules/UFS-WM_RT
@@ -752,14 +755,25 @@ elif [[ $MACHINE_ID = hercules ]]; then
elif [[ $MACHINE_ID = jet ]]; then
+ echo "=======Running on $(lsb_release -is)======="
+ CurJetOS=$(lsb_release -is)
+ if [[ ${CurJetOS} == "CentOS" ]]; then
+ echo "=======Please, move to Rocky8 node fe[5-8]======="
+ exit 1
+ fi
+
module load rocoto
ROCOTORUN=$(which rocotorun)
ROCOTOSTAT=$(which rocotostat)
ROCOTOCOMPLETE=$(which rocotocomplete)
ROCOTO_SCHEDULER=slurm
- module load ecflow/5.5.3
- ECFLOW_START=/apps/ecflow/5.5.3/bin/ecflow_start.sh
+ module load ecflow/5.11.4
+ ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
+
+ module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core
+ module load stack-intel/2021.5.0
+ module load stack-python/3.10.8
QUEUE=batch
COMPILE_QUEUE=batch
From 126db7a5145319cb6a8b3d272215efcd5b88562f Mon Sep 17 00:00:00 2001
From: Denise Worthen
Date: Tue, 12 Mar 2024 15:20:34 -0400
Subject: [PATCH 09/33] Remove compiler warnings for CMEPS and CICE; Add
traditional threading templates for global apps and append _esmf for
templates using ESMF-managed threading (was #2179) (#2172)
* CICE and CMEPS - Remove compiler warnings.
* UFSWM - Allow flexibility to use traditional or ESMF-managed threading for global apps.
---
CICE-interface/CICE | 2 +-
CMEPS-interface/CMEPS | 2 +-
tests/default_vars.sh | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RT-run-Orion.log | 2467 +++++++++++++++++
tests/logs/RegressionTests_derecho.log | 528 ++--
tests/logs/RegressionTests_gaea.log | 542 ++--
tests/logs/RegressionTests_hera.log | 692 ++---
tests/logs/RegressionTests_hercules.log | 715 ++---
tests/logs/RegressionTests_jet.log | 491 ++--
tests/logs/RegressionTests_wcoss2.log | 460 +--
tests/parm/ufs.configure.atm.IN | 3 +-
tests/parm/ufs.configure.atm_esmf.IN | 27 +
tests/parm/ufs.configure.atmaero.IN | 4 +-
tests/parm/ufs.configure.atmaero_esmf.IN | 40 +
tests/parm/ufs.configure.leapfrog_atm_wav.IN | 4 +-
.../ufs.configure.leapfrog_atm_wav_esmf.IN | 41 +
tests/test_changes.list | 2 -
tests/tests/atmaero_control_p8 | 2 +-
tests/tests/atmaero_control_p8_rad | 2 +-
tests/tests/atmaero_control_p8_rad_micro | 2 +-
tests/tests/control_c384gdas_wav | 2 +-
24 files changed, 4370 insertions(+), 1756 deletions(-)
create mode 100644 tests/logs/RT-run-Orion.log
create mode 100644 tests/parm/ufs.configure.atm_esmf.IN
create mode 100644 tests/parm/ufs.configure.atmaero_esmf.IN
create mode 100644 tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN
diff --git a/CICE-interface/CICE b/CICE-interface/CICE
index 620e48fe75..7d4e5defc1 160000
--- a/CICE-interface/CICE
+++ b/CICE-interface/CICE
@@ -1 +1 @@
-Subproject commit 620e48fe75d92aa607af7e21f2d8691baddd2851
+Subproject commit 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1
diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS
index 624920ddbd..758491ed66 160000
--- a/CMEPS-interface/CMEPS
+++ b/CMEPS-interface/CMEPS
@@ -1 +1 @@
-Subproject commit 624920ddbd819c76ec37591c24e872308201810e
+Subproject commit 758491ed6681dd6054b1ff877027e6da381e86f8
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index 01b67e2731..f46e790668 100755
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -314,7 +314,7 @@ export DumpFields="false"
export_fv3 ()
{
# ufs.configure defaults
-export UFS_CONFIGURE=ufs.configure.atm.IN
+export UFS_CONFIGURE=ufs.configure.atm_esmf.IN
export MODEL_CONFIGURE=model_configure.IN
export atm_model=fv3
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 6f5435a587..7607e38a6e 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 8 03:19:22 UTC 2024
+Mon Mar 11 20:39:48 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 281.726798
- 0: The maximum resident set size (KB) = 1310164
+ 0: The total amount of wall time = 280.439132
+ 0: The maximum resident set size (KB) = 1308136
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 899.537419
- 0: The maximum resident set size (KB) = 1292576
+ 0: The total amount of wall time = 913.067093
+ 0: The maximum resident set size (KB) = 1275248
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 247.982005
- 0: The maximum resident set size (KB) = 1281952
+ 0: The total amount of wall time = 251.823722
+ 0: The maximum resident set size (KB) = 1279488
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 251.637706
- 0: The maximum resident set size (KB) = 1282692
+ 0: The total amount of wall time = 252.776253
+ 0: The maximum resident set size (KB) = 1282664
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 247.894872
- 0: The maximum resident set size (KB) = 1282620
+ 0: The total amount of wall time = 245.047404
+ 0: The maximum resident set size (KB) = 1282668
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 247.036431
- 0: The maximum resident set size (KB) = 1286556
+ 0: The total amount of wall time = 250.468466
+ 0: The maximum resident set size (KB) = 1286552
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135562/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 249.898262
- 0: The maximum resident set size (KB) = 1279316
+ 0: The total amount of wall time = 247.887313
+ 0: The maximum resident set size (KB) = 1284976
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 8 08:01:31 UTC 2024
-Elapsed time: 04h:42m:10s. Have a nice day!
+Tue Mar 12 00:01:04 UTC 2024
+Elapsed time: 03h:21m:16s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 0f58831c0e..afe5991427 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 8 13:50:47 UTC 2024
+Tue Mar 12 13:26:39 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1247.398743
- 0: The maximum resident set size (KB) = 1418360
+ 0: The total amount of wall time = 1222.768545
+ 0: The maximum resident set size (KB) = 1415220
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 380.961022
- 0: The maximum resident set size (KB) = 1408744
+ 0: The total amount of wall time = 523.989093
+ 0: The maximum resident set size (KB) = 1403904
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_116220/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 381.454424
- 0: The maximum resident set size (KB) = 1407480
+ 0: The total amount of wall time = 383.103653
+ 0: The maximum resident set size (KB) = 1405844
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 8 16:18:50 UTC 2024
-Elapsed time: 02h:28m:03s. Have a nice day!
+Tue Mar 12 14:29:39 UTC 2024
+Elapsed time: 01h:03m:01s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 3d9ec97a47..2bb766aa05 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 8 12:38:35 UTC 2024
+Tue Mar 12 03:42:07 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 518.666889
- 0: The maximum resident set size (KB) = 591560
+ 0: The total amount of wall time = 524.495732
+ 0: The maximum resident set size (KB) = 589572
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 510.630263
- 0: The maximum resident set size (KB) = 589856
+ 0: The total amount of wall time = 522.595246
+ 0: The maximum resident set size (KB) = 589600
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_140241/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 526.308695
- 0: The maximum resident set size (KB) = 591688
+ 0: The total amount of wall time = 514.250208
+ 0: The maximum resident set size (KB) = 591872
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 8 13:43:33 UTC 2024
-Elapsed time: 01h:04m:59s. Have a nice day!
+Tue Mar 12 04:20:05 UTC 2024
+Elapsed time: 00h:37m:59s. Have a nice day!
diff --git a/tests/logs/RT-run-Orion.log b/tests/logs/RT-run-Orion.log
new file mode 100644
index 0000000000..d6bd7eb96b
--- /dev/null
+++ b/tests/logs/RT-run-Orion.log
@@ -0,0 +1,2467 @@
+Orion-login-1.HPC.MsState.Edu
+Machine: orion Account: epic
+Linking /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2172/tests/run_dir
+Run regression test in: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319
+No update needed to TESTS_FILE
+COMPILING s2swa_32bit_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+COMPILING s2swa_32bit_pdlib_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 239
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 239
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 239
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 197
+OCN_petlist_bounds: 198 231
+ICE_petlist_bounds: 232 251
+WAV_petlist_bounds: 252 301
+CHM_petlist_bounds: 0 191
+MED_petlist_bounds: 0 191
+AQM_petlist_bounds: 0 191
+LND_petlist_bounds:
+UFS_tasks : 302
+COMPILING s2swa_32bit_pdlib_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 257
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 258
+COMPILING s2swa_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 167
+OCN_petlist_bounds: 168 187
+ICE_petlist_bounds: 188 197
+WAV_petlist_bounds: 198 221
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 222
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 197
+OCN_petlist_bounds: 198 231
+ICE_petlist_bounds: 232 251
+WAV_petlist_bounds: 252 279
+CHM_petlist_bounds: 0 191
+MED_petlist_bounds: 0 191
+AQM_petlist_bounds: 0 191
+LND_petlist_bounds:
+UFS_tasks : 280
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 623
+OCN_petlist_bounds: 624 683
+ICE_petlist_bounds: 684 707
+WAV_petlist_bounds: 708 787
+CHM_petlist_bounds: 0 575
+MED_petlist_bounds: 0 575
+AQM_petlist_bounds: 0 575
+LND_petlist_bounds:
+UFS_tasks : 788
+ATM_petlist_bounds: 0 599
+OCN_petlist_bounds: 600 659
+ICE_petlist_bounds: 660 683
+WAV_petlist_bounds: 684 763
+CHM_petlist_bounds: 0 575
+MED_petlist_bounds: 0 575
+AQM_petlist_bounds: 0 575
+LND_petlist_bounds:
+UFS_tasks : 764
+ATM_petlist_bounds: 0 959
+OCN_petlist_bounds: 960 1079
+ICE_petlist_bounds: 1080 1127
+WAV_petlist_bounds: 1128 1287
+CHM_petlist_bounds: 0 767
+MED_petlist_bounds: 0 767
+AQM_petlist_bounds: 0 767
+LND_petlist_bounds:
+UFS_tasks : 1288
+ATM_petlist_bounds: 0 959
+OCN_petlist_bounds: 960 1079
+ICE_petlist_bounds: 1080 1127
+WAV_petlist_bounds: 1128 1287
+CHM_petlist_bounds: 0 767
+MED_petlist_bounds: 0 767
+AQM_petlist_bounds: 0 767
+LND_petlist_bounds:
+UFS_tasks : 1288
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 180
+COMPILING s2sw_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 180
+COMPILING s2swa_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+COMPILING s2sw_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+COMPILING s2s_aoflux_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+COMPILING s2s_intel
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 15
+ICE_petlist_bounds: 16 19
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 5
+MED_petlist_bounds: 0 5
+AQM_petlist_bounds: 0 5
+LND_petlist_bounds:
+UFS_tasks : 20
+COMPILING s2swa_faster_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 199
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 200
+COMPILING s2sw_pdlib_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 239
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 239
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 197
+OCN_petlist_bounds: 198 231
+ICE_petlist_bounds: 232 251
+WAV_petlist_bounds: 252 301
+CHM_petlist_bounds: 0 191
+MED_petlist_bounds: 0 191
+AQM_petlist_bounds: 0 191
+LND_petlist_bounds:
+UFS_tasks : 302
+COMPILING s2sw_pdlib_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds: 150 169
+ICE_petlist_bounds: 170 179
+WAV_petlist_bounds: 180 257
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 258
+COMPILING atm_dyn32_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 7
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 5
+MED_petlist_bounds: 0 5
+AQM_petlist_bounds: 0 5
+LND_petlist_bounds:
+UFS_tasks : 8
+ATM_petlist_bounds: 0 7
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 5
+MED_petlist_bounds: 0 5
+AQM_petlist_bounds: 0 5
+LND_petlist_bounds:
+UFS_tasks : 8
+ATM_petlist_bounds: 0 203
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 191
+MED_petlist_bounds: 0 191
+AQM_petlist_bounds: 0 191
+LND_petlist_bounds:
+UFS_tasks : 204
+ATM_petlist_bounds: 0 671
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 575
+MED_petlist_bounds: 0 575
+AQM_petlist_bounds: 0 575
+LND_petlist_bounds:
+UFS_tasks : 672
+ATM_petlist_bounds: 0 671
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 575
+MED_petlist_bounds: 0 575
+AQM_petlist_bounds: 0 575
+LND_petlist_bounds:
+UFS_tasks : 672
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 155
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 156
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 239
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 219
+MED_petlist_bounds: 0 219
+AQM_petlist_bounds: 0 219
+LND_petlist_bounds:
+UFS_tasks : 240
+ATM_petlist_bounds: 0 109
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 110
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+COMPILING ifi_intel
+COMPILING rrfs_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 383
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 384
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 155
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 156
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 155
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 156
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING csawmg_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING wam_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING atm_faster_dyn32_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+COMPILING atm_debug_dyn32_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 119
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 109
+MED_petlist_bounds: 0 109
+AQM_petlist_bounds: 0 109
+LND_petlist_bounds:
+UFS_tasks : 120
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING wam_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING rrfs_dyn32_phy32_intel
+ATM_petlist_bounds: 0 383
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 384
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 155
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 156
+ATM_petlist_bounds: 0 155
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 156
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING rrfs_dyn32_phy32_faster_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 287
+MED_petlist_bounds: 0 287
+AQM_petlist_bounds: 0 287
+LND_petlist_bounds:
+UFS_tasks : 300
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING rrfs_dyn64_phy32_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING rrfs_dyn32_phy32_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 287
+MED_petlist_bounds: 0 287
+AQM_petlist_bounds: 0 287
+LND_petlist_bounds:
+UFS_tasks : 300
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING rrfs_dyn64_phy32_debug_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING hafsw_intel
+ATM_petlist_bounds: 0 599
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 479
+MED_petlist_bounds: 0 479
+AQM_petlist_bounds: 0 479
+LND_petlist_bounds:
+UFS_tasks : 600
+ATM_petlist_bounds: 0 599
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 479
+MED_petlist_bounds: 0 479
+AQM_petlist_bounds: 0 479
+LND_petlist_bounds:
+UFS_tasks : 600
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds: 300 359
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds: 300 359
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds: 300 359
+ICE_petlist_bounds:
+WAV_petlist_bounds: 360 419
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 420
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 480
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 480
+ATM_petlist_bounds: 0 839
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 719
+MED_petlist_bounds: 0 719
+AQM_petlist_bounds: 0 719
+LND_petlist_bounds:
+UFS_tasks : 840
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds: 480 599
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 600
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 480
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 359
+MED_petlist_bounds: 0 359
+AQM_petlist_bounds: 0 359
+LND_petlist_bounds:
+UFS_tasks : 480
+COMPILING hafsw_debug_intel
+ATM_petlist_bounds: 0 479
+OCN_petlist_bounds: 480 599
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 600
+COMPILING hafsw_faster_intel
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds: 360 479
+ICE_petlist_bounds:
+WAV_petlist_bounds: 480 599
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 600
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds: 360 479
+ICE_petlist_bounds:
+WAV_petlist_bounds: 480 599
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 600
+COMPILING hafs_mom6w_intel
+ATM_petlist_bounds: 0 359
+OCN_petlist_bounds: 360 479
+ICE_petlist_bounds:
+WAV_petlist_bounds: 480 599
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 600
+COMPILING hafs_all_intel
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds: 300 359
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 299
+OCN_petlist_bounds: 300 359
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 239
+MED_petlist_bounds: 0 239
+AQM_petlist_bounds: 0 239
+LND_petlist_bounds:
+UFS_tasks : 360
+ATM_petlist_bounds: 0 59
+OCN_petlist_bounds: 60 119
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 59
+MED_petlist_bounds: 0 59
+AQM_petlist_bounds: 0 59
+LND_petlist_bounds:
+UFS_tasks : 120
+COMPILING datm_cdeps_intel
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 39
+OCN_petlist_bounds: 40 159
+ICE_petlist_bounds: 160 207
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 39
+MED_petlist_bounds: 0 39
+AQM_petlist_bounds: 0 39
+LND_petlist_bounds:
+UFS_tasks : 208
+ATM_petlist_bounds: 0 39
+OCN_petlist_bounds: 40 159
+ICE_petlist_bounds: 160 207
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 39
+MED_petlist_bounds: 0 39
+AQM_petlist_bounds: 0 39
+LND_petlist_bounds:
+UFS_tasks : 208
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+COMPILING datm_cdeps_debug_intel
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+COMPILING datm_cdeps_faster_intel
+ATM_petlist_bounds: 0 11
+OCN_petlist_bounds: 12 27
+ICE_petlist_bounds: 28 39
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 11
+MED_petlist_bounds: 0 11
+AQM_petlist_bounds: 0 11
+LND_petlist_bounds:
+UFS_tasks : 40
+COMPILING datm_cdeps_land_intel
+ATM_petlist_bounds: 0 143
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 144 287
+UFS_tasks : 288
+ATM_petlist_bounds: 0 143
+OCN_petlist_bounds: 144 159
+ICE_petlist_bounds: 160 171
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 172 315
+UFS_tasks : 316
+ATM_petlist_bounds: 0 143
+OCN_petlist_bounds: 144 159
+ICE_petlist_bounds: 160 171
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 172 315
+UFS_tasks : 316
+COMPILING atml_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 150 293
+UFS_tasks : 294
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 150 293
+UFS_tasks : 294
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds: 150 293
+UFS_tasks : 294
+COMPILING atmw_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds: 150 179
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 180
+COMPILING atmwm_intel
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds: 150 179
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 180
+COMPILING atmaero_intel
+ATM_petlist_bounds: 0 197
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 191
+MED_petlist_bounds: 0 191
+AQM_petlist_bounds: 0 191
+LND_petlist_bounds:
+UFS_tasks : 198
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+ATM_petlist_bounds: 0 149
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 143
+MED_petlist_bounds: 0 143
+AQM_petlist_bounds: 0 143
+LND_petlist_bounds:
+UFS_tasks : 150
+COMPILING atmaq_intel
+COMPILING atmaq_debug_intel
+ATM_petlist_bounds: 0 271
+OCN_petlist_bounds:
+ICE_petlist_bounds:
+WAV_petlist_bounds:
+CHM_petlist_bounds: 0 263
+MED_petlist_bounds: 0 263
+AQM_petlist_bounds: 0 263
+LND_petlist_bounds:
+UFS_tasks : 272
+COMPILING atm_gnu
+COMPILING rrfs_gnu
+COMPILING atm_dyn32_debug_gnu
+COMPILING wam_debug_gnu
+COMPILING rrfs_dyn32_phy32_gnu
+COMPILING atm_dyn64_phy32_gnu
+COMPILING atm_dyn32_phy32_debug_gnu
+COMPILING atm_dyn64_phy32_debug_gnu
+COMPILING s2swa_gnu
+COMPILING s2s_gnu
+COMPILING s2swa_debug_gnu
+COMPILING s2sw_pdlib_gnu
+COMPILING s2sw_pdlib_debug_gnu
+COMPILING datm_cdeps_gnu
+ping server(Orion-login-1.HPC.MsState.Edu:11198) succeeded in 00:00:00.430490 ~430 milliseconds
+ecflow_server is already running on Orion-login-1.HPC.MsState.Edu:11198
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 221
+ecflow tasks remaining: 219
+ecflow tasks remaining: 219
+ecflow tasks remaining: 219
+ecflow tasks remaining: 219
+ecflow tasks remaining: 219
+ecflow tasks remaining: 219
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 218
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 216
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 213
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 212
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 211
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 210
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 208
+ecflow tasks remaining: 207
+ecflow tasks remaining: 207
+ecflow tasks remaining: 207
+ecflow tasks remaining: 207
+ecflow tasks remaining: 207
+ecflow tasks remaining: 206
+ecflow tasks remaining: 206
+ecflow tasks remaining: 206
+ecflow tasks remaining: 206
+ecflow tasks remaining: 206
+ecflow tasks remaining: 206
+ecflow tasks remaining: 205
+ecflow tasks remaining: 205
+ecflow tasks remaining: 205
+ecflow tasks remaining: 205
+ecflow tasks remaining: 205
+ecflow tasks remaining: 205
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 204
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 203
+ecflow tasks remaining: 202
+ecflow tasks remaining: 202
+ecflow tasks remaining: 202
+ecflow tasks remaining: 202
+ecflow tasks remaining: 202
+ecflow tasks remaining: 202
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 201
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 200
+ecflow tasks remaining: 199
+ecflow tasks remaining: 199
+ecflow tasks remaining: 199
+ecflow tasks remaining: 199
+ecflow tasks remaining: 199
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 198
+ecflow tasks remaining: 196
+ecflow tasks remaining: 196
+ecflow tasks remaining: 196
+ecflow tasks remaining: 196
+ecflow tasks remaining: 196
+ecflow tasks remaining: 196
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 195
+ecflow tasks remaining: 194
+ecflow tasks remaining: 194
+ecflow tasks remaining: 194
+ecflow tasks remaining: 194
+ecflow tasks remaining: 194
+ecflow tasks remaining: 194
+ecflow tasks remaining: 191
+ecflow tasks remaining: 191
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 190
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 189
+ecflow tasks remaining: 188
+ecflow tasks remaining: 188
+ecflow tasks remaining: 188
+ecflow tasks remaining: 188
+ecflow tasks remaining: 188
+ecflow tasks remaining: 188
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 187
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 186
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 185
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+ecflow tasks remaining: 182
+rt.sh finished
+SUITES=suite regtest_264799
+suite regtest_170319
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 8defe17942..08c81925e1 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,19 +1,19 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-33c6f8a535e2fd522fb661a120aaaa35c5a397c1
+0993150ece5c5e28868602030dd75601a1277888
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_99771
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_63518
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [22:37, 21:40]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:11, 05:07](3077 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:35, 22:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:19, 13:53](1687 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:57, 15:28](1827 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:34, 07:38](954 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:51](1653 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:34, 10:59]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:49, 21:58](1699 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:42, 21:28]
-PASS -- TEST 'cpld_control_p8_intel' [11:06, 05:51](3092 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 05:46](3091 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:52, 03:27](3152 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:04, 05:51](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:29](3174 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:44](3087 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 04:51](3384 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:13, 05:48](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:09, 09:04](3634 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [18:49, 06:23](3613 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [37:16, 10:21](4342 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [35:06, 07:49](4645 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 05:27](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:44, 20:31]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:22](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 04:28](1723 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [12:30, 11:06]
-PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:47](3152 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [11:35, 10:35]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 05:21](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:38, 15:37]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:12, 04:27](1722 MB)
-
-PASS -- COMPILE 's2s_intel' [16:38, 15:54]
-PASS -- TEST 'cpld_control_c48_intel' [08:50, 06:43](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:41, 24:38]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 05:45](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [22:31, 21:25]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 14:10](1694 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:35, 07:43](1405 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:32, 16:08](1664 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:34, 10:53]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 22:53](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:31, 13:36]
-PASS -- TEST 'control_flake_intel' [05:13, 03:35](665 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:07, 02:10](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:20](621 MB)
-PASS -- TEST 'control_latlon_intel' [04:03, 02:11](620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:11](618 MB)
-PASS -- TEST 'control_c48_intel' [07:01, 05:18](735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:03, 05:15](738 MB)
-PASS -- TEST 'control_c192_intel' [10:27, 07:56](736 MB)
-PASS -- TEST 'control_c384_intel' [17:47, 08:42](1058 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:57, 07:48](1198 MB)
-PASS -- TEST 'control_stochy_intel' [03:00, 01:30](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:55](438 MB)
-PASS -- TEST 'control_lndp_intel' [03:01, 01:26](626 MB)
-PASS -- TEST 'control_iovr4_intel' [04:14, 02:10](618 MB)
-PASS -- TEST 'control_iovr5_intel' [04:06, 02:10](623 MB)
-PASS -- TEST 'control_p8_intel' [06:08, 02:36](1592 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 02:44](1597 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:37](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:03, 01:30](797 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:26, 02:34](1592 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:10, 01:30](804 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:14, 02:40](1594 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:07, 04:29](1601 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:26](1648 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:27, 02:46](1607 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:30, 03:11](1607 MB)
-PASS -- TEST 'regional_control_intel' [06:34, 04:36](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:58, 02:37](800 MB)
-PASS -- TEST 'regional_decomp_intel' [07:35, 04:47](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:53, 04:29](1161 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 04:35](625 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:36](632 MB)
-PASS -- TEST 'regional_wofs_intel' [07:19, 05:40](1600 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:33, 12:20]
-PASS -- TEST 'rap_control_intel' [09:04, 06:12](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:41, 03:53](1189 MB)
-PASS -- TEST 'rap_decomp_intel' [09:16, 06:29](1004 MB)
-PASS -- TEST 'rap_restart_intel' [05:55, 03:15](881 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:11](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:04, 06:27](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 04:44](881 MB)
-PASS -- TEST 'hrrr_control_intel' [06:00, 03:20](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:18, 03:26](1000 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 02:55](1092 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:51](833 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:03](997 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:30](1955 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:18, 07:16](1946 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:39, 11:26]
-PASS -- TEST 'control_csawmg_intel' [07:56, 05:13](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:50, 05:16](693 MB)
-PASS -- TEST 'control_ras_intel' [04:25, 02:57](655 MB)
-
-PASS -- COMPILE 'wam_intel' [11:28, 10:39]
-PASS -- TEST 'control_wam_intel' [04:11, 01:58](382 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:40, 13:37]
-PASS -- TEST 'control_p8_faster_intel' [05:20, 02:31](1593 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:38, 04:24](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:29, 09:55]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:41](790 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:12, 02:34](791 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:02](798 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:38](797 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:42, 03:57](837 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:50, 04:01](837 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:56, 02:38](805 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:58, 02:46](851 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:49, 02:51](1624 MB)
-PASS -- TEST 'regional_debug_intel' [18:34, 16:25](665 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:09, 04:44](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:17, 04:34](1175 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 04:41](1178 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:00, 04:45](1178 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:09, 04:45](1179 MB)
-PASS -- TEST 'rap_diag_debug_intel' [10:01, 04:54](1263 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:07, 04:50](1179 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:02, 04:56](1177 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:15, 04:50](1181 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:44](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:04, 04:35](1177 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:27, 04:42](1178 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:02, 07:30](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:06, 04:42](1170 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:08, 05:36](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:44](1178 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:58, 07:58](1181 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:32, 06:24]
-PASS -- TEST 'control_wam_debug_intel' [06:52, 04:41](425 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:27, 10:38]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:51](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 05:14](882 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:17, 02:50](880 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:59, 03:00](1255 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 03:55](793 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:09, 01:37](773 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:28, 12:52]
-PASS -- TEST 'conus13km_control_intel' [06:53, 02:04](1081 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:11, 01:14](1082 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:13, 01:13](972 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:40, 10:50]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 03:42](907 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:37, 06:55]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:00, 04:39](1056 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:05, 04:32](1056 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:26, 13:33](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 13:43](817 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:32, 13:46](1200 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:36, 06:48]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:09, 04:40](1082 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:48, 17:20]
-PASS -- TEST 'hafs_regional_atm_intel' [07:51, 04:49](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:14, 05:32](1063 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:34, 06:42](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 11:10](791 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:40, 12:24](813 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 04:45](473 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:42, 05:58](487 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 02:36](504 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 06:40](456 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 03:38](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:44, 03:19](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:10, 04:08](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:16, 01:25](425 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:17, 03:35](785 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:28, 08:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:24, 12:13](618 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:42, 20:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:18](634 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:55, 07:30](686 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:47, 18:28]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 05:33](673 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:32, 15:51]
-PASS -- TEST 'hafs_regional_docn_intel' [08:40, 05:48](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:39, 05:48](735 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:21](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:39, 08:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:36](748 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:36](738 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:31](1354 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:08, 02:29](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:04, 02:26](1255 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:34](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:07, 02:37](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 02:28](640 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:59, 05:57](686 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:39, 06:00](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:00, 02:34](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:06](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 04:10](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:38, 06:25]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:14](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:33, 08:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:36](760 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:29, 02:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 01:28](846 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 01:30](451 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:56, 00:52](451 MB)
-
-PASS -- COMPILE 'atml_intel' [14:46, 13:58]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:23, 07:54](1625 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:18, 07:22](1627 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:36, 03:54](852 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:36, 13:36]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:44](1626 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:44, 13:37]
-PASS -- TEST 'control_atmwav_intel' [03:32, 01:34](635 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:44, 12:38]
-PASS -- TEST 'atmaero_control_p8_intel' [06:56, 03:48](2945 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:38, 04:25](3001 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:12, 04:36](3011 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:40, 12:01]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:38, 07:41]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:33, 22:42](4530 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:39, 20:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:38, 04:59](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:42, 20:56]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 13:52](1683 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:19](1819 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 07:25](955 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:02, 15:49](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:37, 09:41]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 21:38](1697 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:33, 19:45]
+PASS -- TEST 'cpld_control_p8_intel' [10:05, 05:41](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:10, 05:37](3089 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:21, 03:19](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:05, 05:41](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:05, 03:24](3176 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:49, 05:34](3088 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:07, 04:36](3383 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:11, 05:40](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:53, 08:47](3634 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:25, 06:20](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [30:33, 09:50](4339 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:10, 07:17](4645 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:39, 05:19](3063 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:45, 19:08]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:50, 04:13](1679 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 04:17](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:37, 09:46]
+PASS -- TEST 'cpld_debug_p8_intel' [12:17, 07:43](3148 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:34, 09:12]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:19](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:39, 14:34]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:40, 04:17](1721 MB)
+
+PASS -- COMPILE 's2s_intel' [15:39, 14:39]
+PASS -- TEST 'cpld_control_c48_intel' [08:35, 06:36](2667 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:41, 23:35]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:33](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:32, 19:37]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:13, 14:04](1689 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:04, 07:24](1015 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:39, 16:01](1659 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:29, 09:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:03, 22:47](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:27, 12:40]
+PASS -- TEST 'control_flake_intel' [04:58, 03:27](667 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:04, 02:04](617 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:12](624 MB)
+PASS -- TEST 'control_latlon_intel' [04:16, 02:07](617 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:09](617 MB)
+PASS -- TEST 'control_c48_intel' [07:05, 05:15](737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:06, 05:15](740 MB)
+PASS -- TEST 'control_c192_intel' [11:15, 07:55](741 MB)
+PASS -- TEST 'control_c384_intel' [15:10, 08:14](1059 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:12, 07:27](1200 MB)
+PASS -- TEST 'control_stochy_intel' [03:18, 01:28](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:49, 00:52](439 MB)
+PASS -- TEST 'control_lndp_intel' [03:18, 01:24](622 MB)
+PASS -- TEST 'control_iovr4_intel' [04:04, 02:06](620 MB)
+PASS -- TEST 'control_iovr5_intel' [03:55, 02:07](619 MB)
+PASS -- TEST 'control_p8_intel' [05:01, 02:32](1601 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:30](1595 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 02:32](1600 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:45, 01:28](795 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:30](1589 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:25](804 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:00, 02:35](1587 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:54, 04:25](1591 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:00, 03:18](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:13, 02:34](1602 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:09, 03:00](1599 MB)
+PASS -- TEST 'regional_control_intel' [06:34, 04:32](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:30](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:34, 04:45](628 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1162 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:30](1255 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:30](629 MB)
+PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:34, 11:17]
+PASS -- TEST 'rap_control_intel' [08:38, 06:11](1003 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 03:51](1193 MB)
+PASS -- TEST 'rap_decomp_intel' [08:32, 06:23](1002 MB)
+PASS -- TEST 'rap_restart_intel' [05:36, 03:13](877 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:30, 06:06](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:42, 04:34](881 MB)
+PASS -- TEST 'hrrr_control_intel' [05:38, 03:14](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:19](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:27, 02:50](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:06, 01:47](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:26, 05:57](997 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:23](1953 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:53, 07:10](1945 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:38, 10:22]
+PASS -- TEST 'control_csawmg_intel' [07:35, 05:12](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:32, 05:08](693 MB)
+PASS -- TEST 'control_ras_intel' [06:05, 02:54](654 MB)
+
+PASS -- COMPILE 'wam_intel' [10:32, 09:36]
+PASS -- TEST 'control_wam_intel' [04:53, 01:56](380 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:33, 12:42]
+PASS -- TEST 'control_p8_faster_intel' [05:09, 02:26](1595 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:29, 04:17](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:28, 08:43]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:34](793 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](792 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:54, 02:53](799 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:37, 02:40](795 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:35, 03:54](840 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 03:51](835 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:56, 02:37](805 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:33, 02:40](849 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:28, 02:38](1621 MB)
+PASS -- TEST 'regional_debug_intel' [17:31, 15:59](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:47, 04:39](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:11, 04:32](1174 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:02, 04:46](1179 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:39](1177 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:01, 04:38](1177 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:09, 04:59](1262 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:05, 04:50](1178 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:55, 04:47](1182 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:53, 04:42](1177 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:46, 04:39](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:09, 04:33](1180 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:01, 04:40](1180 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:49, 07:34](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:54, 04:35](1171 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:48, 05:26](1181 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:03, 04:48](1178 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:13, 07:53](1185 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:32, 05:29]
+PASS -- TEST 'control_wam_debug_intel' [05:43, 04:37](420 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:35, 09:45]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:39](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:26, 05:09](880 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 02:48](879 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 02:57](882 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 03:51](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:57, 01:34](775 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:38, 11:54]
+PASS -- TEST 'conus13km_control_intel' [05:10, 01:54](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:57, 00:59](1080 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:08](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:34, 09:57]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:15, 03:40](912 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:40, 05:48]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:53, 04:31](1061 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:48, 04:31](1057 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:03, 13:25](1130 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:36, 13:32](816 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:20, 13:26](1201 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:25, 05:33]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:01, 04:36](1078 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:30, 15:56]
+PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:37](714 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:10](1064 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:48, 06:33](780 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:37, 11:01](793 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:49, 12:00](805 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 04:42](472 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:04, 05:46](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:20](388 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:22](1537 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:30, 03:21](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 03:07](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 03:53](581 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:50, 01:19](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:28, 03:26](788 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:21, 07:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:33, 12:06](614 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:29, 20:11]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:54, 07:16](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:18](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:25, 16:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:29](671 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:36, 14:11]
+PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:42](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:41, 05:37](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:05](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:36, 07:47]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:00, 02:34](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:00, 01:33](736 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:53, 02:24](646 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:25](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:36, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:54, 05:48](689 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:47](670 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](1255 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:53, 03:57](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:55, 03:56](1955 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:37, 05:10]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:10](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:32, 07:59]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 02:28](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:30, 02:28]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:14](308 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:08](450 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:47](450 MB)
+
+PASS -- COMPILE 'atml_intel' [13:43, 13:03]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:54](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:05, 07:02](1637 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:48, 03:53](852 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:28, 12:53]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:36](1633 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:46, 12:33]
+PASS -- TEST 'control_atmwav_intel' [03:16, 01:31](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:29, 10:59]
+PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:38](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:16](2996 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3007 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:23, 10:52]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:29]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:14, 22:19](4530 MB)
SYNOPSIS:
-Starting Date/Time: 20240308 07:21:30
-Ending Date/Time: 20240308 09:01:22
-Total Time: 01h:41m:04s
+Starting Date/Time: 20240311 16:25:09
+Ending Date/Time: 20240311 17:56:20
+Total Time: 01h:32m:13s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 66d1ffb3f8..7e53960d28 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,19 +1,19 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-61e86c66145af77f68ab88bd931b7706228a4879
+741c59602c902cd90becadf85cad7f493f510284
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_166703
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_175871
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:15, 17:32]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:57, 07:29](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 21:10]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:35, 13:41](1701 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:07, 14:10](1814 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:31, 06:52](952 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:45, 15:24](1673 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 11:04]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [32:44, 24:14](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [23:13, 21:17]
-PASS -- TEST 'cpld_control_p8_intel' [14:11, 08:15](3101 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:36, 08:45](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [13:53, 06:10](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:08, 08:16](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [13:53, 06:08](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:05, 06:45](3416 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [14:43, 08:28](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [13:55, 07:21](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:24, 08:38](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [22:54, 10:34](3270 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [19:10, 07:50](3600 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [26:51, 13:13](4037 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:02, 09:09](4347 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:55, 08:06](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [22:13, 20:28]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [12:16, 05:24](1684 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:15](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:52]
-PASS -- TEST 'cpld_debug_p8_intel' [15:44, 10:05](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [13:12, 11:26]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:52, 05:59](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:55]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:30, 05:25](1730 MB)
-
-PASS -- COMPILE 's2s_intel' [16:10, 14:34]
-PASS -- TEST 'cpld_control_c48_intel' [10:12, 06:53](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:13, 21:23]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:03](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:38]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:17, 15:58](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:17, 07:12](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:04, 17:30](1681 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:20, 12:36]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:49, 26:43](1707 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:21, 15:11]
-PASS -- TEST 'control_flake_intel' [07:41, 04:04](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:34](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:47, 02:38](627 MB)
-PASS -- TEST 'control_latlon_intel' [05:32, 02:38](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:41, 02:37](623 MB)
-PASS -- TEST 'control_c48_intel' [10:23, 05:37](722 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:29, 05:38](727 MB)
-PASS -- TEST 'control_c192_intel' [13:38, 09:11](740 MB)
-PASS -- TEST 'control_c384_intel' [20:49, 16:34](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [22:25, 14:19](1184 MB)
-PASS -- TEST 'control_stochy_intel' [04:42, 01:56](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:56, 01:23](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:42, 01:51](627 MB)
-PASS -- TEST 'control_iovr4_intel' [05:19, 02:39](623 MB)
-PASS -- TEST 'control_iovr5_intel' [07:04, 02:56](623 MB)
-PASS -- TEST 'control_p8_intel' [11:15, 04:22](1607 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [10:44, 03:41](1609 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [11:20, 03:53](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [09:11, 01:42](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:01, 03:48](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 01:48](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [10:09, 03:22](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:08, 03:12](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:35, 05:24](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [11:08, 04:57](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:00, 04:25](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:51, 04:21](1615 MB)
-PASS -- TEST 'regional_control_intel' [09:06, 05:03](615 MB)
-PASS -- TEST 'regional_restart_intel' [06:43, 02:34](788 MB)
-PASS -- TEST 'regional_decomp_intel' [09:03, 05:10](615 MB)
-PASS -- TEST 'regional_2threads_intel' [07:09, 03:30](759 MB)
-PASS -- TEST 'regional_noquilt_intel' [09:52, 04:34](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:01, 04:38](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:41, 04:51](615 MB)
-PASS -- TEST 'regional_wofs_intel' [10:29, 05:59](1590 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:12, 13:29]
-PASS -- TEST 'rap_control_intel' [13:45, 06:50](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 04:09](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [12:22, 07:06](1008 MB)
-PASS -- TEST 'rap_2threads_intel' [12:12, 06:13](1094 MB)
-PASS -- TEST 'rap_restart_intel' [08:44, 03:40](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:13, 07:00](1006 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:12, 07:12](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 04:56](879 MB)
-PASS -- TEST 'hrrr_control_intel' [10:30, 04:13](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [09:40, 03:41](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [09:17, 03:11](1082 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:41, 02:01](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [13:03, 06:44](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:37, 08:07](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:43, 07:47](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:12, 13:22]
-PASS -- TEST 'control_csawmg_intel' [11:08, 06:14](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [11:12, 05:50](693 MB)
-PASS -- TEST 'control_ras_intel' [07:58, 03:43](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:17, 12:05]
-PASS -- TEST 'control_wam_intel' [06:02, 02:07](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [29:25, 27:35]
-PASS -- TEST 'control_p8_faster_intel' [09:49, 03:18](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:03, 04:51](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [31:29, 29:12]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:14, 02:56](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:49](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:34, 03:17](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:14, 03:19](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:35, 04:32](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 04:52](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:22, 03:35](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:41, 03:31](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:51, 03:17](1619 MB)
-PASS -- TEST 'regional_debug_intel' [20:49, 16:46](634 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:02, 05:10](1167 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:02](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 05:07](1169 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 05:04](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:35, 05:22](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:00, 05:18](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:08](1167 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:49, 05:26](1170 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:37, 05:13](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:35, 05:12](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:06, 05:08](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [09:35, 05:03](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:18, 08:16](1167 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [09:24, 05:07](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [10:36, 05:54](1169 MB)
-PASS -- TEST 'rap_flake_debug_intel' [09:24, 05:02](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:28, 08:34](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:12, 08:17]
-PASS -- TEST 'control_wam_debug_intel' [07:32, 04:53](393 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 11:52]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:40, 03:48](1049 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:00, 05:54](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:55, 03:25](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 05:25](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:14, 02:55](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:04, 03:26](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 04:11](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:47, 01:58](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:20, 15:31]
-PASS -- TEST 'conus13km_control_intel' [06:36, 02:12](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:43, 01:09](1075 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:34](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:17, 13:26]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:48, 04:46](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 09:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:13, 04:59](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:55](1047 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:01, 14:13](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:02, 13:55](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:43, 08:14](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 13:53](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 09:06]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:16, 04:57](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:20, 16:44]
-PASS -- TEST 'hafs_regional_atm_intel' [09:21, 05:19](705 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 04:38](1058 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:46, 07:47](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 11:48](784 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:00, 12:50](797 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:23, 05:21](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:09, 06:55](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [08:12, 02:56](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:51, 08:08](431 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:12, 03:55](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:25, 03:30](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:04, 04:52](566 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:21, 01:57](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:55, 04:06](762 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:23, 11:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:55, 12:54](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:24, 18:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:19, 07:51](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:19, 07:43](786 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:27, 16:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:08](784 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:16, 14:26]
-PASS -- TEST 'hafs_regional_docn_intel' [09:54, 06:14](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:47, 06:22](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:05](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:31]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:40](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:43, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:33, 02:29](635 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:42, 02:33](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:34, 02:27](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:00, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:03, 02:35](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:52, 02:25](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 06:11](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 06:03](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 02:33](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:54, 04:34](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:47, 04:36](2012 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 07:15]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:42, 05:29](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:22, 11:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:43, 02:33](745 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:36]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:23, 01:55](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:03, 01:46](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:18, 01:18](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:26, 15:20]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:49, 07:32](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 07:37](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [14:31, 04:19](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:25, 15:16]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:29, 02:22](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [29:17, 27:20]
-PASS -- TEST 'control_atmwav_intel' [04:53, 01:57](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:22, 13:54]
-PASS -- TEST 'atmaero_control_p8_intel' [10:23, 06:21](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:25, 07:07](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:57, 07:32](3020 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:15, 14:28]
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:17, 09:57]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 18:08](4479 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:57]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:05, 07:48](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:15, 23:35]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 14:02](1702 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:35, 14:31](1814 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 07:28](952 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:26, 14:58](1673 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:12, 15:39]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 24:13](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:11, 20:03]
+PASS -- TEST 'cpld_control_p8_intel' [13:13, 08:30](3100 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:23, 08:33](3099 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [10:13, 05:30](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:04, 08:25](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:16, 05:34](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 06:59](3415 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:59, 08:20](3100 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:34, 07:23](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:22, 08:28](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:13, 10:40](3268 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 07:47](3602 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:15](4039 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:22, 09:45](4343 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:10, 08:15](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [23:15, 21:38]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:20, 05:06](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:31, 05:30](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [16:12, 14:09]
+PASS -- TEST 'cpld_debug_p8_intel' [14:10, 10:16](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [16:12, 14:34]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 06:08](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [53:23, 51:29]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:30, 05:29](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [19:10, 17:54]
+PASS -- TEST 'cpld_control_c48_intel' [09:24, 06:54](2661 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:15, 23:08]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:32, 08:29](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:17, 23:39]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 15:41](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:57, 07:57](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 17:57](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 13:55]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 27:10](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:10, 16:28]
+PASS -- TEST 'control_flake_intel' [05:45, 03:47](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 02:37](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:07, 02:44](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:41, 02:37](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:14, 02:44](623 MB)
+PASS -- TEST 'control_c48_intel' [09:08, 05:39](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:38](727 MB)
+PASS -- TEST 'control_c192_intel' [11:18, 08:57](739 MB)
+PASS -- TEST 'control_c384_intel' [19:38, 16:34](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:47, 15:18](1184 MB)
+PASS -- TEST 'control_stochy_intel' [04:50, 02:00](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:09, 01:01](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:46, 01:59](628 MB)
+PASS -- TEST 'control_iovr4_intel' [06:12, 03:10](623 MB)
+PASS -- TEST 'control_iovr5_intel' [06:10, 03:11](622 MB)
+PASS -- TEST 'control_p8_intel' [07:36, 04:30](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:08, 03:50](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:54](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:12, 01:56](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:55, 03:44](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 01:40](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [08:01, 04:00](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:03, 02:44](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:24, 05:32](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:39](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:59, 03:26](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:43, 03:59](1615 MB)
+PASS -- TEST 'regional_control_intel' [08:30, 04:54](615 MB)
+PASS -- TEST 'regional_restart_intel' [05:09, 02:32](789 MB)
+PASS -- TEST 'regional_decomp_intel' [08:19, 04:51](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:27, 02:50](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:16, 04:55](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:15, 04:35](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 04:43](615 MB)
+PASS -- TEST 'regional_wofs_intel' [09:34, 06:08](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:09, 14:04]
+PASS -- TEST 'rap_control_intel' [11:03, 07:22](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:41, 04:04](1190 MB)
+PASS -- TEST 'rap_decomp_intel' [11:03, 07:04](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [10:35, 06:16](1093 MB)
+PASS -- TEST 'rap_restart_intel' [07:23, 03:28](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:05, 07:28](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:05, 07:14](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:35, 05:21](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:44, 03:57](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 03:54](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:44, 03:11](1081 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:45, 01:57](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:14](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 08:09](1962 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:10, 08:01](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:14, 13:34]
+PASS -- TEST 'control_csawmg_intel' [08:58, 06:03](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:44, 05:59](693 MB)
+PASS -- TEST 'control_ras_intel' [05:52, 03:29](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:12, 12:25]
+PASS -- TEST 'control_wam_intel' [04:48, 02:11](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:14, 17:28]
+PASS -- TEST 'control_p8_faster_intel' [07:36, 04:07](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:53, 04:44](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:08, 11:43]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:47, 03:05](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:02, 03:27](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:23](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:21, 03:14](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:29, 04:36](823 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:23, 04:18](823 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:02, 02:59](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:49, 03:18](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:12, 03:23](1619 MB)
+PASS -- TEST 'regional_debug_intel' [19:56, 16:28](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:54, 05:12](1165 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:53, 05:12](1163 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 05:14](1166 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 05:14](1165 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:26](1164 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:19](1250 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:47](1165 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 05:19](1166 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:36, 05:14](1166 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:08](1165 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:13](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:43, 05:13](1163 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:10](1164 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:42, 05:00](1161 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 05:57](1167 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:15](1164 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:15, 08:50](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:08, 09:39]
+PASS -- TEST 'control_wam_debug_intel' [07:33, 05:19](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:18, 13:50]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 03:56](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:24](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:08, 03:56](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:18, 05:20](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:11, 02:45](938 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 03:43](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:29](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:39, 02:03](763 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:19, 16:45]
+PASS -- TEST 'conus13km_control_intel' [05:13, 02:14](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:26](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:50, 01:29](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:19, 13:19]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:25, 04:26](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:15, 10:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:34, 05:06](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:40, 05:00](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:11, 14:16](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:11, 14:40](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:27, 08:36](1111 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 13:59](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:15, 10:41]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:07](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:18, 18:32]
+PASS -- TEST 'hafs_regional_atm_intel' [08:26, 05:21](705 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:41, 04:34](1060 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:04, 08:00](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:32, 12:09](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:43, 13:02](798 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 05:24](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 06:52](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:33, 02:59](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:31, 09:06](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 04:00](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:18, 03:30](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:05, 04:39](571 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:03, 01:42](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:50, 04:09](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:31, 13:01](585 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [26:17, 24:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:23, 07:36](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:34, 07:59](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [40:25, 38:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:31, 06:26](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:10, 16:57]
+PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:03](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 06:28](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:22, 20:11](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:31, 02:39](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:30, 02:30](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:40, 02:26](635 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:56](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 02:34](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:29, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:09, 07:29](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:10, 07:20](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:53, 02:49](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:36, 04:38](2011 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:35](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:29]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:42](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [15:13, 13:25]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:33](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 04:23]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:03, 02:29](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:59, 02:05](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:56, 01:24](456 MB)
+
+PASS -- COMPILE 'atml_intel' [18:17, 16:43]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:12, 08:14](1639 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:06, 07:44](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 04:54](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [30:22, 28:45]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:35, 02:21](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [17:18, 15:01]
+PASS -- TEST 'control_atmwav_intel' [04:58, 02:00](641 MB)
+
+PASS -- COMPILE 'atmaero_intel' [17:10, 15:25]
+PASS -- TEST 'atmaero_control_p8_intel' [09:29, 06:50](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:22, 06:55](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:09](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:09, 14:49]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:10, 11:48]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:02, 18:15](4479 MB)
SYNOPSIS:
-Starting Date/Time: 20240308 07:21:09
-Ending Date/Time: 20240308 09:13:54
-Total Time: 01h:54m:16s
+Starting Date/Time: 20240312 00:16:27
+Ending Date/Time: 20240312 01:58:17
+Total Time: 01h:43m:05s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 96bdf4f51e..724232d0fa 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,15 +1,15 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-8ec162797729fa6ae3c67f4b02f4a92719b2816a
+c30e3efb994177f1c3cc322339ae7778e864c222
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-1413-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -25,366 +25,366 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_79929
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_217417
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [11:47, 11:47]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:01, 05:12](3170 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:30, 15:30]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:48, 16:06](1679 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 16:46](2000 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:29, 07:36](1091 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 18:09](1591 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:02, 04:01]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:04, 22:18](1608 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:52, 11:52]
-PASS -- TEST 'cpld_control_p8_intel' [06:30, 05:43](3133 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:39, 05:48](3132 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:19, 03:20](3181 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:29, 05:43](3176 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:19](3274 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:07, 05:23](3536 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:20, 05:38](3186 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](2988 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:28, 05:38](3168 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:06, 09:37](3275 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:05, 05:57](3586 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [14:37, 09:45](4051 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:59, 06:24](4301 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 05:21](3101 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:20, 11:20]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:14, 04:32](1708 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 04:26](1750 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:02, 04:00]
-PASS -- TEST 'cpld_debug_p8_intel' [08:56, 08:07](3165 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [03:43, 03:42]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:24, 05:40](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:12, 10:12]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:12, 04:23](1751 MB)
-
-PASS -- COMPILE 's2s_intel' [10:20, 10:20]
-PASS -- TEST 'cpld_control_c48_intel' [09:50, 09:20](2810 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:49, 15:49]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:15, 05:25](3181 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [14:50, 14:50]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:05, 16:21](1711 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:34, 07:39](1173 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:22, 18:38](1654 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:43, 03:42]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:56, 24:14](1694 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:41, 10:41]
-PASS -- TEST 'control_flake_intel' [03:27, 03:15](665 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:37, 02:25](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](653 MB)
-PASS -- TEST 'control_latlon_intel' [02:35, 02:24](650 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:41, 02:25](640 MB)
-PASS -- TEST 'control_c48_intel' [06:32, 06:20](870 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 06:16](870 MB)
-PASS -- TEST 'control_c192_intel' [09:20, 08:59](845 MB)
-PASS -- TEST 'control_c384_intel' [09:56, 09:01](1262 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:46, 07:48](1390 MB)
-PASS -- TEST 'control_stochy_intel' [01:48, 01:38](650 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:12, 00:57](472 MB)
-PASS -- TEST 'control_lndp_intel' [01:43, 01:32](650 MB)
-PASS -- TEST 'control_iovr4_intel' [02:37, 02:26](649 MB)
-PASS -- TEST 'control_iovr5_intel' [02:39, 02:27](617 MB)
-PASS -- TEST 'control_p8_intel' [03:36, 02:59](1578 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:35, 02:54](1630 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:32, 02:54](1602 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:10, 01:38](882 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:55](1598 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:12, 01:38](921 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:36, 03:03](1558 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:19, 02:45](1679 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:43, 05:12](1577 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:29, 03:49](1644 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:01](1573 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:01, 03:23](1640 MB)
-PASS -- TEST 'regional_control_intel' [05:35, 05:08](818 MB)
-PASS -- TEST 'regional_restart_intel' [03:07, 02:44](986 MB)
-PASS -- TEST 'regional_decomp_intel' [05:48, 05:21](844 MB)
-PASS -- TEST 'regional_2threads_intel' [03:40, 03:15](809 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:32, 05:08](1351 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:07](817 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:08](854 MB)
-PASS -- TEST 'regional_wofs_intel' [07:04, 06:36](1887 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:38, 09:38]
-PASS -- TEST 'rap_control_intel' [08:05, 07:39](1111 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 04:03](1282 MB)
-PASS -- TEST 'rap_decomp_intel' [08:26, 08:02](1033 MB)
-PASS -- TEST 'rap_2threads_intel' [07:36, 07:12](1172 MB)
-PASS -- TEST 'rap_restart_intel' [04:32, 03:59](1091 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:03, 07:37](1076 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:23, 08:02](996 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:45](1103 MB)
-PASS -- TEST 'hrrr_control_intel' [04:18, 03:56](1027 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:23, 04:03](992 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:57, 03:37](1100 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:10](1003 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:32](1057 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1951 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 08:48](2072 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:21, 09:21]
-PASS -- TEST 'control_csawmg_intel' [06:19, 05:53](746 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:08, 05:42](707 MB)
-PASS -- TEST 'control_ras_intel' [03:25, 03:15](736 MB)
-
-PASS -- COMPILE 'wam_intel' [08:58, 08:57]
-PASS -- TEST 'control_wam_intel' [02:14, 02:03](624 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:46, 09:46]
-PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1603 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:04, 04:37](847 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:09, 04:09]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:51, 02:37](809 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:54, 02:37](811 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:55](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:40](810 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:04](828 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:20, 03:56](859 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:55, 02:43](819 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:04, 02:43](870 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1599 MB)
-PASS -- TEST 'regional_debug_intel' [16:53, 16:26](834 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1160 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:46, 04:34](1195 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:56, 04:41](1196 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:50, 04:38](1197 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:58, 04:42](1198 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:26, 05:04](1277 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:06, 04:48](1165 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:03, 04:52](1196 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:02, 04:46](1199 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:01, 04:44](1197 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:58, 04:42](1195 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:03, 04:47](1196 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:50, 07:33](1195 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:57, 04:40](1174 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:43](1192 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:01, 04:45](1209 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:32, 08:03](1207 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:06, 03:05]
-PASS -- TEST 'control_wam_debug_intel' [04:53, 04:42](483 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:15, 09:14]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:38, 03:49](1147 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:40, 06:19](1029 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 03:23](990 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 06:06](1078 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:06](960 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:31](913 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:12, 04:47](1037 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:06, 01:49](921 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:20, 11:20]
-PASS -- TEST 'conus13km_control_intel' [02:40, 02:03](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:51](1115 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:43, 01:12](1070 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:14, 09:14]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:11](984 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:14, 03:13]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:42](1081 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:47, 04:35](1050 MB)
-PASS -- TEST 'conus13km_debug_intel' [14:20, 13:43](1192 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:21, 13:49](920 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 07:58](1119 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:55, 13:24](1290 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:09]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:57, 04:42](1119 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:38, 10:38]
-PASS -- TEST 'hafs_regional_atm_intel' [05:35, 04:43](739 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 05:36](1077 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:48, 06:44](825 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:40, 12:46](854 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:45, 14:38](881 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:54, 05:14](488 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:22](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:05, 02:33](361 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:31, 06:57](464 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:56, 03:27](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:54, 03:17](535 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:36, 03:57](589 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:08](395 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:24, 03:53](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:45, 03:44]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:55, 12:16](567 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [10:56, 10:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:05, 08:24](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:09, 08:23](745 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:43, 10:43]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:03, 06:16](703 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:15, 10:14]
-PASS -- TEST 'hafs_regional_docn_intel' [07:01, 06:06](825 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:06, 06:10](814 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:27, 15:49](1205 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:18, 06:18]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:57, 02:50](1105 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:40](1067 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:37](989 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:35](1006 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:37](1014 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:42](1138 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:39](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:37, 02:29](1004 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:22](1048 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:20](1030 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:40, 02:34](1125 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:50, 03:42](2429 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:54, 03:45](2481 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [02:58, 02:57]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:10, 06:01](1049 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:03, 06:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:44](1113 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:08, 01:07]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:00, 00:42](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:56, 00:44](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:40, 00:26](319 MB)
-
-PASS -- COMPILE 'atml_intel' [10:31, 10:31]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:15](1569 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:14](1571 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](882 MB)
-
-PASS -- COMPILE 'atmw_intel' [09:55, 09:54]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:44](1623 MB)
-
-PASS -- COMPILE 'atmwm_intel' [09:51, 09:51]
-PASS -- TEST 'control_atmwav_intel' [01:59, 01:39](660 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:39, 09:38]
-PASS -- TEST 'atmaero_control_p8_intel' [04:38, 03:54](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:30, 04:46](3028 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:27, 04:58](3108 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:19, 09:19]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:14, 03:13]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:18, 19:48](4486 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:26, 03:25]
-PASS -- TEST 'control_c48_gnu' [11:47, 11:34](793 MB)
-PASS -- TEST 'control_stochy_gnu' [04:09, 03:57](549 MB)
-PASS -- TEST 'control_ras_gnu' [05:03, 04:51](560 MB)
-PASS -- TEST 'control_p8_gnu' [05:34, 04:49](1308 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:19, 04:36](1315 MB)
-PASS -- TEST 'control_flake_gnu' [06:04, 05:53](599 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:30, 03:29]
-PASS -- TEST 'rap_control_gnu' [11:50, 11:28](902 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:07, 11:46](899 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:53, 10:27](976 MB)
-PASS -- TEST 'rap_restart_gnu' [06:28, 05:56](626 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:58, 11:33](894 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:09, 11:48](863 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:12, 08:43](630 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:17, 05:53](892 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:18, 05:58](879 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 05:08](970 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:13, 05:50](896 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 03:14](611 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:24, 03:08](705 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 11:20](893 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:14, 03:14]
-PASS -- TEST 'control_diag_debug_gnu' [01:52, 01:34](589 MB)
-PASS -- TEST 'regional_debug_gnu' [08:03, 07:31](595 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:42, 02:28](906 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:26](902 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:45, 02:34](904 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:43, 02:32](909 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:09, 02:42](992 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:02, 03:50](905 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:44, 02:30](906 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:42, 02:28](899 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:40, 01:30](540 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:14, 02:03](537 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:39](1287 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:50, 02:37](906 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:02, 02:50](910 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:30, 04:06](923 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:37, 01:36]
-PASS -- TEST 'control_wam_debug_gnu' [02:37, 02:26](245 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:29, 03:29]
+PASS -- COMPILE 's2swa_32bit_intel' [11:59, 11:58]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:12, 05:17](3175 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:57, 15:56]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 16:12](1714 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:57, 16:52](1977 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:41, 07:39](1073 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:08, 18:26](1613 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:08, 04:08]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:27, 22:29](1667 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:50, 11:49]
+PASS -- TEST 'cpld_control_p8_intel' [06:38, 05:45](3135 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:39, 05:40](3187 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:32, 03:26](3193 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:48](3156 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:31, 03:29](3235 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:28](3533 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:36, 05:46](3165 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:43](3040 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:45, 05:47](3136 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:21, 09:41](3321 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:24, 06:08](3568 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:27, 09:52](4084 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:46, 06:56](4303 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:19, 05:26](3144 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:25, 11:25]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:25, 04:34](1704 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:24, 04:31](1749 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:09, 04:08]
+PASS -- TEST 'cpld_debug_p8_intel' [09:17, 08:17](3162 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:01, 04:01]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:40, 05:44](1723 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:19, 10:19]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1764 MB)
+
+PASS -- COMPILE 's2s_intel' [10:18, 10:18]
+PASS -- TEST 'cpld_control_c48_intel' [09:59, 09:28](2818 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:06, 16:06]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:27, 05:30](3180 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [14:54, 14:53]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:09, 16:19](1709 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:46, 07:43](1136 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:27, 18:40](1615 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:41, 03:41]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:53, 24:00](1701 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:54, 10:53]
+PASS -- TEST 'control_flake_intel' [03:33, 03:17](664 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:24](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:28](653 MB)
+PASS -- TEST 'control_latlon_intel' [02:37, 02:25](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:45, 02:27](645 MB)
+PASS -- TEST 'control_c48_intel' [06:29, 06:16](874 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:24, 06:12](879 MB)
+PASS -- TEST 'control_c192_intel' [09:27, 09:00](850 MB)
+PASS -- TEST 'control_c384_intel' [10:01, 08:57](1287 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:20, 08:03](1381 MB)
+PASS -- TEST 'control_stochy_intel' [01:53, 01:37](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:58](472 MB)
+PASS -- TEST 'control_lndp_intel' [01:47, 01:31](647 MB)
+PASS -- TEST 'control_iovr4_intel' [02:41, 02:26](618 MB)
+PASS -- TEST 'control_iovr5_intel' [02:41, 02:25](626 MB)
+PASS -- TEST 'control_p8_intel' [03:37, 02:59](1579 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:40, 02:56](1624 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:38, 02:56](1620 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:15, 01:38](875 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:37, 02:57](1590 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:36](909 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:04](1571 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:20, 02:44](1682 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:44, 05:06](1618 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:35, 03:55](1655 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:44, 03:03](1608 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:10, 03:31](1616 MB)
+PASS -- TEST 'regional_control_intel' [05:43, 05:15](818 MB)
+PASS -- TEST 'regional_restart_intel' [03:17, 02:47](1013 MB)
+PASS -- TEST 'regional_decomp_intel' [05:55, 05:29](828 MB)
+PASS -- TEST 'regional_2threads_intel' [03:45, 03:16](812 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:32, 05:05](1354 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 05:05](825 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:10](837 MB)
+PASS -- TEST 'regional_wofs_intel' [07:09, 06:38](1875 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:41, 09:41]
+PASS -- TEST 'rap_control_intel' [08:13, 07:40](1096 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:49, 04:02](1280 MB)
+PASS -- TEST 'rap_decomp_intel' [08:25, 08:02](1017 MB)
+PASS -- TEST 'rap_2threads_intel' [07:42, 07:15](1166 MB)
+PASS -- TEST 'rap_restart_intel' [04:41, 04:00](1103 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:12, 07:41](1080 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:32, 08:05](1017 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:24, 05:46](1108 MB)
+PASS -- TEST 'hrrr_control_intel' [04:29, 04:02](1010 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:31, 04:08](985 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:09, 03:38](1109 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:31, 02:10](976 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:05, 07:34](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:11](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 08:53](2060 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:32, 09:32]
+PASS -- TEST 'control_csawmg_intel' [06:23, 05:52](710 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:17, 05:49](730 MB)
+PASS -- TEST 'control_ras_intel' [03:27, 03:14](734 MB)
+
+PASS -- COMPILE 'wam_intel' [09:04, 09:03]
+PASS -- TEST 'control_wam_intel' [02:11, 02:01](650 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:54, 09:54]
+PASS -- TEST 'control_p8_faster_intel' [03:24, 02:42](1584 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:10, 04:42](843 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:22, 04:22]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:38](787 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:57, 02:40](807 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:57](793 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:00, 02:48](782 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:32, 04:04](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:31, 04:02](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:58, 02:44](799 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:12, 02:48](867 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:26, 02:53](1607 MB)
+PASS -- TEST 'regional_debug_intel' [17:08, 16:39](842 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:05, 04:49](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:57, 04:43](1181 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:04, 04:51](1189 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:02, 04:48](1180 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:48](1197 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:31, 05:02](1283 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:05, 04:49](1207 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:04, 04:53](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:03, 04:48](1203 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:00, 04:46](1205 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:55, 04:40](1187 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:51](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 07:41](1192 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 04:52](1158 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:49](1199 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:05, 04:47](1173 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:43, 08:13](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04]
+PASS -- TEST 'control_wam_debug_intel' [04:58, 04:47](482 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 09:09]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:54](1121 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:53, 06:19](1043 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:19](977 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:33, 06:04](1058 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:06](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:54, 03:31](922 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:13, 04:45](1033 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:51](896 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 11:24]
+PASS -- TEST 'conus13km_control_intel' [02:41, 02:05](1178 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:55](1118 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:13](1107 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:26, 09:26]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:43, 04:12](953 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:09, 03:09]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:59, 04:44](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:53, 04:38](1070 MB)
+PASS -- TEST 'conus13km_debug_intel' [14:28, 13:52](1194 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:28, 13:51](917 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:03, 07:35](1145 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:53, 13:23](1285 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:14, 03:14]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:05, 04:52](1112 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:35, 10:35]
+PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:50](736 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:56](1113 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:57](813 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:00, 13:01](833 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:03, 14:51](875 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:56, 05:14](498 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:31, 06:25](514 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:33](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:37, 06:59](483 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 03:38](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:06, 03:25](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:44, 04:01](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:28, 03:55](767 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:32, 03:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:02, 12:20](554 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:16, 11:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 08:33](637 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:23, 08:30](699 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:35, 10:35]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:10, 06:18](684 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:27, 10:27]
+PASS -- TEST 'hafs_regional_docn_intel' [07:12, 06:14](828 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:19, 06:19](785 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:43, 16:05](1214 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:08, 06:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:49, 02:41](1113 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:47, 01:38](1063 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:35](998 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:45, 02:36](996 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:43, 02:36](1009 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:38](1122 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:39](1121 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:37, 02:30](1000 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:40](1046 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 06:53](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:42, 02:37](1135 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:55, 03:47](2502 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:51](2489 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [02:48, 02:47]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:19, 06:09](1047 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:09, 06:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:42, 02:35](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:01, 01:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:06, 00:46](246 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:46](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:30](321 MB)
+
+PASS -- COMPILE 'atml_intel' [10:52, 10:52]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:00, 04:14](1589 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:10, 04:23](1534 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:51, 02:15](867 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:43, 10:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:29, 01:47](1636 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:18, 10:18]
+PASS -- TEST 'control_atmwav_intel' [02:03, 01:39](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:15, 10:15]
+PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:59](3001 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:50](3020 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 05:03](3094 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:58, 09:58]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:57, 04:57]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:50, 20:11](4354 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:48, 03:46]
+PASS -- TEST 'control_c48_gnu' [12:04, 11:45](789 MB)
+PASS -- TEST 'control_stochy_gnu' [04:27, 04:14](551 MB)
+PASS -- TEST 'control_ras_gnu' [05:32, 05:15](557 MB)
+PASS -- TEST 'control_p8_gnu' [05:49, 04:57](1310 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 04:51](1309 MB)
+PASS -- TEST 'control_flake_gnu' [06:22, 06:02](596 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:47, 03:46]
+PASS -- TEST 'rap_control_gnu' [12:11, 11:48](897 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:09, 11:45](897 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:57, 10:26](978 MB)
+PASS -- TEST 'rap_restart_gnu' [06:35, 06:02](624 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:13, 11:41](897 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:28, 11:57](899 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:23, 08:52](628 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:19, 05:57](888 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:17, 05:54](879 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:11](979 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:24, 06:01](891 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 03:13](609 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 03:10](704 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 11:18](894 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:20, 04:20]
+PASS -- TEST 'control_diag_debug_gnu' [01:58, 01:37](591 MB)
+PASS -- TEST 'regional_debug_gnu' [08:00, 07:31](602 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:45, 02:32](909 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:29](904 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:33](906 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:43, 02:31](909 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:07, 02:42](994 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:02, 03:51](904 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:44, 02:33](911 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:41, 02:30](903 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:42, 01:30](543 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:23, 02:12](537 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:11, 01:41](1294 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:45, 02:32](908 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [02:59, 02:47](913 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:29, 04:03](912 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:10, 03:08]
+PASS -- TEST 'control_wam_debug_gnu' [02:38, 02:27](240 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:16, 04:16]
PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:11, 11:50](749 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:21, 06:02](747 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:01, 10:34](807 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:36, 05:14](798 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:16, 05:58](746 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:21, 08:56](597 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 03:15](582 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:53, 04:12](897 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:16, 01:50](931 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 02:14](597 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:26, 06:06](750 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:03, 10:36](804 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 05:20](805 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 06:05](751 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:30, 08:58](601 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 03:12](583 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:58, 04:15](898 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:18, 01:52](937 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 02:17](597 MB)
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:01, 05:00]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:25, 06:58](784 MB)
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:53, 05:52]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:24, 06:56](784 MB)
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:15, 03:15]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:28](759 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:42, 02:30](757 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:40, 07:11](918 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 07:00](632 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:50, 04:22](951 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:36, 07:08](985 MB)
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:17, 04:16]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:30](761 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:39, 02:28](759 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:46, 07:13](914 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:37, 07:06](632 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:55, 04:25](952 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:39, 07:10](982 MB)
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:20, 03:19]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:49, 02:36](789 MB)
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:56, 03:56]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:38](786 MB)
-PASS -- COMPILE 's2swa_gnu' [13:45, 13:44]
-PASS -- TEST 'cpld_control_p8_gnu' [11:23, 10:34](1514 MB)
+PASS -- COMPILE 's2swa_gnu' [15:11, 15:11]
+PASS -- TEST 'cpld_control_p8_gnu' [11:47, 10:48](1504 MB)
-PASS -- COMPILE 's2s_gnu' [13:38, 13:38]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:16, 06:27](1401 MB)
+PASS -- COMPILE 's2s_gnu' [13:44, 13:43]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:30, 06:33](1399 MB)
-PASS -- COMPILE 's2swa_debug_gnu' [02:18, 02:17]
-PASS -- TEST 'cpld_debug_p8_gnu' [06:54, 06:06](1508 MB)
+PASS -- COMPILE 's2swa_debug_gnu' [02:17, 02:17]
+PASS -- TEST 'cpld_debug_p8_gnu' [07:08, 06:13](1516 MB)
-PASS -- COMPILE 's2sw_pdlib_gnu' [13:43, 13:42]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:45, 22:01](1360 MB)
+PASS -- COMPILE 's2sw_pdlib_gnu' [13:46, 13:45]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:56, 22:06](1369 MB)
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:03, 02:03]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:41, 12:59](1366 MB)
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:12, 02:11]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:42, 12:57](1387 MB)
-PASS -- COMPILE 'datm_cdeps_gnu' [13:20, 13:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB)
+PASS -- COMPILE 'datm_cdeps_gnu' [13:21, 13:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 03:07](698 MB)
SYNOPSIS:
-Starting Date/Time: 20240309 16:43:42
-Ending Date/Time: 20240309 21:25:17
-Total Time: 04h:42m:03s
+Starting Date/Time: 20240312 03:57:40
+Ending Date/Time: 20240312 06:17:43
+Total Time: 02h:21m:24s
Compiles Completed: 53/53
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index effbb3706c..c00049f6d3 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,15 +1,38 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d4bf6f3ada023864cca106d27994f69b90edba87
+602e838bbc0b6f3a1c6f4d2fcc5ebe1be0e047bd
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca34)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca34)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -25,356 +48,356 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_4129469
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1334135
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:05, 10:59]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:55, 07:49](1890 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:43]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:19, 13:25](1769 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:30, 14:39](2227 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 07:08](1180 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:57, 15:16](1693 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:23]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:22](1732 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:05, 10:29]
-PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:28](2073 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:24](1979 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:32](1983 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:05, 04:23](1741 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 08:54](2503 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:40](2055 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:21](1908 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:57, 07:29](2061 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:23](2808 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:26, 05:52](2920 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:48, 08:54](3635 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 06:25](3611 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:49, 04:56](2028 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:05, 09:58]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:03](1768 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:49, 04:04](1816 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:05, 04:58]
-PASS -- TEST 'cpld_debug_p8_intel' [09:03, 06:51](2058 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:40]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:47](1797 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:05, 08:40]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:57, 04:00](1822 MB)
-
-PASS -- COMPILE 's2s_intel' [10:05, 08:28]
-PASS -- TEST 'cpld_control_c48_intel' [09:42, 07:17](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:05, 12:16]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:00, 07:19](2064 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:04]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:04, 14:10](1810 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:16, 06:42](1294 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:01, 15:11](1735 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:07]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:52, 21:42](1768 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:44]
-PASS -- TEST 'control_flake_intel' [04:17, 02:53](714 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:06](668 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:23, 02:27](666 MB)
-PASS -- TEST 'control_latlon_intel' [04:17, 02:08](660 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:10](656 MB)
-PASS -- TEST 'control_c48_intel' [07:23, 05:45](861 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:09](857 MB)
-PASS -- TEST 'control_c192_intel' [09:38, 07:53](957 MB)
-PASS -- TEST 'control_c384_intel' [11:04, 08:21](1442 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:46, 07:24](1523 MB)
-PASS -- TEST 'control_stochy_intel' [03:16, 01:29](667 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:51](551 MB)
-PASS -- TEST 'control_lndp_intel' [03:16, 01:25](672 MB)
-PASS -- TEST 'control_iovr4_intel' [04:17, 02:07](659 MB)
-PASS -- TEST 'control_iovr5_intel' [04:15, 02:09](661 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:36](1646 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1628 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:26](1641 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:13, 01:29](913 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:27](1632 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 01:27](983 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:32](1627 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:59, 02:20](1735 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:37, 04:36](1632 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 03:27](1705 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:37](1659 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:59, 03:13](1656 MB)
-PASS -- TEST 'regional_control_intel' [06:24, 04:39](955 MB)
-PASS -- TEST 'regional_restart_intel' [04:29, 02:35](1106 MB)
-PASS -- TEST 'regional_decomp_intel' [06:22, 05:02](946 MB)
-PASS -- TEST 'regional_2threads_intel' [05:28, 03:07](923 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:27, 04:31](1483 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:53](958 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:48](967 MB)
-PASS -- TEST 'regional_wofs_intel' [07:28, 05:54](2096 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:41]
-PASS -- TEST 'rap_control_intel' [08:51, 06:50](1193 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:47](1442 MB)
-PASS -- TEST 'rap_decomp_intel' [08:36, 07:01](1136 MB)
-PASS -- TEST 'rap_2threads_intel' [08:39, 06:19](1358 MB)
-PASS -- TEST 'rap_restart_intel' [05:43, 03:33](1129 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:45, 06:38](1195 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:44, 06:59](1145 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 05:13](1196 MB)
-PASS -- TEST 'hrrr_control_intel' [05:41, 03:30](1072 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:31](1039 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:23](1115 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:54](1037 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:36](1215 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:25, 07:57](2020 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:41](2177 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:19]
-PASS -- TEST 'control_csawmg_intel' [07:27, 05:13](815 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:30, 05:09](839 MB)
-PASS -- TEST 'control_ras_intel' [04:14, 02:55](811 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:37]
-PASS -- TEST 'control_wam_intel' [03:22, 01:49](784 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:25]
-PASS -- TEST 'control_p8_faster_intel' [04:55, 02:17](1655 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:29, 04:07](960 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:50]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:13](820 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:14](824 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](832 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:18](831 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:31](882 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:21](872 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:14, 02:17](843 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:22, 02:48](888 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:29, 02:37](1648 MB)
-PASS -- TEST 'regional_debug_intel' [16:29, 14:18](896 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:18, 04:02](1220 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:16, 04:04](1214 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:11](1216 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:05](1220 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:07](1222 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 04:27](1293 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:18](1220 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:15, 04:16](1221 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:15](1220 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:08](1219 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:03](1224 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1223 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 06:33](1215 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:00](1225 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:54](1222 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:03](1219 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:51, 06:47](1220 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:42]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:30]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:41, 03:34](1274 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:39, 05:31](1133 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:46, 03:00](1009 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:22](1284 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:54](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:01](979 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 04:02](1091 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:24, 01:35](952 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:12]
-PASS -- TEST 'conus13km_control_intel' [03:40, 01:52](1304 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:42](1204 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:22, 01:04](1162 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:54](1091 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:39]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 03:57](1092 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:50](1096 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:39, 11:33](1345 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:52](1000 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1230 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:37](1390 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:41]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:55](1163 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:06, 10:17]
-PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:34](880 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:17, 05:04](1281 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:12, 06:20](953 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:01, 14:09](975 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:12, 15:48](1007 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:34](608 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 06:59](616 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:48](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 07:48](540 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:51](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 03:48](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 04:46](669 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:28](451 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:23](639 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:50](722 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:53, 17:25](815 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:51, 10:27](798 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:06, 09:30]
-PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:25](958 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:00, 05:23](937 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:27](1342 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:05, 04:50]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:08](1147 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:10, 02:05](1010 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:07](1011 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1015 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:07](1149 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1147 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:10, 02:04](1023 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:55](1152 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:49, 04:56](1152 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1139 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:02](2380 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:02](2380 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:55]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:09, 05:02](1083 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:26]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1142 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:56](336 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:51](563 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:32](560 MB)
-
-PASS -- COMPILE 'atml_intel' [10:06, 08:23]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:23](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 06:15](1634 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:12](961 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:05, 08:48]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:30](1706 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:05, 09:04]
-PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](707 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:24]
-PASS -- TEST 'atmaero_control_p8_intel' [05:49, 03:29](1785 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:14](1799 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 04:26](1826 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:06, 06:54]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:56]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 16:09](4588 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:05, 04:34]
-PASS -- TEST 'control_c48_gnu' [11:24, 09:51](882 MB)
-PASS -- TEST 'control_stochy_gnu' [04:16, 02:16](729 MB)
-PASS -- TEST 'control_ras_gnu' [05:13, 03:44](732 MB)
-PASS -- TEST 'control_p8_gnu' [05:49, 03:33](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:27](1514 MB)
-PASS -- TEST 'control_flake_gnu' [06:13, 04:23](811 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:06, 04:41]
-PASS -- TEST 'rap_control_gnu' [09:42, 07:43](1086 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:33, 07:54](1083 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:31, 07:11](1123 MB)
-PASS -- TEST 'rap_restart_gnu' [05:51, 04:02](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:34, 08:04](1084 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:53](1084 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:56](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:38, 03:58](1070 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:04](1137 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:39](1026 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:34, 04:08](1070 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:16, 02:04](884 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:02](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 07:43](1090 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:06, 08:06]
-PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:11](775 MB)
-PASS -- TEST 'regional_debug_gnu' [08:27, 06:25](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:56](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:17, 02:05](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:15, 02:05](1093 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:03](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:08](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:11](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:10](1096 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:17, 02:07](1093 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:21](729 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:22](727 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:19](1503 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:02](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1100 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:20]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:10, 06:49]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:26](967 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:50, 03:55](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:46, 06:51](969 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:38, 03:27](894 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:50](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:39](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:16, 02:03](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:41, 02:35](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:05](1175 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:27](946 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:06, 13:45]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:28](995 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:06, 13:42]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:58](973 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:33, 05:24](1279 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](950 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:14](1189 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:22](1349 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:10, 13:49]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 01:59](1005 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:10, 16:14]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:05]
-
-PASS -- COMPILE 's2swa_debug_gnu' [15:10, 13:43]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 17:23]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:09, 12:48]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:06]
+PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:14]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 07:24](1889 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:06, 16:14]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:21](1766 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:24, 14:04](2175 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 06:27](1189 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 15:01](1688 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:45]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:15, 20:20](1732 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:06, 11:41]
+PASS -- TEST 'cpld_control_p8_intel' [09:56, 07:31](2079 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:31](2077 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:10](1949 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:56, 07:41](1976 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 04:15](1744 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:44](2496 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 07:27](2069 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:54, 06:12](1906 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:58, 07:33](2070 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 15:12](2820 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:09, 05:47](2921 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:29, 08:43](3633 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:52, 05:43](3614 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:55, 04:52](2026 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:06, 11:27]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:50, 07:14](1766 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:56, 03:53](1827 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:13]
+PASS -- TEST 'cpld_debug_p8_intel' [09:01, 06:57](2047 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:23]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:43](1793 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:06, 07:48]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 03:58](1812 MB)
+
+PASS -- COMPILE 's2s_intel' [11:06, 09:50]
+PASS -- TEST 'cpld_control_c48_intel' [09:36, 07:16](2826 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:06, 13:57]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:06, 07:29](2083 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:47]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:53, 13:54](1801 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:08, 06:41](1298 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:52, 15:17](1733 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:18]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:51, 21:23](1774 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:22]
+PASS -- TEST 'control_flake_intel' [04:17, 02:55](715 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:10](658 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:21](664 MB)
+PASS -- TEST 'control_latlon_intel' [04:15, 02:13](659 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:18](671 MB)
+PASS -- TEST 'control_c48_intel' [07:19, 05:47](854 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:19, 05:46](858 MB)
+PASS -- TEST 'control_c192_intel' [09:26, 07:55](968 MB)
+PASS -- TEST 'control_c384_intel' [11:03, 08:12](1445 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:53, 07:25](1507 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:30](682 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](546 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:26](672 MB)
+PASS -- TEST 'control_iovr4_intel' [04:17, 02:12](665 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](663 MB)
+PASS -- TEST 'control_p8_intel' [04:46, 02:33](1634 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:33](1635 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:26](1635 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:51, 01:29](926 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:31](1627 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:25](990 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:35](1622 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:20](1728 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:24](1639 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:30](1714 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:31](1643 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:56, 02:55](1664 MB)
+PASS -- TEST 'regional_control_intel' [06:25, 04:29](955 MB)
+PASS -- TEST 'regional_restart_intel' [04:31, 02:30](1109 MB)
+PASS -- TEST 'regional_decomp_intel' [06:22, 04:44](947 MB)
+PASS -- TEST 'regional_2threads_intel' [04:23, 02:54](919 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:26, 04:21](1486 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:27](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:30](957 MB)
+PASS -- TEST 'regional_wofs_intel' [07:25, 05:36](2076 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:06, 06:52]
+PASS -- TEST 'rap_control_intel' [08:40, 06:32](1191 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:28](1405 MB)
+PASS -- TEST 'rap_decomp_intel' [08:38, 06:48](1132 MB)
+PASS -- TEST 'rap_2threads_intel' [08:35, 06:13](1374 MB)
+PASS -- TEST 'rap_restart_intel' [05:56, 03:25](1135 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:49, 06:34](1206 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:56](1124 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:58, 04:53](1203 MB)
+PASS -- TEST 'hrrr_control_intel' [05:50, 03:24](1070 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:28](1040 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:12](1126 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:49](1031 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:21](1187 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:41](2006 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:28](2200 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:16]
+PASS -- TEST 'control_csawmg_intel' [07:24, 05:06](821 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:26, 05:05](845 MB)
+PASS -- TEST 'control_ras_intel' [04:15, 02:56](805 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:47]
+PASS -- TEST 'control_wam_intel' [03:22, 01:49](780 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:59]
+PASS -- TEST 'control_p8_faster_intel' [05:04, 02:24](1631 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:34, 04:06](961 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:06]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:18](833 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:12](826 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:29](837 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:15](829 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:23](874 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:26, 03:17](869 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:16, 02:18](837 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:18, 02:19](896 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:30, 02:21](1651 MB)
+PASS -- TEST 'regional_debug_intel' [16:27, 14:10](891 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:17, 03:57](1230 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:55](1220 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:58](1222 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:57](1224 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:00](1218 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:24, 04:06](1304 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 04:02](1218 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:15, 04:03](1212 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:57](1225 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 04:00](1218 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:55](1217 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:02](1225 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 06:28](1224 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 03:55](1222 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:45](1235 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:03](1214 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 06:55](1223 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:41]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:48, 03:15](1282 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:36](1140 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:54](1025 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:38, 05:11](1277 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:40](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:04](992 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:07](1096 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:34](958 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 08:54]
+PASS -- TEST 'conus13km_control_intel' [03:39, 01:44](1291 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:27, 00:42](1208 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 01:04](1150 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:42]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:41](1071 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:39]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:56](1097 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:57](1089 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:36, 11:46](1344 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 11:50](998 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:41](1239 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:32, 11:34](1394 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 04:01](1151 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:06, 10:07]
+PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:25](874 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 04:57](1269 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:09, 06:15](967 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](986 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:06, 14:55](1013 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:37](604 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 07:02](615 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:57](432 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:00, 08:10](544 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:59](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:39](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:54](672 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:31](447 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:14](633 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:33](726 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:54, 17:10](813 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:05]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:53, 10:12](792 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:06, 09:26]
+PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:30](952 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:32](930 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:18](1341 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:21]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:10](1160 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:24](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:10, 02:05](1007 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:08](1008 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:08](1011 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:09](1131 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:08](1153 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 02:05](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:47, 04:58](1169 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:55](1142 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1147 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:01](2435 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:04](2433 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:51]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:09, 05:11](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:15]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:09](1154 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:50]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:20, 00:54](338 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:51](562 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:32](563 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:03, 05:59](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 05:50](1647 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 03:12](939 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:07, 09:36]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:31](1697 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:09, 09:11]
+PASS -- TEST 'control_atmwav_intel' [03:39, 01:26](698 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:07, 07:09]
+PASS -- TEST 'atmaero_control_p8_intel' [05:46, 03:32](1776 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:15](1804 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:26](1821 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:07, 07:08]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:53]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:21](4597 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:06, 05:06]
+PASS -- TEST 'control_c48_gnu' [11:25, 09:43](872 MB)
+PASS -- TEST 'control_stochy_gnu' [04:17, 02:17](728 MB)
+PASS -- TEST 'control_ras_gnu' [05:14, 03:41](730 MB)
+PASS -- TEST 'control_p8_gnu' [05:50, 03:38](1513 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:42, 03:27](1514 MB)
+PASS -- TEST 'control_flake_gnu' [06:15, 04:24](812 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:06, 04:29]
+PASS -- TEST 'rap_control_gnu' [09:45, 07:37](1084 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:31, 07:59](1086 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:30, 07:16](1147 MB)
+PASS -- TEST 'rap_restart_gnu' [05:55, 03:57](888 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 07:46](1084 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 07:46](1087 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 05:47](883 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:34, 04:00](1074 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:06](1135 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:32, 03:40](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:30, 04:04](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:03](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:00](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:48, 07:37](1089 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:05, 07:07]
+PASS -- TEST 'control_diag_debug_gnu' [03:20, 01:16](774 MB)
+PASS -- TEST 'regional_debug_gnu' [08:26, 06:14](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:15, 01:54](1096 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:13, 02:04](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:02](1091 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 02:01](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:05](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:13](1095 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:02](1095 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:01](1091 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:09](723 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:15, 01:16](727 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:26, 01:17](1503 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:05](1102 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:07](1099 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:43, 03:15](1105 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:06, 03:17]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:36]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:10](963 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 03:46](953 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:44, 06:46](969 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:28](891 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:48](953 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 05:30](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:16, 02:03](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:25, 01:04](1170 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:23, 01:25](943 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:06, 12:13]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:21](993 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:06, 11:27]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:53](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:22](1279 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:25, 05:30](966 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:16](1186 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:32](1346 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 12:04]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 01:58](1003 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:06, 16:56]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:48]
+
+PASS -- COMPILE 's2swa_debug_gnu' [14:06, 12:49]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:05, 17:06]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:11]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 16:24]
SYNOPSIS:
-Starting Date/Time: 20240307 12:40:39
-Ending Date/Time: 20240307 14:01:16
+Starting Date/Time: 20240311 19:30:53
+Ending Date/Time: 20240311 20:51:18
Total Time: 01h:21m:01s
Compiles Completed: 53/53
Tests Completed: 234/234
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 212c002f65..baab0a3452 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,15 +1,38 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d4bf6f3ada023864cca106d27994f69b90edba87
+0993150ece5c5e28868602030dd75601a1277888
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
+ cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -25,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3482337
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1350785
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:17, 37:43]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:41, 06:56](1791 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 49:10]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 20:47](1648 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:16](1878 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:27](998 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:28, 23:50](1623 MB)
-
-PASS -- COMPILE 's2swa_intel' [38:16, 36:56]
-PASS -- TEST 'cpld_control_p8_intel' [13:24, 07:39](1831 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:42, 07:50](1813 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:26](1705 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:23, 07:30](1867 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:45, 04:39](1729 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 07:01](2263 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:24, 07:43](1813 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:45, 06:37](1789 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:55](1820 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:19](1798 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:16, 35:54]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 06:00](1657 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:25, 05:48](1706 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:03]
-PASS -- TEST 'cpld_debug_p8_intel' [13:43, 10:47](1854 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:45]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:23](1677 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:15, 32:01]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:22, 05:48](1707 MB)
-
-PASS -- COMPILE 's2s_intel' [33:17, 32:02]
-PASS -- TEST 'cpld_control_c48_intel' [15:01, 12:40](2795 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:41, 33:07]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:38, 07:08](1831 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [51:24, 47:24]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:18, 21:04](1679 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:31, 10:36](1034 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:14, 24:19](1659 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:49]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:28, 32:17](1692 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:35]
-PASS -- TEST 'control_flake_intel' [06:28, 04:24](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:28, 04:05](601 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:49](601 MB)
-PASS -- TEST 'control_latlon_intel' [05:25, 03:19](595 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:25](595 MB)
-PASS -- TEST 'control_c48_intel' [11:36, 10:07](840 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:10](843 MB)
-PASS -- TEST 'control_c192_intel' [14:47, 12:27](730 MB)
-PASS -- TEST 'control_c384_intel' [19:37, 16:26](892 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:10, 14:07](1015 MB)
-PASS -- TEST 'control_stochy_intel' [04:25, 02:15](599 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:18](432 MB)
-PASS -- TEST 'control_lndp_intel' [04:25, 02:15](608 MB)
-PASS -- TEST 'control_iovr4_intel' [05:29, 03:21](597 MB)
-PASS -- TEST 'control_iovr5_intel' [05:28, 03:23](601 MB)
-PASS -- TEST 'control_p8_intel' [07:17, 04:11](1575 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 04:12](1574 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1575 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:17, 02:10](813 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:26, 04:11](1565 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:08, 02:07](843 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:22, 04:07](1564 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:58](1663 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:03, 07:15](1575 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:46, 05:19](1638 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:44, 04:03](1580 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:01, 04:45](1581 MB)
-PASS -- TEST 'regional_control_intel' [09:53, 07:10](763 MB)
-PASS -- TEST 'regional_restart_intel' [05:37, 03:50](935 MB)
-PASS -- TEST 'regional_decomp_intel' [09:53, 07:43](760 MB)
-PASS -- TEST 'regional_2threads_intel' [06:53, 04:36](758 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 07:06](770 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:34, 07:07](760 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:16, 32:41]
-PASS -- TEST 'rap_control_intel' [12:59, 10:07](993 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 05:43](1213 MB)
-PASS -- TEST 'rap_decomp_intel' [12:56, 10:36](987 MB)
-PASS -- TEST 'rap_2threads_intel' [12:32, 09:44](1085 MB)
-PASS -- TEST 'rap_restart_intel' [08:26, 05:18](995 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:31, 10:05](989 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:14, 10:47](981 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 07:37](999 MB)
-PASS -- TEST 'hrrr_control_intel' [07:55, 05:14](986 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:22](984 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 04:47](1054 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:55](914 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:19, 10:01](988 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:22](1946 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:26, 11:59](1937 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:16, 31:08]
-PASS -- TEST 'control_csawmg_intel' [09:47, 07:55](691 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:48, 07:49](696 MB)
-PASS -- TEST 'control_ras_intel' [06:23, 04:22](670 MB)
-
-PASS -- COMPILE 'wam_intel' [31:17, 29:58]
-PASS -- TEST 'control_wam_intel' [04:18, 02:42](495 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:16, 31:48]
-PASS -- TEST 'control_p8_faster_intel' [06:30, 03:45](1582 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:39, 06:37](762 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:44]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:21](767 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:22](767 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:45](780 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:23](770 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:17](811 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:41, 05:10](814 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:20, 03:28](776 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:32, 03:29](826 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:43, 03:37](1606 MB)
-PASS -- TEST 'regional_debug_intel' [23:50, 21:41](783 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:25, 06:00](1156 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:53](1149 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:59](1150 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 06:01](1154 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 06:00](1154 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:23](1242 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:08](1155 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:07](1156 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:04](1154 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 06:04](1159 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:04](1155 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 06:01](1155 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:22, 09:50](1153 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:58](1152 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:24](1159 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:22, 06:03](1155 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:32, 10:23](1168 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:45]
-PASS -- TEST 'control_wam_debug_intel' [08:21, 06:11](443 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:17, 30:06]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 05:08](1075 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:54, 08:17](901 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:25](864 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 07:53](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:45, 04:01](910 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:05, 04:39](853 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:26, 06:17](907 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:21, 02:22](847 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:20, 42:33]
-PASS -- TEST 'conus13km_control_intel' [04:59, 02:57](1106 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:25](1055 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1026 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:16, 30:23]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 05:33](903 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:10]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:55](1030 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:20, 05:49](1034 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:04, 18:25](1148 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:32](854 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:38](1090 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:59, 18:20](1208 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 06:05](1071 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:17, 34:53]
-PASS -- TEST 'hafs_regional_atm_intel' [10:19, 07:10](714 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 06:35](1083 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:33](767 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](804 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:38, 18:24](824 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:04, 05:47](774 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:15, 31:36]
-PASS -- TEST 'hafs_regional_docn_intel' [11:23, 08:45](768 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:24, 08:44](757 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:08, 08:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:36](1058 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 02:15](1032 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:19, 03:31](920 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:37](927 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:31](922 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1076 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:37](1061 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:34](930 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:50](885 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:14, 07:44](840 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:35](1068 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:57](2402 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:03](2400 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:13]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:16, 08:03](993 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 03:36](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 01:38](227 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 01:28](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:49](248 MB)
-
-PASS -- COMPILE 'atml_intel' [40:18, 38:37]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:38, 09:06](1598 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:39, 08:46](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:40, 04:16](874 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:18, 31:29]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:20](1591 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:19, 31:31]
-PASS -- TEST 'control_atmwav_intel' [05:13, 02:18](610 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 30:57]
-PASS -- TEST 'atmaero_control_p8_intel' [08:23, 05:16](1699 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:23](1720 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:40](1730 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:16, 37:43]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:31, 06:50](1791 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:19, 46:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:01, 20:34](1667 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:08, 22:03](1885 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:09, 10:10](993 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:42, 23:46](1631 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:16, 38:21]
+PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:28](1823 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:39, 07:33](1832 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:46, 04:20](1716 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 07:32](1858 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:27](1728 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:17, 07:10](2266 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 07:35](1833 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 06:22](1785 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:39, 07:26](1815 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:32, 07:07](1795 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:16, 35:41]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:49](1665 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:42](1714 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:00]
+PASS -- TEST 'cpld_debug_p8_intel' [13:33, 10:27](1843 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:26]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:20, 07:14](1674 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:15, 31:39]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:36, 05:38](1722 MB)
+
+PASS -- COMPILE 's2s_intel' [33:14, 32:03]
+PASS -- TEST 'cpld_control_c48_intel' [15:06, 12:43](2802 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:32, 32:51]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:40, 07:00](1828 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [46:19, 45:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:27, 20:39](1682 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:29, 10:16](1032 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:27, 23:51](1661 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:29]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:23, 31:59](1697 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:17, 33:49]
+PASS -- TEST 'control_flake_intel' [06:25, 04:29](645 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:27, 03:15](597 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:44](610 MB)
+PASS -- TEST 'control_latlon_intel' [05:25, 03:19](603 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:24](600 MB)
+PASS -- TEST 'control_c48_intel' [11:34, 10:05](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:35, 10:11](839 MB)
+PASS -- TEST 'control_c192_intel' [14:44, 12:19](727 MB)
+PASS -- TEST 'control_c384_intel' [18:42, 15:47](898 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:13, 13:29](1009 MB)
+PASS -- TEST 'control_stochy_intel' [04:25, 02:15](606 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:20, 01:17](432 MB)
+PASS -- TEST 'control_lndp_intel' [04:25, 02:08](594 MB)
+PASS -- TEST 'control_iovr4_intel' [05:28, 03:22](598 MB)
+PASS -- TEST 'control_iovr5_intel' [05:28, 03:18](597 MB)
+PASS -- TEST 'control_p8_intel' [06:18, 04:01](1579 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:58](1578 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 03:50](1579 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:18, 02:08](810 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:27, 03:50](1565 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:05](838 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:28, 04:03](1561 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:39](1660 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:53](1579 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 05:10](1642 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:00](1579 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:00, 04:32](1584 MB)
+PASS -- TEST 'regional_control_intel' [08:50, 07:02](765 MB)
+PASS -- TEST 'regional_restart_intel' [05:41, 03:48](938 MB)
+PASS -- TEST 'regional_decomp_intel' [09:50, 07:25](760 MB)
+PASS -- TEST 'regional_2threads_intel' [06:41, 04:18](754 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 07:01](767 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 06:57](763 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:16, 32:07]
+PASS -- TEST 'rap_control_intel' [12:07, 09:59](993 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 05:29](1217 MB)
+PASS -- TEST 'rap_decomp_intel' [13:02, 10:35](988 MB)
+PASS -- TEST 'rap_2threads_intel' [12:04, 09:29](1084 MB)
+PASS -- TEST 'rap_restart_intel' [08:29, 05:21](984 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:28, 09:57](994 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:03, 10:41](986 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:35, 07:33](1000 MB)
+PASS -- TEST 'hrrr_control_intel' [07:56, 05:08](992 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:26](988 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:44](1061 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:48](927 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:15, 09:52](982 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:16](1943 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:59](1940 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:15, 30:33]
+PASS -- TEST 'control_csawmg_intel' [09:46, 07:46](694 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:46, 07:41](696 MB)
+PASS -- TEST 'control_ras_intel' [06:24, 04:20](671 MB)
+
+PASS -- COMPILE 'wam_intel' [31:13, 29:25]
+PASS -- TEST 'control_wam_intel' [04:18, 02:41](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:14, 31:16]
+PASS -- TEST 'control_p8_faster_intel' [06:32, 03:29](1574 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:41, 06:29](766 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:10]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:18](763 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:19](759 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:42](761 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:22](769 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:10](810 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:40, 05:11](809 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:20, 03:26](776 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:29, 03:29](822 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:45, 03:33](1601 MB)
+PASS -- TEST 'regional_debug_intel' [23:45, 21:39](776 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:21, 06:00](1157 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:53](1148 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:57](1151 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:58](1150 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:19, 05:58](1159 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:17](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:07](1148 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:08](1150 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:22, 06:07](1151 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:59](1158 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:21, 05:55](1151 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 06:00](1148 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:48](1147 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:54](1143 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:23, 07:09](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:21, 06:02](1152 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:32, 10:22](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:36]
+PASS -- TEST 'control_wam_debug_intel' [08:19, 06:08](443 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 29:29]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:07](1073 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 08:12](898 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 04:18](873 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:23, 07:50](944 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:51, 04:00](913 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:06, 04:38](858 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:13](900 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 02:22](850 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:17, 42:14]
+PASS -- TEST 'conus13km_control_intel' [04:55, 02:52](1109 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:20](1053 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:38](1023 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 30:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:44, 05:27](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:53](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:51](1029 MB)
+PASS -- TEST 'conus13km_debug_intel' [20:59, 18:23](1142 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [20:59, 18:31](885 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:43](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:54, 18:23](1207 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:45]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 06:03](1075 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:19, 34:08]
+PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:52](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:25, 06:22](1080 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:16](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:24, 16:18](798 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 18:07](822 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:05, 05:42](774 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:16, 31:02]
+PASS -- TEST 'hafs_regional_docn_intel' [11:25, 08:30](770 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:25, 08:42](752 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:08, 07:47]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 03:35](1051 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:10](1016 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:31](940 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:18, 03:30](920 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:37](921 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:36](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:37](1051 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:31](917 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:50](882 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:11, 07:45](860 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:37](1054 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 05:01](2415 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:56](2404 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:03]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:17, 07:58](1012 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:44]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:16, 03:32](1046 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 01:32](233 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:16](252 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:49](254 MB)
+
+PASS -- COMPILE 'atml_intel' [35:15, 33:55]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:10](1596 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:42, 08:06](1596 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 04:20](873 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:14, 32:10]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:17](1606 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:17, 31:50]
+PASS -- TEST 'control_atmwav_intel' [05:10, 02:10](614 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:14, 30:26]
+PASS -- TEST 'atmaero_control_p8_intel' [08:26, 05:10](1693 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 06:19](1719 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:36](1734 MB)
SYNOPSIS:
-Starting Date/Time: 20240308 14:58:48
-Ending Date/Time: 20240308 18:29:17
-Total Time: 03h:31m:04s
+Starting Date/Time: 20240311 20:36:45
+Ending Date/Time: 20240312 00:02:36
+Total Time: 03h:26m:28s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 6724076365..4e665fc535 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,19 +1,19 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-84a930a976683e48188f3c0bede701116a9971f6
+8f3ed3644cc80b29dc60d07e7a9946d233a2d6d5
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop-40-g062f795)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop-40-g062f795)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178951
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_149173
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:01, 14:49]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:11, 01:59](2976 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:45, 11:13]
-PASS -- TEST 'cpld_control_gfsv17_intel' [27:28, 02:14](1592 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [08:07, 01:31](1717 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:07, 01:40](845 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:29, 01:17](1576 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:12, 18:53]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [20:01, 01:26](1606 MB)
-
-PASS -- COMPILE 's2swa_intel' [31:24, 27:02]
-PASS -- TEST 'cpld_control_p8_intel' [11:49, 01:35](3015 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:49, 01:49](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [01:53, 01:43](3061 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:49, 01:19](3026 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [01:51, 01:37](3080 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:49, 01:59](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 01:30](3002 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:50, 01:58](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:49, 01:56](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [11:58, 03:49](3951 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [51:39, 04:12](4251 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:49, 02:00](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:43, 10:35]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [28:30, 01:11](1586 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:30, 01:20](1635 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [23:07, 19:25]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:04, 01:23](1631 MB)
-
-PASS -- COMPILE 's2s_intel' [13:41, 09:43]
-PASS -- TEST 'cpld_control_c48_intel' [29:31, 01:04](2645 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [31:28, 27:03]
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:44, 02:12](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 21:31]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:01, 01:48](1605 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:52, 00:54](899 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [55:13, 01:01](1582 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:28, 04:14]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:45, 01:06](1616 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [32:34, 28:33]
-PASS -- TEST 'control_flake_intel' [01:56, 00:38](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [01:56, 00:49](523 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:37, 00:47](531 MB)
-PASS -- TEST 'control_latlon_intel' [01:30, 00:53](523 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:30, 01:05](523 MB)
-PASS -- TEST 'control_c48_intel' [01:27, 01:08](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [01:19, 01:22](715 MB)
-PASS -- TEST 'control_c192_intel' [01:07, 01:04](639 MB)
-PASS -- TEST 'control_c384_intel' [55:01, 01:45](955 MB)
-PASS -- TEST 'control_c384gdas_intel' [54:59, 02:10](1092 MB)
-PASS -- TEST 'control_stochy_intel' [54:54, 01:11](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [50:09, 00:30](333 MB)
-PASS -- TEST 'control_lndp_intel' [54:41, 00:17](528 MB)
-PASS -- TEST 'control_iovr4_intel' [54:41, 00:27](522 MB)
-PASS -- TEST 'control_iovr5_intel' [54:21, 01:20](522 MB)
-PASS -- TEST 'control_p8_intel' [54:21, 01:15](1500 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [54:03, 02:00](1499 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [53:46, 01:34](1500 MB)
-PASS -- TEST 'control_restart_p8_intel' [46:40, 01:10](687 MB)
-PASS -- TEST 'control_noqr_p8_intel' [53:41, 01:08](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [45:28, 01:29](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [53:35, 01:09](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [53:10, 00:51](1591 MB)
-PASS -- TEST 'control_p8_lndp_intel' [52:23, 00:59](1500 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [52:22, 01:58](1564 MB)
-PASS -- TEST 'control_p8_mynn_intel' [51:32, 00:59](1515 MB)
-PASS -- TEST 'merra2_thompson_intel' [51:19, 01:56](1514 MB)
-PASS -- TEST 'regional_control_intel' [51:12, 00:45](608 MB)
-PASS -- TEST 'regional_restart_intel' [41:07, 00:54](778 MB)
-PASS -- TEST 'regional_decomp_intel' [50:54, 01:08](608 MB)
-PASS -- TEST 'regional_2threads_intel' [50:33, 00:23](663 MB)
-PASS -- TEST 'regional_noquilt_intel' [50:32, 00:50](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [50:28, 00:52](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [50:14, 00:47](611 MB)
-PASS -- TEST 'regional_wofs_intel' [49:48, 00:46](1577 MB)
-
-PASS -- COMPILE 'rrfs_intel' [26:11, 22:04]
-PASS -- TEST 'rap_control_intel' [03:19, 01:26](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:20, 00:48](1091 MB)
-PASS -- TEST 'rap_decomp_intel' [03:19, 01:07](917 MB)
-PASS -- TEST 'rap_2threads_intel' [03:18, 01:26](1005 MB)
-PASS -- TEST 'rap_restart_intel' [49:11, 01:21](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [03:19, 01:43](917 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:27, 02:14](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [48:41, 01:54](787 MB)
-PASS -- TEST 'hrrr_control_intel' [02:21, 01:24](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [47:52, 01:39](916 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [47:14, 01:27](994 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [45:24, 00:41](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [45:20, 02:06](911 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [45:19, 00:57](1877 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:04, 01:13](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [17:50, 14:56]
-PASS -- TEST 'control_csawmg_intel' [10:40, 00:54](602 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:40, 01:02](593 MB)
-PASS -- TEST 'control_ras_intel' [10:40, 00:33](559 MB)
-
-PASS -- COMPILE 'wam_intel' [14:43, 13:04]
-PASS -- TEST 'control_wam_intel' [12:45, 00:13](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [20:06, 19:16]
-PASS -- TEST 'control_p8_faster_intel' [04:05, 02:01](1508 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:04, 00:33](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [18:02, 16:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:52, 00:21](689 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:31](692 MB)
-PASS -- TEST 'control_stochy_debug_intel' [44:05, 00:53](689 MB)
-PASS -- TEST 'control_lndp_debug_intel' [44:00, 01:15](691 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [44:00, 00:45](733 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [42:55, 00:22](729 MB)
-PASS -- TEST 'control_ras_debug_intel' [42:36, 00:47](705 MB)
-PASS -- TEST 'control_diag_debug_intel' [41:27, 00:48](747 MB)
-PASS -- TEST 'control_debug_p8_intel' [41:23, 00:43](1525 MB)
-PASS -- TEST 'regional_debug_intel' [41:03, 00:59](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [41:03, 00:34](1080 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [40:52, 00:39](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [40:32, 00:39](1072 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [40:26, 00:50](1077 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 01:02](1076 MB)
-PASS -- TEST 'rap_diag_debug_intel' [39:56, 01:13](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:20, 00:31](1077 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:00, 00:56](1074 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [38:45, 00:32](1077 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:16, 00:46](1075 MB)
-PASS -- TEST 'rap_noah_debug_intel' [38:15, 00:51](1070 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [38:08, 00:58](1070 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:03, 01:05](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [37:40, 01:11](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [37:34, 01:14](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [37:01, 01:20](1074 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:29, 01:50](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:43, 08:13]
-PASS -- TEST 'control_wam_debug_intel' [10:17, 00:34](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:07, 18:36]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:27, 00:52](952 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [36:03, 01:26](791 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:47, 01:57](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [35:33, 01:39](851 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [35:21, 01:14](840 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:08, 02:10](788 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:54, 01:50](685 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:57, 00:56](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:14, 22:23]
-PASS -- TEST 'conus13km_control_intel' [35:06, 00:54](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [30:46, 00:38](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [30:37, 00:20](882 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:46, 14:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:57, 01:02](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:35, 05:59]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:08, 00:56](949 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:08, 00:57](952 MB)
-PASS -- TEST 'conus13km_debug_intel' [04:08, 00:45](1035 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [04:08, 00:27](712 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [04:09, 00:18](1039 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [04:08, 00:42](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:41, 08:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:17, 01:08](982 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:40, 10:40]
-PASS -- TEST 'hafs_regional_atm_intel' [33:10, 02:10](624 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 00:34](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:45, 02:08](667 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [32:36, 01:22](700 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:32, 02:03](706 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [32:13, 01:04](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [32:04, 02:16](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [31:59, 01:21](278 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:44, 02:40](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:16, 01:21](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [30:55, 00:53](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:40, 01:28](491 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:36, 01:17](312 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:26, 03:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:28, 00:48](501 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:59, 14:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [30:13, 01:37](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [30:00, 01:05](709 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:47, 12:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:52, 01:11](711 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:56, 09:53]
-PASS -- TEST 'hafs_regional_docn_intel' [29:18, 01:39](659 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:46, 01:37](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:32, 00:56](881 MB)
-
-PASS -- COMPILE 'atml_intel' [13:51, 10:01]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:01, 01:26](1546 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [28:00, 01:31](1545 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:00, 01:09](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [20:07, 17:38]
-PASS -- TEST 'atmaero_control_p8_intel' [27:56, 01:45](2854 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [27:54, 01:08](2913 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:06, 01:11](2920 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:58, 13:23]
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:42, 08:57]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:58, 00:52](4434 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:55, 20:46]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [25:37, 01:22](2971 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:27, 34:10]
+PASS -- TEST 'cpld_control_gfsv17_intel' [13:05, 02:16](1585 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:41, 01:26](1706 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [54:25, 02:00](845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:06, 01:57](1569 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:18, 29:58]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [17:15, 01:24](1599 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:49, 18:04]
+PASS -- TEST 'cpld_control_p8_intel' [28:43, 01:27](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:43, 01:42](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [20:15, 02:02](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [28:43, 01:23](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [20:15, 01:58](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [28:43, 01:07](3317 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [28:43, 01:31](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [28:44, 01:31](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:43, 01:41](3000 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:52, 04:33](3950 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:44, 04:16](4245 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [28:43, 01:55](2968 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:34, 10:29]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [35:58, 00:53](1587 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:58, 02:11](1635 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:36, 10:53]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:56, 01:01](1635 MB)
+
+PASS -- COMPILE 's2s_intel' [10:32, 09:48]
+PASS -- TEST 'cpld_control_c48_intel' [36:59, 00:49](2657 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:54, 18:47]
+PASS -- TEST 'cpld_control_p8_faster_intel' [27:38, 01:51](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:06, 23:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 01:21](1604 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:30, 00:41](899 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:53, 00:58](1583 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:21, 04:15]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:12, 01:09](1617 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:51, 18:07]
+PASS -- TEST 'control_flake_intel' [23:20, 00:24](578 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [23:21, 00:47](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:20, 00:41](528 MB)
+PASS -- TEST 'control_latlon_intel' [23:21, 00:43](520 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:20, 00:51](523 MB)
+PASS -- TEST 'control_c48_intel' [23:20, 00:51](716 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [23:19, 00:58](717 MB)
+PASS -- TEST 'control_c192_intel' [23:20, 00:32](636 MB)
+PASS -- TEST 'control_c384_intel' [23:24, 01:51](953 MB)
+PASS -- TEST 'control_c384gdas_intel' [23:25, 02:27](1092 MB)
+PASS -- TEST 'control_stochy_intel' [23:21, 00:22](526 MB)
+PASS -- TEST 'control_stochy_restart_intel' [20:52, 01:04](335 MB)
+PASS -- TEST 'control_lndp_intel' [23:20, 00:27](526 MB)
+PASS -- TEST 'control_iovr4_intel' [23:20, 00:45](526 MB)
+PASS -- TEST 'control_iovr5_intel' [23:20, 00:46](521 MB)
+PASS -- TEST 'control_p8_intel' [23:20, 02:03](1506 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [23:21, 01:58](1498 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [23:21, 02:05](1511 MB)
+PASS -- TEST 'control_restart_p8_intel' [17:41, 00:41](695 MB)
+PASS -- TEST 'control_noqr_p8_intel' [23:20, 02:02](1488 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [17:41, 00:42](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:32](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [20:53, 00:54](1598 MB)
+PASS -- TEST 'control_p8_lndp_intel' [20:15, 01:15](1499 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [20:08, 02:05](1556 MB)
+PASS -- TEST 'control_p8_mynn_intel' [20:02, 01:48](1518 MB)
+PASS -- TEST 'merra2_thompson_intel' [20:00, 01:33](1513 MB)
+PASS -- TEST 'regional_control_intel' [19:49, 00:17](609 MB)
+PASS -- TEST 'regional_restart_intel' [13:55, 00:25](777 MB)
+PASS -- TEST 'regional_decomp_intel' [19:47, 00:52](610 MB)
+PASS -- TEST 'regional_2threads_intel' [19:48, 00:52](673 MB)
+PASS -- TEST 'regional_noquilt_intel' [19:46, 00:31](1140 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [19:44, 00:24](611 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [19:39, 01:10](608 MB)
+PASS -- TEST 'regional_wofs_intel' [18:53, 00:58](1580 MB)
+
+PASS -- COMPILE 'rrfs_intel' [21:57, 21:33]
+PASS -- TEST 'rap_control_intel' [15:03, 01:28](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:04, 01:05](1094 MB)
+PASS -- TEST 'rap_decomp_intel' [15:03, 01:41](917 MB)
+PASS -- TEST 'rap_2threads_intel' [15:03, 02:00](1012 MB)
+PASS -- TEST 'rap_restart_intel' [06:16, 01:19](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [15:03, 01:14](913 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:03, 01:40](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:28, 01:53](785 MB)
+PASS -- TEST 'hrrr_control_intel' [15:03, 01:08](911 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [15:03, 01:03](906 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [15:02, 01:25](994 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [09:53, 01:03](743 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [14:35, 01:16](908 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 01:02](1877 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 01:17](1863 MB)
+
+PASS -- COMPILE 'csawmg_intel' [25:11, 23:56]
+PASS -- TEST 'control_csawmg_intel' [10:46, 00:29](600 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:46, 00:32](598 MB)
+PASS -- TEST 'control_ras_intel' [10:46, 00:55](560 MB)
+
+PASS -- COMPILE 'wam_intel' [14:41, 14:08]
+PASS -- TEST 'control_wam_intel' [18:46, 00:50](270 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:40, 12:32]
+PASS -- TEST 'control_p8_faster_intel' [14:18, 02:04](1517 MB)
+PASS -- TEST 'regional_control_faster_intel' [13:51, 00:32](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [22:02, 20:47]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:36, 01:17](688 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:36, 01:26](689 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:36, 00:56](692 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:36, 01:14](690 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:36, 00:43](736 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 00:50](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:36, 01:11](702 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:36, 01:17](744 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:36, 01:05](1516 MB)
+PASS -- TEST 'regional_debug_intel' [05:35, 01:07](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:36, 01:01](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:36, 01:08](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:49, 01:02](1070 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:49, 00:59](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:47, 00:57](1077 MB)
+PASS -- TEST 'rap_diag_debug_intel' [03:46, 00:47](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [01:28, 00:54](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:26, 00:54](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [01:07, 01:02](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [01:06, 01:04](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [01:06, 01:10](1073 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [01:02, 01:02](1077 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [00:58, 00:58](1071 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [00:56, 01:06](1078 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [00:53, 01:14](1074 MB)
+PASS -- TEST 'rap_flake_debug_intel' [00:50, 01:01](1080 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:26, 01:21](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:21, 04:54]
+PASS -- TEST 'control_wam_debug_intel' [18:25, 00:55](299 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:46, 15:42]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 01:25](954 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 01:24](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:34, 01:41](787 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 01:49](852 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:35, 01:34](842 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 01:32](791 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [59:05, 01:42](692 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [00:00, 00:16](669 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:07, 22:14]
+PASS -- TEST 'conus13km_control_intel' [59:05, 01:01](1001 MB)
+PASS -- TEST 'conus13km_2threads_intel' [55:08, 00:59](1006 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [54:53, 00:43](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:00, 21:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:00, 01:32](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:50, 16:08]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:50, 01:04](953 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:49, 01:13](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [58:59, 00:37](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [58:57, 00:30](711 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [58:08, 00:41](1039 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:06, 00:38](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:35, 09:26]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 01:05](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:40, 10:51]
+PASS -- TEST 'hafs_regional_atm_intel' [57:36, 01:58](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:18, 01:18](967 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:05, 01:58](661 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [54:54, 01:43](697 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:27, 01:18](708 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [54:26, 01:11](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:24, 02:14](405 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [54:22, 01:26](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:21, 02:36](375 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:00, 01:36](421 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:15, 00:54](424 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:17, 00:44](490 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:16, 01:22](315 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [18:56, 18:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:08, 00:54](498 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:59, 17:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:07, 01:44](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:36, 00:52](713 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:48, 16:22]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [52:35, 00:58](719 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:40, 11:31]
+PASS -- TEST 'hafs_regional_docn_intel' [52:12, 01:22](661 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:10, 01:25](650 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [51:20, 00:50](882 MB)
+
+PASS -- COMPILE 'atml_intel' [22:04, 21:04]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:30, 02:17](1549 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [44:30, 02:20](1542 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:36, 00:19](744 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:38, 10:31]
+PASS -- TEST 'atmaero_control_p8_intel' [51:14, 01:37](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [49:47, 01:00](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:38, 01:39](2922 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:39, 12:23]
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:36, 09:50]
+PASS -- TEST 'regional_atmaq_debug_intel' [49:32, 01:35](4432 MB)
SYNOPSIS:
-Starting Date/Time: 20240307 21:16:31
-Ending Date/Time: 20240307 22:59:22
-Total Time: 01h:43m:27s
+Starting Date/Time: 20240312 13:12:07
+Ending Date/Time: 20240312 14:37:13
+Total Time: 01h:25m:44s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN
index 8eb7b94dc7..3b6a305247 100644
--- a/tests/parm/ufs.configure.atm.IN
+++ b/tests/parm/ufs.configure.atm.IN
@@ -4,7 +4,7 @@
# ESMF #
logKindFlag: @[esmf_logkind]
-globalResourceControl: true
+globalResourceControl: false
# EARTH #
EARTH_component_list: ATM
@@ -15,7 +15,6 @@ EARTH_attributes::
# ATM #
ATM_model: @[atm_model]
ATM_petlist_bounds: @[atm_petlist_bounds]
-ATM_omp_num_threads: @[atm_omp_num_threads]
ATM_attributes::
Verbosity = 0
Diagnostic = 0
diff --git a/tests/parm/ufs.configure.atm_esmf.IN b/tests/parm/ufs.configure.atm_esmf.IN
new file mode 100644
index 0000000000..8eb7b94dc7
--- /dev/null
+++ b/tests/parm/ufs.configure.atm_esmf.IN
@@ -0,0 +1,27 @@
+#############################################
+#### UFS Run-Time Configuration File ######
+#############################################
+
+# ESMF #
+logKindFlag: @[esmf_logkind]
+globalResourceControl: true
+
+# EARTH #
+EARTH_component_list: ATM
+EARTH_attributes::
+ Verbosity = 0
+::
+
+# ATM #
+ATM_model: @[atm_model]
+ATM_petlist_bounds: @[atm_petlist_bounds]
+ATM_omp_num_threads: @[atm_omp_num_threads]
+ATM_attributes::
+ Verbosity = 0
+ Diagnostic = 0
+::
+
+# Run Sequence #
+runSeq::
+ ATM
+::
diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN
index 0c20f20905..6c60333e07 100644
--- a/tests/parm/ufs.configure.atmaero.IN
+++ b/tests/parm/ufs.configure.atmaero.IN
@@ -4,7 +4,7 @@
# ESMF #
logKindFlag: @[esmf_logkind]
-globalResourceControl: true
+globalResourceControl: false
# EARTH #
EARTH_component_list: ATM CHM
@@ -15,7 +15,6 @@ EARTH_attributes::
# ATM #
ATM_model: @[atm_model]
ATM_petlist_bounds: @[atm_petlist_bounds]
-ATM_omp_num_threads: @[atm_omp_num_threads]
ATM_attributes::
Verbosity = 0
::
@@ -23,7 +22,6 @@ ATM_attributes::
# CHM #
CHM_model: @[chm_model]
CHM_petlist_bounds: @[chm_petlist_bounds]
-CHM_omp_num_threads: @[chm_omp_num_threads]
CHM_attributes::
Verbosity = 0
::
diff --git a/tests/parm/ufs.configure.atmaero_esmf.IN b/tests/parm/ufs.configure.atmaero_esmf.IN
new file mode 100644
index 0000000000..0c20f20905
--- /dev/null
+++ b/tests/parm/ufs.configure.atmaero_esmf.IN
@@ -0,0 +1,40 @@
+#############################################
+#### UFS Run-Time Configuration File ######
+#############################################
+
+# ESMF #
+logKindFlag: @[esmf_logkind]
+globalResourceControl: true
+
+# EARTH #
+EARTH_component_list: ATM CHM
+EARTH_attributes::
+ Verbosity = 0
+::
+
+# ATM #
+ATM_model: @[atm_model]
+ATM_petlist_bounds: @[atm_petlist_bounds]
+ATM_omp_num_threads: @[atm_omp_num_threads]
+ATM_attributes::
+ Verbosity = 0
+::
+
+# CHM #
+CHM_model: @[chm_model]
+CHM_petlist_bounds: @[chm_petlist_bounds]
+CHM_omp_num_threads: @[chm_omp_num_threads]
+CHM_attributes::
+ Verbosity = 0
+::
+
+# Run Sequence #
+runSeq::
+ @@[coupling_interval_sec]
+ ATM phase1
+ ATM -> CHM
+ CHM
+ CHM -> ATM
+ ATM phase2
+ @
+::
diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN
index c4b6055fd1..fe33f5da9f 100644
--- a/tests/parm/ufs.configure.leapfrog_atm_wav.IN
+++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN
@@ -4,7 +4,7 @@
# ESMF #
logKindFlag: @[esmf_logkind]
-globalResourceControl: true
+globalResourceControl: false
# EARTH #
EARTH_component_list: ATM WAV
@@ -15,7 +15,6 @@ EARTH_attributes::
# ATM #
ATM_model: @[atm_model]
ATM_petlist_bounds: @[atm_petlist_bounds]
-ATM_omp_num_threads: @[atm_omp_num_threads]
ATM_attributes::
Verbosity = 0
DumpFields = @[DumpFields]
@@ -24,7 +23,6 @@ ATM_attributes::
# WAV #
WAV_model: @[wav_model]
WAV_petlist_bounds: @[wav_petlist_bounds]
-WAV_omp_num_threads: @[wav_omp_num_threads]
WAV_attributes::
Verbosity = 0
::
diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN
new file mode 100644
index 0000000000..c4b6055fd1
--- /dev/null
+++ b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN
@@ -0,0 +1,41 @@
+#############################################
+#### UFS Run-Time Configuration File ######
+#############################################
+
+# ESMF #
+logKindFlag: @[esmf_logkind]
+globalResourceControl: true
+
+# EARTH #
+EARTH_component_list: ATM WAV
+EARTH_attributes::
+ Verbosity = 0
+::
+
+# ATM #
+ATM_model: @[atm_model]
+ATM_petlist_bounds: @[atm_petlist_bounds]
+ATM_omp_num_threads: @[atm_omp_num_threads]
+ATM_attributes::
+ Verbosity = 0
+ DumpFields = @[DumpFields]
+::
+
+# WAV #
+WAV_model: @[wav_model]
+WAV_petlist_bounds: @[wav_petlist_bounds]
+WAV_omp_num_threads: @[wav_omp_num_threads]
+WAV_attributes::
+ Verbosity = 0
+::
+
+
+
+# Run Sequence #
+runSeq::
+ @@[coupling_interval_sec]
+ ATM
+ ATM -> WAV
+ WAV
+ @
+::
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e9271bd81c..e69de29bb2 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,2 +0,0 @@
-cpld_control_c48 intel
-hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel
diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8
index 3c33bc75f7..f9e0a09b1e 100644
--- a/tests/tests/atmaero_control_p8
+++ b/tests/tests/atmaero_control_p8
@@ -66,7 +66,7 @@ export WRITE_DOPOST=.true.
export CPL=.true.
export CPLCHM=.true.
-export UFS_CONFIGURE=ufs.configure.atmaero.IN
+export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN
export atm_model='fv3'
export chm_model='gocart'
diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad
index 0c57cc52e0..05ac7156b7 100644
--- a/tests/tests/atmaero_control_p8_rad
+++ b/tests/tests/atmaero_control_p8_rad
@@ -65,7 +65,7 @@ export WRITE_DOPOST=.true.
export CPL=.true.
export CPLCHM=.true.
-export UFS_CONFIGURE=ufs.configure.atmaero.IN
+export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN
export atm_model='fv3'
export chm_model='gocart'
diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro
index f3908676ff..c2a4171008 100644
--- a/tests/tests/atmaero_control_p8_rad_micro
+++ b/tests/tests/atmaero_control_p8_rad_micro
@@ -65,7 +65,7 @@ export WRITE_DOPOST=.true.
export CPL=.true.
export CPLCHM=.true.
-export UFS_CONFIGURE=ufs.configure.atmaero.IN
+export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN
export atm_model='fv3'
export chm_model='gocart'
diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav
index c6f768ae95..3669edccb0 100644
--- a/tests/tests/control_c384gdas_wav
+++ b/tests/tests/control_c384gdas_wav
@@ -97,7 +97,7 @@ export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb',"
export CPL=.true.
export CPLWAV=.true.
-export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav.IN"
+export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav_esmf.IN"
export atm_model='fv3'
export wav_model='ww3'
export WW3OUTPUTTYPE=' 1'
From e4961eb278ac0eb4d8f672851092e2cd4d072e0d Mon Sep 17 00:00:00 2001
From: Grant Firl
Date: Thu, 14 Mar 2024 16:38:41 -0400
Subject: [PATCH 10/33] Incorporate csawMG update and pass both intel and GNU
RT tests (#2180)
* UFSWM - Update the CS convection scheme
* FV3 - Update the CS convection scheme
* ccpp-physics - Update the CS convection scheme
---
FV3 | 2 +-
modulefiles/ufs_noaacloud.intel.lua | 2 +-
tests/bl_date.conf | 2 +-
tests/ci/repo_check.sh | 24 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 530 ++++++-------
tests/logs/RegressionTests_gaea.log | 544 ++++++-------
tests/logs/RegressionTests_hera.log | 730 +++++++++---------
tests/logs/RegressionTests_hercules.log | 716 ++++++++---------
tests/logs/RegressionTests_jet.log | 478 ++++++------
tests/logs/RegressionTests_orion.log | 632 +++++++--------
tests/logs/RegressionTests_wcoss2.log | 462 +++++------
tests/parm/control_csawmg.nml.IN | 10 +-
tests/parm/csawmg3shoc127.nml.IN | 10 +-
tests/parm/csawmgshoc.nml.IN | 10 +-
tests/rt.conf | 9 +
tests/test_changes.list | 8 +
19 files changed, 2116 insertions(+), 2149 deletions(-)
diff --git a/FV3 b/FV3
index 062f7958cc..21744e21f2 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 062f7958ccd9bd97b8737432f75b06ec734777a7
+Subproject commit 21744e21f2b05c4e327d17ce4d088611403eab7a
diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua
index b2f1d6b759..64ef71a38c 100644
--- a/modulefiles/ufs_noaacloud.intel.lua
+++ b/modulefiles/ufs_noaacloud.intel.lua
@@ -3,7 +3,7 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel
]])
-prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core")
+prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0"
load(pathJoin("stack-intel", stack_intel_ver))
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index cb675814bb..3aa4f1969a 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240301
+export BL_DATE=20240312
diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh
index b8d0487e61..fe42ac0403 100755
--- a/tests/ci/repo_check.sh
+++ b/tests/ci/repo_check.sh
@@ -13,8 +13,8 @@ result() {
}
# Declare variables
-declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake
-submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake"
+declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere
+submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere"
comment=''
ownerID=$1
@@ -39,12 +39,12 @@ ww3[repo]='https://github.com/NOAA-EMC/WW3'
ww3[branch]='dev/ufs-weather-model'
ww3[dir]='WW3'
-stoch[repo]='https://github.com/noaa-psd/stochastic_physics'
+stoch[repo]='https://github.com/noaa-psl/stochastic_physics'
stoch[branch]='master'
stoch[dir]='stochastic_physics'
gocart[repo]='https://github.com/GEOS-ESM/GOCART'
-gocart[branch]='develop'
+gocart[branch]='main'
gocart[dir]='GOCART'
cmeps[repo]='https://github.com/NOAA-EMC/CMEPS'
@@ -63,6 +63,22 @@ cmake[repo]='https://github.com/NOAA-EMC/CMakeModules'
cmake[branch]='develop'
cmake[dir]='CMakeModules'
+ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework'
+ccpp-framework[branch]='main'
+ccpp-framework[dir]='ccpp/framework'
+
+ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics'
+ccpp-physics[branch]='ufs/dev'
+ccpp-physics[dir]='ccpp/physics'
+
+upp[repo]='https://github.com/NOAA-EMC/UPP'
+upp[branch]='develop'
+upp[dir]='upp'
+
+atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
+atmos_cubed_sphere[branch]='main'
+atmos_cubed_sphere[dir]='atmos_cubed_sphere'
+
# Get sha-1's of the top of develop of ufs-weather-model
app="Accept: application/vnd.github.v3+json"
url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop"
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 7607e38a6e..3fc707bec8 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Mar 11 20:39:48 UTC 2024
+Wed Mar 13 16:00:32 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 280.439132
- 0: The maximum resident set size (KB) = 1308136
+ 0: The total amount of wall time = 330.604077
+ 0: The maximum resident set size (KB) = 1306700
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 913.067093
- 0: The maximum resident set size (KB) = 1275248
+ 0: The total amount of wall time = 929.248031
+ 0: The maximum resident set size (KB) = 1291568
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 251.823722
- 0: The maximum resident set size (KB) = 1279488
+ 0: The total amount of wall time = 250.255270
+ 0: The maximum resident set size (KB) = 1278404
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 252.776253
- 0: The maximum resident set size (KB) = 1282664
+ 0: The total amount of wall time = 252.275080
+ 0: The maximum resident set size (KB) = 1281536
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 245.047404
- 0: The maximum resident set size (KB) = 1282668
+ 0: The total amount of wall time = 257.921526
+ 0: The maximum resident set size (KB) = 1278656
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 250.468466
- 0: The maximum resident set size (KB) = 1286552
+ 0: The total amount of wall time = 248.830644
+ 0: The maximum resident set size (KB) = 1281968
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185088/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 247.887313
- 0: The maximum resident set size (KB) = 1284976
+ 0: The total amount of wall time = 250.246300
+ 0: The maximum resident set size (KB) = 1282284
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Mar 12 00:01:04 UTC 2024
-Elapsed time: 03h:21m:16s. Have a nice day!
+Wed Mar 13 17:40:13 UTC 2024
+Elapsed time: 01h:39m:42s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index afe5991427..b33f69d226 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Tue Mar 12 13:26:39 UTC 2024
+Wed Mar 13 18:29:02 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1222.768545
- 0: The maximum resident set size (KB) = 1415220
+ 0: The total amount of wall time = 1390.651720
+ 0: The maximum resident set size (KB) = 1411516
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 523.989093
- 0: The maximum resident set size (KB) = 1403904
+ 0: The total amount of wall time = 388.568533
+ 0: The maximum resident set size (KB) = 1404964
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_221711/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 383.103653
- 0: The maximum resident set size (KB) = 1405844
+ 0: The total amount of wall time = 429.798207
+ 0: The maximum resident set size (KB) = 1403184
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Mar 12 14:29:39 UTC 2024
-Elapsed time: 01h:03m:01s. Have a nice day!
+Wed Mar 13 19:38:16 UTC 2024
+Elapsed time: 01h:09m:15s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 2bb766aa05..67221b9610 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Tue Mar 12 03:42:07 UTC 2024
+Wed Mar 13 19:39:46 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 524.495732
- 0: The maximum resident set size (KB) = 589572
+ 0: The total amount of wall time = 518.481376
+ 0: The maximum resident set size (KB) = 589344
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 522.595246
- 0: The maximum resident set size (KB) = 589600
+ 0: The total amount of wall time = 511.698032
+ 0: The maximum resident set size (KB) = 588824
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_136710/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 514.250208
- 0: The maximum resident set size (KB) = 591872
+ 0: The total amount of wall time = 514.740790
+ 0: The maximum resident set size (KB) = 590320
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Mar 12 04:20:05 UTC 2024
-Elapsed time: 00h:37m:59s. Have a nice day!
+Wed Mar 13 20:34:36 UTC 2024
+Elapsed time: 00h:54m:51s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 08c81925e1..6ecce4c81b 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,20 +1,20 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0993150ece5c5e28868602030dd75601a1277888
+19159d93d74d6f3c37fdf74fb3475e000435f07e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,271 +47,271 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_63518
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_114022
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:39, 20:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:38, 04:59](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:42, 20:56]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 13:52](1683 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:19](1819 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:15, 07:25](955 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:02, 15:49](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:37, 09:41]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 21:38](1697 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:33, 19:45]
-PASS -- TEST 'cpld_control_p8_intel' [10:05, 05:41](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:10, 05:37](3089 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:21, 03:19](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:05, 05:41](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:05, 03:24](3176 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:49, 05:34](3088 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:07, 04:36](3383 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:11, 05:40](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:53, 08:47](3634 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:25, 06:20](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [30:33, 09:50](4339 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:10, 07:17](4645 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:39, 05:19](3063 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:45, 19:08]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:50, 04:13](1679 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 04:17](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:37, 09:46]
-PASS -- TEST 'cpld_debug_p8_intel' [12:17, 07:43](3148 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:34, 09:12]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:19](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:39, 14:34]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:40, 04:17](1721 MB)
-
-PASS -- COMPILE 's2s_intel' [15:39, 14:39]
-PASS -- TEST 'cpld_control_c48_intel' [08:35, 06:36](2667 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:41, 23:35]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:33](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:32, 19:37]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:13, 14:04](1689 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:04, 07:24](1015 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:39, 16:01](1659 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:29, 09:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:03, 22:47](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:27, 12:40]
-PASS -- TEST 'control_flake_intel' [04:58, 03:27](667 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:04, 02:04](617 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:12](624 MB)
-PASS -- TEST 'control_latlon_intel' [04:16, 02:07](617 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:09](617 MB)
-PASS -- TEST 'control_c48_intel' [07:05, 05:15](737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:06, 05:15](740 MB)
-PASS -- TEST 'control_c192_intel' [11:15, 07:55](741 MB)
-PASS -- TEST 'control_c384_intel' [15:10, 08:14](1059 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:12, 07:27](1200 MB)
-PASS -- TEST 'control_stochy_intel' [03:18, 01:28](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:49, 00:52](439 MB)
-PASS -- TEST 'control_lndp_intel' [03:18, 01:24](622 MB)
-PASS -- TEST 'control_iovr4_intel' [04:04, 02:06](620 MB)
-PASS -- TEST 'control_iovr5_intel' [03:55, 02:07](619 MB)
-PASS -- TEST 'control_p8_intel' [05:01, 02:32](1601 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:30](1595 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 02:32](1600 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:45, 01:28](795 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:30](1589 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:25](804 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:00, 02:35](1587 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:54, 04:25](1591 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:00, 03:18](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:13, 02:34](1602 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:09, 03:00](1599 MB)
-PASS -- TEST 'regional_control_intel' [06:34, 04:32](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:30](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:34, 04:45](628 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1162 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:30](1255 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:24, 04:30](629 MB)
-PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:34, 11:17]
-PASS -- TEST 'rap_control_intel' [08:38, 06:11](1003 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 03:51](1193 MB)
-PASS -- TEST 'rap_decomp_intel' [08:32, 06:23](1002 MB)
-PASS -- TEST 'rap_restart_intel' [05:36, 03:13](877 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:30, 06:06](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:42, 04:34](881 MB)
-PASS -- TEST 'hrrr_control_intel' [05:38, 03:14](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:19](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:27, 02:50](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:06, 01:47](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:26, 05:57](997 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:23](1953 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:53, 07:10](1945 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:38, 10:22]
-PASS -- TEST 'control_csawmg_intel' [07:35, 05:12](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:32, 05:08](693 MB)
-PASS -- TEST 'control_ras_intel' [06:05, 02:54](654 MB)
-
-PASS -- COMPILE 'wam_intel' [10:32, 09:36]
-PASS -- TEST 'control_wam_intel' [04:53, 01:56](380 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:33, 12:42]
-PASS -- TEST 'control_p8_faster_intel' [05:09, 02:26](1595 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:29, 04:17](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:28, 08:43]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:34](793 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](792 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:54, 02:53](799 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:37, 02:40](795 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:35, 03:54](840 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 03:51](835 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:56, 02:37](805 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:33, 02:40](849 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:28, 02:38](1621 MB)
-PASS -- TEST 'regional_debug_intel' [17:31, 15:59](661 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:47, 04:39](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:11, 04:32](1174 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:02, 04:46](1179 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:39](1177 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:01, 04:38](1177 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:09, 04:59](1262 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:05, 04:50](1178 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:55, 04:47](1182 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:53, 04:42](1177 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:46, 04:39](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:09, 04:33](1180 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:01, 04:40](1180 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:49, 07:34](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:54, 04:35](1171 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:48, 05:26](1181 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:03, 04:48](1178 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:13, 07:53](1185 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:32, 05:29]
-PASS -- TEST 'control_wam_debug_intel' [05:43, 04:37](420 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:35, 09:45]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:39](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:26, 05:09](880 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 02:48](879 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 02:57](882 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:31, 03:51](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:57, 01:34](775 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:38, 11:54]
-PASS -- TEST 'conus13km_control_intel' [05:10, 01:54](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:57, 00:59](1080 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:08](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:34, 09:57]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:15, 03:40](912 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:40, 05:48]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:53, 04:31](1061 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:48, 04:31](1057 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:03, 13:25](1130 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:36, 13:32](816 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:20, 13:26](1201 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:25, 05:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:01, 04:36](1078 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:30, 15:56]
-PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:37](714 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:40, 05:10](1064 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:48, 06:33](780 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:37, 11:01](793 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:49, 12:00](805 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 04:42](472 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:04, 05:46](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:20](388 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:22](1537 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:30, 03:21](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:44, 03:07](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:43, 03:53](581 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:50, 01:19](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:28, 03:26](788 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:21, 07:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:33, 12:06](614 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:29, 20:11]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:54, 07:16](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:18](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:25, 16:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:29](671 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:36, 14:11]
-PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:42](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:41, 05:37](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:45, 16:05](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:36, 07:47]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:00, 02:34](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:00, 01:33](736 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:53, 02:24](646 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:25](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:36, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:54, 05:48](689 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:47](670 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](1255 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:53, 03:57](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:55, 03:56](1955 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:37, 05:10]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:10](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:32, 07:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 02:28](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:30, 02:28]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:14](308 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:08](450 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:47](450 MB)
-
-PASS -- COMPILE 'atml_intel' [13:43, 13:03]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:54](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:05, 07:02](1637 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:48, 03:53](852 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:28, 12:53]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:36](1633 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:46, 12:33]
-PASS -- TEST 'control_atmwav_intel' [03:16, 01:31](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:29, 10:59]
-PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:38](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:16](2996 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3007 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:23, 10:52]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:29]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:14, 22:19](4530 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:21, 19:19]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:10, 04:57](3077 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:22, 20:04]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:19, 13:50](1685 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:56, 15:11](1818 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 07:13](951 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:18, 15:49](1663 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:17, 08:57]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:14, 21:32](1695 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:28, 19:04]
+PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:37](3092 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:40, 05:36](3094 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:18](3151 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:32, 05:37](3127 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:51, 03:20](3177 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 05:29](3087 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:30, 04:33](3386 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 05:36](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:35, 08:46](3639 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:24, 05:53](3616 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [29:58, 09:54](4342 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:00, 07:16](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:08, 05:22](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:21, 18:23]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 04:13](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:14, 04:14](1725 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:15, 08:54]
+PASS -- TEST 'cpld_debug_p8_intel' [10:29, 07:43](3151 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:23]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:14](1701 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:17, 13:53]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:16](1719 MB)
+
+PASS -- COMPILE 's2s_intel' [14:17, 13:51]
+PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:33](2664 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:38]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:22, 05:30](3098 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:26, 18:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:06, 14:01](1697 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:54, 07:19](1012 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 16:03](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:20, 08:11]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:01, 22:43](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:20]
+PASS -- TEST 'control_flake_intel' [05:03, 03:26](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:57, 02:05](1369 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:06, 02:11](621 MB)
+PASS -- TEST 'control_latlon_intel' [03:53, 02:07](618 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:10](620 MB)
+PASS -- TEST 'control_c48_intel' [06:46, 05:17](737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:51, 05:15](734 MB)
+PASS -- TEST 'control_c192_intel' [09:41, 07:53](738 MB)
+PASS -- TEST 'control_c384_intel' [15:10, 08:13](1063 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:32, 07:16](1198 MB)
+PASS -- TEST 'control_stochy_intel' [02:47, 01:28](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:43, 00:54](438 MB)
+PASS -- TEST 'control_lndp_intel' [02:48, 01:25](623 MB)
+PASS -- TEST 'control_iovr4_intel' [03:59, 02:07](618 MB)
+PASS -- TEST 'control_iovr5_intel' [04:03, 02:08](620 MB)
+PASS -- TEST 'control_p8_intel' [04:46, 02:32](1591 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 02:29](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:28](1595 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:38, 01:25](796 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:47, 02:28](1589 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:23](801 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:43, 02:34](1589 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:44, 04:24](1601 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:59, 03:17](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:54, 02:33](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:03, 02:59](1608 MB)
+PASS -- TEST 'regional_control_intel' [06:16, 04:30](628 MB)
+PASS -- TEST 'regional_restart_intel' [04:06, 02:31](799 MB)
+PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](630 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:11, 04:26](1158 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:07, 04:27](624 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:16, 04:28](633 MB)
+PASS -- TEST 'regional_wofs_intel' [08:13, 05:35](1600 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:20, 10:46]
+PASS -- TEST 'rap_control_intel' [08:32, 06:07](1003 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:59, 03:44](1190 MB)
+PASS -- TEST 'rap_decomp_intel' [08:26, 06:23](1000 MB)
+PASS -- TEST 'rap_restart_intel' [05:24, 03:16](877 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:19, 06:07](1002 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:16, 06:21](1002 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:16, 04:35](877 MB)
+PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](997 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](998 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 02:48](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:56, 01:46](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:13, 05:59](1369 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:22](1955 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:43, 07:09](1947 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:21, 10:05]
+PASS -- TEST 'control_csawmg_intel' [07:14, 05:52](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:20, 05:47](692 MB)
+PASS -- TEST 'control_ras_intel' [03:41, 02:54](654 MB)
+
+PASS -- COMPILE 'wam_intel' [10:20, 09:30]
+PASS -- TEST 'control_wam_intel' [02:32, 01:53](379 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:20]
+PASS -- TEST 'control_p8_faster_intel' [04:44, 02:23](1600 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:16, 04:19](625 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:14, 08:27]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:52, 02:33](793 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:34](792 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:38, 02:50](798 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:32](801 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:25, 03:56](837 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:19, 03:53](836 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](806 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:43, 02:39](851 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:19, 02:37](1624 MB)
+PASS -- TEST 'regional_debug_intel' [18:09, 16:01](664 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:44, 04:38](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1174 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:36](1179 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:37, 04:47](1177 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 04:40](1179 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:48, 04:54](1260 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:42, 04:52](1175 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:45](1179 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:39, 04:40](1365 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:50, 04:38](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:36](1180 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:48, 04:41](1174 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:33, 07:31](1177 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:36, 04:39](1172 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:43, 05:27](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:45, 04:40](1181 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:14, 07:57](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:20, 05:14]
+PASS -- TEST 'control_wam_debug_intel' [05:32, 04:37](419 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:30]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 03:31](1060 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:13, 05:08](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:35, 02:46](880 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:21, 02:54](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 03:54](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:51, 01:33](776 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:47]
+PASS -- TEST 'conus13km_control_intel' [04:08, 01:53](1081 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:11, 00:58](1081 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:09, 01:10](970 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 09:30]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:38](906 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:40](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:23](1054 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:34, 13:17](1131 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:23, 13:27](816 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:12, 13:18](1199 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:29]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:52, 04:34](1080 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:29, 15:28]
+PASS -- TEST 'hafs_regional_atm_intel' [07:08, 04:34](718 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:27, 05:04](1064 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 06:30](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:10, 10:55](793 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:13, 11:59](811 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:49, 04:39](473 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 05:47](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:21](389 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 06:18](459 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:18, 03:19](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 03:06](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 03:51](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:46, 01:16](423 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:32, 03:26](781 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:24, 06:33]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:01](608 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:23, 19:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 07:15](633 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:49, 07:15](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:22, 16:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 05:24](675 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:21, 13:36]
+PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:39](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 05:40](735 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:10](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:31]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:41, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:34](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:44, 02:22](924 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:37, 02:25](638 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:41, 02:30](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:22](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:44, 05:45](686 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:48, 05:43](670 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:59, 03:54](2016 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:58, 03:55](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:18, 04:41]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:09](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:26, 07:28]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:28](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 02:13]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:48, 01:08](308 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:41, 01:03](451 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:43](450 MB)
+
+PASS -- COMPILE 'atml_intel' [13:16, 12:28]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 06:25](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 06:14](1638 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:28, 03:21](846 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:20, 12:07]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:34](1628 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:25, 12:04]
+PASS -- TEST 'control_atmwav_intel' [02:51, 01:28](636 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:20, 10:38]
+PASS -- TEST 'atmaero_control_p8_intel' [06:13, 03:39](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:15](3001 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 04:29](3009 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:21, 10:42]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:18, 06:02]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:41, 22:12](4528 MB)
SYNOPSIS:
-Starting Date/Time: 20240311 16:25:09
-Ending Date/Time: 20240311 17:56:20
-Total Time: 01h:32m:13s
+Starting Date/Time: 20240314 08:25:10
+Ending Date/Time: 20240314 09:53:23
+Total Time: 01h:29m:02s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 7e53960d28..9d9ca9cdaf 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,20 +1,20 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-741c59602c902cd90becadf85cad7f493f510284
+c3745cd3e1ac1ebcc5578002003501f1a674414f
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,278 +47,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_175871
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_42607
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:57]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:05, 07:48](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:15, 23:35]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 14:02](1702 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:35, 14:31](1814 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 07:28](952 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:26, 14:58](1673 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:12, 15:39]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:26, 24:13](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:11, 20:03]
-PASS -- TEST 'cpld_control_p8_intel' [13:13, 08:30](3100 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:23, 08:33](3099 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:13, 05:30](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:04, 08:25](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:16, 05:34](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 06:59](3415 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:59, 08:20](3100 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:34, 07:23](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:22, 08:28](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:13, 10:40](3268 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 07:47](3602 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:15](4039 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:22, 09:45](4343 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:10, 08:15](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [23:15, 21:38]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:20, 05:06](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:31, 05:30](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [16:12, 14:09]
-PASS -- TEST 'cpld_debug_p8_intel' [14:10, 10:16](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [16:12, 14:34]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:07, 06:08](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [53:23, 51:29]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:30, 05:29](1730 MB)
-
-PASS -- COMPILE 's2s_intel' [19:10, 17:54]
-PASS -- TEST 'cpld_control_c48_intel' [09:24, 06:54](2661 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:15, 23:08]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:32, 08:29](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:17, 23:39]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 15:41](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:57, 07:57](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 17:57](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:12, 13:55]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 27:10](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:10, 16:28]
-PASS -- TEST 'control_flake_intel' [05:45, 03:47](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 02:37](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:07, 02:44](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:41, 02:37](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:14, 02:44](623 MB)
-PASS -- TEST 'control_c48_intel' [09:08, 05:39](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:38](727 MB)
-PASS -- TEST 'control_c192_intel' [11:18, 08:57](739 MB)
-PASS -- TEST 'control_c384_intel' [19:38, 16:34](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:47, 15:18](1184 MB)
-PASS -- TEST 'control_stochy_intel' [04:50, 02:00](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:09, 01:01](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:46, 01:59](628 MB)
-PASS -- TEST 'control_iovr4_intel' [06:12, 03:10](623 MB)
-PASS -- TEST 'control_iovr5_intel' [06:10, 03:11](622 MB)
-PASS -- TEST 'control_p8_intel' [07:36, 04:30](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:08, 03:50](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:54](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:12, 01:56](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:55, 03:44](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 01:40](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [08:01, 04:00](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:03, 02:44](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:24, 05:32](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:39](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:59, 03:26](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:43, 03:59](1615 MB)
-PASS -- TEST 'regional_control_intel' [08:30, 04:54](615 MB)
-PASS -- TEST 'regional_restart_intel' [05:09, 02:32](789 MB)
-PASS -- TEST 'regional_decomp_intel' [08:19, 04:51](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:27, 02:50](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:16, 04:55](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:15, 04:35](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 04:43](615 MB)
-PASS -- TEST 'regional_wofs_intel' [09:34, 06:08](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:09, 14:04]
-PASS -- TEST 'rap_control_intel' [11:03, 07:22](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:41, 04:04](1190 MB)
-PASS -- TEST 'rap_decomp_intel' [11:03, 07:04](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [10:35, 06:16](1093 MB)
-PASS -- TEST 'rap_restart_intel' [07:23, 03:28](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:05, 07:28](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:05, 07:14](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:35, 05:21](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:44, 03:57](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 03:54](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:44, 03:11](1081 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:45, 01:57](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:14](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 08:09](1962 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:10, 08:01](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:14, 13:34]
-PASS -- TEST 'control_csawmg_intel' [08:58, 06:03](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:44, 05:59](693 MB)
-PASS -- TEST 'control_ras_intel' [05:52, 03:29](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:12, 12:25]
-PASS -- TEST 'control_wam_intel' [04:48, 02:11](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:14, 17:28]
-PASS -- TEST 'control_p8_faster_intel' [07:36, 04:07](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:53, 04:44](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:08, 11:43]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:47, 03:05](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:02, 03:27](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:23](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:21, 03:14](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:29, 04:36](823 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:23, 04:18](823 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:02, 02:59](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:49, 03:18](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:12, 03:23](1619 MB)
-PASS -- TEST 'regional_debug_intel' [19:56, 16:28](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:54, 05:12](1165 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:53, 05:12](1163 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 05:14](1166 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:51, 05:14](1165 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:39, 05:26](1164 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:19](1250 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:47](1165 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:36, 05:19](1166 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:36, 05:14](1166 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:08](1165 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:13](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:43, 05:13](1163 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:10](1164 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:42, 05:00](1161 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 05:57](1167 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:34, 05:15](1164 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:15, 08:50](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:08, 09:39]
-PASS -- TEST 'control_wam_debug_intel' [07:33, 05:19](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:18, 13:50]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 03:56](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:24](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:08, 03:56](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:18, 05:20](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:11, 02:45](938 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:15, 03:43](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:29](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:39, 02:03](763 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:19, 16:45]
-PASS -- TEST 'conus13km_control_intel' [05:13, 02:14](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:26](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:50, 01:29](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:19, 13:19]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:25, 04:26](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:15, 10:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:34, 05:06](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:40, 05:00](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:11, 14:16](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:11, 14:40](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:27, 08:36](1111 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 13:59](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:15, 10:41]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:07](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:18, 18:32]
-PASS -- TEST 'hafs_regional_atm_intel' [08:26, 05:21](705 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:41, 04:34](1060 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:04, 08:00](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:32, 12:09](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:43, 13:02](798 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:25, 05:24](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:06, 06:52](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:33, 02:59](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:31, 09:06](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 04:00](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:18, 03:30](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:05, 04:39](571 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:03, 01:42](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:50, 04:09](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:31, 13:01](585 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [26:17, 24:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:23, 07:36](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:34, 07:59](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [40:25, 38:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:31, 06:26](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [19:10, 16:57]
-PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:03](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 06:28](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:22, 20:11](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:13, 13:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:31, 02:39](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:30, 02:30](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:40, 02:26](635 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:56](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 02:34](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:29, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:09, 07:29](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:10, 07:20](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:53, 02:49](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:36, 04:38](2011 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:28, 04:35](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:29]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:42](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [15:13, 13:25]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:33](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 04:23]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:03, 02:29](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:59, 02:05](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:56, 01:24](456 MB)
-
-PASS -- COMPILE 'atml_intel' [18:17, 16:43]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:12, 08:14](1639 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:06, 07:44](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 04:54](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [30:22, 28:45]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:35, 02:21](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [17:18, 15:01]
-PASS -- TEST 'control_atmwav_intel' [04:58, 02:00](641 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:10, 15:25]
-PASS -- TEST 'atmaero_control_p8_intel' [09:29, 06:50](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:22, 06:55](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:10, 07:09](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:09, 14:49]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:10, 11:48]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:02, 18:15](4479 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:44]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:16, 11:07](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [36:25, 34:46]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:41, 13:41](1700 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 14:26](1812 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 06:47](949 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:23, 14:52](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 14:00]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 24:41](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:10, 19:45]
+PASS -- TEST 'cpld_control_p8_intel' [17:10, 11:50](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:51, 11:42](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:37, 05:55](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [16:37, 11:58](3123 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:50, 05:27](3176 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:03, 06:37](3414 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [15:52, 12:06](3097 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [15:52, 11:14](3019 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:21, 11:41](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:48, 14:01](3271 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:01, 07:17](3600 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:00, 13:08](4036 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 09:16](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:25, 08:18](3066 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:09, 17:47]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:45, 05:01](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 05:26](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [16:09, 14:33]
+PASS -- TEST 'cpld_debug_p8_intel' [12:51, 10:04](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [16:09, 14:20]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:40, 06:07](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:13, 16:03]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:30](1731 MB)
+
+PASS -- COMPILE 's2s_intel' [18:13, 16:40]
+PASS -- TEST 'cpld_control_c48_intel' [09:23, 06:55](2661 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:15, 23:59]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:01, 11:40](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:14, 22:26]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:48, 15:12](1704 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 07:47](1001 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:49, 17:27](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 12:36]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:38, 27:08](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [20:15, 18:06]
+PASS -- TEST 'control_flake_intel' [06:14, 03:40](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:37](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 02:38](627 MB)
+PASS -- TEST 'control_latlon_intel' [05:51, 02:33](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 02:34](623 MB)
+PASS -- TEST 'control_c48_intel' [08:27, 05:38](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:38, 05:42](727 MB)
+PASS -- TEST 'control_c192_intel' [11:16, 08:55](739 MB)
+PASS -- TEST 'control_c384_intel' [20:02, 16:21](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:02, 14:17](1184 MB)
+PASS -- TEST 'control_stochy_intel' [04:02, 01:59](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:58, 01:01](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:03, 01:51](628 MB)
+PASS -- TEST 'control_iovr4_intel' [05:52, 02:34](623 MB)
+PASS -- TEST 'control_iovr5_intel' [05:52, 02:38](622 MB)
+PASS -- TEST 'control_p8_intel' [08:10, 04:11](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 04:02](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:40, 03:58](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:11, 02:07](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:48](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:24](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:12, 02:44](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:24, 05:43](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:13](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:19](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:21, 03:57](1616 MB)
+PASS -- TEST 'regional_control_intel' [06:59, 04:40](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:40, 02:52](785 MB)
+PASS -- TEST 'regional_decomp_intel' [06:57, 04:50](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:50, 02:54](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:49, 04:35](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:45, 04:43](614 MB)
+PASS -- TEST 'regional_wofs_intel' [08:50, 06:09](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:16, 14:22]
+PASS -- TEST 'rap_control_intel' [10:08, 07:02](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:09, 03:56](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [09:57, 07:21](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:51, 06:12](1098 MB)
+PASS -- TEST 'rap_restart_intel' [06:05, 03:26](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:45, 06:40](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 07:03](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:11](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:08, 03:49](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:57](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:58, 03:06](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:30, 01:58](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:08, 06:42](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:53, 08:15](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:50, 08:05](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [18:13, 16:06]
+PASS -- TEST 'control_csawmg_intel' [08:49, 06:41](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:44, 06:30](694 MB)
+PASS -- TEST 'control_ras_intel' [05:33, 03:25](656 MB)
+
+PASS -- COMPILE 'wam_intel' [17:15, 15:08]
+PASS -- TEST 'control_wam_intel' [04:32, 02:12](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [23:15, 20:55]
+PASS -- TEST 'control_p8_faster_intel' [07:34, 03:16](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:48, 04:26](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [18:09, 15:47]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:30, 02:48](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 02:50](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:13](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:50](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:47, 04:35](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:01, 04:26](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:27, 03:02](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:44, 03:16](844 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:37, 03:50](1622 MB)
+PASS -- TEST 'regional_debug_intel' [18:55, 16:41](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:28, 05:33](1167 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:32, 05:43](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 05:25](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:33](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:30](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:03, 05:34](1253 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 05:06](1167 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:13](1168 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:38, 05:03](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:10](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:01](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:03](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:51](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:56](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:41, 06:15](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:03](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:14, 08:23](1172 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [15:09, 13:16]
+PASS -- TEST 'control_wam_debug_intel' [06:40, 04:55](397 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:56]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 03:49](1054 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:17, 06:20](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:28](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:27](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:00, 02:48](941 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 03:43](887 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:10](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:43](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:33]
+PASS -- TEST 'conus13km_control_intel' [05:00, 02:02](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:22, 01:18](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:21](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 13:16]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:22](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 09:15]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:00](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:59](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:55, 14:09](1130 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:53, 14:30](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 08:17](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:03](1196 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:13, 09:19]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 04:56](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:14, 17:54]
+PASS -- TEST 'hafs_regional_atm_intel' [08:46, 05:17](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:01, 04:28](1055 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 07:53](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:46](788 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 12:57](796 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:26](473 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:37, 06:41](499 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:04, 02:54](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:03, 08:07](443 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:50](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:39](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 04:42](575 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:45, 02:49](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:24, 04:21](764 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:13, 13:22]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:58, 12:50](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:19, 19:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:50, 07:58](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:59, 07:54](786 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:33]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:44, 06:03](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:13, 17:07]
+PASS -- TEST 'hafs_regional_docn_intel' [11:02, 06:10](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:58, 06:12](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:24, 21:56](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:36](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:25](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:36](635 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:38](635 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:36](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:26](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:18](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 06:10](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:35, 04:36](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 04:42](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:40]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:39](740 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [16:13, 13:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:34](756 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [07:17, 04:50]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:21, 02:30](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:52, 01:37](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 01:02](456 MB)
+
+PASS -- COMPILE 'atml_intel' [18:21, 16:21]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:20, 11:27](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:03, 08:49](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 03:56](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [18:12, 16:35]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:02, 02:23](1647 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:10, 14:45]
+PASS -- TEST 'control_atmwav_intel' [04:00, 01:56](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [17:10, 14:51]
+PASS -- TEST 'atmaero_control_p8_intel' [12:18, 09:05](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [13:54, 09:06](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:23, 09:08](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [17:14, 15:16]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:05]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 19:38](4485 MB)
SYNOPSIS:
-Starting Date/Time: 20240312 00:16:27
-Ending Date/Time: 20240312 01:58:17
-Total Time: 01h:43m:05s
+Starting Date/Time: 20240314 08:29:02
+Ending Date/Time: 20240314 10:21:41
+Total Time: 01h:53m:35s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 724232d0fa..6804aeec40 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,15 +1,15 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c30e3efb994177f1c3cc322339ae7778e864c222
+0d7aa189232097602b4a7b5cdab9caad9aba58ad
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-1413-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -24,369 +24,377 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_217417
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_21606
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [11:59, 11:58]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:12, 05:17](3175 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:57, 15:56]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:58, 16:12](1714 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:57, 16:52](1977 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:41, 07:39](1073 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:08, 18:26](1613 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:08, 04:08]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:27, 22:29](1667 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:50, 11:49]
-PASS -- TEST 'cpld_control_p8_intel' [06:38, 05:45](3135 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:39, 05:40](3187 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:32, 03:26](3193 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:48](3156 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:31, 03:29](3235 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:28](3533 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:36, 05:46](3165 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:43](3040 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:45, 05:47](3136 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:21, 09:41](3321 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:24, 06:08](3568 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:27, 09:52](4084 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:46, 06:56](4303 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:19, 05:26](3144 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:25, 11:25]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:25, 04:34](1704 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:24, 04:31](1749 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:09, 04:08]
-PASS -- TEST 'cpld_debug_p8_intel' [09:17, 08:17](3162 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:01, 04:01]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:40, 05:44](1723 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:19, 10:19]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1764 MB)
-
-PASS -- COMPILE 's2s_intel' [10:18, 10:18]
-PASS -- TEST 'cpld_control_c48_intel' [09:59, 09:28](2818 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:06, 16:06]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:27, 05:30](3180 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [14:54, 14:53]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:09, 16:19](1709 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:46, 07:43](1136 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:27, 18:40](1615 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:41, 03:41]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:53, 24:00](1701 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:54, 10:53]
-PASS -- TEST 'control_flake_intel' [03:33, 03:17](664 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:24](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:28](653 MB)
-PASS -- TEST 'control_latlon_intel' [02:37, 02:25](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:45, 02:27](645 MB)
-PASS -- TEST 'control_c48_intel' [06:29, 06:16](874 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:24, 06:12](879 MB)
-PASS -- TEST 'control_c192_intel' [09:27, 09:00](850 MB)
-PASS -- TEST 'control_c384_intel' [10:01, 08:57](1287 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:20, 08:03](1381 MB)
-PASS -- TEST 'control_stochy_intel' [01:53, 01:37](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:58](472 MB)
-PASS -- TEST 'control_lndp_intel' [01:47, 01:31](647 MB)
-PASS -- TEST 'control_iovr4_intel' [02:41, 02:26](618 MB)
-PASS -- TEST 'control_iovr5_intel' [02:41, 02:25](626 MB)
-PASS -- TEST 'control_p8_intel' [03:37, 02:59](1579 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:40, 02:56](1624 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:38, 02:56](1620 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:15, 01:38](875 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:37, 02:57](1590 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:36](909 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:04](1571 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:20, 02:44](1682 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:44, 05:06](1618 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:35, 03:55](1655 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:44, 03:03](1608 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:10, 03:31](1616 MB)
-PASS -- TEST 'regional_control_intel' [05:43, 05:15](818 MB)
-PASS -- TEST 'regional_restart_intel' [03:17, 02:47](1013 MB)
-PASS -- TEST 'regional_decomp_intel' [05:55, 05:29](828 MB)
-PASS -- TEST 'regional_2threads_intel' [03:45, 03:16](812 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:32, 05:05](1354 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 05:05](825 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:10](837 MB)
-PASS -- TEST 'regional_wofs_intel' [07:09, 06:38](1875 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:41, 09:41]
-PASS -- TEST 'rap_control_intel' [08:13, 07:40](1096 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:49, 04:02](1280 MB)
-PASS -- TEST 'rap_decomp_intel' [08:25, 08:02](1017 MB)
-PASS -- TEST 'rap_2threads_intel' [07:42, 07:15](1166 MB)
-PASS -- TEST 'rap_restart_intel' [04:41, 04:00](1103 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:12, 07:41](1080 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:32, 08:05](1017 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:24, 05:46](1108 MB)
-PASS -- TEST 'hrrr_control_intel' [04:29, 04:02](1010 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:31, 04:08](985 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:09, 03:38](1109 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:31, 02:10](976 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:05, 07:34](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:11](1960 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 08:53](2060 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:32, 09:32]
-PASS -- TEST 'control_csawmg_intel' [06:23, 05:52](710 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:17, 05:49](730 MB)
-PASS -- TEST 'control_ras_intel' [03:27, 03:14](734 MB)
-
-PASS -- COMPILE 'wam_intel' [09:04, 09:03]
-PASS -- TEST 'control_wam_intel' [02:11, 02:01](650 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:54, 09:54]
-PASS -- TEST 'control_p8_faster_intel' [03:24, 02:42](1584 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:10, 04:42](843 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:22, 04:22]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:38](787 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:57, 02:40](807 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:57](793 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:00, 02:48](782 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:32, 04:04](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:31, 04:02](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:58, 02:44](799 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:12, 02:48](867 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:26, 02:53](1607 MB)
-PASS -- TEST 'regional_debug_intel' [17:08, 16:39](842 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:05, 04:49](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:57, 04:43](1181 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:04, 04:51](1189 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:02, 04:48](1180 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:48](1197 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:31, 05:02](1283 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:05, 04:49](1207 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:04, 04:53](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:03, 04:48](1203 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:00, 04:46](1205 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:55, 04:40](1187 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:51](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:55, 07:41](1192 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 04:52](1158 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:49](1199 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:05, 04:47](1173 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:43, 08:13](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04]
-PASS -- TEST 'control_wam_debug_intel' [04:58, 04:47](482 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 09:09]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:54](1121 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:53, 06:19](1043 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:19](977 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:33, 06:04](1058 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:06](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:54, 03:31](922 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:13, 04:45](1033 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:51](896 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 11:24]
-PASS -- TEST 'conus13km_control_intel' [02:41, 02:05](1178 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:55](1118 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:13](1107 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:26, 09:26]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:43, 04:12](953 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:09, 03:09]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:59, 04:44](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:53, 04:38](1070 MB)
-PASS -- TEST 'conus13km_debug_intel' [14:28, 13:52](1194 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:28, 13:51](917 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:03, 07:35](1145 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:53, 13:23](1285 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:14, 03:14]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:05, 04:52](1112 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:35, 10:35]
-PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:50](736 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:56](1113 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:57](813 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:00, 13:01](833 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:03, 14:51](875 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:56, 05:14](498 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:31, 06:25](514 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:33](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:37, 06:59](483 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 03:38](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:06, 03:25](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:44, 04:01](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:28, 03:55](767 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:32, 03:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:02, 12:20](554 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:16, 11:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 08:33](637 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:23, 08:30](699 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:35, 10:35]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:10, 06:18](684 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:27, 10:27]
-PASS -- TEST 'hafs_regional_docn_intel' [07:12, 06:14](828 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:19, 06:19](785 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:43, 16:05](1214 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:08, 06:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:49, 02:41](1113 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:47, 01:38](1063 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:35](998 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:45, 02:36](996 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:43, 02:36](1009 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:38](1122 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:39](1121 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:37, 02:30](1000 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:40](1046 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 06:53](1040 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:42, 02:37](1135 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:55, 03:47](2502 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:51](2489 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [02:48, 02:47]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:19, 06:09](1047 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:09, 06:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:42, 02:35](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:01, 01:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:06, 00:46](246 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:46](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:45, 00:30](321 MB)
-
-PASS -- COMPILE 'atml_intel' [10:52, 10:52]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:00, 04:14](1589 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:10, 04:23](1534 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:51, 02:15](867 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:43, 10:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:29, 01:47](1636 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:18, 10:18]
-PASS -- TEST 'control_atmwav_intel' [02:03, 01:39](638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:15, 10:15]
-PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:59](3001 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:50](3020 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 05:03](3094 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:58, 09:58]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:57, 04:57]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:50, 20:11](4354 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:48, 03:46]
-PASS -- TEST 'control_c48_gnu' [12:04, 11:45](789 MB)
-PASS -- TEST 'control_stochy_gnu' [04:27, 04:14](551 MB)
-PASS -- TEST 'control_ras_gnu' [05:32, 05:15](557 MB)
-PASS -- TEST 'control_p8_gnu' [05:49, 04:57](1310 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 04:51](1309 MB)
-PASS -- TEST 'control_flake_gnu' [06:22, 06:02](596 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:47, 03:46]
-PASS -- TEST 'rap_control_gnu' [12:11, 11:48](897 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:09, 11:45](897 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:57, 10:26](978 MB)
-PASS -- TEST 'rap_restart_gnu' [06:35, 06:02](624 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:13, 11:41](897 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:28, 11:57](899 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:23, 08:52](628 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:19, 05:57](888 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:17, 05:54](879 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:11](979 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:24, 06:01](891 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 03:13](609 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 03:10](704 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 11:18](894 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:20, 04:20]
-PASS -- TEST 'control_diag_debug_gnu' [01:58, 01:37](591 MB)
-PASS -- TEST 'regional_debug_gnu' [08:00, 07:31](602 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:45, 02:32](909 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:29](904 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:33](906 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:43, 02:31](909 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:07, 02:42](994 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:02, 03:51](904 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:44, 02:33](911 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:41, 02:30](903 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:42, 01:30](543 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:23, 02:12](537 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:11, 01:41](1294 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:45, 02:32](908 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [02:59, 02:47](913 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:29, 04:03](912 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:10, 03:08]
-PASS -- TEST 'control_wam_debug_gnu' [02:38, 02:27](240 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:16, 04:16]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:11, 11:50](749 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:26, 06:06](750 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [11:03, 10:36](804 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 05:20](805 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 06:05](751 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:30, 08:58](601 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 03:12](583 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:58, 04:15](898 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:18, 01:52](937 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 02:17](597 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:53, 05:52]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:24, 06:56](784 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:17, 04:16]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:30](761 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:39, 02:28](759 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:46, 07:13](914 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:37, 07:06](632 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:55, 04:25](952 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:39, 07:10](982 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:56, 03:56]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:38](786 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:11, 15:11]
-PASS -- TEST 'cpld_control_p8_gnu' [11:47, 10:48](1504 MB)
-
-PASS -- COMPILE 's2s_gnu' [13:44, 13:43]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:30, 06:33](1399 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:17, 02:17]
-PASS -- TEST 'cpld_debug_p8_gnu' [07:08, 06:13](1516 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [13:46, 13:45]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:56, 22:06](1369 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:12, 02:11]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:42, 12:57](1387 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [13:21, 13:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 03:07](698 MB)
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [14:10, 12:33]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:52, 05:21](3107 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 15:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [26:36, 17:24](1737 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:42, 17:02](2016 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:39, 07:46](1076 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:36, 19:36](1635 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:04]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:31, 22:32](1673 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:10, 12:27]
+PASS -- TEST 'cpld_control_p8_intel' [15:54, 05:39](3186 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:05, 05:43](3173 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:49, 03:59](3241 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:54, 05:47](3209 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:49, 04:15](3252 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:43, 05:26](3538 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [15:54, 05:46](3172 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:43, 04:49](3044 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:07, 05:40](3166 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:48, 09:47](3320 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:46, 06:56](3602 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [25:55, 09:51](4102 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:46, 06:58](4341 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:49, 05:20](3129 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:10, 11:35]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:14, 04:31](1714 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:32, 04:26](1766 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:09, 04:53]
+PASS -- TEST 'cpld_debug_p8_intel' [11:30, 08:19](3195 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:02]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:55, 05:33](1718 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:10]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:28](1766 MB)
+
+PASS -- COMPILE 's2s_intel' [12:12, 10:59]
+PASS -- TEST 'cpld_control_c48_intel' [11:54, 09:17](2817 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:15, 16:13]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:18, 05:22](3191 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:24, 17:11](1778 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:52, 07:43](1164 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:14, 18:45](1663 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:12]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 26:09](1667 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:45]
+PASS -- TEST 'control_flake_intel' [11:29, 03:18](689 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 02:27](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:35, 02:30](652 MB)
+PASS -- TEST 'control_latlon_intel' [10:27, 02:28](641 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:36, 02:28](632 MB)
+PASS -- TEST 'control_c48_intel' [15:05, 06:20](870 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [15:04, 06:22](874 MB)
+PASS -- TEST 'control_c192_intel' [17:48, 09:38](833 MB)
+PASS -- TEST 'control_c384_intel' [16:49, 09:48](1275 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:34, 08:56](1358 MB)
+PASS -- TEST 'control_stochy_intel' [07:26, 01:36](647 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:59](497 MB)
+PASS -- TEST 'control_lndp_intel' [06:22, 01:36](635 MB)
+PASS -- TEST 'control_iovr4_intel' [05:06, 02:26](642 MB)
+PASS -- TEST 'control_iovr5_intel' [04:35, 02:27](644 MB)
+PASS -- TEST 'control_p8_intel' [06:24, 03:41](1614 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:20, 03:31](1622 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:19, 03:28](1608 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:47, 01:37](888 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:16, 03:35](1605 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](923 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:08, 03:11](1605 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:07, 02:56](1703 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:22, 05:21](1614 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:01, 03:53](1645 MB)
+PASS -- TEST 'control_p8_mynn_intel' [08:13, 03:15](1597 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:02, 03:34](1613 MB)
+PASS -- TEST 'regional_control_intel' [10:01, 05:08](819 MB)
+PASS -- TEST 'regional_restart_intel' [06:47, 04:45](1017 MB)
+PASS -- TEST 'regional_decomp_intel' [08:50, 05:24](842 MB)
+PASS -- TEST 'regional_2threads_intel' [06:37, 03:12](826 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:56, 05:01](1362 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:47](853 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:46, 05:50](850 MB)
+PASS -- TEST 'regional_wofs_intel' [09:52, 07:31](1910 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:10, 09:49]
+PASS -- TEST 'rap_control_intel' [12:08, 09:20](1084 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 04:52](1280 MB)
+PASS -- TEST 'rap_decomp_intel' [12:00, 09:28](1023 MB)
+PASS -- TEST 'rap_2threads_intel' [11:54, 09:20](1172 MB)
+PASS -- TEST 'rap_restart_intel' [07:55, 04:07](1093 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:57, 09:17](1108 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:57, 09:52](1040 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 05:54](1130 MB)
+PASS -- TEST 'hrrr_control_intel' [06:48, 04:51](1024 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:07](989 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 05:17](1115 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [08:38, 02:18](982 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:54, 09:31](1090 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:36, 10:43](1957 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:34, 10:31](2063 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:10, 09:45]
+PASS -- TEST 'control_csawmg_intel' [09:49, 07:43](745 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:48, 07:22](734 MB)
+PASS -- TEST 'control_ras_intel' [06:27, 03:54](722 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:07, 03:23]
+PASS -- TEST 'control_csawmg_gnu' [17:51, 09:21](587 MB)
+PASS -- TEST 'control_csawmgt_gnu' [17:51, 09:21](586 MB)
+
+PASS -- COMPILE 'wam_intel' [11:08, 09:11]
+PASS -- TEST 'control_wam_intel' [04:26, 02:34](653 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:09, 09:51]
+PASS -- TEST 'control_p8_faster_intel' [07:20, 04:08](1605 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:57, 06:26](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:29]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:31, 03:51](811 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 03:36](809 MB)
+PASS -- TEST 'control_stochy_debug_intel' [09:25, 06:34](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:35](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:39, 05:02](865 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:55](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:23, 03:44](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [10:36, 03:01](866 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:51, 02:54](1633 MB)
+PASS -- TEST 'regional_debug_intel' [22:48, 16:20](839 MB)
+PASS -- TEST 'rap_control_debug_intel' [10:28, 04:49](1188 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:22, 04:40](1190 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:23, 04:51](1176 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:29, 04:52](1197 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:35, 04:51](1190 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:45, 05:06](1299 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:21, 04:59](1188 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 04:49](1199 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:23, 04:50](1204 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 04:51](1197 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:38](1188 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 04:52](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:37](1192 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:49](1185 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:04](1205 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:32, 04:52](1198 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:08](1181 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:07, 02:29]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:47, 02:14](564 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:47, 02:15](565 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:10, 03:11]
+PASS -- TEST 'control_wam_debug_intel' [06:20, 04:43](514 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:11, 09:32]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:57](1153 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 06:32](1044 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 03:28](973 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:38, 06:15](1051 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:15](953 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:37](909 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:47](1000 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:51](897 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:13, 11:49]
+PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1191 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:52](1105 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:13](1086 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:10, 09:40]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:20](977 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:07, 03:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:47](1059 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:41](1058 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:54, 13:53](1210 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:02](897 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 07:50](1147 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:54, 13:42](1262 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 03:17]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 04:46](1125 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:15, 10:40]
+PASS -- TEST 'hafs_regional_atm_intel' [08:23, 04:51](736 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:34, 05:54](1111 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:27, 06:51](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:20, 13:04](843 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:33, 14:42](876 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:59, 05:20](500 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 06:23](516 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 02:39](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 06:58](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:34](525 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:24](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:02](580 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:09](400 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:45, 03:54](772 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:13, 03:43]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:12](568 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:30, 12:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:08, 08:23](670 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:06, 08:28](738 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 10:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 06:15](725 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:14, 11:24]
+PASS -- TEST 'hafs_regional_docn_intel' [54:34, 06:13](832 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:39, 06:20](808 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:09, 16:17](1219 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [11:13, 06:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:29, 02:42](1122 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1074 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [49:30, 02:36](1008 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [49:29, 02:39](1016 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:23, 02:36](1023 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [49:25, 02:41](1121 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [49:29, 02:41](1115 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:25, 02:37](991 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [52:44, 06:39](1051 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [52:42, 06:58](1025 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [47:24, 02:42](1116 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [14:20, 03:58](2483 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [48:28, 04:12](2421 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:09, 03:08]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [49:25, 06:08](1046 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 06:47]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [45:30, 02:40](1106 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:00]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:38, 00:50](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:29, 00:52](320 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:32](315 MB)
+
+PASS -- COMPILE 'atml_intel' [14:17, 13:01]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [46:17, 04:27](1583 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [46:22, 04:27](1567 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:14, 05:11](888 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:13, 11:54]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [43:06, 01:53](1643 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:12, 11:56]
+PASS -- TEST 'control_atmwav_intel' [42:41, 01:46](669 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:13, 12:14]
+PASS -- TEST 'atmaero_control_p8_intel' [43:13, 04:04](3020 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [43:18, 04:53](3092 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:59, 05:09](3115 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:14, 11:46]
+
+PASS -- COMPILE 'atmaq_debug_intel' [09:16, 07:26]
+PASS -- TEST 'regional_atmaq_debug_intel' [57:29, 20:19](4434 MB)
+
+PASS -- COMPILE 'atm_gnu' [08:07, 06:17]
+PASS -- TEST 'control_c48_gnu' [46:34, 11:45](787 MB)
+PASS -- TEST 'control_stochy_gnu' [38:27, 04:15](546 MB)
+PASS -- TEST 'control_ras_gnu' [39:32, 05:00](554 MB)
+PASS -- TEST 'control_p8_gnu' [36:27, 05:06](1303 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [08:09, 04:44](1309 MB)
+PASS -- TEST 'control_flake_gnu' [07:28, 05:55](595 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [09:08, 07:17]
+PASS -- TEST 'rap_control_gnu' [13:38, 11:53](894 MB)
+PASS -- TEST 'rap_decomp_gnu' [14:43, 11:52](895 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:44, 10:37](983 MB)
+PASS -- TEST 'rap_restart_gnu' [03:04, 07:25](622 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [14:51, 11:46](895 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:39, 11:57](899 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:03, 10:11](627 MB)
+PASS -- TEST 'hrrr_control_gnu' [08:44, 06:02](895 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:38, 05:59](877 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [14:59, 08:52](971 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [08:36, 06:02](888 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:40, 04:49](608 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:40, 04:38](702 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [21:01, 14:35](887 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:09, 07:48]
+PASS -- TEST 'control_diag_debug_gnu' [09:46, 04:34](587 MB)
+PASS -- TEST 'regional_debug_gnu' [15:58, 10:31](595 MB)
+PASS -- TEST 'rap_control_debug_gnu' [09:42, 04:43](904 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [09:46, 05:56](902 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [09:44, 04:59](907 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [09:49, 05:11](903 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [10:10, 05:58](991 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [09:52, 06:05](901 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [09:48, 05:12](904 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [08:45, 04:58](898 MB)
+PASS -- TEST 'control_ras_debug_gnu' [07:39, 04:02](541 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [07:37, 04:29](534 MB)
+PASS -- TEST 'control_debug_p8_gnu' [06:56, 04:06](1287 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [07:40, 04:57](908 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [06:50, 05:08](907 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:05, 06:32](907 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [06:06, 04:36]
+PASS -- TEST 'control_wam_debug_gnu' [03:36, 04:00](242 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:08, 03:32]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:50, 13:39](752 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [03:49, 07:45](741 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:55, 12:19](798 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [01:52, 07:18](804 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [01:43, 07:31](743 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [34:07, 09:08](594 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [33:56, 03:19](581 MB)
+PASS -- TEST 'conus13km_control_gnu' [55:12, 05:25](894 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [34:12, 01:55](935 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [35:15, 02:23](595 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:07, 05:15]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [40:17, 07:06](779 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:09, 03:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [34:47, 02:39](756 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [34:46, 02:36](754 MB)
+PASS -- TEST 'conus13km_debug_gnu' [41:25, 07:17](913 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [39:23, 07:13](630 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [36:12, 04:27](946 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [41:16, 07:20](979 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [36:58, 02:41](784 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:10, 13:56]
+PASS -- TEST 'cpld_control_p8_gnu' [46:03, 11:08](1511 MB)
+
+PASS -- COMPILE 's2s_gnu' [15:10, 13:48]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [42:00, 06:54](1399 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:32]
+PASS -- TEST 'cpld_debug_p8_gnu' [40:44, 06:12](1512 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 13:53]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [56:39, 22:12](1378 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:15]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [47:29, 13:12](1391 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 13:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [53:32, 03:04](703 MB)
SYNOPSIS:
-Starting Date/Time: 20240312 03:57:40
-Ending Date/Time: 20240312 06:17:43
-Total Time: 02h:21m:24s
-Compiles Completed: 53/53
-Tests Completed: 243/243
+Starting Date/Time: 20240313 18:46:26
+Ending Date/Time: 20240313 23:52:57
+Total Time: 05h:09m:02s
+Compiles Completed: 55/55
+Tests Completed: 247/247
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index c00049f6d3..0c7977b8c3 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,20 +1,20 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-602e838bbc0b6f3a1c6f4d2fcc5ebe1be0e047bd
+19159d93d74d6f3c37fdf74fb3475e000435f07e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca34)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca34)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,360 +47,368 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1334135
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_941138
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:14]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 07:24](1889 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:06, 16:14]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:21](1766 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:24, 14:04](2175 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 06:27](1189 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 15:01](1688 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:45]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:15, 20:20](1732 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:06, 11:41]
-PASS -- TEST 'cpld_control_p8_intel' [09:56, 07:31](2079 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:31](2077 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:10](1949 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:56, 07:41](1976 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 04:15](1744 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:44](2496 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 07:27](2069 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:54, 06:12](1906 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:58, 07:33](2070 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 15:12](2820 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:09, 05:47](2921 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:29, 08:43](3633 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:52, 05:43](3614 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:55, 04:52](2026 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:06, 11:27]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:50, 07:14](1766 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:56, 03:53](1827 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:13]
-PASS -- TEST 'cpld_debug_p8_intel' [09:01, 06:57](2047 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:23]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:43](1793 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:06, 07:48]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 03:58](1812 MB)
-
-PASS -- COMPILE 's2s_intel' [11:06, 09:50]
-PASS -- TEST 'cpld_control_c48_intel' [09:36, 07:16](2826 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:06, 13:57]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:06, 07:29](2083 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:47]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:53, 13:54](1801 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:08, 06:41](1298 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:52, 15:17](1733 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:18]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:51, 21:23](1774 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:22]
-PASS -- TEST 'control_flake_intel' [04:17, 02:55](715 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:10](658 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:21](664 MB)
-PASS -- TEST 'control_latlon_intel' [04:15, 02:13](659 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:18](671 MB)
-PASS -- TEST 'control_c48_intel' [07:19, 05:47](854 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:19, 05:46](858 MB)
-PASS -- TEST 'control_c192_intel' [09:26, 07:55](968 MB)
-PASS -- TEST 'control_c384_intel' [11:03, 08:12](1445 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:53, 07:25](1507 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:30](682 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](546 MB)
-PASS -- TEST 'control_lndp_intel' [03:19, 01:26](672 MB)
-PASS -- TEST 'control_iovr4_intel' [04:17, 02:12](665 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](663 MB)
-PASS -- TEST 'control_p8_intel' [04:46, 02:33](1634 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:33](1635 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:26](1635 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:51, 01:29](926 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:31](1627 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:25](990 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:35](1622 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:20](1728 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:24](1639 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:30](1714 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:31](1643 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:56, 02:55](1664 MB)
-PASS -- TEST 'regional_control_intel' [06:25, 04:29](955 MB)
-PASS -- TEST 'regional_restart_intel' [04:31, 02:30](1109 MB)
-PASS -- TEST 'regional_decomp_intel' [06:22, 04:44](947 MB)
-PASS -- TEST 'regional_2threads_intel' [04:23, 02:54](919 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:26, 04:21](1486 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:27](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:30](957 MB)
-PASS -- TEST 'regional_wofs_intel' [07:25, 05:36](2076 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:06, 06:52]
-PASS -- TEST 'rap_control_intel' [08:40, 06:32](1191 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:28](1405 MB)
-PASS -- TEST 'rap_decomp_intel' [08:38, 06:48](1132 MB)
-PASS -- TEST 'rap_2threads_intel' [08:35, 06:13](1374 MB)
-PASS -- TEST 'rap_restart_intel' [05:56, 03:25](1135 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:49, 06:34](1206 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:56](1124 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:58, 04:53](1203 MB)
-PASS -- TEST 'hrrr_control_intel' [05:50, 03:24](1070 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:28](1040 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:12](1126 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:49](1031 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:21](1187 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:41](2006 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:28](2200 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:16]
-PASS -- TEST 'control_csawmg_intel' [07:24, 05:06](821 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:26, 05:05](845 MB)
-PASS -- TEST 'control_ras_intel' [04:15, 02:56](805 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:47]
-PASS -- TEST 'control_wam_intel' [03:22, 01:49](780 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:59]
-PASS -- TEST 'control_p8_faster_intel' [05:04, 02:24](1631 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:34, 04:06](961 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:06]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:18](833 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:12](826 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:29](837 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:15](829 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:23](874 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:26, 03:17](869 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:16, 02:18](837 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:18, 02:19](896 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:30, 02:21](1651 MB)
-PASS -- TEST 'regional_debug_intel' [16:27, 14:10](891 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:17, 03:57](1230 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:55](1220 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:58](1222 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:57](1224 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:00](1218 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:24, 04:06](1304 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 04:02](1218 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:15, 04:03](1212 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:57](1225 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 04:00](1218 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:55](1217 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:02](1225 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 06:28](1224 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 03:55](1222 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 04:45](1235 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:16, 04:03](1214 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 06:55](1223 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:41]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:48, 03:15](1282 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:36](1140 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:54](1025 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:38, 05:11](1277 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:40](1041 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:04](992 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:07](1096 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:34](958 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 08:54]
-PASS -- TEST 'conus13km_control_intel' [03:39, 01:44](1291 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:27, 00:42](1208 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 01:04](1150 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:42]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:37, 03:41](1071 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:39]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:56](1097 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:57](1089 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:36, 11:46](1344 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 11:50](998 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:41](1239 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:32, 11:34](1394 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 04:01](1151 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:06, 10:07]
-PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:25](874 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 04:57](1269 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:09, 06:15](967 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](986 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:06, 14:55](1013 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:37](604 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 07:02](615 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:57](432 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:00, 08:10](544 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:59](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:39](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:54](672 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:31](447 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:14](633 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:33](726 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:54, 17:10](813 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:05]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:53, 10:12](792 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:06, 09:26]
-PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:30](952 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:32](930 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:18](1341 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:21]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:10](1160 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:24](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:10, 02:05](1007 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:08](1008 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:08](1011 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:09](1131 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:08](1153 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:11, 02:05](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:47, 04:58](1169 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:55](1142 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1147 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:01](2435 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:04](2433 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:51]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:09, 05:11](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:15]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:09](1154 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:50]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:20, 00:54](338 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:51](562 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:32](563 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:03, 05:59](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 05:50](1647 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 03:12](939 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:07, 09:36]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:31](1697 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:09, 09:11]
-PASS -- TEST 'control_atmwav_intel' [03:39, 01:26](698 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:07, 07:09]
-PASS -- TEST 'atmaero_control_p8_intel' [05:46, 03:32](1776 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:15](1804 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:26](1821 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:07, 07:08]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:53]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:21](4597 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:06, 05:06]
-PASS -- TEST 'control_c48_gnu' [11:25, 09:43](872 MB)
-PASS -- TEST 'control_stochy_gnu' [04:17, 02:17](728 MB)
-PASS -- TEST 'control_ras_gnu' [05:14, 03:41](730 MB)
-PASS -- TEST 'control_p8_gnu' [05:50, 03:38](1513 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:42, 03:27](1514 MB)
-PASS -- TEST 'control_flake_gnu' [06:15, 04:24](812 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:06, 04:29]
-PASS -- TEST 'rap_control_gnu' [09:45, 07:37](1084 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:31, 07:59](1086 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:30, 07:16](1147 MB)
-PASS -- TEST 'rap_restart_gnu' [05:55, 03:57](888 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 07:46](1084 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 07:46](1087 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 05:47](883 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:34, 04:00](1074 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:06](1135 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:32, 03:40](1041 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:30, 04:04](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:03](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:00](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:48, 07:37](1089 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:05, 07:07]
-PASS -- TEST 'control_diag_debug_gnu' [03:20, 01:16](774 MB)
-PASS -- TEST 'regional_debug_gnu' [08:26, 06:14](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:15, 01:54](1096 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:13, 02:04](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:02](1091 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 02:01](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:23, 02:05](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:13](1095 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:02](1095 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:01](1091 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:09](723 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:15, 01:16](727 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:26, 01:17](1503 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:05](1102 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:07](1099 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:43, 03:15](1105 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:06, 03:17]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:36]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:10](963 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 03:46](953 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:44, 06:46](969 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:28](891 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:48](953 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 05:30](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:16, 02:03](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:25, 01:04](1170 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:23, 01:25](943 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:06, 12:13]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:21](993 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:06, 11:27]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:53](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:22](1279 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:25, 05:30](966 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:16](1186 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:32](1346 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 12:04]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 01:58](1003 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:06, 16:56]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:48]
-
-PASS -- COMPILE 's2swa_debug_gnu' [14:06, 12:49]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [19:05, 17:06]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:11]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 16:24]
+PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:07]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 07:44](1889 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 18:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:02, 13:18](1769 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:15, 14:04](2183 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 06:33](1189 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:08, 14:54](1692 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:43]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:11, 20:23](1739 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:06, 12:00]
+PASS -- TEST 'cpld_control_p8_intel' [09:46, 07:40](2088 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2063 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [11:08, 04:17](1960 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:45, 07:45](1977 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:10, 04:18](1731 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:44, 08:52](2499 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:43](2064 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:50, 06:28](1906 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:58, 07:35](2063 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [25:31, 15:20](2810 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:01, 05:51](2926 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:33, 08:57](3635 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:45, 05:12](3617 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:45, 05:00](2033 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:06, 11:09]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:47, 07:10](1772 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 03:59](1816 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:19]
+PASS -- TEST 'cpld_debug_p8_intel' [08:47, 06:56](2052 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:17]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:47](1799 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:44, 04:04](1817 MB)
+
+PASS -- COMPILE 's2s_intel' [10:06, 08:12]
+PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:17](2838 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:06, 11:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:14](2065 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:48]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:47, 13:49](1808 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 06:47](1285 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:51, 15:26](1729 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:03]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:43, 21:41](1761 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:05, 07:54]
+PASS -- TEST 'control_flake_intel' [15:20, 02:50](713 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [14:20, 02:09](659 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 02:11](671 MB)
+PASS -- TEST 'control_latlon_intel' [13:17, 02:07](661 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:24, 02:10](665 MB)
+PASS -- TEST 'control_c48_intel' [10:22, 05:41](860 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [18:38, 05:45](855 MB)
+PASS -- TEST 'control_c192_intel' [15:27, 08:12](982 MB)
+PASS -- TEST 'control_c384_intel' [15:13, 08:15](1442 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:51, 07:19](1520 MB)
+PASS -- TEST 'control_stochy_intel' [09:16, 01:27](680 MB)
+PASS -- TEST 'control_stochy_restart_intel' [05:19, 00:52](532 MB)
+PASS -- TEST 'control_lndp_intel' [11:18, 01:23](665 MB)
+PASS -- TEST 'control_iovr4_intel' [14:18, 02:08](658 MB)
+PASS -- TEST 'control_iovr5_intel' [11:15, 02:07](655 MB)
+PASS -- TEST 'control_p8_intel' [11:49, 02:32](1643 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:48, 02:34](1626 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [09:49, 02:28](1658 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:45, 01:25](922 MB)
+PASS -- TEST 'control_noqr_p8_intel' [09:46, 02:33](1625 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:26](973 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:42, 02:40](1618 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:41, 02:22](1730 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:36, 04:31](1644 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:52, 03:36](1717 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:47, 02:31](1644 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:55, 02:59](1658 MB)
+PASS -- TEST 'regional_control_intel' [06:23, 04:33](957 MB)
+PASS -- TEST 'regional_restart_intel' [04:28, 02:29](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [06:22, 04:46](945 MB)
+PASS -- TEST 'regional_2threads_intel' [04:26, 03:00](915 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:25, 04:29](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:39](955 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:30](959 MB)
+PASS -- TEST 'regional_wofs_intel' [07:23, 05:36](2089 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:05, 07:03]
+PASS -- TEST 'rap_control_intel' [08:47, 06:46](1207 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:38, 03:47](1439 MB)
+PASS -- TEST 'rap_decomp_intel' [08:28, 06:51](1163 MB)
+PASS -- TEST 'rap_2threads_intel' [08:31, 06:12](1368 MB)
+PASS -- TEST 'rap_restart_intel' [05:52, 03:27](1147 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:47, 06:39](1203 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 06:50](1151 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:50, 05:06](1187 MB)
+PASS -- TEST 'hrrr_control_intel' [05:35, 03:21](1081 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1035 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:03](1125 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:56](1035 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:19](1184 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:18, 07:38](2006 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:30](2156 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:05, 06:35]
+PASS -- TEST 'control_csawmg_intel' [07:25, 05:21](833 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:23, 05:14](848 MB)
+PASS -- TEST 'control_ras_intel' [04:13, 02:53](806 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:05, 04:08]
+PASS -- TEST 'control_csawmg_gnu' [08:26, 06:27](811 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:25, 06:18](811 MB)
+
+PASS -- COMPILE 'wam_intel' [08:05, 06:33]
+PASS -- TEST 'control_wam_intel' [03:17, 01:48](796 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:30]
+PASS -- TEST 'control_p8_faster_intel' [04:46, 02:15](1641 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:21, 04:02](961 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:43]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:16, 02:16](819 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:12](825 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:12, 02:26](823 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:12, 02:20](821 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:24, 03:24](882 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:20](879 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:11, 02:19](834 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:20, 02:20](880 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:27, 02:22](1657 MB)
+PASS -- TEST 'regional_debug_intel' [16:30, 14:13](891 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:18, 03:59](1218 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:57](1218 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:12, 03:59](1220 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:13, 04:05](1218 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:13, 03:58](1221 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:22, 04:13](1299 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:08](1218 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:09](1212 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:04](1218 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1222 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:57](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:15, 04:05](1227 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:31](1223 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 04:00](1209 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 04:51](1211 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:03](1222 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 06:56](1220 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 03:19]
+PASS -- TEST 'control_csawmg_debug_gnu' [05:26, 01:45](788 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [05:27, 01:45](786 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:06, 02:46]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:06, 06:52]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:45, 03:38](1273 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:49, 05:28](1146 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 02:52](1034 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:32, 05:11](1274 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 02:42](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:31, 03:03](1001 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:46, 04:12](1104 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:20, 01:39](960 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:06, 09:19]
+PASS -- TEST 'conus13km_control_intel' [03:34, 01:44](1285 MB)
+PASS -- TEST 'conus13km_2threads_intel' [07:24, 00:53](1209 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [07:25, 01:04](1156 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 06:58]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:45](1070 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 02:56]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 03:56](1108 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:13, 03:52](1085 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:28, 11:50](1346 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:27, 12:09](999 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [14:26, 06:50](1246 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:31, 11:56](1400 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:52]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:16, 03:58](1148 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:06, 09:36]
+PASS -- TEST 'hafs_regional_atm_intel' [08:59, 05:30](878 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:16, 05:24](1265 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:09, 06:34](956 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [22:01, 14:00](989 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:07, 15:27](991 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:47, 05:36](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:13, 07:11](619 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [10:34, 02:54](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:54, 08:02](543 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:36, 03:58](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:38, 03:47](621 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:43, 04:54](675 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:21, 01:21](447 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:06, 02:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:20](636 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:05, 10:14]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:54, 17:50](731 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:51, 16:02](845 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:03]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:53, 10:01](814 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:05, 09:24]
+PASS -- TEST 'hafs_regional_docn_intel' [13:04, 05:34](948 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 05:41](920 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:39, 16:31](1342 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:11, 02:08](1150 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:11, 01:21](1094 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:10, 02:04](1010 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:10, 02:05](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:11, 02:08](1010 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:10, 02:10](1147 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:10, 02:08](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:09, 02:06](1008 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:46, 04:51](1168 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:46, 04:56](1142 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:13, 02:10](1143 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:14, 03:01](2441 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [09:10, 03:04](2388 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:05, 03:36]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:11, 05:02](1083 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 05:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:12, 02:10](1147 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 00:43]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:21, 00:52](336 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:17, 00:51](560 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:15, 00:36](560 MB)
+
+PASS -- COMPILE 'atml_intel' [10:05, 07:27]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:54, 06:07](1644 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:06](1653 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 02:58](956 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:05, 08:56]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:36](1688 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:06, 10:06]
+PASS -- TEST 'control_atmwav_intel' [03:39, 01:29](700 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:06, 08:34]
+PASS -- TEST 'atmaero_control_p8_intel' [06:48, 03:36](1801 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:16](1807 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:38, 04:29](1818 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:05, 07:02]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:34]
+PASS -- TEST 'regional_atmaq_debug_intel' [20:18, 16:36](4591 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:06, 03:53]
+PASS -- TEST 'control_c48_gnu' [13:23, 09:28](882 MB)
+PASS -- TEST 'control_stochy_gnu' [05:13, 02:20](729 MB)
+PASS -- TEST 'control_ras_gnu' [07:13, 03:50](732 MB)
+PASS -- TEST 'control_p8_gnu' [07:53, 03:39](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:37, 03:29](1517 MB)
+PASS -- TEST 'control_flake_gnu' [07:13, 04:25](808 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:06, 03:49]
+PASS -- TEST 'rap_control_gnu' [10:47, 07:44](1084 MB)
+PASS -- TEST 'rap_decomp_gnu' [10:32, 07:53](1085 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:31, 07:16](1124 MB)
+PASS -- TEST 'rap_restart_gnu' [05:37, 03:55](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 07:39](1086 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:54](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:38, 05:47](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:29, 04:07](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:01](1139 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:32, 03:39](1038 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:04](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:15, 02:07](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:03](934 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:37](1081 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 04:58]
+PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:11](774 MB)
+PASS -- TEST 'regional_debug_gnu' [08:24, 06:27](921 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:58](1097 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 02:00](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:14, 02:03](1094 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:00](1093 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:03](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:07](1094 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:15, 01:58](1097 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:56](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:13](722 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](721 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:26, 01:16](1502 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:10](1097 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:17](1101 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:05, 02:17]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:35]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:21](965 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 03:50](952 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:45, 06:46](975 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 03:27](873 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:49](953 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:39, 05:31](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:22, 02:06](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:38, 02:31](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [04:23, 01:12](1175 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:24, 01:33](926 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:05, 08:53]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:31, 04:21](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:05, 04:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](976 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:56](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:28](1281 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:37](970 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:15](1192 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:20](1348 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:05, 04:43]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 01:59](1005 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:06, 14:49]
+
+PASS -- COMPILE 's2s_gnu' [16:06, 14:39]
+
+PASS -- COMPILE 's2swa_debug_gnu' [07:05, 05:54]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 15:02]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:05, 03:47]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:52]
SYNOPSIS:
-Starting Date/Time: 20240311 19:30:53
-Ending Date/Time: 20240311 20:51:18
-Total Time: 01h:21m:01s
-Compiles Completed: 53/53
-Tests Completed: 234/234
+Starting Date/Time: 20240314 07:27:36
+Ending Date/Time: 20240314 09:02:12
+Total Time: 01h:35m:02s
+Compiles Completed: 55/55
+Tests Completed: 238/238
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index baab0a3452..66824eba57 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,20 +1,20 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0993150ece5c5e28868602030dd75601a1277888
+0d7aa189232097602b4a7b5cdab9caad9aba58ad
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,245 +47,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1350785
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2771308
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:16, 37:43]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:31, 06:50](1791 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:19, 46:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:01, 20:34](1667 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:08, 22:03](1885 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:09, 10:10](993 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:42, 23:46](1631 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:16, 38:21]
-PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:28](1823 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:39, 07:33](1832 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:46, 04:20](1716 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 07:32](1858 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:27](1728 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:17, 07:10](2266 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 07:35](1833 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 06:22](1785 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:39, 07:26](1815 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:32, 07:07](1795 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:16, 35:41]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:16, 05:49](1665 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:31, 05:42](1714 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:00]
-PASS -- TEST 'cpld_debug_p8_intel' [13:33, 10:27](1843 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:26]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:20, 07:14](1674 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:15, 31:39]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:36, 05:38](1722 MB)
-
-PASS -- COMPILE 's2s_intel' [33:14, 32:03]
-PASS -- TEST 'cpld_control_c48_intel' [15:06, 12:43](2802 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:32, 32:51]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:40, 07:00](1828 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [46:19, 45:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:27, 20:39](1682 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:29, 10:16](1032 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:27, 23:51](1661 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:29]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:23, 31:59](1697 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:17, 33:49]
-PASS -- TEST 'control_flake_intel' [06:25, 04:29](645 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:27, 03:15](597 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:33, 03:44](610 MB)
-PASS -- TEST 'control_latlon_intel' [05:25, 03:19](603 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:24](600 MB)
-PASS -- TEST 'control_c48_intel' [11:34, 10:05](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:35, 10:11](839 MB)
-PASS -- TEST 'control_c192_intel' [14:44, 12:19](727 MB)
-PASS -- TEST 'control_c384_intel' [18:42, 15:47](898 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:13, 13:29](1009 MB)
-PASS -- TEST 'control_stochy_intel' [04:25, 02:15](606 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:20, 01:17](432 MB)
-PASS -- TEST 'control_lndp_intel' [04:25, 02:08](594 MB)
-PASS -- TEST 'control_iovr4_intel' [05:28, 03:22](598 MB)
-PASS -- TEST 'control_iovr5_intel' [05:28, 03:18](597 MB)
-PASS -- TEST 'control_p8_intel' [06:18, 04:01](1579 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:58](1578 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 03:50](1579 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:18, 02:08](810 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:27, 03:50](1565 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:05](838 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:28, 04:03](1561 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:39](1660 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:53](1579 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 05:10](1642 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:00](1579 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:00, 04:32](1584 MB)
-PASS -- TEST 'regional_control_intel' [08:50, 07:02](765 MB)
-PASS -- TEST 'regional_restart_intel' [05:41, 03:48](938 MB)
-PASS -- TEST 'regional_decomp_intel' [09:50, 07:25](760 MB)
-PASS -- TEST 'regional_2threads_intel' [06:41, 04:18](754 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 07:01](767 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 06:57](763 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:16, 32:07]
-PASS -- TEST 'rap_control_intel' [12:07, 09:59](993 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:06, 05:29](1217 MB)
-PASS -- TEST 'rap_decomp_intel' [13:02, 10:35](988 MB)
-PASS -- TEST 'rap_2threads_intel' [12:04, 09:29](1084 MB)
-PASS -- TEST 'rap_restart_intel' [08:29, 05:21](984 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:28, 09:57](994 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:03, 10:41](986 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:35, 07:33](1000 MB)
-PASS -- TEST 'hrrr_control_intel' [07:56, 05:08](992 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:26](988 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:44](1061 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:48](927 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:15, 09:52](982 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:16](1943 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:59](1940 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:15, 30:33]
-PASS -- TEST 'control_csawmg_intel' [09:46, 07:46](694 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:46, 07:41](696 MB)
-PASS -- TEST 'control_ras_intel' [06:24, 04:20](671 MB)
-
-PASS -- COMPILE 'wam_intel' [31:13, 29:25]
-PASS -- TEST 'control_wam_intel' [04:18, 02:41](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:14, 31:16]
-PASS -- TEST 'control_p8_faster_intel' [06:32, 03:29](1574 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:41, 06:29](766 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:10]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:18](763 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:19](759 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:42](761 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:22](769 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:10](810 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:40, 05:11](809 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:20, 03:26](776 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:29, 03:29](822 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:45, 03:33](1601 MB)
-PASS -- TEST 'regional_debug_intel' [23:45, 21:39](776 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:21, 06:00](1157 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:53](1148 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:57](1151 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:58](1150 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:19, 05:58](1159 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:17](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:07](1148 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:08](1150 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:22, 06:07](1151 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 05:59](1158 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:21, 05:55](1151 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 06:00](1148 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:48](1147 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 05:54](1143 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:23, 07:09](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:21, 06:02](1152 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:32, 10:22](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:36]
-PASS -- TEST 'control_wam_debug_intel' [08:19, 06:08](443 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 29:29]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:07](1073 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 08:12](898 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 04:18](873 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:23, 07:50](944 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:51, 04:00](913 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:06, 04:38](858 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:13](900 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 02:22](850 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:17, 42:14]
-PASS -- TEST 'conus13km_control_intel' [04:55, 02:52](1109 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:20](1053 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:38](1023 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:15, 30:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:44, 05:27](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:53](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:51](1029 MB)
-PASS -- TEST 'conus13km_debug_intel' [20:59, 18:23](1142 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [20:59, 18:31](885 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:49, 10:43](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:54, 18:23](1207 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:45]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:25, 06:03](1075 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:19, 34:08]
-PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:52](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:25, 06:22](1080 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:16](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:24, 16:18](798 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:38, 18:07](822 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:05, 05:42](774 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:16, 31:02]
-PASS -- TEST 'hafs_regional_docn_intel' [11:25, 08:30](770 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:25, 08:42](752 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:08, 07:47]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 03:35](1051 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:10](1016 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:31](940 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:18, 03:30](920 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:37](921 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:36](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:37](1051 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:31](917 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:50](882 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:11, 07:45](860 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:37](1054 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 05:01](2415 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:56](2404 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:03]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:17, 07:58](1012 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:44]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:16, 03:32](1046 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 01:32](233 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:16](252 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:49](254 MB)
-
-PASS -- COMPILE 'atml_intel' [35:15, 33:55]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:10](1596 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:42, 08:06](1596 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 04:20](873 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:14, 32:10]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:24, 02:17](1606 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:17, 31:50]
-PASS -- TEST 'control_atmwav_intel' [05:10, 02:10](614 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:14, 30:26]
-PASS -- TEST 'atmaero_control_p8_intel' [08:26, 05:10](1693 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:23, 06:19](1719 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:36](1734 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:25, 38:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 06:41](1789 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:32, 53:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:07, 20:38](1669 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:05](1874 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:06, 10:25](995 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:40, 23:43](1628 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:25, 38:23]
+PASS -- TEST 'cpld_control_p8_intel' [10:23, 07:29](1825 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 07:26](1830 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:17](1714 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:23, 07:30](1852 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:47, 04:19](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 07:09](2265 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 07:33](1830 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:40, 06:24](1784 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:41, 07:28](1825 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 07:09](1797 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:24, 35:45]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:29, 05:49](1666 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1715 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:11]
+PASS -- TEST 'cpld_debug_p8_intel' [13:54, 10:27](1844 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:41]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 07:10](1680 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:21, 32:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:34](1721 MB)
+
+PASS -- COMPILE 's2s_intel' [33:21, 31:57]
+PASS -- TEST 'cpld_control_c48_intel' [15:11, 12:39](2795 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:52, 32:51]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:08, 07:02](1832 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:30, 45:45]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:46, 20:43](1687 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:48, 10:17](1035 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:48, 23:52](1656 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:41]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:50, 32:03](1691 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:21, 34:21]
+PASS -- TEST 'control_flake_intel' [06:29, 04:30](644 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:15](596 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 03:47](600 MB)
+PASS -- TEST 'control_latlon_intel' [05:25, 03:18](600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](595 MB)
+PASS -- TEST 'control_c48_intel' [11:35, 10:04](840 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:35, 10:04](842 MB)
+PASS -- TEST 'control_c192_intel' [14:46, 12:19](726 MB)
+PASS -- TEST 'control_c384_intel' [18:40, 15:44](897 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:24, 13:23](1016 MB)
+PASS -- TEST 'control_stochy_intel' [04:29, 02:11](606 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB)
+PASS -- TEST 'control_lndp_intel' [04:28, 02:08](602 MB)
+PASS -- TEST 'control_iovr4_intel' [05:31, 03:18](593 MB)
+PASS -- TEST 'control_iovr5_intel' [05:31, 03:19](593 MB)
+PASS -- TEST 'control_p8_intel' [06:43, 03:57](1570 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:46, 03:52](1577 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 03:51](1583 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:59, 02:07](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:48](1572 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 02:03](847 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:11, 04:00](1569 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:38](1653 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:55](1575 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:32, 05:07](1643 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:57](1579 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:48, 04:30](1581 MB)
+PASS -- TEST 'regional_control_intel' [08:41, 06:58](770 MB)
+PASS -- TEST 'regional_restart_intel' [05:47, 03:42](937 MB)
+PASS -- TEST 'regional_decomp_intel' [09:41, 07:24](768 MB)
+PASS -- TEST 'regional_2threads_intel' [06:40, 04:18](751 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:53](763 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 07:01](762 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:24, 32:34]
+PASS -- TEST 'rap_control_intel' [12:10, 10:07](990 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:23, 05:39](1215 MB)
+PASS -- TEST 'rap_decomp_intel' [13:16, 10:38](981 MB)
+PASS -- TEST 'rap_2threads_intel' [12:10, 09:30](1096 MB)
+PASS -- TEST 'rap_restart_intel' [08:29, 05:14](992 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:35, 10:04](985 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:11, 10:38](983 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:31, 07:30](993 MB)
+PASS -- TEST 'hrrr_control_intel' [08:02, 05:14](992 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 05:28](984 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:34, 04:47](1064 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:48](923 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:35, 09:57](991 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:07](1940 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 11:57](1941 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:17, 30:54]
+PASS -- TEST 'control_csawmg_intel' [09:44, 07:57](698 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:42, 07:51](696 MB)
+PASS -- TEST 'control_ras_intel' [06:24, 04:22](669 MB)
+
+PASS -- COMPILE 'wam_intel' [31:18, 29:34]
+PASS -- TEST 'control_wam_intel' [04:21, 02:45](496 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:20]
+PASS -- TEST 'control_p8_faster_intel' [06:51, 03:35](1574 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:51, 06:31](763 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 05:23]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 03:18](765 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:27, 03:25](760 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:41](764 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:20, 03:19](768 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:13](808 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:41, 05:14](806 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:22, 03:22](773 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:31, 03:25](816 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:53, 03:31](1597 MB)
+PASS -- TEST 'regional_debug_intel' [23:53, 21:36](778 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:26, 05:58](1154 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:25, 05:53](1145 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:58](1153 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:00](1152 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:00](1151 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:17](1232 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 06:07](1154 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:07](1151 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:02](1153 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:05](1157 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:52](1148 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:00](1146 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:30, 09:49](1149 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:56](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:31, 07:13](1155 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:00](1144 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:36, 10:25](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 04:00]
+PASS -- TEST 'control_wam_debug_intel' [08:26, 06:08](439 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:17, 29:53]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:16, 05:07](1074 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:03, 08:12](896 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 04:22](862 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:30, 07:50](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:11, 04:05](910 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:11, 04:33](857 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 06:21](902 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:29, 02:20](848 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:22, 42:04]
+PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1106 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:20](1054 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:34](1028 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:22, 30:09]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:51]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 05:56](1029 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:51](1032 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:05, 18:18](1144 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:28](845 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:55, 10:39](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:01, 18:16](1206 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:40]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:01](1074 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:21, 34:41]
+PASS -- TEST 'hafs_regional_atm_intel' [09:19, 07:02](715 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:20](1084 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:42, 09:10](769 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:29, 16:17](797 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:05](825 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:16, 05:40](774 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:19, 31:41]
+PASS -- TEST 'hafs_regional_docn_intel' [11:31, 08:34](769 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:39](751 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:35](1059 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:13](1023 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:31](924 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:35](923 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:34](917 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:35](1056 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:39](1059 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 03:29](938 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 07:52](886 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:50](844 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:35](1061 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:08](2403 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:06](2401 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:09, 03:21]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 07:57](1014 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:36](1061 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:50]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:33](228 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:17](249 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:46](249 MB)
+
+PASS -- COMPILE 'atml_intel' [35:19, 33:55]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:41, 08:35](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:53, 09:09](1600 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:08, 05:48](868 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:20, 32:10]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:15](1601 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:18, 31:26]
+PASS -- TEST 'control_atmwav_intel' [05:23, 02:10](612 MB)
+
+PASS -- COMPILE 'atmaero_intel' [33:25, 32:08]
+PASS -- TEST 'atmaero_control_p8_intel' [10:04, 06:30](1694 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:06, 07:10](1717 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:48, 07:45](1747 MB)
SYNOPSIS:
-Starting Date/Time: 20240311 20:36:45
-Ending Date/Time: 20240312 00:02:36
-Total Time: 03h:26m:28s
+Starting Date/Time: 20240313 18:37:03
+Ending Date/Time: 20240313 22:09:37
+Total Time: 03h:33m:10s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index f82c2e41f7..189562e4fc 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,20 +1,20 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6865423137e59e6b2343fada23bfe5582e2fedfa
+0d7aa189232097602b4a7b5cdab9caad9aba58ad
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,362 +47,280 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_11060
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_318497
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
+* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:08, 15:39]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 05:21](3182 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:10, 21:30]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:18, 16:26](1747 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:08, 17:16](2025 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:07](1063 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 18:37](1649 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:07, 06:23]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:52, 22:49](1690 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:08, 15:35]
-PASS -- TEST 'cpld_control_p8_intel' [08:40, 05:44](3208 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:02, 05:45](3206 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:33](3254 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 05:46](3237 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:03, 03:21](3273 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:57, 06:11](3558 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:40, 05:45](3204 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 04:46](3068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 05:49](3213 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:01, 09:54](3345 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:32, 06:12](3623 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 11:41](4114 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:50, 06:54](4353 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:52, 05:20](3175 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:08, 14:31]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 04:30](1736 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 04:25](1778 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:22]
-PASS -- TEST 'cpld_debug_p8_intel' [12:35, 08:36](3240 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:07, 05:27]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 06:10](1752 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:08, 13:40]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:35, 04:21](1778 MB)
-
-PASS -- COMPILE 's2s_intel' [15:08, 13:30]
-FAIL TO COMPARE -- TEST 'cpld_control_c48_intel' [, ]( MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [22:09, 20:05]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:44, 05:41](3209 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:08]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:20, 16:34](1774 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 08:01](1175 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:24, 18:28](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:45]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:08, 24:45](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:28]
-PASS -- TEST 'control_flake_intel' [06:24, 03:52](697 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:39](655 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 02:44](659 MB)
-PASS -- TEST 'control_latlon_intel' [05:25, 02:47](652 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:57](649 MB)
-PASS -- TEST 'control_c48_intel' [08:28, 06:09](876 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 06:03](872 MB)
-PASS -- TEST 'control_c192_intel' [11:37, 09:30](858 MB)
-PASS -- TEST 'control_c384_intel' [14:46, 10:31](1246 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:12, 09:50](1358 MB)
-PASS -- TEST 'control_stochy_intel' [04:24, 01:58](658 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:23, 01:00](503 MB)
-PASS -- TEST 'control_lndp_intel' [04:24, 01:50](656 MB)
-PASS -- TEST 'control_iovr4_intel' [05:29, 02:50](646 MB)
-PASS -- TEST 'control_iovr5_intel' [05:29, 02:32](648 MB)
-PASS -- TEST 'control_p8_intel' [06:24, 02:57](1632 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:30, 03:08](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:46, 02:53](1634 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:29, 01:36](893 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:18, 02:53](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:29, 01:38](934 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:15, 03:04](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:21, 03:01](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:49, 05:16](1636 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 03:58](1698 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:01](1640 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:48, 03:27](1633 MB)
-PASS -- TEST 'regional_control_intel' [07:41, 05:12](858 MB)
-PASS -- TEST 'regional_restart_intel' [05:47, 02:43](1024 MB)
-PASS -- TEST 'regional_decomp_intel' [07:40, 05:35](850 MB)
-PASS -- TEST 'regional_2threads_intel' [06:30, 03:41](848 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:41, 05:10](1370 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:09](855 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:07](857 MB)
-PASS -- TEST 'regional_wofs_intel' [09:39, 06:40](1921 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 12:03]
-PASS -- TEST 'rap_control_intel' [11:34, 07:42](1101 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:40](1299 MB)
-PASS -- TEST 'rap_decomp_intel' [11:09, 08:08](1035 MB)
-PASS -- TEST 'rap_2threads_intel' [11:07, 07:54](1181 MB)
-PASS -- TEST 'rap_restart_intel' [07:27, 04:02](1095 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:35, 07:43](1103 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 08:08](1029 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:32, 05:48](1128 MB)
-PASS -- TEST 'hrrr_control_intel' [07:05, 03:59](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:53, 04:04](1020 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 03:22](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](988 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:26, 07:35](1099 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:10](1997 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:25, 08:55](2073 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:06, 12:12]
-PASS -- TEST 'control_csawmg_intel' [08:52, 05:55](750 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:45, 05:51](747 MB)
-PASS -- TEST 'control_ras_intel' [05:20, 03:17](739 MB)
-
-PASS -- COMPILE 'wam_intel' [13:06, 11:47]
-PASS -- TEST 'control_wam_intel' [04:20, 02:02](658 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:47]
-PASS -- TEST 'control_p8_faster_intel' [06:38, 02:37](1630 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:45, 04:35](854 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 02:45](812 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 02:49](811 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:06](818 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:48](815 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:06](863 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:10](862 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:19, 02:45](823 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:27, 02:50](872 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:46, 02:54](1642 MB)
-PASS -- TEST 'regional_debug_intel' [19:43, 17:09](841 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1205 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:45](1208 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:48](1199 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 04:52](1201 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:55](1203 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1279 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:24, 04:57](1191 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 05:00](1198 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:56](1197 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1207 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:49](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 04:51](1205 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:57](1194 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:59](1195 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:45](1197 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:51](1197 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:25](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:05, 03:52]
-PASS -- TEST 'control_wam_debug_intel' [07:19, 05:03](514 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:07, 11:32]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:25](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:32](1006 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:40, 03:22](985 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 06:41](1096 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:48, 03:17](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:08, 03:35](921 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 04:48](1028 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](923 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 14:15]
-PASS -- TEST 'conus13km_control_intel' [04:58, 02:05](1202 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:05](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:15](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 10:51]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 04:11](993 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:37]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:58](1087 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:48](1075 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:01, 14:22](1228 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:28](925 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:26](1154 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:21](1298 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:30]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:01](1132 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:07, 13:39]
-PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:36](747 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:04](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:28, 07:48](832 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 12:50](974 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:26, 14:33](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:01, 06:07](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:29, 07:23](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:16](370 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:45, 08:14](477 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:50, 04:07](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:52, 04:02](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 05:21](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:30](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [15:02, 04:31](805 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:52, 13:46](615 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:43]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:30](675 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:10, 09:33](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12]
-FAIL TO COMPARE -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [, ]( MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:07, 13:00]
-PASS -- TEST 'hafs_regional_docn_intel' [09:11, 06:15](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 06:18](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:56, 16:07](1208 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 06:34]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:38](1151 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:18, 01:40](1089 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:30](1021 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:44](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:41](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:43](1137 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:46](1135 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:38](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:15, 05:56](1051 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:09, 05:56](1031 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [15:14, 02:42](1132 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:17, 03:30](2447 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [15:17, 03:38](2437 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:55]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:17, 06:16](1067 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 07:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:15, 02:43](1129 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:47](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:24, 00:48](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](320 MB)
-
-PASS -- COMPILE 'atml_intel' [14:07, 12:15]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:43, 04:13](1613 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [14:35, 04:16](1604 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 02:24](896 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:07, 11:45]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [12:24, 01:41](1663 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:07, 12:04]
-PASS -- TEST 'control_atmwav_intel' [12:07, 01:39](671 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:06, 12:07]
-PASS -- TEST 'atmaero_control_p8_intel' [13:31, 03:52](3029 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [14:29, 04:47](3087 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:11, 05:00](3110 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:06, 10:48]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:13]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:56, 21:02](4579 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:21]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:43, 05:11](3187 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:07, 23:32]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 16:54](1737 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:55, 17:26](2024 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:01, 08:09](1113 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:51, 18:32](1639 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:17]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 22:58](1691 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:07, 14:43]
+PASS -- TEST 'cpld_control_p8_intel' [08:33, 05:41](3213 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:40, 05:40](3213 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:18](3258 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:33, 05:44](3233 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:21](3274 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:45, 06:13](3559 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:32, 05:39](3199 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:34, 04:47](3076 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:44, 05:46](3214 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:32, 10:08](3337 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:03, 06:47](3621 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:37, 11:16](4084 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 06:56](4368 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 05:28](3172 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:06, 13:06]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:31](1736 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:18, 04:20](1779 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:52]
+PASS -- TEST 'cpld_debug_p8_intel' [11:34, 08:34](3250 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:41]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:03](1750 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:07, 12:55]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:18](1782 MB)
+
+PASS -- COMPILE 's2s_intel' [14:06, 12:34]
+PASS -- TEST 'cpld_control_c48_intel' [09:51, 08:02](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:07, 17:08]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:16](3212 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:26]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 16:33](1722 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 08:12](1171 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 18:27](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:37]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:08, 24:09](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:06, 11:32]
+PASS -- TEST 'control_flake_intel' [05:21, 03:30](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:28](651 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:38](654 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:30](650 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:34](650 MB)
+PASS -- TEST 'control_c48_intel' [07:25, 05:58](878 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 05:57](864 MB)
+PASS -- TEST 'control_c192_intel' [11:34, 09:08](860 MB)
+PASS -- TEST 'control_c384_intel' [13:33, 10:04](1242 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:42, 09:03](1360 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:46](655 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:20, 01:00](504 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:38](658 MB)
+PASS -- TEST 'control_iovr4_intel' [04:25, 02:33](650 MB)
+PASS -- TEST 'control_iovr5_intel' [04:21, 02:30](655 MB)
+PASS -- TEST 'control_p8_intel' [05:03, 02:57](1638 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:14, 02:57](1639 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 02:51](1626 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:09, 01:39](892 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:13, 02:57](1612 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 01:36](930 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:20, 03:03](1609 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:06](1722 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:11](1624 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:42, 03:58](1693 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:41, 03:02](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:01, 03:31](1644 MB)
+PASS -- TEST 'regional_control_intel' [07:54, 05:09](860 MB)
+PASS -- TEST 'regional_restart_intel' [04:43, 02:43](977 MB)
+PASS -- TEST 'regional_decomp_intel' [07:51, 05:28](853 MB)
+PASS -- TEST 'regional_2threads_intel' [05:46, 03:39](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:39, 05:03](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:05](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:06](856 MB)
+PASS -- TEST 'regional_wofs_intel' [08:37, 06:32](1920 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:06, 10:51]
+PASS -- TEST 'rap_control_intel' [10:29, 07:41](1101 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 04:46](1295 MB)
+PASS -- TEST 'rap_decomp_intel' [10:58, 08:07](1024 MB)
+PASS -- TEST 'rap_2threads_intel' [10:09, 07:54](1180 MB)
+PASS -- TEST 'rap_restart_intel' [06:18, 04:00](1110 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1109 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:05, 08:11](1039 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:23, 05:47](1136 MB)
+PASS -- TEST 'hrrr_control_intel' [06:02, 03:58](1038 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:01, 04:05](1022 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 03:29](1114 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:10](995 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:34](1106 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:12](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:56](2077 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:07, 11:27]
+PASS -- TEST 'control_csawmg_intel' [08:34, 06:04](750 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:47, 05:57](749 MB)
+PASS -- TEST 'control_ras_intel' [05:20, 03:18](738 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 10:18]
+PASS -- TEST 'control_wam_intel' [04:19, 02:09](659 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17]
+PASS -- TEST 'control_p8_faster_intel' [05:40, 02:39](1617 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:40, 04:36](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:23]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:47](816 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:46](819 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:08](814 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:49](815 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](817 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:06](859 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](825 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:59](871 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 02:57](1633 MB)
+PASS -- TEST 'regional_debug_intel' [18:38, 16:57](838 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:22, 04:57](1200 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:17, 04:44](1199 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:56](1201 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:58](1197 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:54](1201 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:14](1285 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:00](1201 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:01](1199 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:02](1199 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1208 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1205 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:53](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:59](1200 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1201 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:12](1200 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:58](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:30](1199 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:05, 03:13]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:04](502 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:16]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:43](1162 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:27](1052 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:22](988 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:40](1089 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 02:58](964 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 03:37](923 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:49](1033 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:23]
+PASS -- TEST 'conus13km_control_intel' [04:53, 02:07](1202 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:02](1119 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:16](1114 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:07, 11:09]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:18](996 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:00]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:00](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:50](1080 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:50, 14:33](1231 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:36](952 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:49](1158 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:26](1299 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:03]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:59](1077 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:08, 12:54]
+PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:38](740 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:58](1116 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 07:00](833 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:50](861 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:21, 14:28](884 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:09](498 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:36](518 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:50, 03:09](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:18, 08:02](482 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 04:09](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:55](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:20](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:26](403 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:57, 04:27](807 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:50](531 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:27](636 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:35](744 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:08, 12:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:56](729 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:08, 12:12]
+PASS -- TEST 'hafs_regional_docn_intel' [09:14, 06:17](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 06:24](814 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:04](1210 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:07, 08:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:41](1081 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:41](1088 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1018 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:41](1013 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:37](1016 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:39](1125 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:36](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:37](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:55](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 05:54](1029 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:41](1104 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:34](2494 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:38](2498 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 04:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:07](1063 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:07, 08:21]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:12, 02:33](1130 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:51](251 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](320 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](321 MB)
+
+PASS -- COMPILE 'atml_intel' [14:08, 12:10]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:19](1607 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:16](1595 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:16](895 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:09, 12:12]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:47](1664 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:07, 11:59]
+PASS -- TEST 'control_atmwav_intel' [04:05, 01:40](670 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:07, 11:08]
+PASS -- TEST 'atmaero_control_p8_intel' [06:17, 03:57](3024 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:48](3088 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:05](3108 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:06, 10:44]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:04]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:50, 21:20](4578 MB)
SYNOPSIS:
-Starting Date/Time: 20240308 10:08:28
-Ending Date/Time: 20240308 11:48:33
-Total Time: 01h:40m:51s
+Starting Date/Time: 20240314 09:08:52
+Ending Date/Time: 20240314 10:37:33
+Total Time: 01h:29m:30s
Compiles Completed: 39/39
-Tests Completed: 180/182
-Failed Tests:
-* TEST cpld_control_c48_intel: FAIL TO COMPARE
--- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_cpld_control_c48_intel.log
-* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: FAIL TO COMPARE
--- LOG: /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2164/tests/logs/log_orion/rt_hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ORION REGRESSION TESTING LOG====
-====START OF ORION REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-8eee1bc778ec0b6d8a357341c859edb8799367da
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- c315e47876057228ee105b348b8653f40836dbbb FV3/ccpp/framework (v0.1.0-1371-gc315e47)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cc8a4167094b3c2059271ec4c6dd64e3a8aa90ef FV3 (remotes/origin/bugfix/wetness)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221010
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 's2s_intel' [14:06, 12:08]
-PASS -- TEST 'cpld_control_c48_intel' [10:46, 08:07](2823 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:53, 07:13](731 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240308 14:10:08
-Ending Date/Time: 20240308 15:01:01
-Total Time: 00h:51m:04s
-Compiles Completed: 2/2
-Tests Completed: 2/2
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 4e665fc535..f55d8421ed 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,20 +1,20 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-8f3ed3644cc80b29dc60d07e7a9946d233a2d6d5
+0d7aa189232097602b4a7b5cdab9caad9aba58ad
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop-40-g062f795)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- cc114f40bef4ca8d19ccd739cbaec3fc829a607c FV3/ccpp/physics (EP4-682-gcc114f40)
+ bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (remotes/origin/HEAD-432-gbbdec2ff)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- bac6ca34539d9f704f31ee5555d8364f634163e1 CICE-interface/CICE (CICE6.0.0-447-gbac6ca3)
- fa78b4647e480ed96ad4c692473c6f76210e0ec5 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-gfa78b464)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 062f7958ccd9bd97b8737432f75b06ec734777a7 FV3 (heads/develop-40-g062f795)
+ 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,236 +47,236 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240301
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_149173
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240312
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_69973
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:55, 20:46]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [25:37, 01:22](2971 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [34:27, 34:10]
-PASS -- TEST 'cpld_control_gfsv17_intel' [13:05, 02:16](1585 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:41, 01:26](1706 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [54:25, 02:00](845 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:06, 01:57](1569 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:18, 29:58]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [17:15, 01:24](1599 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:49, 18:04]
-PASS -- TEST 'cpld_control_p8_intel' [28:43, 01:27](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:43, 01:42](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [20:15, 02:02](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [28:43, 01:23](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [20:15, 01:58](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [28:43, 01:07](3317 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [28:43, 01:31](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [28:44, 01:31](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:43, 01:41](3000 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:52, 04:33](3950 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:44, 04:16](4245 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [28:43, 01:55](2968 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:34, 10:29]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [35:58, 00:53](1587 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:58, 02:11](1635 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:36, 10:53]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:56, 01:01](1635 MB)
-
-PASS -- COMPILE 's2s_intel' [10:32, 09:48]
-PASS -- TEST 'cpld_control_c48_intel' [36:59, 00:49](2657 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:54, 18:47]
-PASS -- TEST 'cpld_control_p8_faster_intel' [27:38, 01:51](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:06, 23:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 01:21](1604 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:30, 00:41](899 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:53, 00:58](1583 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:21, 04:15]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:12, 01:09](1617 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:51, 18:07]
-PASS -- TEST 'control_flake_intel' [23:20, 00:24](578 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [23:21, 00:47](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [23:20, 00:41](528 MB)
-PASS -- TEST 'control_latlon_intel' [23:21, 00:43](520 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [23:20, 00:51](523 MB)
-PASS -- TEST 'control_c48_intel' [23:20, 00:51](716 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [23:19, 00:58](717 MB)
-PASS -- TEST 'control_c192_intel' [23:20, 00:32](636 MB)
-PASS -- TEST 'control_c384_intel' [23:24, 01:51](953 MB)
-PASS -- TEST 'control_c384gdas_intel' [23:25, 02:27](1092 MB)
-PASS -- TEST 'control_stochy_intel' [23:21, 00:22](526 MB)
-PASS -- TEST 'control_stochy_restart_intel' [20:52, 01:04](335 MB)
-PASS -- TEST 'control_lndp_intel' [23:20, 00:27](526 MB)
-PASS -- TEST 'control_iovr4_intel' [23:20, 00:45](526 MB)
-PASS -- TEST 'control_iovr5_intel' [23:20, 00:46](521 MB)
-PASS -- TEST 'control_p8_intel' [23:20, 02:03](1506 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [23:21, 01:58](1498 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [23:21, 02:05](1511 MB)
-PASS -- TEST 'control_restart_p8_intel' [17:41, 00:41](695 MB)
-PASS -- TEST 'control_noqr_p8_intel' [23:20, 02:02](1488 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [17:41, 00:42](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:32](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [20:53, 00:54](1598 MB)
-PASS -- TEST 'control_p8_lndp_intel' [20:15, 01:15](1499 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [20:08, 02:05](1556 MB)
-PASS -- TEST 'control_p8_mynn_intel' [20:02, 01:48](1518 MB)
-PASS -- TEST 'merra2_thompson_intel' [20:00, 01:33](1513 MB)
-PASS -- TEST 'regional_control_intel' [19:49, 00:17](609 MB)
-PASS -- TEST 'regional_restart_intel' [13:55, 00:25](777 MB)
-PASS -- TEST 'regional_decomp_intel' [19:47, 00:52](610 MB)
-PASS -- TEST 'regional_2threads_intel' [19:48, 00:52](673 MB)
-PASS -- TEST 'regional_noquilt_intel' [19:46, 00:31](1140 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [19:44, 00:24](611 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [19:39, 01:10](608 MB)
-PASS -- TEST 'regional_wofs_intel' [18:53, 00:58](1580 MB)
-
-PASS -- COMPILE 'rrfs_intel' [21:57, 21:33]
-PASS -- TEST 'rap_control_intel' [15:03, 01:28](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [15:04, 01:05](1094 MB)
-PASS -- TEST 'rap_decomp_intel' [15:03, 01:41](917 MB)
-PASS -- TEST 'rap_2threads_intel' [15:03, 02:00](1012 MB)
-PASS -- TEST 'rap_restart_intel' [06:16, 01:19](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [15:03, 01:14](913 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:03, 01:40](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:28, 01:53](785 MB)
-PASS -- TEST 'hrrr_control_intel' [15:03, 01:08](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [15:03, 01:03](906 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [15:02, 01:25](994 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [09:53, 01:03](743 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [14:35, 01:16](908 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 01:02](1877 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 01:17](1863 MB)
-
-PASS -- COMPILE 'csawmg_intel' [25:11, 23:56]
-PASS -- TEST 'control_csawmg_intel' [10:46, 00:29](600 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:46, 00:32](598 MB)
-PASS -- TEST 'control_ras_intel' [10:46, 00:55](560 MB)
-
-PASS -- COMPILE 'wam_intel' [14:41, 14:08]
-PASS -- TEST 'control_wam_intel' [18:46, 00:50](270 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:40, 12:32]
-PASS -- TEST 'control_p8_faster_intel' [14:18, 02:04](1517 MB)
-PASS -- TEST 'regional_control_faster_intel' [13:51, 00:32](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [22:02, 20:47]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:36, 01:17](688 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:36, 01:26](689 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:36, 00:56](692 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:36, 01:14](690 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:36, 00:43](736 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 00:50](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:36, 01:11](702 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:36, 01:17](744 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:36, 01:05](1516 MB)
-PASS -- TEST 'regional_debug_intel' [05:35, 01:07](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:36, 01:01](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:36, 01:08](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:49, 01:02](1070 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:49, 00:59](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [03:47, 00:57](1077 MB)
-PASS -- TEST 'rap_diag_debug_intel' [03:46, 00:47](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [01:28, 00:54](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:26, 00:54](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [01:07, 01:02](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [01:06, 01:04](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [01:06, 01:10](1073 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [01:02, 01:02](1077 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [00:58, 00:58](1071 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [00:56, 01:06](1078 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [00:53, 01:14](1074 MB)
-PASS -- TEST 'rap_flake_debug_intel' [00:50, 01:01](1080 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [00:26, 01:21](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:21, 04:54]
-PASS -- TEST 'control_wam_debug_intel' [18:25, 00:55](299 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:46, 15:42]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 01:25](954 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 01:24](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:34, 01:41](787 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 01:49](852 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:35, 01:34](842 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 01:32](791 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [59:05, 01:42](692 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [00:00, 00:16](669 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:07, 22:14]
-PASS -- TEST 'conus13km_control_intel' [59:05, 01:01](1001 MB)
-PASS -- TEST 'conus13km_2threads_intel' [55:08, 00:59](1006 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [54:53, 00:43](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:00, 21:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [59:00, 01:32](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:50, 16:08]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:50, 01:04](953 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:49, 01:13](951 MB)
-PASS -- TEST 'conus13km_debug_intel' [58:59, 00:37](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [58:57, 00:30](711 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [58:08, 00:41](1039 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:06, 00:38](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:35, 09:26]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 01:05](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:40, 10:51]
-PASS -- TEST 'hafs_regional_atm_intel' [57:36, 01:58](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:18, 01:18](967 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:05, 01:58](661 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [54:54, 01:43](697 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:27, 01:18](708 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [54:26, 01:11](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:24, 02:14](405 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [54:22, 01:26](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:21, 02:36](375 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [54:00, 01:36](421 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:15, 00:54](424 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:17, 00:44](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:16, 01:22](315 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [18:56, 18:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [53:08, 00:54](498 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:59, 17:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:07, 01:44](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:36, 00:52](713 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:48, 16:22]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [52:35, 00:58](719 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:40, 11:31]
-PASS -- TEST 'hafs_regional_docn_intel' [52:12, 01:22](661 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:10, 01:25](650 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [51:20, 00:50](882 MB)
-
-PASS -- COMPILE 'atml_intel' [22:04, 21:04]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:30, 02:17](1549 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [44:30, 02:20](1542 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:36, 00:19](744 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:38, 10:31]
-PASS -- TEST 'atmaero_control_p8_intel' [51:14, 01:37](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [49:47, 01:00](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:38, 01:39](2922 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:39, 12:23]
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:36, 09:50]
-PASS -- TEST 'regional_atmaq_debug_intel' [49:32, 01:35](4432 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [26:11, 25:55]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:52, 01:35](2976 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:13, 26:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [52:50, 01:33](1590 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:16, 01:50](1707 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [32:01, 02:04](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:51, 02:22](1578 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:02, 21:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [58:02, 01:43](1606 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:02, 21:22]
+PASS -- TEST 'cpld_control_p8_intel' [58:01, 01:39](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:01, 01:34](3000 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [46:26, 01:04](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [58:01, 01:13](3025 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [46:26, 01:40](3082 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [58:01, 01:15](3315 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [58:01, 01:30](3002 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [58:02, 01:28](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:01, 01:38](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [58:10, 03:54](3957 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:27, 04:08](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [58:01, 01:40](2971 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:48, 14:22]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:15, 01:04](1581 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 01:14](1640 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [22:02, 20:51]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:01, 01:27](1636 MB)
+
+PASS -- COMPILE 's2s_intel' [11:41, 11:12]
+PASS -- TEST 'cpld_control_c48_intel' [08:22, 00:57](2643 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [27:14, 26:35]
+PASS -- TEST 'cpld_control_p8_faster_intel' [52:50, 01:17](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [11:43, 10:31]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:20, 01:37](1608 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:21, 01:32](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:22, 01:24](1584 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:24, 27:15]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:41, 01:30](1616 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [31:19, 27:57]
+PASS -- TEST 'control_flake_intel' [37:03, 00:35](572 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [37:03, 00:52](523 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [37:03, 00:47](533 MB)
+PASS -- TEST 'control_latlon_intel' [37:03, 00:48](524 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [37:03, 00:55](522 MB)
+PASS -- TEST 'control_c48_intel' [37:02, 01:10](713 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [37:02, 01:16](719 MB)
+PASS -- TEST 'control_c192_intel' [37:03, 00:53](639 MB)
+PASS -- TEST 'control_c384_intel' [36:58, 01:52](948 MB)
+PASS -- TEST 'control_c384gdas_intel' [36:44, 03:09](1094 MB)
+PASS -- TEST 'control_stochy_intel' [35:43, 00:28](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [33:12, 00:33](331 MB)
+PASS -- TEST 'control_lndp_intel' [34:57, 01:06](526 MB)
+PASS -- TEST 'control_iovr4_intel' [34:57, 01:30](527 MB)
+PASS -- TEST 'control_iovr5_intel' [34:41, 00:22](524 MB)
+PASS -- TEST 'control_p8_intel' [34:37, 01:52](1496 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [34:37, 02:01](1499 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [34:24, 02:29](1507 MB)
+PASS -- TEST 'control_restart_p8_intel' [27:53, 01:26](689 MB)
+PASS -- TEST 'control_noqr_p8_intel' [34:21, 01:36](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [27:53, 01:24](694 MB)
+PASS -- TEST 'control_decomp_p8_intel' [34:21, 01:34](1502 MB)
+PASS -- TEST 'control_2threads_p8_intel' [34:21, 01:59](1595 MB)
+PASS -- TEST 'control_p8_lndp_intel' [34:21, 01:12](1504 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [34:04, 01:41](1565 MB)
+PASS -- TEST 'control_p8_mynn_intel' [33:21, 02:07](1518 MB)
+PASS -- TEST 'merra2_thompson_intel' [33:19, 02:49](1508 MB)
+PASS -- TEST 'regional_control_intel' [33:16, 00:53](609 MB)
+PASS -- TEST 'regional_restart_intel' [26:12, 00:17](778 MB)
+PASS -- TEST 'regional_decomp_intel' [33:11, 00:49](607 MB)
+PASS -- TEST 'regional_2threads_intel' [32:18, 01:26](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [31:18, 01:22](1140 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [31:07, 01:26](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [30:41, 00:21](609 MB)
+PASS -- TEST 'regional_wofs_intel' [30:08, 00:58](1581 MB)
+
+PASS -- COMPILE 'rrfs_intel' [24:03, 20:33]
+PASS -- TEST 'rap_control_intel' [44:16, 01:33](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:17, 01:21](1095 MB)
+PASS -- TEST 'rap_decomp_intel' [44:16, 01:19](919 MB)
+PASS -- TEST 'rap_2threads_intel' [44:16, 01:33](1012 MB)
+PASS -- TEST 'rap_restart_intel' [30:05, 02:12](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [44:16, 01:57](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:16, 01:43](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [29:55, 01:51](787 MB)
+PASS -- TEST 'hrrr_control_intel' [44:16, 01:55](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [44:16, 01:47](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [44:17, 01:59](993 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [37:58, 00:51](744 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [44:16, 01:53](910 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [44:16, 00:56](1874 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [44:16, 01:17](1862 MB)
+
+PASS -- COMPILE 'csawmg_intel' [21:58, 19:57]
+PASS -- TEST 'control_csawmg_intel' [43:17, 01:11](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [43:17, 01:18](598 MB)
+PASS -- TEST 'control_ras_intel' [43:17, 01:15](562 MB)
+
+PASS -- COMPILE 'wam_intel' [14:40, 11:04]
+PASS -- TEST 'control_wam_intel' [43:20, 01:17](275 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:38, 10:18]
+PASS -- TEST 'control_p8_faster_intel' [44:23, 01:51](1510 MB)
+PASS -- TEST 'regional_control_faster_intel' [44:22, 00:30](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [26:10, 22:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:53, 01:15](687 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:01, 00:40](691 MB)
+PASS -- TEST 'control_stochy_debug_intel' [28:54, 00:41](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [27:53, 00:38](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [27:52, 00:18](732 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [27:44, 01:18](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [27:16, 01:05](702 MB)
+PASS -- TEST 'control_diag_debug_intel' [27:08, 00:34](748 MB)
+PASS -- TEST 'control_debug_p8_intel' [27:04, 01:03](1521 MB)
+PASS -- TEST 'regional_debug_intel' [27:00, 01:09](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [26:52, 00:50](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [26:28, 01:13](1069 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [26:07, 01:04](1073 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [26:01, 01:01](1073 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:51, 00:46](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [24:38, 01:53](1160 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:15, 00:32](1074 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:10, 00:28](1078 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [24:00, 00:35](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:38, 00:28](1077 MB)
+PASS -- TEST 'rap_noah_debug_intel' [23:12, 01:09](1071 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [22:57, 01:06](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:24, 01:19](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [22:17, 00:36](1068 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [22:17, 00:29](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [22:15, 00:30](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:39, 02:02](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [16:47, 13:14]
+PASS -- TEST 'control_wam_debug_intel' [37:04, 01:12](304 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:13, 23:47]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:40, 01:28](956 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [21:10, 01:20](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [21:05, 01:53](785 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:43, 01:17](853 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:33, 01:20](837 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [20:13, 02:16](789 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:24, 01:14](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:12, 00:22](670 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:44, 11:23]
+PASS -- TEST 'conus13km_control_intel' [38:05, 00:55](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [20:13, 01:13](1011 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [20:04, 01:10](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:38, 10:45]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [38:01, 01:32](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:32, 09:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:45, 00:37](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [19:20, 00:54](950 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:58, 00:46](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:30, 00:32](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [17:13, 00:54](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:11, 00:58](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:29, 07:26]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [17:03, 01:22](992 MB)
+
+PASS -- COMPILE 'hafsw_intel' [27:11, 25:41]
+PASS -- TEST 'hafs_regional_atm_intel' [15:28, 01:55](618 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:27, 00:54](970 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:15, 01:49](664 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 01:21](703 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:48, 01:30](708 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:16, 01:08](393 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:14, 02:13](413 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [14:14, 00:53](281 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:16, 02:20](370 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:12, 01:34](420 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:07, 01:16](423 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:02, 01:42](491 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:00, 00:30](316 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:49, 14:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:55, 01:18](501 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 01:26](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:27, 01:30](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:46, 11:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:25, 01:38](709 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [21:08, 20:19]
+PASS -- TEST 'hafs_regional_docn_intel' [12:12, 01:24](663 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:00, 01:57](645 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:35, 01:03](881 MB)
+
+PASS -- COMPILE 'atml_intel' [25:18, 24:45]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:20, 01:33](1551 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:33, 02:16](1550 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [58:48, 00:22](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:56, 16:13]
+PASS -- TEST 'atmaero_control_p8_intel' [09:08, 01:14](2854 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:48, 01:35](2909 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:18, 01:22](2921 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:40, 09:00]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:29, 08:04]
+PASS -- TEST 'regional_atmaq_debug_intel' [07:33, 01:05](4437 MB)
SYNOPSIS:
-Starting Date/Time: 20240312 13:12:07
-Ending Date/Time: 20240312 14:37:13
-Total Time: 01h:25m:44s
+Starting Date/Time: 20240313 17:39:39
+Ending Date/Time: 20240313 19:20:18
+Total Time: 01h:41m:22s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN
index 373c25683d..6729ed1031 100644
--- a/tests/parm/control_csawmg.nml.IN
+++ b/tests/parm/control_csawmg.nml.IN
@@ -69,11 +69,11 @@
mountain = @[MOUNTAIN]
ncep_ic = .false.
d_con = 1.
- hord_mt = 6
- hord_vt = 6
- hord_tm = 6
- hord_dp = 6
- hord_tr = 13
+ hord_mt = 5
+ hord_vt = 5
+ hord_tm = 5
+ hord_dp = -5
+ hord_tr = 8
adjust_dry_mass = .false.
consv_te = 1.
do_sat_adj = .false.
diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN
index a2b5b0b71b..b01ba5f205 100644
--- a/tests/parm/csawmg3shoc127.nml.IN
+++ b/tests/parm/csawmg3shoc127.nml.IN
@@ -73,11 +73,11 @@
mountain = @[MOUNTAIN]
ncep_ic = .false.
d_con = 1.
- hord_mt = 6
- hord_vt = 6
- hord_tm = 6
- hord_dp = 6
- hord_tr = 13
+ hord_mt = 5
+ hord_vt = 5
+ hord_tm = 5
+ hord_dp = -5
+ hord_tr = 8
adjust_dry_mass = .false.
consv_te = 1.
consv_am = .false.
diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN
index 75927577b9..3f77e6fd0f 100644
--- a/tests/parm/csawmgshoc.nml.IN
+++ b/tests/parm/csawmgshoc.nml.IN
@@ -73,11 +73,11 @@
mountain = @[MOUNTAIN]
ncep_ic = .false.
d_con = 1.
- hord_mt = 6
- hord_vt = 6
- hord_tm = 6
- hord_dp = 6
- hord_tr = 13
+ hord_mt = 5
+ hord_vt = 5
+ hord_tm = 5
+ hord_dp = -5
+ hord_tr = 8
adjust_dry_mass = .false.
consv_te = 1.
consv_am = .false.
diff --git a/tests/rt.conf b/tests/rt.conf
index 854c935c7a..df432cff3d 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -148,6 +148,10 @@ RUN | control_csawmg | - noaacloud
RUN | control_csawmgt | - noaacloud | baseline |
RUN | control_ras | - noaacloud acorn | baseline |
+COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 |
+RUN | control_csawmg | + hera hercules | baseline |
+RUN | control_csawmgt | + hera hercules | baseline |
+
# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere
COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 |
RUN | control_wam | - noaacloud | baseline |
@@ -185,6 +189,11 @@ RUN | rrfs_v1beta_debug | - noaacloud
RUN | rap_clm_lake_debug | - noaacloud | baseline |
RUN | rap_flake_debug | - noaacloud | baseline |
RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline |
+### DEBUG ATM tests ###
+COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules | fv3 |
+RUN | control_csawmg_debug | + hera hercules | baseline |
+RUN | control_csawmgt_debug | + hera hercules | baseline |
+
COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | control_wam_debug | - noaacloud hercules | baseline |
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e69de29bb2..b961de3298 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -0,0 +1,8 @@
+control_csawmg intel
+control_csawmgt intel
+control_csawmg gnu
+control_csawmgt gnu
+control_csawmg_debug intel
+control_csawmgt_debug intel
+control_csawmg_debug gnu
+control_csawmgt_debug gnu
From 86b777354252f655cc6c9a72dba3fef48fcc8b80 Mon Sep 17 00:00:00 2001
From: Dom Heinzeller
Date: Mon, 18 Mar 2024 12:44:52 -0600
Subject: [PATCH 11/33] Updates of ccpp-framework and ccpp-physics (merge
ccpp-framework feature/capgen into main/20240308) Combined PR #2190 (#2181)
* FV3 - Update submodule pointers for ccpp-framework and ccpp-physics. Change units flashes 5 min-1 to flashes min-1 and update long name to make clear this is per 5 minutes.
* ccpp-physics - In physics/Interstitials/UFS_SCM_NEPTUNE/maximum_hourly_diagnostics.meta: change units flashes 5 min-1 to flashes min-1 and update long name to make clear this is per 5 minutes.
* ccpp-framework - Update main from feature/capgen as of 2024-03-08 (includes optional argument updates in feature/capgen). Only commit on top of the merge is https://github.com/NCAR/ccpp-framework/commit/6cdd38a032d89d0f79c66f37f0c7172e59f135cd which is required to parse the metadata in the Unified Forecast System / ccpp-physics (underscores in units, e.g. degree_north).
---
FV3 | 2 +-
tests/bl_date.conf | 2 +-
tests/ci/Jenkinsfile.combined | 6 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 522 ++++++-------
tests/logs/RegressionTests_gaea.log | 534 ++++++-------
tests/logs/RegressionTests_hera.log | 726 +++++++++---------
tests/logs/RegressionTests_hercules.log | 714 ++++++++---------
tests/logs/RegressionTests_jet.log | 472 ++++++------
tests/logs/RegressionTests_orion.log | 618 ++++++++-------
tests/logs/RegressionTests_wcoss2.log | 456 +++++------
tests/test_changes.list | 22 +-
14 files changed, 2128 insertions(+), 2042 deletions(-)
diff --git a/FV3 b/FV3
index 21744e21f2..fae9bc2562 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 21744e21f2b05c4e327d17ce4d088611403eab7a
+Subproject commit fae9bc25629b8518f416fcc333b57c128cf5c6b9
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 3aa4f1969a..636b26b827 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240312
+export BL_DATE=20240315
diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined
index 38c9efc589..47fb97ec73 100644
--- a/tests/ci/Jenkinsfile.combined
+++ b/tests/ci/Jenkinsfile.combined
@@ -258,6 +258,8 @@ pipeline {
agent none
environment {
ACCNR = 'epic'
+ AWS_PROD_ACCOUNT_ID = credentials('AWS_PROD_ACCOUNT_ID')
+ AWS_PROD_SNS_TOPIC = credentials('AWS_PROD_SNS_TOPIC')
GITHUB_TOKEN = credentials('GithubJenkinsNew')
GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git'
}
@@ -285,7 +287,7 @@ pipeline {
node('built-in') {
echo 'This will run only if successful.'
sh '''
- aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}'
+ aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}'
'''
}
}
@@ -293,7 +295,7 @@ pipeline {
node('built-in') {
echo 'This will run only if the run was marked as unstable.'
sh '''
- aws sns publish --topic-arn "arn:aws:sns:us-east-1:211527314271:Jenkins-CICD-Notifications" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}'
+ aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}'
'''
}
}
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 3fc707bec8..08758d8f87 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Mar 13 16:00:32 UTC 2024
+Fri Mar 15 14:30:32 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 330.604077
- 0: The maximum resident set size (KB) = 1306700
+ 0: The total amount of wall time = 280.403230
+ 0: The maximum resident set size (KB) = 1301268
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 929.248031
- 0: The maximum resident set size (KB) = 1291568
+ 0: The total amount of wall time = 914.973019
+ 0: The maximum resident set size (KB) = 1289712
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 250.255270
- 0: The maximum resident set size (KB) = 1278404
+ 0: The total amount of wall time = 254.193285
+ 0: The maximum resident set size (KB) = 1277804
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 252.275080
- 0: The maximum resident set size (KB) = 1281536
+ 0: The total amount of wall time = 250.421070
+ 0: The maximum resident set size (KB) = 1278668
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 257.921526
- 0: The maximum resident set size (KB) = 1278656
+ 0: The total amount of wall time = 267.943348
+ 0: The maximum resident set size (KB) = 1275920
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 248.830644
- 0: The maximum resident set size (KB) = 1281968
+ 0: The total amount of wall time = 249.896889
+ 0: The maximum resident set size (KB) = 1276116
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_226640/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 250.246300
- 0: The maximum resident set size (KB) = 1282284
+ 0: The total amount of wall time = 256.272146
+ 0: The maximum resident set size (KB) = 1278636
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Mar 13 17:40:13 UTC 2024
-Elapsed time: 01h:39m:42s. Have a nice day!
+Fri Mar 15 15:51:09 UTC 2024
+Elapsed time: 01h:20m:37s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index b33f69d226..7371cb73b4 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Mar 13 18:29:02 UTC 2024
+Fri Mar 15 17:05:46 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1390.651720
- 0: The maximum resident set size (KB) = 1411516
+ 0: The total amount of wall time = 1356.631044
+ 0: The maximum resident set size (KB) = 1411552
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 388.568533
- 0: The maximum resident set size (KB) = 1404964
+ 0: The total amount of wall time = 388.496545
+ 0: The maximum resident set size (KB) = 1403852
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_216513/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 429.798207
- 0: The maximum resident set size (KB) = 1403184
+ 0: The total amount of wall time = 390.554898
+ 0: The maximum resident set size (KB) = 1403928
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Mar 13 19:38:16 UTC 2024
-Elapsed time: 01h:09m:15s. Have a nice day!
+Fri Mar 15 22:24:11 UTC 2024
+Elapsed time: 05h:18m:26s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 67221b9610..bfe3cac9fc 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Wed Mar 13 19:39:46 UTC 2024
+Fri Mar 15 16:17:17 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 518.481376
- 0: The maximum resident set size (KB) = 589344
+ 0: The total amount of wall time = 511.975861
+ 0: The maximum resident set size (KB) = 589832
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 511.698032
- 0: The maximum resident set size (KB) = 588824
+ 0: The total amount of wall time = 519.974209
+ 0: The maximum resident set size (KB) = 589384
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_294049/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 514.740790
- 0: The maximum resident set size (KB) = 590320
+ 0: The total amount of wall time = 532.386605
+ 0: The maximum resident set size (KB) = 589932
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Mar 13 20:34:36 UTC 2024
-Elapsed time: 00h:54m:51s. Have a nice day!
+Fri Mar 15 17:01:36 UTC 2024
+Elapsed time: 00h:44m:20s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 6ecce4c81b..fa56c4353e 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-19159d93d74d6f3c37fdf74fb3475e000435f07e
+7076763c9cb076a4c05505b604424e438d686936
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,271 +47,271 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_114022
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_84275
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:21, 19:19]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:10, 04:57](3077 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:22, 20:04]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:19, 13:50](1685 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:56, 15:11](1818 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 07:13](951 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:18, 15:49](1663 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:17, 08:57]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:14, 21:32](1695 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:28, 19:04]
-PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:37](3092 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:40, 05:36](3094 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:18](3151 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:32, 05:37](3127 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:51, 03:20](3177 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 05:29](3087 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:30, 04:33](3386 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 05:36](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:35, 08:46](3639 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:24, 05:53](3616 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [29:58, 09:54](4342 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:00, 07:16](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:08, 05:22](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:21, 18:23]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 04:13](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:14, 04:14](1725 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:15, 08:54]
-PASS -- TEST 'cpld_debug_p8_intel' [10:29, 07:43](3151 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:23]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:14](1701 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:17, 13:53]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:16](1719 MB)
-
-PASS -- COMPILE 's2s_intel' [14:17, 13:51]
-PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:33](2664 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:38]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:22, 05:30](3098 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:26, 18:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:06, 14:01](1697 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:54, 07:19](1012 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 16:03](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:20, 08:11]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:01, 22:43](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:20]
-PASS -- TEST 'control_flake_intel' [05:03, 03:26](670 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:57, 02:05](1369 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:06, 02:11](621 MB)
-PASS -- TEST 'control_latlon_intel' [03:53, 02:07](618 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:10](620 MB)
-PASS -- TEST 'control_c48_intel' [06:46, 05:17](737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:51, 05:15](734 MB)
-PASS -- TEST 'control_c192_intel' [09:41, 07:53](738 MB)
-PASS -- TEST 'control_c384_intel' [15:10, 08:13](1063 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:32, 07:16](1198 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:30, 19:43]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 04:59](3074 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 21:05]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:50](1686 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:29, 15:26](1823 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 07:36](972 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:12, 15:53](1654 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:28]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 21:40](1693 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:30, 19:28]
+PASS -- TEST 'cpld_control_p8_intel' [09:47, 05:41](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 05:42](3088 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:34, 03:20](3148 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 05:39](3128 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:34, 03:25](3177 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 05:34](3092 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:35, 04:41](3396 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 05:43](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 08:54](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [17:44, 06:13](3618 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 09:56](4341 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:54, 07:53](4642 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:09, 05:20](3063 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:30, 18:49]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:06, 04:20](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:15, 04:19](1726 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:27]
+PASS -- TEST 'cpld_debug_p8_intel' [12:14, 07:49](3147 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:25, 08:43]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:17](1702 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:29, 14:31]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:36, 04:21](1720 MB)
+
+PASS -- COMPILE 's2s_intel' [15:29, 14:26]
+PASS -- TEST 'cpld_control_c48_intel' [08:24, 06:38](2669 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:57]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3098 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:24, 19:33]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:41, 14:07](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:48, 07:38](1011 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:17, 16:04](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:20, 08:57]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:45, 22:39](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:16, 12:33]
+PASS -- TEST 'control_flake_intel' [04:48, 03:29](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:51, 02:04](618 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:59, 02:13](622 MB)
+PASS -- TEST 'control_latlon_intel' [03:48, 02:07](617 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:09](623 MB)
+PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:57, 05:22](737 MB)
+PASS -- TEST 'control_c192_intel' [10:08, 07:53](740 MB)
+PASS -- TEST 'control_c384_intel' [16:33, 08:24](1060 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:07, 07:33](1200 MB)
PASS -- TEST 'control_stochy_intel' [02:47, 01:28](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:43, 00:54](438 MB)
-PASS -- TEST 'control_lndp_intel' [02:48, 01:25](623 MB)
-PASS -- TEST 'control_iovr4_intel' [03:59, 02:07](618 MB)
-PASS -- TEST 'control_iovr5_intel' [04:03, 02:08](620 MB)
-PASS -- TEST 'control_p8_intel' [04:46, 02:32](1591 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 02:29](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:28](1595 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:38, 01:25](796 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:47, 02:28](1589 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:23](801 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:43, 02:34](1589 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:44, 04:24](1601 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:59, 03:17](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:54, 02:33](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:03, 02:59](1608 MB)
-PASS -- TEST 'regional_control_intel' [06:16, 04:30](628 MB)
-PASS -- TEST 'regional_restart_intel' [04:06, 02:31](799 MB)
-PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](630 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:11, 04:26](1158 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:07, 04:27](624 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:16, 04:28](633 MB)
-PASS -- TEST 'regional_wofs_intel' [08:13, 05:35](1600 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:20, 10:46]
-PASS -- TEST 'rap_control_intel' [08:32, 06:07](1003 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:59, 03:44](1190 MB)
-PASS -- TEST 'rap_decomp_intel' [08:26, 06:23](1000 MB)
-PASS -- TEST 'rap_restart_intel' [05:24, 03:16](877 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:19, 06:07](1002 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:16, 06:21](1002 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:16, 04:35](877 MB)
-PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](997 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](998 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 02:48](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:56, 01:46](832 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:13, 05:59](1369 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:22](1955 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:43, 07:09](1947 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:21, 10:05]
-PASS -- TEST 'control_csawmg_intel' [07:14, 05:52](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:20, 05:47](692 MB)
-PASS -- TEST 'control_ras_intel' [03:41, 02:54](654 MB)
-
-PASS -- COMPILE 'wam_intel' [10:20, 09:30]
-PASS -- TEST 'control_wam_intel' [02:32, 01:53](379 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:20]
-PASS -- TEST 'control_p8_faster_intel' [04:44, 02:23](1600 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:16, 04:19](625 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:14, 08:27]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:52, 02:33](793 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 02:34](792 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:38, 02:50](798 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:32](801 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:25, 03:56](837 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:19, 03:53](836 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](806 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:43, 02:39](851 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:19, 02:37](1624 MB)
-PASS -- TEST 'regional_debug_intel' [18:09, 16:01](664 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:44, 04:38](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1174 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:36](1179 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:37, 04:47](1177 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:31, 04:40](1179 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:48, 04:54](1260 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:42, 04:52](1175 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:45](1179 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:39, 04:40](1365 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:50, 04:38](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:36](1180 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:48, 04:41](1174 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:33, 07:31](1177 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:36, 04:39](1172 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:43, 05:27](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:45, 04:40](1181 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:14, 07:57](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:20, 05:14]
-PASS -- TEST 'control_wam_debug_intel' [05:32, 04:37](419 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:30]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 03:31](1060 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:13, 05:08](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:35, 02:46](880 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:21, 02:54](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 03:54](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:51, 01:33](776 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:47]
-PASS -- TEST 'conus13km_control_intel' [04:08, 01:53](1081 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:11, 00:58](1081 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:09, 01:10](970 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 09:30]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:38](906 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:40](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:23](1054 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:34, 13:17](1131 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:23, 13:27](816 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:12, 13:18](1199 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:29]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:52, 04:34](1080 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:29, 15:28]
-PASS -- TEST 'hafs_regional_atm_intel' [07:08, 04:34](718 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:27, 05:04](1064 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 06:30](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:10, 10:55](793 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:13, 11:59](811 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:49, 04:39](473 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 05:47](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:21](389 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 06:18](459 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:18, 03:19](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 03:06](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:41, 03:51](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:46, 01:16](423 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:32, 03:26](781 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:24, 06:33]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:01](608 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:23, 19:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 07:15](633 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:49, 07:15](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:22, 16:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 05:24](675 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:21, 13:36]
-PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:39](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 05:40](735 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:10](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:31]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:41, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:34](748 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:44, 02:22](924 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:37, 02:25](638 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:41, 02:30](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:22](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:44, 05:45](686 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:48, 05:43](670 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:59, 03:54](2016 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:58, 03:55](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:18, 04:41]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:09](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:26, 07:28]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:28](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 02:13]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:48, 01:08](308 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:41, 01:03](451 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:43](450 MB)
-
-PASS -- COMPILE 'atml_intel' [13:16, 12:28]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 06:25](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 06:14](1638 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:28, 03:21](846 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:20, 12:07]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:34](1628 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:25, 12:04]
-PASS -- TEST 'control_atmwav_intel' [02:51, 01:28](636 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:20, 10:38]
-PASS -- TEST 'atmaero_control_p8_intel' [06:13, 03:39](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:15](3001 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 04:29](3009 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:21, 10:42]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:18, 06:02]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:41, 22:12](4528 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:53](438 MB)
+PASS -- TEST 'control_lndp_intel' [02:47, 01:23](623 MB)
+PASS -- TEST 'control_iovr4_intel' [03:42, 02:08](622 MB)
+PASS -- TEST 'control_iovr5_intel' [03:48, 02:09](622 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:31](1599 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:33](1596 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:31](1596 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:43, 01:29](798 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:33](1592 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:25](803 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:37](1586 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:24](1592 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:20](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:54, 02:35](1601 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:09, 03:04](1610 MB)
+PASS -- TEST 'regional_control_intel' [06:22, 04:31](632 MB)
+PASS -- TEST 'regional_restart_intel' [04:24, 02:36](800 MB)
+PASS -- TEST 'regional_decomp_intel' [06:23, 04:48](628 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:16, 04:27](1159 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:32](625 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:19, 04:35](628 MB)
+PASS -- TEST 'regional_wofs_intel' [08:23, 05:42](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:22, 11:08]
+PASS -- TEST 'rap_control_intel' [08:47, 06:09](1003 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:22, 03:47](1196 MB)
+PASS -- TEST 'rap_decomp_intel' [08:54, 06:25](1003 MB)
+PASS -- TEST 'rap_restart_intel' [05:32, 03:15](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:50, 06:06](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:26](1002 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:34, 04:36](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:36, 03:15](1001 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:20](996 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:25, 02:48](1092 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:08, 01:49](1405 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:21, 05:59](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:25](1956 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:01, 07:10](1946 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:21, 10:16]
+PASS -- TEST 'control_csawmg_intel' [08:16, 05:53](691 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:19, 05:48](690 MB)
+PASS -- TEST 'control_ras_intel' [04:53, 02:55](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:19, 09:35]
+PASS -- TEST 'control_wam_intel' [03:38, 01:56](380 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:23, 12:43]
+PASS -- TEST 'control_p8_faster_intel' [05:00, 02:29](1590 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:37]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:57, 02:39](792 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:34](795 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:43, 02:51](798 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:39](800 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:59](836 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:01](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:42, 02:39](808 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:53, 02:44](853 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:23, 02:43](1629 MB)
+PASS -- TEST 'regional_debug_intel' [17:30, 15:50](672 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:48, 04:48](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:54, 04:31](1176 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:41](1179 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:55, 04:46](1180 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:38](1178 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:53](1263 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:50, 04:46](1179 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:50, 04:46](1183 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:48, 04:51](1179 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:51, 04:49](1182 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:51, 04:35](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 04:43](1180 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:53, 07:31](1176 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:42](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:49, 05:27](1180 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:43, 04:39](1176 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 07:53](1185 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:19, 05:17]
+PASS -- TEST 'control_wam_debug_intel' [05:46, 04:40](420 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 09:42]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 03:37](1057 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:24, 05:09](887 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:47](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 02:57](1405 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:19, 03:54](972 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:58, 01:36](775 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 11:50]
+PASS -- TEST 'conus13km_control_intel' [06:39, 01:59](1081 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:05](1079 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:24, 01:11](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 10:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:21, 03:42](908 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:44]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1057 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:27](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:07, 13:29](1132 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:49](819 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 13:22](1200 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:30]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:37](1084 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:23, 15:52]
+PASS -- TEST 'hafs_regional_atm_intel' [07:02, 04:42](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:21](1071 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 06:38](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:23, 11:05](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:53, 12:19](811 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:50, 04:41](1405 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:11, 05:49](495 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:25](384 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 06:30](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:24, 03:22](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:07](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:58, 03:53](579 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:21](424 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:00, 03:34](780 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:20, 07:04]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:40](614 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:24, 19:37]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:16](630 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:25](685 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:23, 16:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:21, 05:26](673 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:16, 14:16]
+PASS -- TEST 'hafs_regional_docn_intel' [08:10, 05:43](750 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:13, 05:44](735 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:13](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:36](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:24](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:27](641 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 02:29](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 02:33](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:33](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:24](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 05:54](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:21, 05:52](669 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:31](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 04:01](1957 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:03, 03:59](2016 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:02]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:10](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:31](972 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 02:19]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:03, 01:17](308 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:10](450 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:51, 00:45](449 MB)
+
+PASS -- COMPILE 'atml_intel' [14:21, 12:59]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:03, 06:40](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:57, 06:45](1630 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:10, 03:42](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:27, 12:32]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:37](1637 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:26, 12:32]
+PASS -- TEST 'control_atmwav_intel' [03:17, 01:32](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:26, 11:13]
+PASS -- TEST 'atmaero_control_p8_intel' [06:19, 03:43](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:13, 04:19](2999 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 04:35](3009 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:20, 10:57]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:27]
+PASS -- TEST 'regional_atmaq_debug_intel' [27:36, 22:37](4530 MB)
SYNOPSIS:
-Starting Date/Time: 20240314 08:25:10
-Ending Date/Time: 20240314 09:53:23
-Total Time: 01h:29m:02s
+Starting Date/Time: 20240317 12:41:56
+Ending Date/Time: 20240317 14:13:29
+Total Time: 01h:32m:37s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 9d9ca9cdaf..59f17fa68c 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c3745cd3e1ac1ebcc5578002003501f1a674414f
+0939a1dff2a2060b541eca9642a19c5ed1541f17
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,278 +47,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_42607
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_17834
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:44]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:16, 11:07](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [36:25, 34:46]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:41, 13:41](1700 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 14:26](1812 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 06:47](949 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:23, 14:52](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:13, 14:00]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 24:41](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:10, 19:45]
-PASS -- TEST 'cpld_control_p8_intel' [17:10, 11:50](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:51, 11:42](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:37, 05:55](3155 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [16:37, 11:58](3123 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:50, 05:27](3176 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:03, 06:37](3414 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [15:52, 12:06](3097 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [15:52, 11:14](3019 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:21, 11:41](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:48, 14:01](3271 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:01, 07:17](3600 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:00, 13:08](4036 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 09:16](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:25, 08:18](3066 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:09, 17:47]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:45, 05:01](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 05:26](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [16:09, 14:33]
-PASS -- TEST 'cpld_debug_p8_intel' [12:51, 10:04](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [16:09, 14:20]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:40, 06:07](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:13, 16:03]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:30](1731 MB)
-
-PASS -- COMPILE 's2s_intel' [18:13, 16:40]
-PASS -- TEST 'cpld_control_c48_intel' [09:23, 06:55](2661 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:15, 23:59]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:01, 11:40](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:14, 22:26]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:48, 15:12](1704 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 07:47](1001 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:49, 17:27](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 12:36]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:38, 27:08](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [20:15, 18:06]
-PASS -- TEST 'control_flake_intel' [06:14, 03:40](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:37](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:55, 02:38](627 MB)
-PASS -- TEST 'control_latlon_intel' [05:51, 02:33](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:51, 02:34](623 MB)
-PASS -- TEST 'control_c48_intel' [08:27, 05:38](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:38, 05:42](727 MB)
-PASS -- TEST 'control_c192_intel' [11:16, 08:55](739 MB)
-PASS -- TEST 'control_c384_intel' [20:02, 16:21](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:02, 14:17](1184 MB)
-PASS -- TEST 'control_stochy_intel' [04:02, 01:59](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:58, 01:01](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:03, 01:51](628 MB)
-PASS -- TEST 'control_iovr4_intel' [05:52, 02:34](623 MB)
-PASS -- TEST 'control_iovr5_intel' [05:52, 02:38](622 MB)
-PASS -- TEST 'control_p8_intel' [08:10, 04:11](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:24, 04:02](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:40, 03:58](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:11, 02:07](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:48](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:24](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:12, 02:44](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:24, 05:43](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:28, 04:13](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:23, 03:19](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:21, 03:57](1616 MB)
-PASS -- TEST 'regional_control_intel' [06:59, 04:40](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:40, 02:52](785 MB)
-PASS -- TEST 'regional_decomp_intel' [06:57, 04:50](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:50, 02:54](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:49, 04:35](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:45, 04:43](614 MB)
-PASS -- TEST 'regional_wofs_intel' [08:50, 06:09](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:16, 14:22]
-PASS -- TEST 'rap_control_intel' [10:08, 07:02](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:09, 03:56](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [09:57, 07:21](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:51, 06:12](1098 MB)
-PASS -- TEST 'rap_restart_intel' [06:05, 03:26](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:45, 06:40](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 07:03](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 05:11](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:08, 03:49](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:57](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:58, 03:06](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:30, 01:58](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:08, 06:42](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:53, 08:15](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:50, 08:05](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [18:13, 16:06]
-PASS -- TEST 'control_csawmg_intel' [08:49, 06:41](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:44, 06:30](694 MB)
-PASS -- TEST 'control_ras_intel' [05:33, 03:25](656 MB)
-
-PASS -- COMPILE 'wam_intel' [17:15, 15:08]
+PASS -- COMPILE 's2swa_32bit_intel' [21:14, 19:10]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:33, 07:50](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:15, 22:38]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:50, 13:55](1700 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 14:17](1814 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:53, 06:51](952 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 15:14](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:08, 13:36]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 25:20](1702 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:14, 19:22]
+PASS -- TEST 'cpld_control_p8_intel' [14:40, 08:09](3099 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:51, 08:15](3099 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:26, 05:12](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:31, 08:19](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 05:07](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 06:42](3413 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [14:10, 08:16](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:59, 07:28](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:50, 08:17](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:33, 10:16](3272 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:41, 07:29](3603 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:23, 13:35](4041 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:51, 09:25](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 08:05](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:11, 18:20]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [12:32, 05:40](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 06:01](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:08, 13:28]
+PASS -- TEST 'cpld_debug_p8_intel' [17:24, 10:23](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:12, 12:51]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:43, 06:01](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [17:09, 15:33]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:00, 05:23](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [18:13, 16:10]
+PASS -- TEST 'cpld_control_c48_intel' [10:55, 06:53](2661 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:15, 22:32]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 08:12](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:52, 22:28]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:52, 15:22](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:19, 08:17](998 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:45, 17:35](1677 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:31]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:34, 27:07](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [23:10, 21:09]
+PASS -- TEST 'control_flake_intel' [05:52, 03:45](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:52, 02:55](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:39](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:35, 02:50](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 02:38](623 MB)
+PASS -- TEST 'control_c48_intel' [08:11, 05:38](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:40](721 MB)
+PASS -- TEST 'control_c192_intel' [12:08, 09:16](739 MB)
+PASS -- TEST 'control_c384_intel' [20:04, 16:24](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:12, 14:12](1187 MB)
+PASS -- TEST 'control_stochy_intel' [05:27, 02:12](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:41, 01:10](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:35, 01:49](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:50, 02:51](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:50, 02:49](623 MB)
+PASS -- TEST 'control_p8_intel' [06:57, 03:29](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 03:28](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:07, 03:25](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:34, 02:00](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:06, 03:43](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:46](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:30](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:51, 02:57](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:33, 05:32](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:19](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:53](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:51, 04:02](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:07, 04:35](615 MB)
+PASS -- TEST 'regional_restart_intel' [06:49, 02:58](789 MB)
+PASS -- TEST 'regional_decomp_intel' [07:04, 04:51](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:58, 03:21](756 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:01, 04:57](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:09, 05:09](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:06, 04:51](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:06, 06:05](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:21, 14:30]
+PASS -- TEST 'rap_control_intel' [09:54, 06:57](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:02](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [09:54, 07:00](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:54, 06:13](1095 MB)
+PASS -- TEST 'rap_restart_intel' [06:19, 03:27](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:54, 06:57](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:55, 07:15](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:22](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:48, 03:59](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:01](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:48, 03:05](1084 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:58](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:54, 06:48](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:15](1969 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 07:50](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:48, 13:45]
+PASS -- TEST 'control_csawmg_intel' [09:51, 06:43](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:51, 06:36](691 MB)
+PASS -- TEST 'control_ras_intel' [06:03, 03:26](657 MB)
+
+PASS -- COMPILE 'wam_intel' [21:19, 19:23]
PASS -- TEST 'control_wam_intel' [04:32, 02:12](369 MB)
-PASS -- COMPILE 'atm_faster_dyn32_intel' [23:15, 20:55]
-PASS -- TEST 'control_p8_faster_intel' [07:34, 03:16](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:48, 04:26](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [18:09, 15:47]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:30, 02:48](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 02:50](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:13](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:50](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:47, 04:35](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:01, 04:26](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:27, 03:02](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:44, 03:16](844 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:37, 03:50](1622 MB)
-PASS -- TEST 'regional_debug_intel' [18:55, 16:41](635 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:28, 05:33](1167 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:32, 05:43](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 05:25](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:33](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:30](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:03, 05:34](1253 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 05:06](1167 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:13](1168 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:38, 05:03](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:10](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:01](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:34, 05:03](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:51](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 04:56](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:41, 06:15](1169 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:03](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:14, 08:23](1172 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [15:09, 13:16]
-PASS -- TEST 'control_wam_debug_intel' [06:40, 04:55](397 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:15, 13:56]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:08, 03:49](1054 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:17, 06:20](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:28](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:27](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:00, 02:48](941 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 03:43](887 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:10](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 01:43](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:33]
-PASS -- TEST 'conus13km_control_intel' [05:00, 02:02](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:22, 01:18](1075 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:21](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 13:16]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:22](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 09:15]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 05:00](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:59](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:55, 14:09](1130 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:53, 14:30](805 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 08:17](1112 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:03](1196 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:13, 09:19]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 04:56](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:14, 17:54]
-PASS -- TEST 'hafs_regional_atm_intel' [08:46, 05:17](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:01, 04:28](1055 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 07:53](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:46](788 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 12:57](796 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:26](473 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:37, 06:41](499 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:04, 02:54](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:03, 08:07](443 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:50](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:14, 03:39](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:24, 04:42](575 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:45, 02:49](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:24, 04:21](764 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [15:13, 13:22]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:58, 12:50](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:19, 19:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:50, 07:58](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:59, 07:54](786 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 18:33]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:44, 06:03](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [19:13, 17:07]
-PASS -- TEST 'hafs_regional_docn_intel' [11:02, 06:10](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:58, 06:12](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:24, 21:56](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:16, 11:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:36](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:25](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:36](635 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:38](635 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:36](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:22, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:30, 02:26](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:18](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:01, 06:10](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:35, 04:36](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 04:42](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:13, 09:40]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:39](740 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [16:13, 13:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:34](756 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [07:17, 04:50]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:21, 02:30](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:52, 01:37](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 01:02](456 MB)
-
-PASS -- COMPILE 'atml_intel' [18:21, 16:21]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:20, 11:27](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:03, 08:49](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 03:56](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [18:12, 16:35]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:02, 02:23](1647 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:10, 14:45]
-PASS -- TEST 'control_atmwav_intel' [04:00, 01:56](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:10, 14:51]
-PASS -- TEST 'atmaero_control_p8_intel' [12:18, 09:05](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [13:54, 09:06](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:23, 09:08](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [17:14, 15:16]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:05]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 19:38](4485 MB)
+PASS -- COMPILE 'atm_faster_dyn32_intel' [28:18, 26:05]
+PASS -- TEST 'control_p8_faster_intel' [06:32, 03:38](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:01, 04:35](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [35:20, 33:26]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:50](777 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:01, 02:47](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:09](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:52, 02:51](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:54, 04:33](824 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:25](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:42, 02:51](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:41, 03:03](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:54, 03:49](1618 MB)
+PASS -- TEST 'regional_debug_intel' [18:56, 16:11](632 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:34, 05:35](1165 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:33, 05:36](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:30](1169 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:35](1166 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:30](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:14](1250 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:51, 05:15](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:20](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:19](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 05:06](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:42, 05:02](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:38, 05:19](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:13](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:01](1162 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:46, 05:51](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:05](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:08, 08:30](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [32:17, 30:01]
+PASS -- TEST 'control_wam_debug_intel' [06:24, 04:46](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 12:23]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 03:53](1049 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:50](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:57, 03:32](885 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:55, 05:32](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 02:48](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 03:45](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:48, 04:12](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:03](765 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:18, 15:35]
+PASS -- TEST 'conus13km_control_intel' [05:08, 02:10](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:39, 01:06](1072 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:22, 01:23](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:51]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:12, 04:26](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:14, 08:53]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:00](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 04:59](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:54, 14:04](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:00, 14:12](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:28](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:53, 14:30](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 09:56]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:04, 05:07](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:13, 17:13]
+PASS -- TEST 'hafs_regional_atm_intel' [08:23, 05:17](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:10, 04:34](1061 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:42, 07:54](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 11:46](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 13:16](793 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:28, 05:30](475 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 06:51](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:20, 02:57](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:57, 08:09](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:59, 03:53](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:32](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 04:54](575 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:43, 02:01](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:31, 04:24](768 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:10, 11:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:48, 13:03](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:13, 21:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:51, 08:26](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:16, 08:12](785 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:29](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:12, 16:00]
+PASS -- TEST 'hafs_regional_docn_intel' [09:14, 06:18](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 06:18](729 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:51, 20:09](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 02:36](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:10, 02:28](635 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:44, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:31](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:36](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:34](745 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:26](635 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:14](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 06:08](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:34](2012 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:36](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:07, 07:13]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:51]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:33](756 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 03:51]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 02:17](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:35](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 01:40](456 MB)
+
+PASS -- COMPILE 'atml_intel' [58:25, 57:11]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:07, 07:47](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:07, 07:47](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:08, 05:47](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:13, 15:22]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:06, 02:22](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:10, 14:49]
+PASS -- TEST 'control_atmwav_intel' [05:43, 02:04](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:12, 14:38]
+PASS -- TEST 'atmaero_control_p8_intel' [08:26, 05:58](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:28](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:18, 06:48](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [17:11, 15:12]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:22](4482 MB)
SYNOPSIS:
-Starting Date/Time: 20240314 08:29:02
-Ending Date/Time: 20240314 10:21:41
-Total Time: 01h:53m:35s
+Starting Date/Time: 20240315 14:58:48
+Ending Date/Time: 20240315 17:15:28
+Total Time: 02h:17m:20s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 6804aeec40..ca2e3d2fc1 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d7aa189232097602b4a7b5cdab9caad9aba58ad
+1345562a9e6c858e0b80292dab11cd23a0da902e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -24,375 +24,375 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_21606
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_5454
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:10, 12:33]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:52, 05:21](3107 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 15:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [26:36, 17:24](1737 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:42, 17:02](2016 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:39, 07:46](1076 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:36, 19:36](1635 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:04]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:31, 22:32](1673 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:10, 12:27]
-PASS -- TEST 'cpld_control_p8_intel' [15:54, 05:39](3186 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:05, 05:43](3173 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:49, 03:59](3241 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:54, 05:47](3209 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:49, 04:15](3252 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:43, 05:26](3538 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [15:54, 05:46](3172 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:43, 04:49](3044 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:07, 05:40](3166 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:48, 09:47](3320 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:46, 06:56](3602 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [25:55, 09:51](4102 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:46, 06:58](4341 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:49, 05:20](3129 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:10, 11:35]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:14, 04:31](1714 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:32, 04:26](1766 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:09, 04:53]
-PASS -- TEST 'cpld_debug_p8_intel' [11:30, 08:19](3195 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:02]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:55, 05:33](1718 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:11, 11:10]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:28](1766 MB)
-
-PASS -- COMPILE 's2s_intel' [12:12, 10:59]
-PASS -- TEST 'cpld_control_c48_intel' [11:54, 09:17](2817 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:15, 16:13]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:18, 05:22](3191 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:24, 17:11](1778 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:52, 07:43](1164 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:14, 18:45](1663 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:12]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 26:09](1667 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:45]
-PASS -- TEST 'control_flake_intel' [11:29, 03:18](689 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 02:27](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:35, 02:30](652 MB)
-PASS -- TEST 'control_latlon_intel' [10:27, 02:28](641 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:36, 02:28](632 MB)
-PASS -- TEST 'control_c48_intel' [15:05, 06:20](870 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [15:04, 06:22](874 MB)
-PASS -- TEST 'control_c192_intel' [17:48, 09:38](833 MB)
-PASS -- TEST 'control_c384_intel' [16:49, 09:48](1275 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:34, 08:56](1358 MB)
-PASS -- TEST 'control_stochy_intel' [07:26, 01:36](647 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:59](497 MB)
-PASS -- TEST 'control_lndp_intel' [06:22, 01:36](635 MB)
-PASS -- TEST 'control_iovr4_intel' [05:06, 02:26](642 MB)
-PASS -- TEST 'control_iovr5_intel' [04:35, 02:27](644 MB)
-PASS -- TEST 'control_p8_intel' [06:24, 03:41](1614 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:20, 03:31](1622 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:19, 03:28](1608 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:47, 01:37](888 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:16, 03:35](1605 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](923 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:08, 03:11](1605 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:07, 02:56](1703 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:22, 05:21](1614 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:01, 03:53](1645 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:13, 03:15](1597 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:02, 03:34](1613 MB)
-PASS -- TEST 'regional_control_intel' [10:01, 05:08](819 MB)
-PASS -- TEST 'regional_restart_intel' [06:47, 04:45](1017 MB)
-PASS -- TEST 'regional_decomp_intel' [08:50, 05:24](842 MB)
-PASS -- TEST 'regional_2threads_intel' [06:37, 03:12](826 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:56, 05:01](1362 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:47](853 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:46, 05:50](850 MB)
-PASS -- TEST 'regional_wofs_intel' [09:52, 07:31](1910 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:10, 09:49]
-PASS -- TEST 'rap_control_intel' [12:08, 09:20](1084 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 04:52](1280 MB)
-PASS -- TEST 'rap_decomp_intel' [12:00, 09:28](1023 MB)
-PASS -- TEST 'rap_2threads_intel' [11:54, 09:20](1172 MB)
-PASS -- TEST 'rap_restart_intel' [07:55, 04:07](1093 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:57, 09:17](1108 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:57, 09:52](1040 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:53, 05:54](1130 MB)
-PASS -- TEST 'hrrr_control_intel' [06:48, 04:51](1024 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:07](989 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 05:17](1115 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [08:38, 02:18](982 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:54, 09:31](1090 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:36, 10:43](1957 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:34, 10:31](2063 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:10, 09:45]
-PASS -- TEST 'control_csawmg_intel' [09:49, 07:43](745 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:48, 07:22](734 MB)
-PASS -- TEST 'control_ras_intel' [06:27, 03:54](722 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:07, 03:23]
-PASS -- TEST 'control_csawmg_gnu' [17:51, 09:21](587 MB)
-PASS -- TEST 'control_csawmgt_gnu' [17:51, 09:21](586 MB)
-
-PASS -- COMPILE 'wam_intel' [11:08, 09:11]
-PASS -- TEST 'control_wam_intel' [04:26, 02:34](653 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:09, 09:51]
-PASS -- TEST 'control_p8_faster_intel' [07:20, 04:08](1605 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:57, 06:26](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:29]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:31, 03:51](811 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 03:36](809 MB)
-PASS -- TEST 'control_stochy_debug_intel' [09:25, 06:34](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:35](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:39, 05:02](865 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:55](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:23, 03:44](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [10:36, 03:01](866 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:51, 02:54](1633 MB)
-PASS -- TEST 'regional_debug_intel' [22:48, 16:20](839 MB)
-PASS -- TEST 'rap_control_debug_intel' [10:28, 04:49](1188 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:22, 04:40](1190 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:23, 04:51](1176 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [09:29, 04:52](1197 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:35, 04:51](1190 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:45, 05:06](1299 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:21, 04:59](1188 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 04:49](1199 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:23, 04:50](1204 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 04:51](1197 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:38](1188 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 04:52](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:37](1192 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:49](1185 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:33, 06:04](1205 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:32, 04:52](1198 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:08](1181 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:07, 02:29]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:47, 02:14](564 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:47, 02:15](565 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:10, 03:11]
-PASS -- TEST 'control_wam_debug_intel' [06:20, 04:43](514 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:11, 09:32]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:57](1153 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 06:32](1044 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 03:28](973 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:38, 06:15](1051 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:15](953 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:37](909 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:47](1000 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:51](897 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:13, 11:49]
-PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1191 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:52](1105 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:13](1086 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:10, 09:40]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:20](977 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:07, 03:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:47](1059 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:41](1058 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:54, 13:53](1210 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:02](897 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:50, 07:50](1147 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:54, 13:42](1262 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 03:17]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 04:46](1125 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:15, 10:40]
-PASS -- TEST 'hafs_regional_atm_intel' [08:23, 04:51](736 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:34, 05:54](1111 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:27, 06:51](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:20, 13:04](843 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:33, 14:42](876 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:59, 05:20](500 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 06:23](516 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 02:39](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 06:58](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 03:34](525 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:24](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:02](580 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:09](400 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:45, 03:54](772 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:13, 03:43]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:12](568 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:30, 12:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:08, 08:23](670 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:06, 08:28](738 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 10:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:05, 06:15](725 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:14, 11:24]
-PASS -- TEST 'hafs_regional_docn_intel' [54:34, 06:13](832 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:39, 06:20](808 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:09, 16:17](1219 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [11:13, 06:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [49:29, 02:42](1122 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1074 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [49:30, 02:36](1008 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [49:29, 02:39](1016 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:23, 02:36](1023 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [49:25, 02:41](1121 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [49:29, 02:41](1115 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:25, 02:37](991 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [52:44, 06:39](1051 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [52:42, 06:58](1025 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [47:24, 02:42](1116 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [14:20, 03:58](2483 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [48:28, 04:12](2421 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:09, 03:08]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [49:25, 06:08](1046 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 06:47]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [45:30, 02:40](1106 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:00]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:38, 00:50](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:29, 00:52](320 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:32](315 MB)
-
-PASS -- COMPILE 'atml_intel' [14:17, 13:01]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [46:17, 04:27](1583 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [46:22, 04:27](1567 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:14, 05:11](888 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:13, 11:54]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [43:06, 01:53](1643 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:12, 11:56]
-PASS -- TEST 'control_atmwav_intel' [42:41, 01:46](669 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:13, 12:14]
-PASS -- TEST 'atmaero_control_p8_intel' [43:13, 04:04](3020 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [43:18, 04:53](3092 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:59, 05:09](3115 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:14, 11:46]
-
-PASS -- COMPILE 'atmaq_debug_intel' [09:16, 07:26]
-PASS -- TEST 'regional_atmaq_debug_intel' [57:29, 20:19](4434 MB)
-
-PASS -- COMPILE 'atm_gnu' [08:07, 06:17]
-PASS -- TEST 'control_c48_gnu' [46:34, 11:45](787 MB)
-PASS -- TEST 'control_stochy_gnu' [38:27, 04:15](546 MB)
-PASS -- TEST 'control_ras_gnu' [39:32, 05:00](554 MB)
-PASS -- TEST 'control_p8_gnu' [36:27, 05:06](1303 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [08:09, 04:44](1309 MB)
-PASS -- TEST 'control_flake_gnu' [07:28, 05:55](595 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [09:08, 07:17]
-PASS -- TEST 'rap_control_gnu' [13:38, 11:53](894 MB)
-PASS -- TEST 'rap_decomp_gnu' [14:43, 11:52](895 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:44, 10:37](983 MB)
-PASS -- TEST 'rap_restart_gnu' [03:04, 07:25](622 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [14:51, 11:46](895 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:39, 11:57](899 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:03, 10:11](627 MB)
-PASS -- TEST 'hrrr_control_gnu' [08:44, 06:02](895 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:38, 05:59](877 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [14:59, 08:52](971 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [08:36, 06:02](888 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:40, 04:49](608 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:40, 04:38](702 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [21:01, 14:35](887 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:09, 07:48]
-PASS -- TEST 'control_diag_debug_gnu' [09:46, 04:34](587 MB)
-PASS -- TEST 'regional_debug_gnu' [15:58, 10:31](595 MB)
-PASS -- TEST 'rap_control_debug_gnu' [09:42, 04:43](904 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [09:46, 05:56](902 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [09:44, 04:59](907 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [09:49, 05:11](903 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [10:10, 05:58](991 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [09:52, 06:05](901 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [09:48, 05:12](904 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [08:45, 04:58](898 MB)
-PASS -- TEST 'control_ras_debug_gnu' [07:39, 04:02](541 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [07:37, 04:29](534 MB)
-PASS -- TEST 'control_debug_p8_gnu' [06:56, 04:06](1287 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [07:40, 04:57](908 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [06:50, 05:08](907 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [08:05, 06:32](907 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [06:06, 04:36]
-PASS -- TEST 'control_wam_debug_gnu' [03:36, 04:00](242 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:08, 03:32]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:50, 13:39](752 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [03:49, 07:45](741 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:55, 12:19](798 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [01:52, 07:18](804 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [01:43, 07:31](743 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [34:07, 09:08](594 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [33:56, 03:19](581 MB)
-PASS -- TEST 'conus13km_control_gnu' [55:12, 05:25](894 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [34:12, 01:55](935 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [35:15, 02:23](595 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:07, 05:15]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [40:17, 07:06](779 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:09, 03:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [34:47, 02:39](756 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [34:46, 02:36](754 MB)
-PASS -- TEST 'conus13km_debug_gnu' [41:25, 07:17](913 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [39:23, 07:13](630 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [36:12, 04:27](946 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [41:16, 07:20](979 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [36:58, 02:41](784 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:10, 13:56]
-PASS -- TEST 'cpld_control_p8_gnu' [46:03, 11:08](1511 MB)
-
-PASS -- COMPILE 's2s_gnu' [15:10, 13:48]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [42:00, 06:54](1399 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:32]
-PASS -- TEST 'cpld_debug_p8_gnu' [40:44, 06:12](1512 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 13:53]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [56:39, 22:12](1378 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:15]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [47:29, 13:12](1391 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 13:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [53:32, 03:04](703 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:08, 12:06]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:26, 05:29](3102 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 16:01]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:04, 16:11](1707 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 16:48](2010 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 07:35](1112 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:00, 18:08](1633 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 04:23]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:01, 22:23](1671 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:09, 12:14]
+PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:43](3189 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:39, 05:50](3148 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:17](3240 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:28, 05:48](3214 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:21](3251 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:24, 05:28](3534 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:24, 05:50](3178 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:27, 04:42](3049 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:36, 05:43](3186 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:22, 09:47](3279 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 05:54](3566 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 09:56](4097 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:15, 06:40](4327 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:29, 05:27](3154 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:08, 11:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 04:38](1701 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:24, 04:22](1765 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:07, 04:23]
+PASS -- TEST 'cpld_debug_p8_intel' [15:08, 08:04](3238 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 03:59]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:04, 05:36](1749 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:09, 10:42]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:02, 04:26](1760 MB)
+
+PASS -- COMPILE 's2s_intel' [13:08, 10:44]
+PASS -- TEST 'cpld_control_c48_intel' [11:41, 09:25](2833 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:10, 16:17]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:13, 05:18](3195 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:10]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:09, 16:17](1759 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 07:38](1140 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:02, 18:34](1661 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:22, 24:47](1686 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:08, 10:31]
+PASS -- TEST 'control_flake_intel' [07:22, 03:25](689 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:24, 02:22](643 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:32](651 MB)
+PASS -- TEST 'control_latlon_intel' [05:21, 02:23](647 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:26](623 MB)
+PASS -- TEST 'control_c48_intel' [11:24, 06:13](872 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:24, 06:13](874 MB)
+PASS -- TEST 'control_c192_intel' [10:39, 08:59](851 MB)
+PASS -- TEST 'control_c384_intel' [13:29, 08:59](1274 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:53, 07:56](1385 MB)
+PASS -- TEST 'control_stochy_intel' [05:19, 01:38](639 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:22, 00:58](497 MB)
+PASS -- TEST 'control_lndp_intel' [04:17, 01:34](650 MB)
+PASS -- TEST 'control_iovr4_intel' [05:21, 02:27](617 MB)
+PASS -- TEST 'control_iovr5_intel' [05:20, 02:26](620 MB)
+PASS -- TEST 'control_p8_intel' [06:02, 02:58](1616 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:06, 02:56](1599 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:59, 02:48](1620 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:47, 01:38](859 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:52](1603 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:37](925 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:58](1605 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:49, 02:43](1707 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:48, 05:09](1617 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 03:48](1647 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:58](1621 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:53, 03:26](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:35, 05:06](849 MB)
+PASS -- TEST 'regional_restart_intel' [05:38, 02:45](1006 MB)
+PASS -- TEST 'regional_decomp_intel' [07:39, 05:31](815 MB)
+PASS -- TEST 'regional_2threads_intel' [05:44, 03:10](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:40, 05:02](1361 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:03](851 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](829 MB)
+PASS -- TEST 'regional_wofs_intel' [10:41, 06:38](1882 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 09:45]
+PASS -- TEST 'rap_control_intel' [10:34, 07:44](1089 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:09, 04:09](1290 MB)
+PASS -- TEST 'rap_decomp_intel' [11:35, 08:04](1022 MB)
+PASS -- TEST 'rap_2threads_intel' [09:39, 07:17](1184 MB)
+PASS -- TEST 'rap_restart_intel' [05:40, 03:59](1096 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:42](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1028 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 05:46](1104 MB)
+PASS -- TEST 'hrrr_control_intel' [07:33, 03:58](994 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 04:08](1027 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:36](1109 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:09](996 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:43, 07:33](1087 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:06](1988 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 08:52](2059 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:07, 09:30]
+PASS -- TEST 'control_csawmg_intel' [08:39, 06:11](707 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:43, 05:55](716 MB)
+PASS -- TEST 'control_ras_intel' [05:20, 03:17](731 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:07, 03:28]
+PASS -- TEST 'control_csawmg_gnu' [11:40, 08:48](586 MB)
+PASS -- TEST 'control_csawmgt_gnu' [11:38, 08:40](586 MB)
+
+PASS -- COMPILE 'wam_intel' [11:07, 09:03]
+PASS -- TEST 'control_wam_intel' [04:19, 02:02](644 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 09:50]
+PASS -- TEST 'control_p8_faster_intel' [05:50, 02:41](1592 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](821 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:16]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:40](807 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:34](813 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:00](781 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:42](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:07](857 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 04:00](856 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:17, 02:43](792 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:28, 02:47](865 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:36, 02:45](1635 MB)
+PASS -- TEST 'regional_debug_intel' [18:38, 16:35](836 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:20, 04:42](1192 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:38](1202 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:19, 04:48](1189 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 04:46](1195 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 04:46](1195 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:04](1262 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:49](1206 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:48](1193 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:42](1193 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 04:49](1201 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:20, 04:41](1202 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 04:47](1197 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 07:48](1200 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:22, 04:37](1181 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:42](1196 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:23, 04:45](1188 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 08:05](1201 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:20]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:07](570 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:34, 02:06](564 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02]
+PASS -- TEST 'control_wam_debug_intel' [06:18, 04:44](501 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:19]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 03:48](1156 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:19](1046 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:21](985 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 05:59](1097 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 03:06](951 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:33](915 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:42, 04:48](1031 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:50](902 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:08, 11:44]
+PASS -- TEST 'conus13km_control_intel' [04:52, 02:00](1193 MB)
+PASS -- TEST 'conus13km_2threads_intel' [13:39, 00:56](1110 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [14:41, 01:12](1099 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 09:15]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:12](963 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 03:13]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:39](1047 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:34](1068 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:48, 13:33](1215 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 13:59](919 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:46](1140 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:44](1283 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:46](1112 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:08, 10:24]
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:42](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:42](1105 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:21, 06:47](823 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 12:51](862 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:21, 14:30](880 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:55, 05:16](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:26](516 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [15:43, 02:36](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:20, 06:55](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:42, 03:33](524 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:43, 03:21](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:51, 04:01](579 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:26, 01:11](406 MB)
+PASS -- TEST 'gnv1_nested_intel' [16:47, 03:57](765 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:07, 03:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:52, 12:18](565 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:09, 11:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:00, 08:22](639 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 08:30](689 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 11:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:02, 06:18](717 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:08, 10:19]
+PASS -- TEST 'hafs_regional_docn_intel' [19:12, 06:13](826 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:17, 06:15](804 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:55, 16:17](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:07, 05:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:55](1120 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:17, 01:39](1069 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:14, 02:35](1009 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:39](994 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:15, 02:38](1001 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:18, 02:40](1121 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:38](1120 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:15, 02:28](1010 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 06:04](1051 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:12, 06:21](1030 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:12, 02:42](1133 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:17, 03:55](2431 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:17, 03:52](2476 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 02:53]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:08](1045 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 06:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:40](1117 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:00]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:45](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:20, 00:47](321 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:30](323 MB)
+
+PASS -- COMPILE 'atml_intel' [13:07, 10:49]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 04:14](1586 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:14](1586 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:16](885 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:08, 10:00]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:45](1623 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:07, 09:53]
+PASS -- TEST 'control_atmwav_intel' [03:31, 01:39](668 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:08, 09:40]
+PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:53](3016 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:44](3085 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:42, 05:05](3037 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:08, 09:22]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:15, 20:06](4479 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:06, 03:27]
+PASS -- TEST 'control_c48_gnu' [14:25, 11:40](788 MB)
+PASS -- TEST 'control_stochy_gnu' [07:19, 04:01](549 MB)
+PASS -- TEST 'control_ras_gnu' [08:19, 04:59](553 MB)
+PASS -- TEST 'control_p8_gnu' [09:03, 04:53](1311 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [07:56, 04:44](1310 MB)
+PASS -- TEST 'control_flake_gnu' [08:19, 05:51](594 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:06, 03:29]
+PASS -- TEST 'rap_control_gnu' [14:31, 11:43](894 MB)
+PASS -- TEST 'rap_decomp_gnu' [14:31, 11:50](895 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:41, 10:28](971 MB)
+PASS -- TEST 'rap_restart_gnu' [08:39, 06:01](625 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [14:38, 11:46](893 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:38, 11:42](892 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:46](627 MB)
+PASS -- TEST 'hrrr_control_gnu' [08:30, 06:00](888 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:29, 05:56](878 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:12](976 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [07:34, 06:00](889 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:26, 03:13](610 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:27, 03:13](705 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [13:42, 11:21](893 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21]
+PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](589 MB)
+PASS -- TEST 'regional_debug_gnu' [09:43, 07:27](599 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:31](906 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:30](902 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](872 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [05:17, 02:36](907 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:43](993 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:22, 03:53](906 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:31](904 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:30](902 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:32](542 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:50](536 MB)
+PASS -- TEST 'control_debug_p8_gnu' [04:41, 01:42](1293 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:32](911 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:51](912 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:08](911 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:42]
+PASS -- TEST 'control_wam_debug_gnu' [04:18, 02:27](242 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:22]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:34, 11:55](749 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:27, 06:05](743 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:37, 10:36](803 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:32, 05:19](794 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 06:01](742 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:37, 08:55](595 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:22, 03:32](580 MB)
+PASS -- TEST 'conus13km_control_gnu' [07:57, 04:11](897 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [04:40, 01:56](930 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:22](599 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:42, 07:00](781 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:08, 03:20]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:30](756 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:33](756 MB)
+PASS -- TEST 'conus13km_debug_gnu' [10:40, 07:02](912 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:41, 07:02](627 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [06:40, 04:20](948 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:11](981 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](782 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:09, 13:51]
+PASS -- TEST 'cpld_control_p8_gnu' [13:10, 10:50](1510 MB)
+
+PASS -- COMPILE 's2s_gnu' [15:09, 13:35]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:02, 06:34](1400 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:18]
+PASS -- TEST 'cpld_debug_p8_gnu' [09:04, 06:12](1514 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:09, 13:38]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 22:17](1373 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:06]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:49](1384 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:23]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:14, 03:00](700 MB)
SYNOPSIS:
-Starting Date/Time: 20240313 18:46:26
-Ending Date/Time: 20240313 23:52:57
-Total Time: 05h:09m:02s
+Starting Date/Time: 20240317 23:58:13
+Ending Date/Time: 20240318 01:49:49
+Total Time: 01h:51m:57s
Compiles Completed: 55/55
Tests Completed: 247/247
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 0c7977b8c3..bb954465fb 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-19159d93d74d6f3c37fdf74fb3475e000435f07e
+818ea1590078efdc8c6b0089acfbec656b9c1dca
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,366 +47,366 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_941138
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3021165
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:07]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 07:44](1889 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 18:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:02, 13:18](1769 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:15, 14:04](2183 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:19, 06:33](1189 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:08, 14:54](1692 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:43]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:11, 20:23](1739 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:06, 12:00]
-PASS -- TEST 'cpld_control_p8_intel' [09:46, 07:40](2088 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:57, 07:36](2063 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [11:08, 04:17](1960 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:45, 07:45](1977 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:10, 04:18](1731 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:44, 08:52](2499 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:43](2064 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:50, 06:28](1906 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:58, 07:35](2063 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [25:31, 15:20](2810 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:01, 05:51](2926 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:33, 08:57](3635 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:45, 05:12](3617 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:45, 05:00](2033 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:06, 11:09]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:47, 07:10](1772 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 03:59](1816 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:19]
-PASS -- TEST 'cpld_debug_p8_intel' [08:47, 06:56](2052 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:17]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:47](1799 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:44, 04:04](1817 MB)
-
-PASS -- COMPILE 's2s_intel' [10:06, 08:12]
-PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:17](2838 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:06, 11:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:14](2065 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:48]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:47, 13:49](1808 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 06:47](1285 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:51, 15:26](1729 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:03]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:43, 21:41](1761 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:05, 07:54]
-PASS -- TEST 'control_flake_intel' [15:20, 02:50](713 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [14:20, 02:09](659 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:24, 02:11](671 MB)
-PASS -- TEST 'control_latlon_intel' [13:17, 02:07](661 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:24, 02:10](665 MB)
-PASS -- TEST 'control_c48_intel' [10:22, 05:41](860 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [18:38, 05:45](855 MB)
-PASS -- TEST 'control_c192_intel' [15:27, 08:12](982 MB)
-PASS -- TEST 'control_c384_intel' [15:13, 08:15](1442 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:51, 07:19](1520 MB)
-PASS -- TEST 'control_stochy_intel' [09:16, 01:27](680 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:19, 00:52](532 MB)
-PASS -- TEST 'control_lndp_intel' [11:18, 01:23](665 MB)
-PASS -- TEST 'control_iovr4_intel' [14:18, 02:08](658 MB)
-PASS -- TEST 'control_iovr5_intel' [11:15, 02:07](655 MB)
-PASS -- TEST 'control_p8_intel' [11:49, 02:32](1643 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [11:48, 02:34](1626 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [09:49, 02:28](1658 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:45, 01:25](922 MB)
-PASS -- TEST 'control_noqr_p8_intel' [09:46, 02:33](1625 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:26](973 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:42, 02:40](1618 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:41, 02:22](1730 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:36, 04:31](1644 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:52, 03:36](1717 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:47, 02:31](1644 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:55, 02:59](1658 MB)
-PASS -- TEST 'regional_control_intel' [06:23, 04:33](957 MB)
-PASS -- TEST 'regional_restart_intel' [04:28, 02:29](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [06:22, 04:46](945 MB)
-PASS -- TEST 'regional_2threads_intel' [04:26, 03:00](915 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:25, 04:29](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:39](955 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:22, 04:30](959 MB)
-PASS -- TEST 'regional_wofs_intel' [07:23, 05:36](2089 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:05, 07:03]
-PASS -- TEST 'rap_control_intel' [08:47, 06:46](1207 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:38, 03:47](1439 MB)
-PASS -- TEST 'rap_decomp_intel' [08:28, 06:51](1163 MB)
-PASS -- TEST 'rap_2threads_intel' [08:31, 06:12](1368 MB)
-PASS -- TEST 'rap_restart_intel' [05:52, 03:27](1147 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:47, 06:39](1203 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 06:50](1151 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:50, 05:06](1187 MB)
-PASS -- TEST 'hrrr_control_intel' [05:35, 03:21](1081 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1035 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:03](1125 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:56](1035 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:19](1184 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:18, 07:38](2006 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:30](2156 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:05, 06:35]
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:21](833 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:23, 05:14](848 MB)
-PASS -- TEST 'control_ras_intel' [04:13, 02:53](806 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:05, 04:08]
-PASS -- TEST 'control_csawmg_gnu' [08:26, 06:27](811 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:25, 06:18](811 MB)
-
-PASS -- COMPILE 'wam_intel' [08:05, 06:33]
-PASS -- TEST 'control_wam_intel' [03:17, 01:48](796 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:30]
-PASS -- TEST 'control_p8_faster_intel' [04:46, 02:15](1641 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:21, 04:02](961 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:43]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:16, 02:16](819 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:12](825 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:12, 02:26](823 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:12, 02:20](821 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:24, 03:24](882 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:20](879 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:11, 02:19](834 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:20, 02:20](880 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:27, 02:22](1657 MB)
-PASS -- TEST 'regional_debug_intel' [16:30, 14:13](891 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:18, 03:59](1218 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:57](1218 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:12, 03:59](1220 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:13, 04:05](1218 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:13, 03:58](1221 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:22, 04:13](1299 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:08](1218 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:09](1212 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:04](1218 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1222 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:57](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:15, 04:05](1227 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:31](1223 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 04:00](1209 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 04:51](1211 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:03](1222 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 06:56](1220 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 03:19]
-PASS -- TEST 'control_csawmg_debug_gnu' [05:26, 01:45](788 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [05:27, 01:45](786 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:06, 02:46]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:06, 06:52]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:45, 03:38](1273 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:49, 05:28](1146 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 02:52](1034 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:32, 05:11](1274 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:33, 02:42](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:31, 03:03](1001 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:46, 04:12](1104 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:20, 01:39](960 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:06, 09:19]
-PASS -- TEST 'conus13km_control_intel' [03:34, 01:44](1285 MB)
-PASS -- TEST 'conus13km_2threads_intel' [07:24, 00:53](1209 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [07:25, 01:04](1156 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 06:58]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:45](1070 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 02:56]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 03:56](1108 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:13, 03:52](1085 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:28, 11:50](1346 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:27, 12:09](999 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [14:26, 06:50](1246 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:31, 11:56](1400 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:52]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:16, 03:58](1148 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:06, 09:36]
-PASS -- TEST 'hafs_regional_atm_intel' [08:59, 05:30](878 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:16, 05:24](1265 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:09, 06:34](956 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [22:01, 14:00](989 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:07, 15:27](991 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:47, 05:36](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:13, 07:11](619 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [10:34, 02:54](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:54, 08:02](543 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:36, 03:58](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:38, 03:47](621 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:43, 04:54](675 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:21, 01:21](447 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:06, 02:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:20](636 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:05, 10:14]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:54, 17:50](731 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:51, 16:02](845 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:03]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:53, 10:01](814 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:05, 09:24]
-PASS -- TEST 'hafs_regional_docn_intel' [13:04, 05:34](948 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 05:41](920 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:39, 16:31](1342 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:11, 02:08](1150 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:11, 01:21](1094 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:10, 02:04](1010 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:10, 02:05](1011 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:11, 02:08](1010 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:10, 02:10](1147 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:10, 02:08](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:09, 02:06](1008 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:46, 04:51](1168 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:46, 04:56](1142 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:13, 02:10](1143 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:14, 03:01](2441 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [09:10, 03:04](2388 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:05, 03:36]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:11, 05:02](1083 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 05:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:12, 02:10](1147 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 00:43]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:21, 00:52](336 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:17, 00:51](560 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:15, 00:36](560 MB)
-
-PASS -- COMPILE 'atml_intel' [10:05, 07:27]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:54, 06:07](1644 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:06](1653 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 02:58](956 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:05, 08:56]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:36](1688 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:06, 10:06]
-PASS -- TEST 'control_atmwav_intel' [03:39, 01:29](700 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:06, 08:34]
-PASS -- TEST 'atmaero_control_p8_intel' [06:48, 03:36](1801 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:16](1807 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:38, 04:29](1818 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:05, 07:02]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:34]
-PASS -- TEST 'regional_atmaq_debug_intel' [20:18, 16:36](4591 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:06, 03:53]
-PASS -- TEST 'control_c48_gnu' [13:23, 09:28](882 MB)
-PASS -- TEST 'control_stochy_gnu' [05:13, 02:20](729 MB)
-PASS -- TEST 'control_ras_gnu' [07:13, 03:50](732 MB)
-PASS -- TEST 'control_p8_gnu' [07:53, 03:39](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:37, 03:29](1517 MB)
-PASS -- TEST 'control_flake_gnu' [07:13, 04:25](808 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:06, 03:49]
-PASS -- TEST 'rap_control_gnu' [10:47, 07:44](1084 MB)
-PASS -- TEST 'rap_decomp_gnu' [10:32, 07:53](1085 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:31, 07:16](1124 MB)
-PASS -- TEST 'rap_restart_gnu' [05:37, 03:55](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:47, 07:39](1086 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:54](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:38, 05:47](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:29, 04:07](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:01](1139 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:32, 03:39](1038 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:04](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:15, 02:07](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:03](934 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:37](1081 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 04:58]
-PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:11](774 MB)
-PASS -- TEST 'regional_debug_gnu' [08:24, 06:27](921 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:58](1097 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 02:00](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:14, 02:03](1094 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 02:00](1093 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:03](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:07](1094 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:15, 01:58](1097 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:56](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:12, 01:13](722 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](721 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:26, 01:16](1502 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:10](1097 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:17](1101 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:05, 02:17]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:35]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:21](965 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 03:50](952 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:45, 06:46](975 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 03:27](873 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:49](953 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:39, 05:31](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:22, 02:06](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:38, 02:31](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [04:23, 01:12](1175 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:24, 01:33](926 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:05, 08:53]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:31, 04:21](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:05, 04:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:56](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:28](1281 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:37](970 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:26, 03:15](1192 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:20](1348 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:05, 04:43]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:15, 01:59](1005 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:06, 14:49]
-
-PASS -- COMPILE 's2s_gnu' [16:06, 14:39]
-
-PASS -- COMPILE 's2swa_debug_gnu' [07:05, 05:54]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 15:02]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:05, 03:47]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:52]
+PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:32]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:14, 07:43](1889 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:07, 17:43]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:10, 13:26](1773 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:32, 14:09](2163 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:24, 06:31](1182 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:12, 15:15](1696 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:47]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:17](1727 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:06, 11:05]
+PASS -- TEST 'cpld_control_p8_intel' [10:06, 07:41](2066 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:40](2079 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:17, 04:23](1978 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:35](1970 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:21](1738 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:09, 09:04](2498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:06, 07:29](2064 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:24](1901 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:13, 07:39](2062 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 15:32](2793 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:20, 05:49](2927 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:01](3631 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:23, 05:28](3612 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 04:58](2020 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:06, 10:41]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:11, 07:07](1772 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:01](1816 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:10]
+PASS -- TEST 'cpld_debug_p8_intel' [09:04, 06:53](2043 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:37]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:54, 04:42](1805 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:14]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:58, 03:59](1817 MB)
+
+PASS -- COMPILE 's2s_intel' [11:06, 09:19]
+PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:13](2816 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:06, 13:16]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:08, 07:15](2092 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:09]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:02, 13:50](1806 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:57, 06:56](1278 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:37](1729 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:34]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:54, 22:05](1766 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:11]
+PASS -- TEST 'control_flake_intel' [04:20, 02:52](708 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:06](667 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:10](667 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:10](663 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:09](664 MB)
+PASS -- TEST 'control_c48_intel' [07:26, 05:45](855 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB)
+PASS -- TEST 'control_c192_intel' [09:32, 07:49](977 MB)
+PASS -- TEST 'control_c384_intel' [11:06, 08:22](1456 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:59, 07:43](1532 MB)
+PASS -- TEST 'control_stochy_intel' [03:20, 01:25](668 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:55](528 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:21](671 MB)
+PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](663 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:09](657 MB)
+PASS -- TEST 'control_p8_intel' [04:52, 02:39](1645 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:39](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 02:29](1633 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:56, 01:24](925 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:32](1638 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:25](972 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:38](1628 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:55, 02:28](1729 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:48, 04:28](1631 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:30](1714 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:39](1635 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:12, 02:59](1660 MB)
+PASS -- TEST 'regional_control_intel' [06:31, 04:34](957 MB)
+PASS -- TEST 'regional_restart_intel' [04:24, 02:30](1101 MB)
+PASS -- TEST 'regional_decomp_intel' [06:26, 04:44](946 MB)
+PASS -- TEST 'regional_2threads_intel' [04:32, 03:02](911 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:30, 04:22](1487 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:31](955 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:30](955 MB)
+PASS -- TEST 'regional_wofs_intel' [07:28, 05:51](2067 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:41]
+PASS -- TEST 'rap_control_intel' [08:51, 06:37](1192 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:26](1416 MB)
+PASS -- TEST 'rap_decomp_intel' [08:39, 06:56](1121 MB)
+PASS -- TEST 'rap_2threads_intel' [08:34, 06:13](1389 MB)
+PASS -- TEST 'rap_restart_intel' [05:52, 03:30](1131 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:26](1199 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:54](1148 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 04:56](1199 MB)
+PASS -- TEST 'hrrr_control_intel' [05:52, 03:25](1062 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 03:37](1057 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:13](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:50](1019 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:00, 06:32](1186 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:41](2014 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:38](2202 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:25]
+PASS -- TEST 'control_csawmg_intel' [07:26, 05:20](842 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](817 MB)
+PASS -- TEST 'control_ras_intel' [04:16, 02:51](818 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:05, 04:29]
+PASS -- TEST 'control_csawmg_gnu' [08:33, 06:33](811 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:25, 06:25](807 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:52]
+PASS -- TEST 'control_wam_intel' [03:19, 01:54](784 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:04]
+PASS -- TEST 'control_p8_faster_intel' [04:58, 02:15](1630 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:29, 04:09](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:53]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:21](822 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:15](828 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:32](839 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:14](827 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:27](878 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:23, 03:20](872 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:14, 02:18](849 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:22, 02:19](888 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:30, 02:24](1663 MB)
+PASS -- TEST 'regional_debug_intel' [16:31, 14:23](899 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:16, 03:58](1218 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1217 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:59](1222 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 04:04](1237 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:02](1215 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:08](1296 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:05](1216 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:03](1228 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:02](1219 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:29, 03:58](1220 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:22, 03:56](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:56](1230 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:26](1217 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:56](1220 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:51](1219 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:53, 06:54](1226 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:37]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:46](793 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:23, 01:46](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 07:14]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:17](1274 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:49, 05:27](1135 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:54](1043 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:21](1292 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:39](1035 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:04](975 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:17](1101 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:39](950 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:19]
+PASS -- TEST 'conus13km_control_intel' [03:41, 01:43](1295 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:44](1200 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:24, 01:04](1152 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:06]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:45](1074 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:57]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 03:57](1102 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:59](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1351 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:39, 12:03](998 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 06:41](1231 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 11:40](1391 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:01](1154 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:08, 09:56]
+PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:23](882 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:09](1277 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:10, 06:26](937 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:00, 13:45](980 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:49](962 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:52, 05:33](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 07:11](614 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:54](435 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 07:57](535 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:49, 04:06](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:39, 03:43](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:57](686 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:37](454 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:14](632 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:57, 16:39](729 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:55, 16:35](811 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 09:44](795 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:05, 09:40]
+PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](947 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:26](957 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:24](1345 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:19](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1016 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:07](1013 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:08](1017 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:07](1161 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:07](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:05](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:58](1165 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:44, 04:52](1140 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1148 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2432 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:02](2442 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:55]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:06](1067 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:07](1153 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:55]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:57](337 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:54](558 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:34](564 MB)
+
+PASS -- COMPILE 'atml_intel' [10:07, 09:01]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 05:53](1653 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:39, 05:54](1653 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 03:05](945 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:33](1692 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:59]
+PASS -- TEST 'control_atmwav_intel' [03:41, 01:32](702 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:05, 07:39]
+PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:35](1793 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](1805 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:25, 04:31](1821 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:06, 07:12]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:52]
+PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 17:22](4603 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:05, 04:34]
+PASS -- TEST 'control_c48_gnu' [11:25, 09:27](860 MB)
+PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](733 MB)
+PASS -- TEST 'control_ras_gnu' [05:15, 03:47](728 MB)
+PASS -- TEST 'control_p8_gnu' [05:50, 03:38](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:40, 03:32](1516 MB)
+PASS -- TEST 'control_flake_gnu' [06:45, 04:26](810 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:05, 04:08]
+PASS -- TEST 'rap_control_gnu' [09:54, 07:49](1088 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:40, 07:56](1083 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:30, 07:28](1151 MB)
+PASS -- TEST 'rap_restart_gnu' [05:47, 03:58](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:50](1088 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:02, 07:51](1083 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:55, 05:44](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:47, 03:57](1071 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:45, 04:00](1133 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:45, 03:41](1030 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:06](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:05](879 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:22, 02:01](935 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:35](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:05, 04:47]
+PASS -- TEST 'control_diag_debug_gnu' [03:33, 01:22](777 MB)
+PASS -- TEST 'regional_debug_gnu' [08:26, 06:21](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:57](1098 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:41, 02:04](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:13, 02:04](1093 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 02:01](1094 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:02](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:29, 03:04](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:00](1096 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 01:57](1091 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:09](725 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:16](723 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1504 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:01](1101 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:07](1099 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:19](1102 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:34]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 04:35]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:14](961 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:48](949 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](1008 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](891 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:54](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:53, 05:29](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:59](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:39, 02:27](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:33, 01:08](1171 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:26](946 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:06, 09:16]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:29, 04:18](992 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:55]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:52](972 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:28](1278 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:31](960 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:27, 03:16](1188 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:22](1348 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:06, 06:39]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:57](1010 MB)
+
+PASS -- COMPILE 's2swa_gnu' [20:06, 18:13]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:17]
+
+PASS -- COMPILE 's2swa_debug_gnu' [08:06, 06:52]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 15:47]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:06, 06:41]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [18:06, 16:22]
SYNOPSIS:
-Starting Date/Time: 20240314 07:27:36
-Ending Date/Time: 20240314 09:02:12
-Total Time: 01h:35m:02s
+Starting Date/Time: 20240317 15:38:17
+Ending Date/Time: 20240317 17:01:00
+Total Time: 01h:23m:19s
Compiles Completed: 55/55
Tests Completed: 238/238
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 66824eba57..b45e0da9cf 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d7aa189232097602b4a7b5cdab9caad9aba58ad
+0939a1dff2a2060b541eca9642a19c5ed1541f17
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,245 +47,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2771308
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2893158
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:25, 38:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 06:41](1789 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:32, 53:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:07, 20:38](1669 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:05](1874 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:06, 10:25](995 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:40, 23:43](1628 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:25, 38:23]
-PASS -- TEST 'cpld_control_p8_intel' [10:23, 07:29](1825 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 07:26](1830 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:17](1714 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:23, 07:30](1852 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:47, 04:19](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 07:09](2265 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 07:33](1830 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:40, 06:24](1784 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:41, 07:28](1825 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 07:09](1797 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:24, 35:45]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:29, 05:49](1666 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1715 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:11]
-PASS -- TEST 'cpld_debug_p8_intel' [13:54, 10:27](1844 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:41]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 07:10](1680 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:21, 32:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:34](1721 MB)
-
-PASS -- COMPILE 's2s_intel' [33:21, 31:57]
-PASS -- TEST 'cpld_control_c48_intel' [15:11, 12:39](2795 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:52, 32:51]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:08, 07:02](1832 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:30, 45:45]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:46, 20:43](1687 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:48, 10:17](1035 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:48, 23:52](1656 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:41]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:50, 32:03](1691 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:21, 34:21]
-PASS -- TEST 'control_flake_intel' [06:29, 04:30](644 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:15](596 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 03:47](600 MB)
-PASS -- TEST 'control_latlon_intel' [05:25, 03:18](600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](595 MB)
-PASS -- TEST 'control_c48_intel' [11:35, 10:04](840 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:35, 10:04](842 MB)
-PASS -- TEST 'control_c192_intel' [14:46, 12:19](726 MB)
-PASS -- TEST 'control_c384_intel' [18:40, 15:44](897 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:24, 13:23](1016 MB)
-PASS -- TEST 'control_stochy_intel' [04:29, 02:11](606 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB)
-PASS -- TEST 'control_lndp_intel' [04:28, 02:08](602 MB)
-PASS -- TEST 'control_iovr4_intel' [05:31, 03:18](593 MB)
-PASS -- TEST 'control_iovr5_intel' [05:31, 03:19](593 MB)
-PASS -- TEST 'control_p8_intel' [06:43, 03:57](1570 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:46, 03:52](1577 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 03:51](1583 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:59, 02:07](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:48](1572 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 02:03](847 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:11, 04:00](1569 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:09, 03:38](1653 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:50, 06:55](1575 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:32, 05:07](1643 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:57](1579 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:48, 04:30](1581 MB)
-PASS -- TEST 'regional_control_intel' [08:41, 06:58](770 MB)
-PASS -- TEST 'regional_restart_intel' [05:47, 03:42](937 MB)
-PASS -- TEST 'regional_decomp_intel' [09:41, 07:24](768 MB)
-PASS -- TEST 'regional_2threads_intel' [06:40, 04:18](751 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:53](763 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 07:01](762 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:24, 32:34]
-PASS -- TEST 'rap_control_intel' [12:10, 10:07](990 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:23, 05:39](1215 MB)
-PASS -- TEST 'rap_decomp_intel' [13:16, 10:38](981 MB)
-PASS -- TEST 'rap_2threads_intel' [12:10, 09:30](1096 MB)
-PASS -- TEST 'rap_restart_intel' [08:29, 05:14](992 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:35, 10:04](985 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:11, 10:38](983 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:31, 07:30](993 MB)
-PASS -- TEST 'hrrr_control_intel' [08:02, 05:14](992 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 05:28](984 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:34, 04:47](1064 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:48](923 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:35, 09:57](991 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:07](1940 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 11:57](1941 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:17, 30:54]
-PASS -- TEST 'control_csawmg_intel' [09:44, 07:57](698 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:42, 07:51](696 MB)
-PASS -- TEST 'control_ras_intel' [06:24, 04:22](669 MB)
-
-PASS -- COMPILE 'wam_intel' [31:18, 29:34]
-PASS -- TEST 'control_wam_intel' [04:21, 02:45](496 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:20]
-PASS -- TEST 'control_p8_faster_intel' [06:51, 03:35](1574 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:51, 06:31](763 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 05:23]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:22, 03:18](765 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:27, 03:25](760 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:41](764 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:20, 03:19](768 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:13](808 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:41, 05:14](806 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:22, 03:22](773 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:31, 03:25](816 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:53, 03:31](1597 MB)
-PASS -- TEST 'regional_debug_intel' [23:53, 21:36](778 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:26, 05:58](1154 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:25, 05:53](1145 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:58](1153 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:00](1152 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:00](1151 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:17](1232 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 06:07](1154 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:07](1151 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:02](1153 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:05](1157 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:52](1148 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:00](1146 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:30, 09:49](1149 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:56](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:31, 07:13](1155 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:00](1144 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:36, 10:25](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 04:00]
-PASS -- TEST 'control_wam_debug_intel' [08:26, 06:08](439 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:17, 29:53]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:16, 05:07](1074 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:03, 08:12](896 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 04:22](862 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:30, 07:50](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:11, 04:05](910 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:11, 04:33](857 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 06:21](902 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:29, 02:20](848 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:22, 42:04]
-PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1106 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:47, 01:20](1054 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:34](1028 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:22, 30:09]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:51]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:27, 05:56](1029 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:51](1032 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:05, 18:18](1144 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:28](845 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:55, 10:39](1083 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:01, 18:16](1206 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:40]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:01](1074 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:21, 34:41]
-PASS -- TEST 'hafs_regional_atm_intel' [09:19, 07:02](715 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:20](1084 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:42, 09:10](769 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:29, 16:17](797 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:05](825 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:16, 05:40](774 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:19, 31:41]
-PASS -- TEST 'hafs_regional_docn_intel' [11:31, 08:34](769 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:39](751 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:35](1059 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:13](1023 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:31](924 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:35](923 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:34](917 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:35](1056 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:39](1059 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 03:29](938 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 07:52](886 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:50](844 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:35](1061 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:08](2403 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 05:06](2401 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:09, 03:21]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 07:57](1014 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:36](1061 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:50]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:33](228 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:17](249 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:46](249 MB)
-
-PASS -- COMPILE 'atml_intel' [35:19, 33:55]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:41, 08:35](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [13:53, 09:09](1600 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:08, 05:48](868 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:20, 32:10]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:15](1601 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:18, 31:26]
-PASS -- TEST 'control_atmwav_intel' [05:23, 02:10](612 MB)
-
-PASS -- COMPILE 'atmaero_intel' [33:25, 32:08]
-PASS -- TEST 'atmaero_control_p8_intel' [10:04, 06:30](1694 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:06, 07:10](1717 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:48, 07:45](1747 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:23, 37:48]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 06:51](1792 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:29, 52:51]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:30](1662 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:12, 22:01](1883 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:13](998 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 23:37](1630 MB)
+
+PASS -- COMPILE 's2swa_intel' [39:23, 38:15]
+PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:28](1828 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:43, 07:36](1821 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:19](1711 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 07:34](1851 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:21](1730 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 07:09](2274 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:14, 07:42](1826 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:38, 06:24](1791 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:40, 07:28](1833 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 07:09](1786 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:22, 35:55]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:28, 05:43](1662 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:39, 05:43](1717 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:06]
+PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:25](1842 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:40]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:10](1681 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:18, 31:51]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:39](1709 MB)
+
+PASS -- COMPILE 's2s_intel' [33:18, 32:02]
+PASS -- TEST 'cpld_control_c48_intel' [15:09, 12:41](2798 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:43, 32:58]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:56, 07:02](1829 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:24, 48:06]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:49, 20:40](1682 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 10:19](1033 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:37, 23:50](1654 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:41]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 31:59](1690 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:20, 34:33]
+PASS -- TEST 'control_flake_intel' [06:27, 04:30](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 03:18](599 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 03:44](605 MB)
+PASS -- TEST 'control_latlon_intel' [05:25, 03:21](604 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:29](600 MB)
+PASS -- TEST 'control_c48_intel' [11:34, 10:06](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:08](849 MB)
+PASS -- TEST 'control_c192_intel' [14:46, 12:28](730 MB)
+PASS -- TEST 'control_c384_intel' [18:39, 15:43](895 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:17, 13:23](1017 MB)
+PASS -- TEST 'control_stochy_intel' [04:27, 02:17](602 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](435 MB)
+PASS -- TEST 'control_lndp_intel' [04:27, 02:12](600 MB)
+PASS -- TEST 'control_iovr4_intel' [05:28, 03:23](600 MB)
+PASS -- TEST 'control_iovr5_intel' [05:30, 03:25](596 MB)
+PASS -- TEST 'control_p8_intel' [06:31, 04:02](1582 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 03:53](1575 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:37, 03:45](1578 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:03, 02:09](818 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:48](1571 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:05](844 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:07, 04:00](1565 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:07, 03:40](1669 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:49, 06:57](1570 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:35, 05:05](1631 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:23, 04:00](1575 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:47, 04:32](1586 MB)
+PASS -- TEST 'regional_control_intel' [09:43, 07:04](767 MB)
+PASS -- TEST 'regional_restart_intel' [05:49, 03:41](936 MB)
+PASS -- TEST 'regional_decomp_intel' [09:41, 07:21](762 MB)
+PASS -- TEST 'regional_2threads_intel' [06:40, 04:14](757 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:57](761 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:56](766 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:18, 32:17]
+PASS -- TEST 'rap_control_intel' [12:10, 10:05](993 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 05:32](1217 MB)
+PASS -- TEST 'rap_decomp_intel' [13:10, 10:39](980 MB)
+PASS -- TEST 'rap_2threads_intel' [12:10, 09:35](1079 MB)
+PASS -- TEST 'rap_restart_intel' [08:26, 05:14](987 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:36, 10:04](999 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:09, 10:44](980 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:29](1002 MB)
+PASS -- TEST 'hrrr_control_intel' [08:02, 05:08](990 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:01, 05:16](978 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 04:43](1060 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:46](920 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:34, 09:52](983 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:35, 12:22](1944 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:35, 12:11](1938 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:20, 30:47]
+PASS -- TEST 'control_csawmg_intel' [09:42, 08:01](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:42, 07:52](695 MB)
+PASS -- TEST 'control_ras_intel' [06:21, 04:23](664 MB)
+
+PASS -- COMPILE 'wam_intel' [31:20, 29:34]
+PASS -- TEST 'control_wam_intel' [04:22, 02:45](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:18]
+PASS -- TEST 'control_p8_faster_intel' [06:44, 03:36](1581 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](764 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:22]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:18](756 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 03:19](756 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:42](769 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:20, 03:19](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:37, 05:14](808 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:09](809 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](771 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:34, 03:26](815 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:32](1587 MB)
+PASS -- TEST 'regional_debug_intel' [23:52, 21:35](775 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:24, 06:02](1152 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:53](1151 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1155 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 06:01](1148 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:01](1156 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:20](1238 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:06](1154 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 06:06](1154 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:01](1143 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:59](1159 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:52](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:03](1151 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:48](1148 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:55](1144 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:32, 07:18](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:29, 05:59](1152 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:31, 10:21](1159 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:40]
+PASS -- TEST 'control_wam_debug_intel' [08:25, 06:07](441 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:36]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 05:09](1079 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:02, 08:14](912 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:03, 04:21](871 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:22, 07:48](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:59](906 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:37](859 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 06:14](899 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:22](846 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:23, 42:17]
+PASS -- TEST 'conus13km_control_intel' [05:04, 02:53](1105 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:20](1048 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1027 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:19, 30:14]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:26](903 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:44]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:56](1025 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:53](1027 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:06, 18:30](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:06, 18:39](858 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:57, 10:40](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:01, 18:26](1207 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:44]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 06:02](1070 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:18, 34:11]
+PASS -- TEST 'hafs_regional_atm_intel' [09:16, 07:01](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:23](1085 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:39, 09:15](771 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:12](830 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:24, 05:41](780 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:21, 31:24]
+PASS -- TEST 'hafs_regional_docn_intel' [11:29, 08:35](774 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:31, 08:34](750 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:36](1060 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1018 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:30](930 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:34](927 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:36](924 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:36](1047 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:38](1060 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:31](919 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:11, 07:51](894 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:36](840 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:37](1065 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:00](2399 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 05:01](2402 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:15]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:00](1028 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:48]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:37](1047 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:31](227 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:17](250 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:48](252 MB)
+
+PASS -- COMPILE 'atml_intel' [35:20, 33:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 07:54](1596 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:38, 07:45](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 03:56](874 MB)
+
+PASS -- COMPILE 'atmw_intel' [34:18, 32:26]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:14](1606 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:19, 31:37]
+PASS -- TEST 'control_atmwav_intel' [05:10, 02:12](613 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 30:18]
+PASS -- TEST 'atmaero_control_p8_intel' [08:34, 05:07](1698 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:14](1722 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:38](1743 MB)
SYNOPSIS:
-Starting Date/Time: 20240313 18:37:03
-Ending Date/Time: 20240313 22:09:37
-Total Time: 03h:33m:10s
+Starting Date/Time: 20240315 18:58:13
+Ending Date/Time: 20240315 22:27:49
+Total Time: 03h:30m:13s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 189562e4fc..444af26a1f 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d7aa189232097602b4a7b5cdab9caad9aba58ad
+0939a1dff2a2060b541eca9642a19c5ed1541f17
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5134-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,280 +47,358 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_318497
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400865
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:21]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:43, 05:11](3187 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:07, 23:32]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 16:54](1737 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:55, 17:26](2024 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:01, 08:09](1113 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:51, 18:32](1639 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:17]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 22:58](1691 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:07, 14:43]
-PASS -- TEST 'cpld_control_p8_intel' [08:33, 05:41](3213 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:40, 05:40](3213 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:18](3258 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:33, 05:44](3233 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:21](3274 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:45, 06:13](3559 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:32, 05:39](3199 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:34, 04:47](3076 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:44, 05:46](3214 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:32, 10:08](3337 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:03, 06:47](3621 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:37, 11:16](4084 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 06:56](4368 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 05:28](3172 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:06, 13:06]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:31](1736 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:18, 04:20](1779 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:52]
-PASS -- TEST 'cpld_debug_p8_intel' [11:34, 08:34](3250 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:41]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:03](1750 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:07, 12:55]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:18](1782 MB)
-
-PASS -- COMPILE 's2s_intel' [14:06, 12:34]
-PASS -- TEST 'cpld_control_c48_intel' [09:51, 08:02](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:07, 17:08]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:16](3212 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:26]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 16:33](1722 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:16, 08:12](1171 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 18:27](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:37]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:08, 24:09](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:06, 11:32]
-PASS -- TEST 'control_flake_intel' [05:21, 03:30](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:28](651 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:38](654 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:30](650 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:34](650 MB)
-PASS -- TEST 'control_c48_intel' [07:25, 05:58](878 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 05:57](864 MB)
-PASS -- TEST 'control_c192_intel' [11:34, 09:08](860 MB)
-PASS -- TEST 'control_c384_intel' [13:33, 10:04](1242 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:42, 09:03](1360 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:46](655 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:20, 01:00](504 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:38](658 MB)
-PASS -- TEST 'control_iovr4_intel' [04:25, 02:33](650 MB)
-PASS -- TEST 'control_iovr5_intel' [04:21, 02:30](655 MB)
-PASS -- TEST 'control_p8_intel' [05:03, 02:57](1638 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:14, 02:57](1639 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 02:51](1626 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:09, 01:39](892 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:13, 02:57](1612 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 01:36](930 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:20, 03:03](1609 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:28, 03:06](1722 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:11](1624 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:42, 03:58](1693 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:41, 03:02](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:01, 03:31](1644 MB)
-PASS -- TEST 'regional_control_intel' [07:54, 05:09](860 MB)
-PASS -- TEST 'regional_restart_intel' [04:43, 02:43](977 MB)
-PASS -- TEST 'regional_decomp_intel' [07:51, 05:28](853 MB)
-PASS -- TEST 'regional_2threads_intel' [05:46, 03:39](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:39, 05:03](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:05](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:06](856 MB)
-PASS -- TEST 'regional_wofs_intel' [08:37, 06:32](1920 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:06, 10:51]
-PASS -- TEST 'rap_control_intel' [10:29, 07:41](1101 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 04:46](1295 MB)
-PASS -- TEST 'rap_decomp_intel' [10:58, 08:07](1024 MB)
-PASS -- TEST 'rap_2threads_intel' [10:09, 07:54](1180 MB)
-PASS -- TEST 'rap_restart_intel' [06:18, 04:00](1110 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1109 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:05, 08:11](1039 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:23, 05:47](1136 MB)
-PASS -- TEST 'hrrr_control_intel' [06:02, 03:58](1038 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:01, 04:05](1022 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 03:29](1114 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:10](995 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:34](1106 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:12](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:56](2077 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:07, 11:27]
-PASS -- TEST 'control_csawmg_intel' [08:34, 06:04](750 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:47, 05:57](749 MB)
-PASS -- TEST 'control_ras_intel' [05:20, 03:18](738 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 10:18]
-PASS -- TEST 'control_wam_intel' [04:19, 02:09](659 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17]
-PASS -- TEST 'control_p8_faster_intel' [05:40, 02:39](1617 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:40, 04:36](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:23]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:47](816 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:46](819 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:08](814 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:49](815 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](817 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:06](859 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](825 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:59](871 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 02:57](1633 MB)
-PASS -- TEST 'regional_debug_intel' [18:38, 16:57](838 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:22, 04:57](1200 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:17, 04:44](1199 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:56](1201 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:58](1197 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:54](1201 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:14](1285 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 05:00](1201 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:01](1199 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:02](1199 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1208 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1205 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 04:53](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:59](1200 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1201 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:12](1200 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:58](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:30](1199 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:05, 03:13]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:04](502 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:16]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:52, 04:43](1162 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:27](1052 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:22](988 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:40](1089 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 02:58](964 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 03:37](923 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:49](1033 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:23]
-PASS -- TEST 'conus13km_control_intel' [04:53, 02:07](1202 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:02](1119 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:16](1114 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:07, 11:09]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:18](996 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:00]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:00](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:50](1080 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:50, 14:33](1231 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:36](952 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:49](1158 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:26](1299 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:03]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:59](1077 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:08, 12:54]
-PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:38](740 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:58](1116 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:30, 07:00](833 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:50](861 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:21, 14:28](884 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:09](498 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:36](518 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:50, 03:09](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:18, 08:02](482 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:46, 04:09](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:55](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:54, 05:20](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:26](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:57, 04:27](807 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:50](531 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:27](636 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:35](744 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:08, 12:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:56](729 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:08, 12:12]
-PASS -- TEST 'hafs_regional_docn_intel' [09:14, 06:17](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 06:24](814 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:04](1210 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:07, 08:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:41](1081 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:41](1088 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1018 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:41](1013 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:37](1016 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:39](1125 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:36](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:37](1014 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:55](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 05:54](1029 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:41](1104 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:34](2494 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:38](2498 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 04:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:07](1063 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:07, 08:21]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:12, 02:33](1130 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:51](251 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](320 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](321 MB)
-
-PASS -- COMPILE 'atml_intel' [14:08, 12:10]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:19](1607 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:16](1595 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:16](895 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:09, 12:12]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:47](1664 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:07, 11:59]
-PASS -- TEST 'control_atmwav_intel' [04:05, 01:40](670 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:07, 11:08]
-PASS -- TEST 'atmaero_control_p8_intel' [06:17, 03:57](3024 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:48](3088 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:05](3108 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 10:44]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:04]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:50, 21:20](4578 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:10, 14:57]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:50, 05:08](3183 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:10, 19:36]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:55, 16:21](1740 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 18:04](2024 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:13](1111 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:55, 18:30](1644 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:43]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:32](1697 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:10, 14:38]
+PASS -- TEST 'cpld_control_p8_intel' [14:50, 05:33](3211 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:04, 05:51](3210 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:00, 03:23](3252 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [16:04, 05:46](3241 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:56, 03:24](3276 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:50, 06:12](3555 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [14:50, 05:46](3196 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:48, 04:43](3071 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:49, 05:39](3210 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 09:55](3346 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:10, 06:08](3617 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:57, 10:59](4129 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:46, 06:58](4359 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:51, 05:28](3169 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:10, 14:22]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [14:34, 04:29](1742 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:46, 04:26](1778 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:41]
+PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:40](3251 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:52]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:03](1757 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:10, 12:11]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:32](1705 MB)
+
+PASS -- COMPILE 's2s_intel' [14:10, 12:10]
+PASS -- TEST 'cpld_control_c48_intel' [10:00, 08:01](2835 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:41]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 05:18](3152 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:08, 17:07]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:32](1774 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 08:05](1176 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:34](1677 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:51](1721 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:08, 13:45]
+PASS -- TEST 'control_flake_intel' [09:23, 03:31](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [08:22, 02:25](657 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:28, 02:32](657 MB)
+PASS -- TEST 'control_latlon_intel' [08:20, 02:26](655 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:29, 02:31](654 MB)
+PASS -- TEST 'control_c48_intel' [11:28, 05:56](882 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:28, 05:58](873 MB)
+PASS -- TEST 'control_c192_intel' [15:41, 09:10](852 MB)
+PASS -- TEST 'control_c384_intel' [17:32, 10:09](1252 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:57, 09:05](1352 MB)
+PASS -- TEST 'control_stochy_intel' [06:23, 01:38](652 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:28, 00:58](507 MB)
+PASS -- TEST 'control_lndp_intel' [03:25, 01:41](654 MB)
+PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](656 MB)
+PASS -- TEST 'control_iovr5_intel' [05:22, 02:28](648 MB)
+PASS -- TEST 'control_p8_intel' [06:00, 03:02](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:19, 02:57](1627 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:49](1638 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:14, 01:37](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:20, 02:52](1616 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 01:36](926 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:13, 02:58](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:00](1716 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:11](1633 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:53](1651 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:32, 02:59](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:58, 03:25](1635 MB)
+PASS -- TEST 'regional_control_intel' [07:36, 05:12](856 MB)
+PASS -- TEST 'regional_restart_intel' [05:37, 02:43](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:35, 05:29](849 MB)
+PASS -- TEST 'regional_2threads_intel' [05:46, 03:38](849 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:37, 05:04](1361 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:06](853 MB)
+PASS -- TEST 'regional_wofs_intel' [08:37, 06:35](1917 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:09, 12:06]
+PASS -- TEST 'rap_control_intel' [11:28, 07:49](1107 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:44](1299 MB)
+PASS -- TEST 'rap_decomp_intel' [12:03, 08:14](1030 MB)
+PASS -- TEST 'rap_2threads_intel' [11:18, 07:57](1179 MB)
+PASS -- TEST 'rap_restart_intel' [06:20, 04:00](1096 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:06, 07:41](1110 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:06, 08:07](1030 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 05:54](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [07:06, 03:57](996 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:06](1019 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:53, 03:28](1109 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:12](998 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:17, 07:36](1098 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:10](1994 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:58](2076 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:09, 12:40]
+PASS -- TEST 'control_csawmg_intel' [08:43, 06:03](742 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:42, 05:57](748 MB)
+PASS -- TEST 'control_ras_intel' [05:23, 03:21](745 MB)
+
+PASS -- COMPILE 'wam_intel' [12:06, 10:53]
+PASS -- TEST 'control_wam_intel' [04:20, 02:06](659 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:09]
+PASS -- TEST 'control_p8_faster_intel' [05:26, 02:39](1631 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:40, 04:38](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:26]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 02:45](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:24, 02:42](809 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](813 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:48](820 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:06](866 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:07](864 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:48](825 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:29, 02:52](870 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:41, 03:01](1635 MB)
+PASS -- TEST 'regional_debug_intel' [19:45, 17:41](842 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:25, 04:59](1203 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:49](1202 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1146 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1204 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:52](1202 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:11](1288 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:05](1206 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 05:04](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:00](1203 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:53](1203 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:53](1198 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1202 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 07:58](1203 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:54](1198 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:58](1206 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:30, 04:55](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:29](1204 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:22]
+PASS -- TEST 'control_wam_debug_intel' [10:19, 05:10](512 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:07, 10:47]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 04:27](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:26](1043 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:24, 03:27](982 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1092 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 03:01](964 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:47, 03:35](926 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:16, 04:48](1039 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:47, 01:53](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:08, 12:44]
+PASS -- TEST 'conus13km_control_intel' [05:06, 02:04](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:02](1123 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [06:43, 01:18](1107 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:07, 10:50]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:14](994 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 05:11](1023 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:19, 05:07](1074 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:53, 14:14](1253 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:12](921 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:30](1153 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 14:37](1294 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:18]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:02](1116 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:07, 12:35]
+PASS -- TEST 'hafs_regional_atm_intel' [09:21, 06:19](750 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:26, 06:08](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:31, 06:57](832 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:40, 12:47](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:30](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:19, 06:06](504 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:37, 07:32](468 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [08:01, 03:11](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:35, 08:08](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:48, 04:07](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:53, 03:55](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:26](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:25, 01:31](400 MB)
+FAIL TO COMPARE -- TEST 'gnv1_nested_intel' [, ]( MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:03]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 13:18](574 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:10, 13:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:07, 09:44](770 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:04, 09:50](708 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 15:05]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:59, 06:55](731 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:08, 12:00]
+PASS -- TEST 'hafs_regional_docn_intel' [11:10, 06:13](831 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 06:19](763 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:00](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:08, 07:44]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:35](1133 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:40](1090 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:31](1020 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:33](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:38](1013 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:38](1127 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:40](1136 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:33](1017 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](1063 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:53](1097 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:34](2446 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:40](2489 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:26]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:22](1062 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1131 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:02]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 00:52](252 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:48](321 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](322 MB)
+
+PASS -- COMPILE 'atml_intel' [16:07, 11:59]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 04:20](1615 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:32, 04:19](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 02:23](896 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:08, 12:03]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:36, 01:46](1663 MB)
+
+PASS -- COMPILE 'atmwm_intel' [15:07, 11:58]
+PASS -- TEST 'control_atmwav_intel' [05:28, 01:40](675 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:06, 11:40]
+PASS -- TEST 'atmaero_control_p8_intel' [07:30, 04:08](2951 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:50](3100 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:06, 05:04](3107 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:08, 11:25]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:21]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:52, 20:37](4393 MB)
SYNOPSIS:
-Starting Date/Time: 20240314 09:08:52
-Ending Date/Time: 20240314 10:37:33
-Total Time: 01h:29m:30s
+Starting Date/Time: 20240315 12:47:18
+Ending Date/Time: 20240315 14:22:44
+Total Time: 01h:36m:12s
Compiles Completed: 39/39
-Tests Completed: 182/182
+Tests Completed: 181/182
+Failed Tests:
+* TEST gnv1_nested_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2181/tests/logs/log_orion/rt_gnv1_nested_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+0939a1dff2a2060b541eca9642a19c5ed1541f17
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_120510
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nems
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafsw_intel' [16:08, 14:05]
+PASS -- TEST 'gnv1_nested_intel' [06:42, 04:50](809 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240315 14:56:25
+Ending Date/Time: 20240315 15:36:40
+Total Time: 00h:40m:30s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index f55d8421ed..58db38592f 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0d7aa189232097602b4a7b5cdab9caad9aba58ad
+0939a1dff2a2060b541eca9642a19c5ed1541f17
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 221788f4e2539af797eb02efe42465b153533201 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-613-g221788f)
- bbdec2ffceeb0cda70aaaa4f44e619a5468e7be3 FV3/ccpp/physics (remotes/origin/HEAD-432-gbbdec2ff)
+ 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
+ 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (EP4-695-g2f15ae92)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -32,7 +32,7 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 2bafb6fa982fdd7b2cd9fc7801a4bbadcc230fc6 FV3 (remotes/origin/csawv2_gjf)
+ 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
@@ -47,236 +47,236 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240312
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_69973
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_259455
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [26:11, 25:55]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:52, 01:35](2976 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:13, 26:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [52:50, 01:33](1590 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [32:16, 01:50](1707 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [32:01, 02:04](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:51, 02:22](1578 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:02, 21:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [58:02, 01:43](1606 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:02, 21:22]
-PASS -- TEST 'cpld_control_p8_intel' [58:01, 01:39](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:01, 01:34](3000 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [46:26, 01:04](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [58:01, 01:13](3025 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [46:26, 01:40](3082 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [58:01, 01:15](3315 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [58:01, 01:30](3002 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [58:02, 01:28](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:01, 01:38](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [58:10, 03:54](3957 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:27, 04:08](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [58:01, 01:40](2971 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:48, 14:22]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:15, 01:04](1581 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 01:14](1640 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [22:02, 20:51]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:01, 01:27](1636 MB)
-
-PASS -- COMPILE 's2s_intel' [11:41, 11:12]
-PASS -- TEST 'cpld_control_c48_intel' [08:22, 00:57](2643 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [27:14, 26:35]
-PASS -- TEST 'cpld_control_p8_faster_intel' [52:50, 01:17](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [11:43, 10:31]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [08:20, 01:37](1608 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [47:21, 01:32](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:22, 01:24](1584 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:24, 27:15]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [51:41, 01:30](1616 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [31:19, 27:57]
-PASS -- TEST 'control_flake_intel' [37:03, 00:35](572 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [37:03, 00:52](523 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [37:03, 00:47](533 MB)
-PASS -- TEST 'control_latlon_intel' [37:03, 00:48](524 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [37:03, 00:55](522 MB)
-PASS -- TEST 'control_c48_intel' [37:02, 01:10](713 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [37:02, 01:16](719 MB)
-PASS -- TEST 'control_c192_intel' [37:03, 00:53](639 MB)
-PASS -- TEST 'control_c384_intel' [36:58, 01:52](948 MB)
-PASS -- TEST 'control_c384gdas_intel' [36:44, 03:09](1094 MB)
-PASS -- TEST 'control_stochy_intel' [35:43, 00:28](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [33:12, 00:33](331 MB)
-PASS -- TEST 'control_lndp_intel' [34:57, 01:06](526 MB)
-PASS -- TEST 'control_iovr4_intel' [34:57, 01:30](527 MB)
-PASS -- TEST 'control_iovr5_intel' [34:41, 00:22](524 MB)
-PASS -- TEST 'control_p8_intel' [34:37, 01:52](1496 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [34:37, 02:01](1499 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [34:24, 02:29](1507 MB)
-PASS -- TEST 'control_restart_p8_intel' [27:53, 01:26](689 MB)
-PASS -- TEST 'control_noqr_p8_intel' [34:21, 01:36](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [27:53, 01:24](694 MB)
-PASS -- TEST 'control_decomp_p8_intel' [34:21, 01:34](1502 MB)
-PASS -- TEST 'control_2threads_p8_intel' [34:21, 01:59](1595 MB)
-PASS -- TEST 'control_p8_lndp_intel' [34:21, 01:12](1504 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [34:04, 01:41](1565 MB)
-PASS -- TEST 'control_p8_mynn_intel' [33:21, 02:07](1518 MB)
-PASS -- TEST 'merra2_thompson_intel' [33:19, 02:49](1508 MB)
-PASS -- TEST 'regional_control_intel' [33:16, 00:53](609 MB)
-PASS -- TEST 'regional_restart_intel' [26:12, 00:17](778 MB)
-PASS -- TEST 'regional_decomp_intel' [33:11, 00:49](607 MB)
-PASS -- TEST 'regional_2threads_intel' [32:18, 01:26](665 MB)
-PASS -- TEST 'regional_noquilt_intel' [31:18, 01:22](1140 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [31:07, 01:26](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [30:41, 00:21](609 MB)
-PASS -- TEST 'regional_wofs_intel' [30:08, 00:58](1581 MB)
-
-PASS -- COMPILE 'rrfs_intel' [24:03, 20:33]
-PASS -- TEST 'rap_control_intel' [44:16, 01:33](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:17, 01:21](1095 MB)
-PASS -- TEST 'rap_decomp_intel' [44:16, 01:19](919 MB)
-PASS -- TEST 'rap_2threads_intel' [44:16, 01:33](1012 MB)
-PASS -- TEST 'rap_restart_intel' [30:05, 02:12](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [44:16, 01:57](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:16, 01:43](915 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [29:55, 01:51](787 MB)
-PASS -- TEST 'hrrr_control_intel' [44:16, 01:55](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [44:16, 01:47](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [44:17, 01:59](993 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [37:58, 00:51](744 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [44:16, 01:53](910 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [44:16, 00:56](1874 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [44:16, 01:17](1862 MB)
-
-PASS -- COMPILE 'csawmg_intel' [21:58, 19:57]
-PASS -- TEST 'control_csawmg_intel' [43:17, 01:11](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [43:17, 01:18](598 MB)
-PASS -- TEST 'control_ras_intel' [43:17, 01:15](562 MB)
-
-PASS -- COMPILE 'wam_intel' [14:40, 11:04]
-PASS -- TEST 'control_wam_intel' [43:20, 01:17](275 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:38, 10:18]
-PASS -- TEST 'control_p8_faster_intel' [44:23, 01:51](1510 MB)
-PASS -- TEST 'regional_control_faster_intel' [44:22, 00:30](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [26:10, 22:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:53, 01:15](687 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:01, 00:40](691 MB)
-PASS -- TEST 'control_stochy_debug_intel' [28:54, 00:41](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [27:53, 00:38](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [27:52, 00:18](732 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [27:44, 01:18](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [27:16, 01:05](702 MB)
-PASS -- TEST 'control_diag_debug_intel' [27:08, 00:34](748 MB)
-PASS -- TEST 'control_debug_p8_intel' [27:04, 01:03](1521 MB)
-PASS -- TEST 'regional_debug_intel' [27:00, 01:09](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [26:52, 00:50](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [26:28, 01:13](1069 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [26:07, 01:04](1073 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [26:01, 01:01](1073 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:51, 00:46](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [24:38, 01:53](1160 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:15, 00:32](1074 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:10, 00:28](1078 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [24:00, 00:35](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:38, 00:28](1077 MB)
-PASS -- TEST 'rap_noah_debug_intel' [23:12, 01:09](1071 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [22:57, 01:06](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:24, 01:19](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [22:17, 00:36](1068 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [22:17, 00:29](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [22:15, 00:30](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:39, 02:02](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [16:47, 13:14]
-PASS -- TEST 'control_wam_debug_intel' [37:04, 01:12](304 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:13, 23:47]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:40, 01:28](956 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [21:10, 01:20](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [21:05, 01:53](785 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:43, 01:17](853 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:33, 01:20](837 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [20:13, 02:16](789 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:24, 01:14](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:12, 00:22](670 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:44, 11:23]
-PASS -- TEST 'conus13km_control_intel' [38:05, 00:55](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [20:13, 01:13](1011 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [20:04, 01:10](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:38, 10:45]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [38:01, 01:32](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:32, 09:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:45, 00:37](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [19:20, 00:54](950 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:58, 00:46](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:30, 00:32](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:13, 00:54](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:11, 00:58](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:29, 07:26]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [17:03, 01:22](992 MB)
-
-PASS -- COMPILE 'hafsw_intel' [27:11, 25:41]
-PASS -- TEST 'hafs_regional_atm_intel' [15:28, 01:55](618 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:27, 00:54](970 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:15, 01:49](664 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 01:21](703 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:48, 01:30](708 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:16, 01:08](393 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:14, 02:13](413 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [14:14, 00:53](281 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:16, 02:20](370 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:12, 01:34](420 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:07, 01:16](423 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:02, 01:42](491 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:00, 00:30](316 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [15:49, 14:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:55, 01:18](501 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:29, 01:26](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:27, 01:30](710 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:46, 11:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:25, 01:38](709 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [21:08, 20:19]
-PASS -- TEST 'hafs_regional_docn_intel' [12:12, 01:24](663 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:00, 01:57](645 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:35, 01:03](881 MB)
-
-PASS -- COMPILE 'atml_intel' [25:18, 24:45]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:20, 01:33](1551 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:33, 02:16](1550 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [58:48, 00:22](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:56, 16:13]
-PASS -- TEST 'atmaero_control_p8_intel' [09:08, 01:14](2854 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:48, 01:35](2909 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:18, 01:22](2921 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:40, 09:00]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:29, 08:04]
-PASS -- TEST 'regional_atmaq_debug_intel' [07:33, 01:05](4437 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:03, 15:20]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:17, 01:28](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:57, 11:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [56:21, 02:13](1590 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:41, 02:06](1710 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [37:21, 01:22](846 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:22, 01:44](1564 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:22]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [03:58, 01:44](1609 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:53, 11:07]
+PASS -- TEST 'cpld_control_p8_intel' [57:26, 01:50](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:26, 02:21](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [48:24, 01:45](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [57:26, 01:50](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [48:24, 01:42](3081 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [57:26, 01:22](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [57:26, 01:43](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [57:27, 01:46](2925 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:26, 02:07](3003 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [57:35, 03:30](3955 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:00, 04:30](4255 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [57:26, 02:17](2967 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:13, 20:46]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [48:06, 00:48](1588 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:06, 01:58](1637 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [23:17, 22:22]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [46:01, 00:57](1634 MB)
+
+PASS -- COMPILE 's2s_intel' [10:51, 09:41]
+PASS -- TEST 'cpld_control_c48_intel' [58:28, 00:43](2652 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [32:40, 31:36]
+PASS -- TEST 'cpld_control_p8_faster_intel' [36:22, 01:57](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:03, 15:27]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:17, 01:26](1607 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:39, 01:33](900 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:04, 00:46](1580 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:21, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [03:59, 01:37](1612 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [22:07, 21:33]
+PASS -- TEST 'control_flake_intel' [41:50, 00:24](574 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [41:50, 00:48](523 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:50, 00:44](529 MB)
+PASS -- TEST 'control_latlon_intel' [41:50, 00:46](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:50, 00:51](523 MB)
+PASS -- TEST 'control_c48_intel' [41:49, 00:57](713 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [41:49, 00:58](714 MB)
+PASS -- TEST 'control_c192_intel' [41:50, 00:27](636 MB)
+PASS -- TEST 'control_c384_intel' [41:54, 01:59](957 MB)
+PASS -- TEST 'control_c384gdas_intel' [41:54, 02:34](1087 MB)
+PASS -- TEST 'control_stochy_intel' [41:50, 00:27](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [39:25, 00:58](333 MB)
+PASS -- TEST 'control_lndp_intel' [41:50, 00:31](528 MB)
+PASS -- TEST 'control_iovr4_intel' [41:50, 00:45](522 MB)
+PASS -- TEST 'control_iovr5_intel' [41:50, 00:44](523 MB)
+PASS -- TEST 'control_p8_intel' [41:50, 01:57](1500 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [41:50, 02:01](1502 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [41:50, 02:04](1507 MB)
+PASS -- TEST 'control_restart_p8_intel' [36:18, 01:22](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [41:31, 01:38](1504 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [36:16, 01:22](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [41:22, 01:32](1495 MB)
+PASS -- TEST 'control_2threads_p8_intel' [41:22, 01:13](1589 MB)
+PASS -- TEST 'control_p8_lndp_intel' [40:14, 01:19](1511 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:01](1568 MB)
+PASS -- TEST 'control_p8_mynn_intel' [39:26, 01:50](1517 MB)
+PASS -- TEST 'merra2_thompson_intel' [38:23, 01:42](1512 MB)
+PASS -- TEST 'regional_control_intel' [38:19, 00:25](608 MB)
+PASS -- TEST 'regional_restart_intel' [32:26, 00:25](777 MB)
+PASS -- TEST 'regional_decomp_intel' [38:19, 00:10](608 MB)
+PASS -- TEST 'regional_2threads_intel' [38:19, 01:15](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [38:15, 00:33](1154 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [38:11, 00:33](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [38:08, 00:22](610 MB)
+PASS -- TEST 'regional_wofs_intel' [37:56, 01:05](1579 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:32, 32:40]
+PASS -- TEST 'rap_control_intel' [30:25, 01:20](919 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:26, 01:12](1095 MB)
+PASS -- TEST 'rap_decomp_intel' [30:25, 01:40](917 MB)
+PASS -- TEST 'rap_2threads_intel' [30:25, 01:58](1006 MB)
+PASS -- TEST 'rap_restart_intel' [21:45, 01:22](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [30:25, 01:21](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:25, 01:40](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [21:46, 01:50](787 MB)
+PASS -- TEST 'hrrr_control_intel' [30:25, 01:10](909 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [30:25, 01:07](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [30:26, 01:34](998 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [25:13, 01:05](739 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [30:25, 01:19](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [30:25, 01:09](1881 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:01, 00:29](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [18:52, 18:25]
+PASS -- TEST 'control_csawmg_intel' [37:43, 00:45](600 MB)
+PASS -- TEST 'control_csawmgt_intel' [36:59, 00:49](600 MB)
+PASS -- TEST 'control_ras_intel' [36:56, 01:00](560 MB)
+
+PASS -- COMPILE 'wam_intel' [16:47, 16:12]
+PASS -- TEST 'control_wam_intel' [36:16, 00:54](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:38, 12:14]
+PASS -- TEST 'control_p8_faster_intel' [43:44, 02:09](1505 MB)
+PASS -- TEST 'regional_control_faster_intel' [43:43, 00:29](611 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [25:07, 23:53]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:09, 01:21](689 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [28:09, 00:29](689 MB)
+PASS -- TEST 'control_stochy_debug_intel' [28:09, 01:01](693 MB)
+PASS -- TEST 'control_lndp_debug_intel' [28:09, 01:17](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [28:09, 00:42](730 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [28:09, 00:44](732 MB)
+PASS -- TEST 'control_ras_debug_intel' [27:26, 01:11](702 MB)
+PASS -- TEST 'control_diag_debug_intel' [27:15, 01:14](746 MB)
+PASS -- TEST 'control_debug_p8_intel' [27:08, 01:11](1521 MB)
+PASS -- TEST 'regional_debug_intel' [25:12, 00:09](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [25:13, 01:00](1077 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [25:09, 01:08](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [24:19, 01:03](1073 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [24:11, 01:01](1072 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:55, 01:00](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [23:29, 00:56](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:28, 00:53](1073 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:26, 00:53](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [22:55, 00:56](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:40, 01:00](1077 MB)
+PASS -- TEST 'rap_noah_debug_intel' [22:20, 01:08](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [22:10, 01:00](1077 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:10, 01:01](1075 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [21:58, 01:03](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [21:49, 01:13](1077 MB)
+PASS -- TEST 'rap_flake_debug_intel' [21:45, 00:59](1074 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:43, 01:20](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [18:53, 18:36]
+PASS -- TEST 'control_wam_debug_intel' [33:59, 00:58](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 22:19]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:11, 01:23](950 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:10, 01:33](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:10, 01:38](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 02:02](855 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:11, 01:32](842 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 01:30](786 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:25, 01:14](687 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:57, 00:21](666 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:52, 17:42]
+PASS -- TEST 'conus13km_control_intel' [21:14, 01:07](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [17:20, 00:58](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [17:19, 00:49](882 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:47, 14:44]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:09, 01:32](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 04:31]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [36:16, 01:10](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [36:15, 00:16](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [35:41, 00:52](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [35:03, 00:31](708 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [34:00, 00:40](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:27, 00:44](1105 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [23:11, 22:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [17:26, 01:06](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [23:06, 22:31]
+PASS -- TEST 'hafs_regional_atm_intel' [16:33, 02:15](621 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 00:35](967 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:31, 01:45](665 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:31, 01:48](697 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 01:47](709 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:22, 01:06](389 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:19, 02:13](412 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [16:08, 01:25](279 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:50, 02:27](369 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:45, 01:27](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:35, 00:52](425 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:26, 00:56](487 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:20, 01:12](310 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:21, 04:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:21, 00:50](499 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [22:07, 21:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:23, 00:55](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:23, 00:47](711 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:48, 15:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:38, 01:04](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:41, 12:01]
+PASS -- TEST 'hafs_regional_docn_intel' [18:37, 01:19](661 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:37, 01:14](644 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 00:44](881 MB)
+
+PASS -- COMPILE 'atml_intel' [13:43, 13:05]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:42, 01:12](1551 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [16:42, 02:15](1547 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 00:21](748 MB)
+
+PASS -- COMPILE 'atmaero_intel' [18:55, 18:30]
+PASS -- TEST 'atmaero_control_p8_intel' [09:14, 01:42](2848 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:14, 01:04](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 01:46](2926 MB)
+
+PASS -- COMPILE 'atmaq_intel' [19:00, 17:59]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:26, 07:00]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:43, 01:40](4438 MB)
SYNOPSIS:
-Starting Date/Time: 20240313 17:39:39
-Ending Date/Time: 20240313 19:20:18
-Total Time: 01h:41m:22s
+Starting Date/Time: 20240315 18:50:23
+Ending Date/Time: 20240315 20:07:29
+Total Time: 01h:17m:44s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/test_changes.list b/tests/test_changes.list
index b961de3298..d8008eff46 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,8 +1,14 @@
-control_csawmg intel
-control_csawmgt intel
-control_csawmg gnu
-control_csawmgt gnu
-control_csawmg_debug intel
-control_csawmgt_debug intel
-control_csawmg_debug gnu
-control_csawmgt_debug gnu
+conus13km_control intel
+conus13km_2threads intel
+conus13km_restart_mismatch intel
+conus13km_debug intel
+conus13km_debug_qr intel
+conus13km_debug_2threads intel
+conus13km_radar_tten_debug intel
+conus13km_control gnu
+conus13km_2threads gnu
+conus13km_restart_mismatch gnu
+conus13km_debug gnu
+conus13km_debug_qr gnu
+conus13km_debug_2threads gnu
+conus13km_radar_tten_debug gnu
From 3c8338c1436912e4547c3a2db7ced9dd7b70e782 Mon Sep 17 00:00:00 2001
From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com>
Date: Tue, 19 Mar 2024 20:55:14 -0400
Subject: [PATCH 12/33] Fix type mismatch compiler error when gfortran 10 is
used without '-fallow-argument-mismatch' flag (#1147)
* UFSWM - Fix type mismatch compiler error when gfortran 10 is used without '-fallow-argument-mismatch' flag.
* FV3 - Fix type mismatch compiler error when gfortran 10 is used without '-fallow-argument-mismatch' flag.
* ccpp-physics - Resolve various subroutine argument mismatches.
* ccpp-framework - Add support to use mpi_f08 MPI module .
* stochastic_physics - Fix type mismatch compiler error when gfortran 10 is used without '-fallow-argument-mismatch' flag.
---
FV3 | 2 +-
cmake/GNU.cmake | 4 -
driver/UFS.F90 | 10 +-
stochastic_physics | 2 +-
tests/ci/repo_check.sh | 20 +-
tests/logs/RT-run-Orion.log | 2467 -----------------------
tests/logs/RegressionTests_derecho.log | 526 ++---
tests/logs/RegressionTests_gaea.log | 540 ++---
tests/logs/RegressionTests_hera.log | 727 ++++---
tests/logs/RegressionTests_hercules.log | 716 +++----
tests/logs/RegressionTests_jet.log | 474 ++---
tests/logs/RegressionTests_orion.log | 620 +++---
tests/logs/RegressionTests_wcoss2.log | 458 ++---
tests/test_changes.list | 14 -
14 files changed, 2012 insertions(+), 4568 deletions(-)
delete mode 100644 tests/logs/RT-run-Orion.log
diff --git a/FV3 b/FV3
index fae9bc2562..6942270941 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit fae9bc25629b8518f416fcc333b57c128cf5c6b9
+Subproject commit 694227094198b8c1fe101af22dc506e9aeff9ebe
diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake
index 5f59acfcc9..b09e047cf4 100644
--- a/cmake/GNU.cmake
+++ b/cmake/GNU.cmake
@@ -5,10 +5,6 @@ endif()
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check")
-if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10)
- set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz")
-endif()
-
if(NOT 32BIT)
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8")
endif()
diff --git a/driver/UFS.F90 b/driver/UFS.F90
index acb1bcb742..26501a124b 100644
--- a/driver/UFS.F90
+++ b/driver/UFS.F90
@@ -79,6 +79,9 @@ PROGRAM UFS
TYPE(ESMF_Config) :: CF_MAIN !<-- The Configure object
!
CHARACTER(ESMF_MAXSTR) :: MESSAGE_CHECK
+!
+ CHARACTER(len=MPI_MAX_LIBRARY_VERSION_STRING) :: library_version
+ INTEGER :: resultlen
!
INTEGER :: RC, RC_USER !<-- The running error signal
!
@@ -122,7 +125,12 @@ PROGRAM UFS
!*** Print subversion version and other status information.
!-----------------------------------------------------------------------
!
- if (mype==0) call w3tagb('ufs ',0000,0000,0000,'np23 ')
+ if (mype == 0) then
+ call w3tagb('ufs-weather-model',0,0,0,'np23')
+ call MPI_Get_library_version(library_version, resultlen, rc)
+ write(*,'(A,A)') 'MPI Library = ', library_version(1:resultlen)
+ write(*,'(A,I0,A,I0)')'MPI Version = ', mpi_version,'.',mpi_subversion
+ endif
!
!-----------------------------------------------------------------------
!*** Set up the default log.
diff --git a/stochastic_physics b/stochastic_physics
index a556180202..7dc4d9ba48 160000
--- a/stochastic_physics
+++ b/stochastic_physics
@@ -1 +1 @@
-Subproject commit a5561802021d89a9a1e2b52cb69393efcdc6f71c
+Subproject commit 7dc4d9ba48dea57f88f4f10091c8c2042105954e
diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh
index fe42ac0403..04a44585ed 100755
--- a/tests/ci/repo_check.sh
+++ b/tests/ci/repo_check.sh
@@ -13,8 +13,8 @@ result() {
}
# Declare variables
-declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere
-submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics upp atmos_cubed_sphere"
+declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere
+submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere"
comment=''
ownerID=$1
@@ -44,7 +44,7 @@ stoch[branch]='master'
stoch[dir]='stochastic_physics'
gocart[repo]='https://github.com/GEOS-ESM/GOCART'
-gocart[branch]='main'
+gocart[branch]='develop'
gocart[dir]='GOCART'
cmeps[repo]='https://github.com/NOAA-EMC/CMEPS'
@@ -65,19 +65,19 @@ cmake[dir]='CMakeModules'
ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework'
ccpp-framework[branch]='main'
-ccpp-framework[dir]='ccpp/framework'
+ccpp-framework[dir]='FV3/ccpp/framework'
ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics'
ccpp-physics[branch]='ufs/dev'
-ccpp-physics[dir]='ccpp/physics'
+ccpp-physics[dir]='FV3/ccpp/physics'
-upp[repo]='https://github.com/NOAA-EMC/UPP'
-upp[branch]='develop'
-upp[dir]='upp'
+#upp[repo]='https://github.com/NOAA-EMC/UPP'
+#upp[branch]='develop'
+#upp[dir]='upp'
atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
-atmos_cubed_sphere[branch]='main'
-atmos_cubed_sphere[dir]='atmos_cubed_sphere'
+atmos_cubed_sphere[branch]='dev/emc'
+atmos_cubed_sphere[dir]='FV3/atmos_cubed_sphere'
# Get sha-1's of the top of develop of ufs-weather-model
app="Accept: application/vnd.github.v3+json"
diff --git a/tests/logs/RT-run-Orion.log b/tests/logs/RT-run-Orion.log
deleted file mode 100644
index d6bd7eb96b..0000000000
--- a/tests/logs/RT-run-Orion.log
+++ /dev/null
@@ -1,2467 +0,0 @@
-Orion-login-1.HPC.MsState.Edu
-Machine: orion Account: epic
-Linking /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2172/tests/run_dir
-Run regression test in: /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_170319
-No update needed to TESTS_FILE
-COMPILING s2swa_32bit_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-COMPILING s2swa_32bit_pdlib_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 239
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 239
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 239
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 197
-OCN_petlist_bounds: 198 231
-ICE_petlist_bounds: 232 251
-WAV_petlist_bounds: 252 301
-CHM_petlist_bounds: 0 191
-MED_petlist_bounds: 0 191
-AQM_petlist_bounds: 0 191
-LND_petlist_bounds:
-UFS_tasks : 302
-COMPILING s2swa_32bit_pdlib_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 257
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 258
-COMPILING s2swa_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 167
-OCN_petlist_bounds: 168 187
-ICE_petlist_bounds: 188 197
-WAV_petlist_bounds: 198 221
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 222
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 197
-OCN_petlist_bounds: 198 231
-ICE_petlist_bounds: 232 251
-WAV_petlist_bounds: 252 279
-CHM_petlist_bounds: 0 191
-MED_petlist_bounds: 0 191
-AQM_petlist_bounds: 0 191
-LND_petlist_bounds:
-UFS_tasks : 280
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 623
-OCN_petlist_bounds: 624 683
-ICE_petlist_bounds: 684 707
-WAV_petlist_bounds: 708 787
-CHM_petlist_bounds: 0 575
-MED_petlist_bounds: 0 575
-AQM_petlist_bounds: 0 575
-LND_petlist_bounds:
-UFS_tasks : 788
-ATM_petlist_bounds: 0 599
-OCN_petlist_bounds: 600 659
-ICE_petlist_bounds: 660 683
-WAV_petlist_bounds: 684 763
-CHM_petlist_bounds: 0 575
-MED_petlist_bounds: 0 575
-AQM_petlist_bounds: 0 575
-LND_petlist_bounds:
-UFS_tasks : 764
-ATM_petlist_bounds: 0 959
-OCN_petlist_bounds: 960 1079
-ICE_petlist_bounds: 1080 1127
-WAV_petlist_bounds: 1128 1287
-CHM_petlist_bounds: 0 767
-MED_petlist_bounds: 0 767
-AQM_petlist_bounds: 0 767
-LND_petlist_bounds:
-UFS_tasks : 1288
-ATM_petlist_bounds: 0 959
-OCN_petlist_bounds: 960 1079
-ICE_petlist_bounds: 1080 1127
-WAV_petlist_bounds: 1128 1287
-CHM_petlist_bounds: 0 767
-MED_petlist_bounds: 0 767
-AQM_petlist_bounds: 0 767
-LND_petlist_bounds:
-UFS_tasks : 1288
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 180
-COMPILING s2sw_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 180
-COMPILING s2swa_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-COMPILING s2sw_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-COMPILING s2s_aoflux_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-COMPILING s2s_intel
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 15
-ICE_petlist_bounds: 16 19
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 5
-MED_petlist_bounds: 0 5
-AQM_petlist_bounds: 0 5
-LND_petlist_bounds:
-UFS_tasks : 20
-COMPILING s2swa_faster_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 199
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 200
-COMPILING s2sw_pdlib_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 239
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 239
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 197
-OCN_petlist_bounds: 198 231
-ICE_petlist_bounds: 232 251
-WAV_petlist_bounds: 252 301
-CHM_petlist_bounds: 0 191
-MED_petlist_bounds: 0 191
-AQM_petlist_bounds: 0 191
-LND_petlist_bounds:
-UFS_tasks : 302
-COMPILING s2sw_pdlib_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds: 150 169
-ICE_petlist_bounds: 170 179
-WAV_petlist_bounds: 180 257
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 258
-COMPILING atm_dyn32_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 7
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 5
-MED_petlist_bounds: 0 5
-AQM_petlist_bounds: 0 5
-LND_petlist_bounds:
-UFS_tasks : 8
-ATM_petlist_bounds: 0 7
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 5
-MED_petlist_bounds: 0 5
-AQM_petlist_bounds: 0 5
-LND_petlist_bounds:
-UFS_tasks : 8
-ATM_petlist_bounds: 0 203
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 191
-MED_petlist_bounds: 0 191
-AQM_petlist_bounds: 0 191
-LND_petlist_bounds:
-UFS_tasks : 204
-ATM_petlist_bounds: 0 671
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 575
-MED_petlist_bounds: 0 575
-AQM_petlist_bounds: 0 575
-LND_petlist_bounds:
-UFS_tasks : 672
-ATM_petlist_bounds: 0 671
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 575
-MED_petlist_bounds: 0 575
-AQM_petlist_bounds: 0 575
-LND_petlist_bounds:
-UFS_tasks : 672
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 155
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 156
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 239
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 219
-MED_petlist_bounds: 0 219
-AQM_petlist_bounds: 0 219
-LND_petlist_bounds:
-UFS_tasks : 240
-ATM_petlist_bounds: 0 109
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 110
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-COMPILING ifi_intel
-COMPILING rrfs_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 383
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 384
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 155
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 156
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 155
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 156
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING csawmg_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING wam_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING atm_faster_dyn32_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-COMPILING atm_debug_dyn32_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 119
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 109
-MED_petlist_bounds: 0 109
-AQM_petlist_bounds: 0 109
-LND_petlist_bounds:
-UFS_tasks : 120
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING wam_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING rrfs_dyn32_phy32_intel
-ATM_petlist_bounds: 0 383
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 384
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 155
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 156
-ATM_petlist_bounds: 0 155
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 156
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING rrfs_dyn32_phy32_faster_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 287
-MED_petlist_bounds: 0 287
-AQM_petlist_bounds: 0 287
-LND_petlist_bounds:
-UFS_tasks : 300
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING rrfs_dyn64_phy32_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING rrfs_dyn32_phy32_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 287
-MED_petlist_bounds: 0 287
-AQM_petlist_bounds: 0 287
-LND_petlist_bounds:
-UFS_tasks : 300
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING rrfs_dyn64_phy32_debug_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING hafsw_intel
-ATM_petlist_bounds: 0 599
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 479
-MED_petlist_bounds: 0 479
-AQM_petlist_bounds: 0 479
-LND_petlist_bounds:
-UFS_tasks : 600
-ATM_petlist_bounds: 0 599
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 479
-MED_petlist_bounds: 0 479
-AQM_petlist_bounds: 0 479
-LND_petlist_bounds:
-UFS_tasks : 600
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds: 300 359
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds: 300 359
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds: 300 359
-ICE_petlist_bounds:
-WAV_petlist_bounds: 360 419
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 420
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 480
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 480
-ATM_petlist_bounds: 0 839
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 719
-MED_petlist_bounds: 0 719
-AQM_petlist_bounds: 0 719
-LND_petlist_bounds:
-UFS_tasks : 840
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds: 480 599
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 600
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 480
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 359
-MED_petlist_bounds: 0 359
-AQM_petlist_bounds: 0 359
-LND_petlist_bounds:
-UFS_tasks : 480
-COMPILING hafsw_debug_intel
-ATM_petlist_bounds: 0 479
-OCN_petlist_bounds: 480 599
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 600
-COMPILING hafsw_faster_intel
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds: 360 479
-ICE_petlist_bounds:
-WAV_petlist_bounds: 480 599
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 600
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds: 360 479
-ICE_petlist_bounds:
-WAV_petlist_bounds: 480 599
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 600
-COMPILING hafs_mom6w_intel
-ATM_petlist_bounds: 0 359
-OCN_petlist_bounds: 360 479
-ICE_petlist_bounds:
-WAV_petlist_bounds: 480 599
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 600
-COMPILING hafs_all_intel
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds: 300 359
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 299
-OCN_petlist_bounds: 300 359
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 239
-MED_petlist_bounds: 0 239
-AQM_petlist_bounds: 0 239
-LND_petlist_bounds:
-UFS_tasks : 360
-ATM_petlist_bounds: 0 59
-OCN_petlist_bounds: 60 119
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 59
-MED_petlist_bounds: 0 59
-AQM_petlist_bounds: 0 59
-LND_petlist_bounds:
-UFS_tasks : 120
-COMPILING datm_cdeps_intel
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 39
-OCN_petlist_bounds: 40 159
-ICE_petlist_bounds: 160 207
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 39
-MED_petlist_bounds: 0 39
-AQM_petlist_bounds: 0 39
-LND_petlist_bounds:
-UFS_tasks : 208
-ATM_petlist_bounds: 0 39
-OCN_petlist_bounds: 40 159
-ICE_petlist_bounds: 160 207
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 39
-MED_petlist_bounds: 0 39
-AQM_petlist_bounds: 0 39
-LND_petlist_bounds:
-UFS_tasks : 208
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-COMPILING datm_cdeps_debug_intel
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-COMPILING datm_cdeps_faster_intel
-ATM_petlist_bounds: 0 11
-OCN_petlist_bounds: 12 27
-ICE_petlist_bounds: 28 39
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 11
-MED_petlist_bounds: 0 11
-AQM_petlist_bounds: 0 11
-LND_petlist_bounds:
-UFS_tasks : 40
-COMPILING datm_cdeps_land_intel
-ATM_petlist_bounds: 0 143
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 144 287
-UFS_tasks : 288
-ATM_petlist_bounds: 0 143
-OCN_petlist_bounds: 144 159
-ICE_petlist_bounds: 160 171
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 172 315
-UFS_tasks : 316
-ATM_petlist_bounds: 0 143
-OCN_petlist_bounds: 144 159
-ICE_petlist_bounds: 160 171
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 172 315
-UFS_tasks : 316
-COMPILING atml_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 150 293
-UFS_tasks : 294
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 150 293
-UFS_tasks : 294
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds: 150 293
-UFS_tasks : 294
-COMPILING atmw_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds: 150 179
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 180
-COMPILING atmwm_intel
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds: 150 179
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 180
-COMPILING atmaero_intel
-ATM_petlist_bounds: 0 197
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 191
-MED_petlist_bounds: 0 191
-AQM_petlist_bounds: 0 191
-LND_petlist_bounds:
-UFS_tasks : 198
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-ATM_petlist_bounds: 0 149
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 143
-MED_petlist_bounds: 0 143
-AQM_petlist_bounds: 0 143
-LND_petlist_bounds:
-UFS_tasks : 150
-COMPILING atmaq_intel
-COMPILING atmaq_debug_intel
-ATM_petlist_bounds: 0 271
-OCN_petlist_bounds:
-ICE_petlist_bounds:
-WAV_petlist_bounds:
-CHM_petlist_bounds: 0 263
-MED_petlist_bounds: 0 263
-AQM_petlist_bounds: 0 263
-LND_petlist_bounds:
-UFS_tasks : 272
-COMPILING atm_gnu
-COMPILING rrfs_gnu
-COMPILING atm_dyn32_debug_gnu
-COMPILING wam_debug_gnu
-COMPILING rrfs_dyn32_phy32_gnu
-COMPILING atm_dyn64_phy32_gnu
-COMPILING atm_dyn32_phy32_debug_gnu
-COMPILING atm_dyn64_phy32_debug_gnu
-COMPILING s2swa_gnu
-COMPILING s2s_gnu
-COMPILING s2swa_debug_gnu
-COMPILING s2sw_pdlib_gnu
-COMPILING s2sw_pdlib_debug_gnu
-COMPILING datm_cdeps_gnu
-ping server(Orion-login-1.HPC.MsState.Edu:11198) succeeded in 00:00:00.430490 ~430 milliseconds
-ecflow_server is already running on Orion-login-1.HPC.MsState.Edu:11198
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 221
-ecflow tasks remaining: 219
-ecflow tasks remaining: 219
-ecflow tasks remaining: 219
-ecflow tasks remaining: 219
-ecflow tasks remaining: 219
-ecflow tasks remaining: 219
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 218
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 216
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 213
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 212
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 211
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 210
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 208
-ecflow tasks remaining: 207
-ecflow tasks remaining: 207
-ecflow tasks remaining: 207
-ecflow tasks remaining: 207
-ecflow tasks remaining: 207
-ecflow tasks remaining: 206
-ecflow tasks remaining: 206
-ecflow tasks remaining: 206
-ecflow tasks remaining: 206
-ecflow tasks remaining: 206
-ecflow tasks remaining: 206
-ecflow tasks remaining: 205
-ecflow tasks remaining: 205
-ecflow tasks remaining: 205
-ecflow tasks remaining: 205
-ecflow tasks remaining: 205
-ecflow tasks remaining: 205
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 204
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 203
-ecflow tasks remaining: 202
-ecflow tasks remaining: 202
-ecflow tasks remaining: 202
-ecflow tasks remaining: 202
-ecflow tasks remaining: 202
-ecflow tasks remaining: 202
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 201
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 200
-ecflow tasks remaining: 199
-ecflow tasks remaining: 199
-ecflow tasks remaining: 199
-ecflow tasks remaining: 199
-ecflow tasks remaining: 199
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 198
-ecflow tasks remaining: 196
-ecflow tasks remaining: 196
-ecflow tasks remaining: 196
-ecflow tasks remaining: 196
-ecflow tasks remaining: 196
-ecflow tasks remaining: 196
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 195
-ecflow tasks remaining: 194
-ecflow tasks remaining: 194
-ecflow tasks remaining: 194
-ecflow tasks remaining: 194
-ecflow tasks remaining: 194
-ecflow tasks remaining: 194
-ecflow tasks remaining: 191
-ecflow tasks remaining: 191
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 190
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 189
-ecflow tasks remaining: 188
-ecflow tasks remaining: 188
-ecflow tasks remaining: 188
-ecflow tasks remaining: 188
-ecflow tasks remaining: 188
-ecflow tasks remaining: 188
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 187
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 186
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 185
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-ecflow tasks remaining: 182
-rt.sh finished
-SUITES=suite regtest_264799
-suite regtest_170319
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index fa56c4353e..c133ec4b92 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7076763c9cb076a4c05505b604424e438d686936
+879e6870478881f0145029af307915a5d57b674d
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_84275
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_116949
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:30, 19:43]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 04:59](3074 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 21:05]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:50](1686 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:29, 15:26](1823 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:23, 07:36](972 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:12, 15:53](1654 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:28]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 21:40](1693 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:30, 19:28]
-PASS -- TEST 'cpld_control_p8_intel' [09:47, 05:41](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 05:42](3088 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:34, 03:20](3148 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 05:39](3128 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:34, 03:25](3177 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 05:34](3092 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:35, 04:41](3396 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 05:43](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:50, 08:54](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [17:44, 06:13](3618 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [34:56, 09:56](4341 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:54, 07:53](4642 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:09, 05:20](3063 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:30, 18:49]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:06, 04:20](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:15, 04:19](1726 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:27]
-PASS -- TEST 'cpld_debug_p8_intel' [12:14, 07:49](3147 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:25, 08:43]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:17](1702 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:29, 14:31]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:36, 04:21](1720 MB)
-
-PASS -- COMPILE 's2s_intel' [15:29, 14:26]
-PASS -- TEST 'cpld_control_c48_intel' [08:24, 06:38](2669 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:57]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3098 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:24, 19:33]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:41, 14:07](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:48, 07:38](1011 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:17, 16:04](1664 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:20, 08:57]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:45, 22:39](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:16, 12:33]
-PASS -- TEST 'control_flake_intel' [04:48, 03:29](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:51, 02:04](618 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:59, 02:13](622 MB)
-PASS -- TEST 'control_latlon_intel' [03:48, 02:07](617 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:09](623 MB)
-PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:57, 05:22](737 MB)
-PASS -- TEST 'control_c192_intel' [10:08, 07:53](740 MB)
-PASS -- TEST 'control_c384_intel' [16:33, 08:24](1060 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:07, 07:33](1200 MB)
-PASS -- TEST 'control_stochy_intel' [02:47, 01:28](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:53](438 MB)
-PASS -- TEST 'control_lndp_intel' [02:47, 01:23](623 MB)
-PASS -- TEST 'control_iovr4_intel' [03:42, 02:08](622 MB)
-PASS -- TEST 'control_iovr5_intel' [03:48, 02:09](622 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:31](1599 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:33](1596 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:31](1596 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:43, 01:29](798 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:33](1592 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:53, 01:25](803 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:37](1586 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:24](1592 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:20](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:54, 02:35](1601 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:09, 03:04](1610 MB)
-PASS -- TEST 'regional_control_intel' [06:22, 04:31](632 MB)
-PASS -- TEST 'regional_restart_intel' [04:24, 02:36](800 MB)
-PASS -- TEST 'regional_decomp_intel' [06:23, 04:48](628 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:16, 04:27](1159 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:32](625 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:19, 04:35](628 MB)
-PASS -- TEST 'regional_wofs_intel' [08:23, 05:42](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:22, 11:08]
-PASS -- TEST 'rap_control_intel' [08:47, 06:09](1003 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:22, 03:47](1196 MB)
-PASS -- TEST 'rap_decomp_intel' [08:54, 06:25](1003 MB)
-PASS -- TEST 'rap_restart_intel' [05:32, 03:15](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:50, 06:06](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:26](1002 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:34, 04:36](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:36, 03:15](1001 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:20](996 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:25, 02:48](1092 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:08, 01:49](1405 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:21, 05:59](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:25](1956 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:01, 07:10](1946 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:21, 10:16]
-PASS -- TEST 'control_csawmg_intel' [08:16, 05:53](691 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:19, 05:48](690 MB)
-PASS -- TEST 'control_ras_intel' [04:53, 02:55](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:19, 09:35]
-PASS -- TEST 'control_wam_intel' [03:38, 01:56](380 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:23, 12:43]
-PASS -- TEST 'control_p8_faster_intel' [05:00, 02:29](1590 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:37]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:57, 02:39](792 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:34](795 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:43, 02:51](798 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:39](800 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:59](836 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:01](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:42, 02:39](808 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:53, 02:44](853 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:23, 02:43](1629 MB)
-PASS -- TEST 'regional_debug_intel' [17:30, 15:50](672 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:48, 04:48](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:54, 04:31](1176 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:41](1179 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:55, 04:46](1180 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:38](1178 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:53](1263 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:50, 04:46](1179 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:50, 04:46](1183 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:48, 04:51](1179 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:51, 04:49](1182 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:51, 04:35](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 04:43](1180 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:53, 07:31](1176 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:42](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:49, 05:27](1180 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:43, 04:39](1176 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 07:53](1185 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:19, 05:17]
-PASS -- TEST 'control_wam_debug_intel' [05:46, 04:40](420 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 09:42]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:39, 03:37](1057 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:24, 05:09](887 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:27, 02:47](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 02:57](1405 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:19, 03:54](972 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:58, 01:36](775 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 11:50]
-PASS -- TEST 'conus13km_control_intel' [06:39, 01:59](1081 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:24, 01:05](1079 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:24, 01:11](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 10:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:21, 03:42](908 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:44]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1057 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:27](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:07, 13:29](1132 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:49](819 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 13:22](1200 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:30]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:37](1084 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:23, 15:52]
-PASS -- TEST 'hafs_regional_atm_intel' [07:02, 04:42](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:21](1071 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 06:38](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:23, 11:05](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:53, 12:19](811 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:50, 04:41](1405 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:11, 05:49](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:25](384 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 06:30](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:24, 03:22](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:07](506 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:58, 03:53](579 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:21](424 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:00, 03:34](780 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:20, 07:04]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:40](614 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:24, 19:37]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:16](630 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:25](685 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:23, 16:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:21, 05:26](673 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:16, 14:16]
-PASS -- TEST 'hafs_regional_docn_intel' [08:10, 05:43](750 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:13, 05:44](735 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:13](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:46, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:36](748 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:24](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:27](641 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 02:29](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 02:33](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:33](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:24](638 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 05:54](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:21, 05:52](669 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:31](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 04:01](1957 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:03, 03:59](2016 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:02]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:10](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:31](972 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:12, 02:19]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:03, 01:17](308 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:10](450 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:51, 00:45](449 MB)
-
-PASS -- COMPILE 'atml_intel' [14:21, 12:59]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:03, 06:40](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:57, 06:45](1630 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:10, 03:42](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:27, 12:32]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:37](1637 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:26, 12:32]
-PASS -- TEST 'control_atmwav_intel' [03:17, 01:32](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:26, 11:13]
-PASS -- TEST 'atmaero_control_p8_intel' [06:19, 03:43](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:13, 04:19](2999 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 04:35](3009 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:20, 10:57]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:27]
-PASS -- TEST 'regional_atmaq_debug_intel' [27:36, 22:37](4530 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:27, 19:47]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:48, 04:57](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:32, 21:05]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:31, 13:49](1683 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:43, 15:04](1820 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 07:10](954 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 15:53](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:22, 09:30]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 21:47](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:28, 19:24]
+PASS -- TEST 'cpld_control_p8_intel' [12:04, 05:37](3092 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 05:33](3088 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:16](3146 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:04, 05:34](3126 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:28, 03:18](3177 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:04, 05:29](3088 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:10, 04:34](3383 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:24, 05:36](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [19:22, 08:47](3635 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:13, 06:01](3609 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [43:16, 09:43](4342 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:37, 06:57](4649 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:47, 05:14](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:27, 18:46]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:12](1680 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:00, 04:18](1725 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:23, 09:33]
+PASS -- TEST 'cpld_debug_p8_intel' [11:31, 07:52](3152 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:23, 08:49]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:15](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:28, 14:30]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:04, 04:14](1725 MB)
+
+PASS -- COMPILE 's2s_intel' [15:28, 14:19]
+PASS -- TEST 'cpld_control_c48_intel' [09:16, 06:35](2669 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:33, 05:26](3097 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:34, 19:29]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:44, 14:01](1698 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 07:17](1015 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:08, 15:56](1672 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:25, 08:55]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:29, 22:39](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:29]
+PASS -- TEST 'control_flake_intel' [05:38, 03:25](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:04](617 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 02:08](623 MB)
+PASS -- TEST 'control_latlon_intel' [04:38, 02:04](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:42, 02:10](623 MB)
+PASS -- TEST 'control_c48_intel' [07:15, 05:15](735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 05:14](733 MB)
+PASS -- TEST 'control_c192_intel' [11:08, 07:51](737 MB)
+PASS -- TEST 'control_c384_intel' [16:00, 08:07](1059 MB)
+PASS -- TEST 'control_c384gdas_intel' [24:00, 07:11](1206 MB)
+PASS -- TEST 'control_stochy_intel' [03:39, 01:29](624 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:03, 00:54](440 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:20](624 MB)
+PASS -- TEST 'control_iovr4_intel' [04:16, 02:06](621 MB)
+PASS -- TEST 'control_iovr5_intel' [04:18, 02:03](621 MB)
+PASS -- TEST 'control_p8_intel' [06:11, 02:27](1591 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 02:27](1595 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:12, 02:26](1604 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:57, 01:25](798 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:08, 02:27](1593 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 01:23](802 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:59, 02:32](1584 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:15, 04:20](1591 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 03:17](1650 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:36, 02:29](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:20, 03:00](1603 MB)
+PASS -- TEST 'regional_control_intel' [06:54, 04:30](629 MB)
+PASS -- TEST 'regional_restart_intel' [05:29, 02:31](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:40, 04:40](628 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:31, 04:23](1156 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 04:25](628 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:27](628 MB)
+PASS -- TEST 'regional_wofs_intel' [07:40, 05:36](1600 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:38, 11:25]
+PASS -- TEST 'rap_control_intel' [09:01, 06:08](1003 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:42, 03:48](1194 MB)
+PASS -- TEST 'rap_decomp_intel' [10:11, 06:23](1001 MB)
+PASS -- TEST 'rap_restart_intel' [05:48, 03:10](878 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:09, 06:03](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 06:21](1001 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:02, 04:37](879 MB)
+PASS -- TEST 'hrrr_control_intel' [05:54, 03:12](997 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 03:17](997 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:54, 02:47](1090 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:07, 01:44](830 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:00, 05:56](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:20](1956 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:09](1947 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:36, 10:21]
+PASS -- TEST 'control_csawmg_intel' [07:44, 05:50](696 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:37, 05:45](689 MB)
+PASS -- TEST 'control_ras_intel' [05:00, 02:51](655 MB)
+
+PASS -- COMPILE 'wam_intel' [10:30, 09:35]
+PASS -- TEST 'control_wam_intel' [03:30, 01:53](385 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:32, 12:42]
+PASS -- TEST 'control_p8_faster_intel' [05:44, 02:22](1593 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:31, 04:13](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:40, 08:38]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:37](792 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:37](790 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:05, 02:54](793 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:34](794 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:01](840 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:50, 03:52](839 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:02, 02:36](807 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:15, 02:42](855 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:21, 02:39](1627 MB)
+PASS -- TEST 'regional_debug_intel' [19:19, 16:06](665 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:08, 04:41](1177 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:37](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:38](1181 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:41](1180 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:13, 04:47](1178 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:34, 04:51](1260 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:43](1179 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:47](1181 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:14, 04:41](1186 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:05, 04:38](1179 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:08, 04:41](1176 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:05, 04:39](1180 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:08, 07:30](1178 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:07, 04:34](1172 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:26](1183 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:01, 04:39](1182 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 07:51](1181 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:28, 05:29]
+PASS -- TEST 'control_wam_debug_intel' [05:43, 04:43](425 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 09:50]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:30](1060 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 05:06](882 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:00, 02:47](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:54](878 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:15, 03:52](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:00, 01:37](778 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 11:48]
+PASS -- TEST 'conus13km_control_intel' [05:52, 01:52](1080 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:54](1079 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:36, 01:08](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:30, 09:46]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:38](906 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:22, 05:47]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:58, 04:39](1057 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:51, 04:25](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:53, 13:36](1133 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 13:33](815 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 13:26](1200 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:28, 05:27]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:59, 04:42](1079 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:30, 15:57]
+PASS -- TEST 'hafs_regional_atm_intel' [07:36, 04:31](713 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:56, 05:06](1066 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 06:27](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 10:57](791 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 12:06](817 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:07, 04:37](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:06, 05:44](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:20](386 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 06:13](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:27, 03:17](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:03](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 03:49](581 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:46, 01:16](425 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:32, 03:21](782 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:24, 07:06]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:28](611 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:31, 19:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:59, 07:07](637 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:11](746 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:59, 05:21](674 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:26, 14:16]
+PASS -- TEST 'hafs_regional_docn_intel' [08:08, 05:40](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:21, 05:33](736 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:15](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:22, 07:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:54, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:59, 01:32](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:42, 02:21](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:44, 02:22](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:22](643 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:42, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 05:39](689 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:20, 05:38](672 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:28, 02:32](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:53](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 03:56](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 05:00]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:50, 05:08](744 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:15, 07:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:28](747 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:24]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:52, 01:08](311 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:05](450 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:44](450 MB)
+
+PASS -- COMPILE 'atml_intel' [13:23, 12:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:53, 06:53](1635 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:37, 06:28](1628 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:57](847 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:24, 12:40]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:33](1628 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:18, 12:19]
+PASS -- TEST 'control_atmwav_intel' [03:04, 01:33](635 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:18, 11:11]
+PASS -- TEST 'atmaero_control_p8_intel' [05:51, 03:38](2944 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:15](3001 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 04:28](3007 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:18, 10:46]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:17]
+PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 21:58](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240317 12:41:56
-Ending Date/Time: 20240317 14:13:29
-Total Time: 01h:32m:37s
+Starting Date/Time: 20240319 06:58:51
+Ending Date/Time: 20240319 08:34:27
+Total Time: 01h:36m:28s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 59f17fa68c..f9d95844de 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0939a1dff2a2060b541eca9642a19c5ed1541f17
+889b350550238abd90bed430ef48afac6ecf1d84
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_17834
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_206641
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:14, 19:10]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:33, 07:50](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:15, 22:38]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:50, 13:55](1700 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:41, 14:17](1814 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:53, 06:51](952 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:45, 15:14](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:08, 13:36]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 25:20](1702 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:14, 19:22]
-PASS -- TEST 'cpld_control_p8_intel' [14:40, 08:09](3099 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:51, 08:15](3099 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:26, 05:12](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:31, 08:19](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:27, 05:07](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:48, 06:42](3413 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [14:10, 08:16](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:59, 07:28](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:50, 08:17](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:33, 10:16](3272 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:41, 07:29](3603 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:23, 13:35](4041 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:51, 09:25](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 08:05](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:11, 18:20]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [12:32, 05:40](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 06:01](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [15:08, 13:28]
-PASS -- TEST 'cpld_debug_p8_intel' [17:24, 10:23](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:12, 12:51]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:43, 06:01](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:09, 15:33]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:00, 05:23](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [18:13, 16:10]
-PASS -- TEST 'cpld_control_c48_intel' [10:55, 06:53](2661 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:15, 22:32]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 08:12](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:52, 22:28]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:52, 15:22](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:19, 08:17](998 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:45, 17:35](1677 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 13:31]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:34, 27:07](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [23:10, 21:09]
-PASS -- TEST 'control_flake_intel' [05:52, 03:45](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:52, 02:55](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 02:39](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:35, 02:50](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 02:38](623 MB)
-PASS -- TEST 'control_c48_intel' [08:11, 05:38](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:40](721 MB)
-PASS -- TEST 'control_c192_intel' [12:08, 09:16](739 MB)
-PASS -- TEST 'control_c384_intel' [20:04, 16:24](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:12, 14:12](1187 MB)
-PASS -- TEST 'control_stochy_intel' [05:27, 02:12](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:41, 01:10](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:35, 01:49](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:50, 02:51](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:50, 02:49](623 MB)
-PASS -- TEST 'control_p8_intel' [06:57, 03:29](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:30, 03:28](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:07, 03:25](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:34, 02:00](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:06, 03:43](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:46](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:30](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:51, 02:57](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:33, 05:32](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:19](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:53](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:51, 04:02](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:07, 04:35](615 MB)
-PASS -- TEST 'regional_restart_intel' [06:49, 02:58](789 MB)
-PASS -- TEST 'regional_decomp_intel' [07:04, 04:51](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:58, 03:21](756 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:01, 04:57](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:09, 05:09](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:06, 04:51](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:06, 06:05](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:21, 14:30]
-PASS -- TEST 'rap_control_intel' [09:54, 06:57](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:02](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [09:54, 07:00](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:54, 06:13](1095 MB)
-PASS -- TEST 'rap_restart_intel' [06:19, 03:27](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:54, 06:57](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:55, 07:15](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:22](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:48, 03:59](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:01](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:48, 03:05](1084 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:58](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:54, 06:48](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 08:15](1969 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 07:50](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:48, 13:45]
-PASS -- TEST 'control_csawmg_intel' [09:51, 06:43](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:51, 06:36](691 MB)
-PASS -- TEST 'control_ras_intel' [06:03, 03:26](657 MB)
-
-PASS -- COMPILE 'wam_intel' [21:19, 19:23]
-PASS -- TEST 'control_wam_intel' [04:32, 02:12](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [28:18, 26:05]
-PASS -- TEST 'control_p8_faster_intel' [06:32, 03:38](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:01, 04:35](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [35:20, 33:26]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:13, 02:50](777 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:01, 02:47](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:35, 03:09](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:52, 02:51](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:54, 04:33](824 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:25](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:42, 02:51](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:41, 03:03](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:54, 03:49](1618 MB)
-PASS -- TEST 'regional_debug_intel' [18:56, 16:11](632 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:34, 05:35](1165 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:33, 05:36](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:30](1169 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:32, 05:35](1166 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:38, 05:30](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:14](1250 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:51, 05:15](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:20](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:19](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 05:06](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:42, 05:02](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:38, 05:19](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:13](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:01](1162 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:46, 05:51](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:05](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:08, 08:30](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [32:17, 30:01]
-PASS -- TEST 'control_wam_debug_intel' [06:24, 04:46](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 12:23]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 03:53](1049 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:50](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:57, 03:32](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:55, 05:32](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 02:48](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 03:45](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:48, 04:12](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:03](765 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:18, 15:35]
-PASS -- TEST 'conus13km_control_intel' [05:08, 02:10](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:39, 01:06](1072 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:22, 01:23](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:51]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:12, 04:26](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:14, 08:53]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:00](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 04:59](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:54, 14:04](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:00, 14:12](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:49, 08:28](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:53, 14:30](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 09:56]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:04, 05:07](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:13, 17:13]
-PASS -- TEST 'hafs_regional_atm_intel' [08:23, 05:17](706 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:10, 04:34](1061 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:42, 07:54](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 11:46](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 13:16](793 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:28, 05:30](475 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 06:51](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:20, 02:57](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:57, 08:09](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:59, 03:53](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:32](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 04:54](575 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:43, 02:01](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:31, 04:24](768 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:10, 11:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:48, 13:03](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:13, 21:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:51, 08:26](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:16, 08:12](785 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:11, 17:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:29](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:12, 16:00]
-PASS -- TEST 'hafs_regional_docn_intel' [09:14, 06:18](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:19, 06:18](729 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:51, 20:09](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:12, 11:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 02:36](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:22, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:10, 02:28](635 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:44, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:31](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:36](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 02:34](745 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:26](635 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:25, 06:14](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:57, 06:08](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:34](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:34](2012 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:36](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:07, 07:13]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:28, 05:30](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:51]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:33](756 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 03:51]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:53, 02:17](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:35](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:46, 01:40](456 MB)
-
-PASS -- COMPILE 'atml_intel' [58:25, 57:11]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:07, 07:47](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:07, 07:47](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:08, 05:47](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:13, 15:22]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:06, 02:22](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:10, 14:49]
-PASS -- TEST 'control_atmwav_intel' [05:43, 02:04](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:12, 14:38]
-PASS -- TEST 'atmaero_control_p8_intel' [08:26, 05:58](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:28](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:18, 06:48](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [17:11, 15:12]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:18, 11:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:22](4482 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:02, 07:26](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:25]
+PASS -- TEST 'cpld_control_gfsv17_intel' [28:16, 13:56](1691 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:59, 14:54](1814 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:49, 07:27](951 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 15:06](1673 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:13, 12:43]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:00, 24:49](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:24, 12:09]
+PASS -- TEST 'cpld_control_p8_intel' [15:14, 09:28](3100 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:25, 09:23](3101 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [15:46, 05:40](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:22, 09:01](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [15:05, 06:15](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 07:26](3416 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:57, 09:02](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:48](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:25](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [20:05, 11:18](3272 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [19:13, 07:47](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [27:53, 13:19](4040 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:30, 09:37](4336 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:59, 08:02](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:14, 17:44]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [23:08, 05:11](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:18, 05:32](1728 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [14:13, 12:06]
+PASS -- TEST 'cpld_debug_p8_intel' [24:56, 10:12](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:20]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:46, 05:58](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:10, 16:16]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [24:12, 05:37](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [16:09, 14:41]
+PASS -- TEST 'cpld_control_c48_intel' [11:21, 06:56](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:24, 12:09]
+PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 09:00](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:13, 22:04]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:14, 15:27](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:56](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 17:25](1683 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 13:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:45, 26:16](1708 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:09, 14:53]
+PASS -- TEST 'control_flake_intel' [15:52, 04:13](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [11:20, 02:51](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:21, 03:20](627 MB)
+PASS -- TEST 'control_latlon_intel' [14:04, 03:09](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:52, 03:07](623 MB)
+PASS -- TEST 'control_c48_intel' [13:22, 05:40](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [17:26, 05:41](728 MB)
+PASS -- TEST 'control_c192_intel' [25:30, 09:50](738 MB)
+PASS -- TEST 'control_c384_intel' [34:02, 17:19](1041 MB)
+PASS -- TEST 'control_c384gdas_intel' [35:38, 14:14](1184 MB)
+PASS -- TEST 'control_stochy_intel' [15:55, 01:59](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [14:41, 01:26](430 MB)
+PASS -- TEST 'control_lndp_intel' [14:04, 02:00](628 MB)
+PASS -- TEST 'control_iovr4_intel' [14:09, 03:07](622 MB)
+PASS -- TEST 'control_iovr5_intel' [17:09, 03:57](623 MB)
+PASS -- TEST 'control_p8_intel' [24:15, 03:46](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [25:40, 03:51](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [23:26, 03:18](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [14:29, 02:19](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [24:14, 03:22](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [14:30, 02:19](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [24:13, 03:24](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [20:17, 03:20](1684 MB)
+PASS -- TEST 'control_p8_lndp_intel' [25:03, 05:18](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [16:25, 04:45](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [15:23, 03:51](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [15:28, 04:15](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:48, 05:23](615 MB)
+PASS -- TEST 'regional_restart_intel' [05:46, 02:44](789 MB)
+PASS -- TEST 'regional_decomp_intel' [07:46, 05:37](615 MB)
+PASS -- TEST 'regional_2threads_intel' [11:54, 03:10](766 MB)
+PASS -- TEST 'regional_noquilt_intel' [13:33, 04:45](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 04:38](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [14:16, 05:00](615 MB)
+PASS -- TEST 'regional_wofs_intel' [13:52, 06:06](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:13, 12:31]
+PASS -- TEST 'rap_control_intel' [21:29, 07:17](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:08, 04:03](1186 MB)
+PASS -- TEST 'rap_decomp_intel' [22:15, 07:30](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [21:23, 06:22](1093 MB)
+PASS -- TEST 'rap_restart_intel' [06:00, 03:53](881 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [22:11, 07:06](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:10, 07:38](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 05:20](880 MB)
+PASS -- TEST 'hrrr_control_intel' [16:23, 04:12](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [16:14, 04:18](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [14:14, 03:11](1084 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:28](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [18:12, 07:09](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [20:51, 08:49](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:45, 08:25](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [16:09, 14:14]
+PASS -- TEST 'control_csawmg_intel' [16:44, 07:05](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [16:45, 07:00](692 MB)
+PASS -- TEST 'control_ras_intel' [13:35, 03:46](657 MB)
+
+PASS -- COMPILE 'wam_intel' [15:09, 13:28]
+PASS -- TEST 'control_wam_intel' [10:35, 02:30](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:45]
+PASS -- TEST 'control_p8_faster_intel' [12:18, 03:33](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:47, 04:49](615 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:08, 10:55]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:39, 03:01](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:38, 03:03](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:16](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:14](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:44, 04:42](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:49, 04:23](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:27, 03:04](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:33, 03:08](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:42, 03:22](1619 MB)
+PASS -- TEST 'regional_debug_intel' [19:54, 16:36](634 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:38, 05:20](1167 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:37, 05:07](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 04:59](1167 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:43, 04:59](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:40, 05:12](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:42, 05:17](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 05:10](1167 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 05:04](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [09:37, 05:26](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:39, 05:00](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:30, 04:49](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:00](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:32, 07:59](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:43, 04:56](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:20](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:31, 05:22](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:49](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:08, 07:36]
+PASS -- TEST 'control_wam_debug_intel' [06:28, 05:00](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:09, 11:11]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:11, 04:08](1052 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:05, 06:11](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:29](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 05:14](949 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:16, 02:48](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:49](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:10, 04:30](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:49, 02:28](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:37]
+PASS -- TEST 'conus13km_control_intel' [12:11, 02:55](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [12:52, 01:35](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [13:49, 01:55](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 12:55]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:15, 05:29](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:08, 07:27]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:34, 05:33](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:32, 05:22](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [25:01, 14:32](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [24:59, 14:41](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [17:47, 08:29](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 14:25](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:09, 09:51]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:40, 05:25](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:10, 17:30]
+PASS -- TEST 'hafs_regional_atm_intel' [14:37, 05:21](705 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:43, 04:40](1055 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:46, 07:42](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [23:29, 11:52](789 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:17, 13:36](801 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:26, 06:18](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:12, 06:49](495 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [12:36, 03:05](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:17, 08:15](435 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:07, 03:58](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:36, 03:33](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:22, 04:50](567 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:47, 01:51](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [17:34, 04:20](764 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:10, 12:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:18, 12:51](585 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [22:12, 20:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:19, 07:54](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:28, 08:04](786 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:09, 16:25]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:40, 06:21](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:11, 15:37]
+PASS -- TEST 'hafs_regional_docn_intel' [16:28, 06:41](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:30, 06:27](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:29, 20:22](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:19, 10:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:41, 02:56](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:34, 02:56](635 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:30, 02:27](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:37, 02:28](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:31, 02:36](745 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:24, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:26](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:06, 06:19](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:07](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:53, 04:40](2012 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:53, 04:34](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:14]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:49, 05:28](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:08, 11:11]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:36, 02:33](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:06, 03:19]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:13, 02:19](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:07, 01:09](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:09, 01:20](456 MB)
+
+PASS -- COMPILE 'atml_intel' [16:10, 14:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:54, 09:07](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:54, 09:26](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 05:10](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:13, 13:33]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:18, 02:27](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [15:14, 13:26]
+PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:09, 13:08]
+PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:15](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:34, 07:09](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:15, 07:09](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [14:12, 12:29]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:10, 09:52]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:17, 18:37](4481 MB)
SYNOPSIS:
-Starting Date/Time: 20240315 14:58:48
-Ending Date/Time: 20240315 17:15:28
-Total Time: 02h:17m:20s
+Starting Date/Time: 20240319 11:05:14
+Ending Date/Time: 20240319 13:19:30
+Total Time: 02h:15m:11s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index ca2e3d2fc1..1205225b76 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-1345562a9e6c858e0b80292dab11cd23a0da902e
+ba1d11b83d417702ff3cb008a21c042067675a27
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,13 +9,13 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 5ef24e6280fb6fc7df685ba5f48917e83d46d177 FV3 (heads/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -25,374 +25,373 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_5454
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_217014
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:08, 12:06]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:26, 05:29](3102 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 16:01]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:04, 16:11](1707 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 16:48](2010 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 07:35](1112 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:00, 18:08](1633 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 04:23]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:01, 22:23](1671 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:09, 12:14]
-PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:43](3189 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:39, 05:50](3148 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:28, 03:17](3240 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:28, 05:48](3214 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:21](3251 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:24, 05:28](3534 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:24, 05:50](3178 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:27, 04:42](3049 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:36, 05:43](3186 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:22, 09:47](3279 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 05:54](3566 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 09:56](4097 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:15, 06:40](4327 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:29, 05:27](3154 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:08, 11:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 04:38](1701 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:24, 04:22](1765 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:07, 04:23]
-PASS -- TEST 'cpld_debug_p8_intel' [15:08, 08:04](3238 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 03:59]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:04, 05:36](1749 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:09, 10:42]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:02, 04:26](1760 MB)
-
-PASS -- COMPILE 's2s_intel' [13:08, 10:44]
-PASS -- TEST 'cpld_control_c48_intel' [11:41, 09:25](2833 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:10, 16:17]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:13, 05:18](3195 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:10]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:09, 16:17](1759 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 07:38](1140 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:02, 18:34](1661 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 04:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:22, 24:47](1686 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:08, 10:31]
-PASS -- TEST 'control_flake_intel' [07:22, 03:25](689 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:24, 02:22](643 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:32](651 MB)
-PASS -- TEST 'control_latlon_intel' [05:21, 02:23](647 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:26](623 MB)
-PASS -- TEST 'control_c48_intel' [11:24, 06:13](872 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:24, 06:13](874 MB)
-PASS -- TEST 'control_c192_intel' [10:39, 08:59](851 MB)
-PASS -- TEST 'control_c384_intel' [13:29, 08:59](1274 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:53, 07:56](1385 MB)
-PASS -- TEST 'control_stochy_intel' [05:19, 01:38](639 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:22, 00:58](497 MB)
-PASS -- TEST 'control_lndp_intel' [04:17, 01:34](650 MB)
-PASS -- TEST 'control_iovr4_intel' [05:21, 02:27](617 MB)
-PASS -- TEST 'control_iovr5_intel' [05:20, 02:26](620 MB)
-PASS -- TEST 'control_p8_intel' [06:02, 02:58](1616 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:06, 02:56](1599 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:59, 02:48](1620 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:47, 01:38](859 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:52](1603 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:37](925 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:58](1605 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:49, 02:43](1707 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:48, 05:09](1617 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:51, 03:48](1647 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:58](1621 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:53, 03:26](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:35, 05:06](849 MB)
-PASS -- TEST 'regional_restart_intel' [05:38, 02:45](1006 MB)
-PASS -- TEST 'regional_decomp_intel' [07:39, 05:31](815 MB)
-PASS -- TEST 'regional_2threads_intel' [05:44, 03:10](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:40, 05:02](1361 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:03](851 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](829 MB)
-PASS -- TEST 'regional_wofs_intel' [10:41, 06:38](1882 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 09:45]
-PASS -- TEST 'rap_control_intel' [10:34, 07:44](1089 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:09, 04:09](1290 MB)
-PASS -- TEST 'rap_decomp_intel' [11:35, 08:04](1022 MB)
-PASS -- TEST 'rap_2threads_intel' [09:39, 07:17](1184 MB)
-PASS -- TEST 'rap_restart_intel' [05:40, 03:59](1096 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:42](1099 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:06](1028 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 05:46](1104 MB)
-PASS -- TEST 'hrrr_control_intel' [07:33, 03:58](994 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 04:08](1027 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 03:36](1109 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:09](996 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:43, 07:33](1087 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:26, 09:06](1988 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:31, 08:52](2059 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:07, 09:30]
-PASS -- TEST 'control_csawmg_intel' [08:39, 06:11](707 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:43, 05:55](716 MB)
-PASS -- TEST 'control_ras_intel' [05:20, 03:17](731 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:07, 03:28]
-PASS -- TEST 'control_csawmg_gnu' [11:40, 08:48](586 MB)
-PASS -- TEST 'control_csawmgt_gnu' [11:38, 08:40](586 MB)
-
-PASS -- COMPILE 'wam_intel' [11:07, 09:03]
-PASS -- TEST 'control_wam_intel' [04:19, 02:02](644 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 09:50]
-PASS -- TEST 'control_p8_faster_intel' [05:50, 02:41](1592 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](821 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:16]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:40](807 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:34](813 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:00](781 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:42](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:07](857 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 04:00](856 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:17, 02:43](792 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:28, 02:47](865 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:36, 02:45](1635 MB)
-PASS -- TEST 'regional_debug_intel' [18:38, 16:35](836 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:20, 04:42](1192 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:38](1202 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:19, 04:48](1189 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 04:46](1195 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 04:46](1195 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:34, 05:04](1262 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 04:49](1206 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:48](1193 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:42](1193 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:23, 04:49](1201 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:20, 04:41](1202 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 04:47](1197 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 07:48](1200 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:22, 04:37](1181 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:42](1196 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:23, 04:45](1188 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 08:05](1201 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:20]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:07](570 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:34, 02:06](564 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02]
-PASS -- TEST 'control_wam_debug_intel' [06:18, 04:44](501 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:19]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 03:48](1156 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:19](1046 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 03:21](985 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:30, 05:59](1097 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:27, 03:06](951 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:33](915 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [17:42, 04:48](1031 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:50](902 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:08, 11:44]
-PASS -- TEST 'conus13km_control_intel' [04:52, 02:00](1193 MB)
-PASS -- TEST 'conus13km_2threads_intel' [13:39, 00:56](1110 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [14:41, 01:12](1099 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 09:15]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:40, 04:12](963 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 03:13]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:39](1047 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:34](1068 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:48, 13:33](1215 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:45, 13:59](919 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 07:46](1140 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:44](1283 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:46](1112 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:08, 10:24]
-PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:42](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:42](1105 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:21, 06:47](823 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:15, 12:51](862 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:21, 14:30](880 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:55, 05:16](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:26](516 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [15:43, 02:36](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:20, 06:55](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [16:42, 03:33](524 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:43, 03:21](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:51, 04:01](579 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:26, 01:11](406 MB)
-PASS -- TEST 'gnv1_nested_intel' [16:47, 03:57](765 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:07, 03:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:52, 12:18](565 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:09, 11:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:00, 08:22](639 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 08:30](689 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 11:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:02, 06:18](717 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:08, 10:19]
-PASS -- TEST 'hafs_regional_docn_intel' [19:12, 06:13](826 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:17, 06:15](804 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:55, 16:17](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:07, 05:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:55](1120 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [08:17, 01:39](1069 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:14, 02:35](1009 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:39](994 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [12:15, 02:38](1001 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:18, 02:40](1121 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:15, 02:38](1120 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:15, 02:28](1010 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:22, 06:04](1051 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:12, 06:21](1030 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:12, 02:42](1133 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:17, 03:55](2431 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:17, 03:52](2476 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 02:53]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:08](1045 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 06:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:40](1117 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:00]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:27, 00:45](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:20, 00:47](321 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:30](323 MB)
-
-PASS -- COMPILE 'atml_intel' [13:07, 10:49]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 04:14](1586 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:00, 04:14](1586 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:16](885 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:08, 10:00]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:48, 01:45](1623 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:07, 09:53]
-PASS -- TEST 'control_atmwav_intel' [03:31, 01:39](668 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:08, 09:40]
-PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:53](3016 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:44](3085 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:42, 05:05](3037 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:08, 09:22]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:15, 20:06](4479 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:06, 03:27]
-PASS -- TEST 'control_c48_gnu' [14:25, 11:40](788 MB)
-PASS -- TEST 'control_stochy_gnu' [07:19, 04:01](549 MB)
-PASS -- TEST 'control_ras_gnu' [08:19, 04:59](553 MB)
-PASS -- TEST 'control_p8_gnu' [09:03, 04:53](1311 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [07:56, 04:44](1310 MB)
-PASS -- TEST 'control_flake_gnu' [08:19, 05:51](594 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:06, 03:29]
-PASS -- TEST 'rap_control_gnu' [14:31, 11:43](894 MB)
-PASS -- TEST 'rap_decomp_gnu' [14:31, 11:50](895 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:41, 10:28](971 MB)
-PASS -- TEST 'rap_restart_gnu' [08:39, 06:01](625 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [14:38, 11:46](893 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:38, 11:42](892 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:39, 08:46](627 MB)
-PASS -- TEST 'hrrr_control_gnu' [08:30, 06:00](888 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:29, 05:56](878 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:12](976 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [07:34, 06:00](889 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:26, 03:13](610 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:27, 03:13](705 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [13:42, 11:21](893 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21]
-PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](589 MB)
-PASS -- TEST 'regional_debug_gnu' [09:43, 07:27](599 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:31](906 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:30](902 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:33](872 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [05:17, 02:36](907 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:43](993 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:22, 03:53](906 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:23, 02:31](904 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:30](902 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:32](542 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:50](536 MB)
-PASS -- TEST 'control_debug_p8_gnu' [04:41, 01:42](1293 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:20, 02:32](911 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:51](912 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:37, 04:08](911 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:42]
-PASS -- TEST 'control_wam_debug_gnu' [04:18, 02:27](242 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:22]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:34, 11:55](749 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:27, 06:05](743 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:37, 10:36](803 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:32, 05:19](794 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:27, 06:01](742 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [11:37, 08:55](595 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:22, 03:32](580 MB)
-PASS -- TEST 'conus13km_control_gnu' [07:57, 04:11](897 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [04:40, 01:56](930 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:22](599 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:42, 07:00](781 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:08, 03:20]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:30](756 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:19, 02:33](756 MB)
-PASS -- TEST 'conus13km_debug_gnu' [10:40, 07:02](912 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:41, 07:02](627 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [06:40, 04:20](948 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:40, 07:11](981 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:34](782 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:09, 13:51]
-PASS -- TEST 'cpld_control_p8_gnu' [13:10, 10:50](1510 MB)
-
-PASS -- COMPILE 's2s_gnu' [15:09, 13:35]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:02, 06:34](1400 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:18]
-PASS -- TEST 'cpld_debug_p8_gnu' [09:04, 06:12](1514 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:09, 13:38]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:58, 22:17](1373 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:06]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:49](1384 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:23]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:14, 03:00](700 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:02]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:06, 05:21](3159 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:08, 16:17]
+PASS -- TEST 'cpld_control_gfsv17_intel' [25:18, 16:10](1729 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:23, 16:51](2011 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:11, 07:42](1074 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:17, 18:18](1615 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:26]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 22:24](1672 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:07, 12:09]
+PASS -- TEST 'cpld_control_p8_intel' [10:22, 05:38](3186 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:30, 05:44](3163 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [10:37, 03:23](3256 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 05:47](3218 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:37, 03:29](3270 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:15, 05:38](3526 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:22, 05:40](3170 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 04:41](3010 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:20, 05:45](3165 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [23:32, 09:49](3317 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:53, 06:07](3587 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:07](4141 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 06:46](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 05:26](3165 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:07, 11:36]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:41](1693 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:31](1764 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:28]
+PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:10](3249 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:07]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:45](1707 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:07, 10:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1771 MB)
+
+PASS -- COMPILE 's2s_intel' [13:07, 10:30]
+PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:21](2830 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:08, 16:17]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:28, 05:17](3195 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:11]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:12, 16:28](1763 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 07:39](1146 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 18:40](1639 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:53]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:09](1693 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:07, 10:33]
+PASS -- TEST 'control_flake_intel' [11:31, 03:16](698 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [11:33, 02:22](643 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:35, 02:32](628 MB)
+PASS -- TEST 'control_latlon_intel' [11:28, 02:24](642 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:35, 02:29](648 MB)
+PASS -- TEST 'control_c48_intel' [09:28, 06:17](873 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:28, 06:16](872 MB)
+PASS -- TEST 'control_c192_intel' [17:50, 09:09](844 MB)
+PASS -- TEST 'control_c384_intel' [18:49, 09:22](1283 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:32, 08:21](1386 MB)
+PASS -- TEST 'control_stochy_intel' [10:20, 01:41](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:58](471 MB)
+PASS -- TEST 'control_lndp_intel' [10:17, 01:33](619 MB)
+PASS -- TEST 'control_iovr4_intel' [11:20, 02:29](621 MB)
+PASS -- TEST 'control_iovr5_intel' [10:20, 02:26](646 MB)
+PASS -- TEST 'control_p8_intel' [12:04, 02:57](1613 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [10:03, 02:59](1611 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:01, 02:59](1581 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:54, 01:46](887 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:02, 02:55](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:44](913 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:58, 03:02](1612 MB)
+PASS -- TEST 'control_2threads_p8_intel' [08:53, 02:50](1705 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:47, 05:23](1608 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 03:54](1672 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:05, 03:07](1624 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:03, 03:32](1613 MB)
+PASS -- TEST 'regional_control_intel' [07:41, 05:12](847 MB)
+PASS -- TEST 'regional_restart_intel' [09:45, 02:46](1017 MB)
+PASS -- TEST 'regional_decomp_intel' [07:40, 05:29](847 MB)
+PASS -- TEST 'regional_2threads_intel' [05:43, 03:19](814 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:40, 05:13](1361 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:24](845 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:25](815 MB)
+PASS -- TEST 'regional_wofs_intel' [08:40, 06:39](1914 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:09, 09:55]
+PASS -- TEST 'rap_control_intel' [11:45, 07:53](1105 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:03, 04:25](1294 MB)
+PASS -- TEST 'rap_decomp_intel' [11:39, 08:22](1026 MB)
+PASS -- TEST 'rap_2threads_intel' [10:34, 07:37](1137 MB)
+PASS -- TEST 'rap_restart_intel' [06:43, 04:02](1063 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:55](1093 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:17](1027 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:45](1124 MB)
+PASS -- TEST 'hrrr_control_intel' [06:33, 04:07](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:15](1041 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:53](1116 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:28, 02:10](997 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:48](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1962 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:03](2058 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:06, 09:37]
+PASS -- TEST 'control_csawmg_intel' [08:46, 06:12](708 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:43, 06:06](745 MB)
+PASS -- TEST 'control_ras_intel' [05:19, 03:25](746 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:06, 03:37]
+PASS -- TEST 'control_csawmg_gnu' [15:41, 08:52](590 MB)
+PASS -- TEST 'control_csawmgt_gnu' [15:42, 08:41](588 MB)
+
+PASS -- COMPILE 'wam_intel' [11:06, 09:04]
+PASS -- TEST 'control_wam_intel' [09:21, 02:03](647 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:06, 09:52]
+PASS -- TEST 'control_p8_faster_intel' [09:59, 02:40](1614 MB)
+PASS -- TEST 'regional_control_faster_intel' [11:42, 04:40](849 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:23]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:26, 02:36](805 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:27, 02:39](785 MB)
+PASS -- TEST 'control_stochy_debug_intel' [09:21, 03:06](812 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:22, 02:44](785 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:37, 04:05](859 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [08:38, 03:59](856 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:20, 02:40](819 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:29, 02:44](867 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:45, 02:46](1636 MB)
+PASS -- TEST 'regional_debug_intel' [18:46, 16:49](832 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:24, 04:42](1189 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:36](1195 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:42](1201 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:46](1189 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:45](1206 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:59](1290 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 04:53](1178 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 04:48](1196 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:25, 04:49](1188 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 04:52](1165 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:41](1178 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 04:46](1197 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 07:43](1197 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:39](1157 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:00](1174 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:48](1203 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:08](1206 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:30]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:34, 02:09](570 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:35, 02:05](571 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:06, 03:15]
+PASS -- TEST 'control_wam_debug_intel' [06:18, 04:45](509 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:08, 09:25]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 03:55](1151 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:21](1044 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:20](963 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:02](1083 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:08](966 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:32](934 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:36, 04:46](1021 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:52](937 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:09, 11:24]
+PASS -- TEST 'conus13km_control_intel' [04:55, 02:03](1194 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:53](1088 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:13](1102 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 09:23]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:11](985 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:07, 03:10]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:47](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:37](1075 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:50, 13:50](1218 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:00](903 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 07:40](1145 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:53](1270 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:07, 03:12]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:50](1110 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:08, 11:10]
+PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:52](732 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:06](1105 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:59](828 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:17](854 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:29, 14:44](853 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:06, 05:22](498 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:33](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:48](367 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:11, 07:03](482 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:34](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:24](518 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](583 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:15](399 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:55, 04:04](800 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [11:08, 03:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 12:27](557 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:08, 11:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:54, 08:29](633 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:00, 08:33](704 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 11:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:23](686 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:07, 11:02]
+PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:14](825 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:12, 06:16](810 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:58](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:11]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:37](1119 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 01:43](1067 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:35](1001 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:36](1017 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:37](998 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:40](1120 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:41](1110 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](995 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:11](1050 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:57](1022 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:45](1113 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:53](2490 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:16, 04:13](2432 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:09]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:06](1048 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:14]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:14, 02:42](1121 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:08, 01:08]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:29, 00:43](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:50](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:23, 00:30](320 MB)
+
+PASS -- COMPILE 'atml_intel' [13:07, 11:17]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:08, 04:13](1587 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:02, 04:17](1581 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 02:29](872 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:07, 10:12]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 01:44](1635 MB)
+
+PASS -- COMPILE 'atmwm_intel' [17:08, 09:53]
+PASS -- TEST 'control_atmwav_intel' [04:31, 01:38](666 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:07, 09:46]
+PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:52](3015 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:47](3069 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 04:58](3106 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:07, 09:43]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:07, 03:18]
+PASS -- TEST 'regional_atmaq_debug_intel' [27:01, 20:44](4366 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:08, 03:28]
+PASS -- TEST 'control_c48_gnu' [13:25, 11:36](787 MB)
+PASS -- TEST 'control_stochy_gnu' [07:19, 04:05](553 MB)
+PASS -- TEST 'control_ras_gnu' [07:19, 05:04](551 MB)
+PASS -- TEST 'control_p8_gnu' [09:59, 04:54](1302 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [10:56, 04:37](1304 MB)
+PASS -- TEST 'control_flake_gnu' [10:21, 05:57](593 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:07, 03:33]
+PASS -- TEST 'rap_control_gnu' [16:41, 11:27](894 MB)
+PASS -- TEST 'rap_decomp_gnu' [16:36, 11:41](892 MB)
+PASS -- TEST 'rap_2threads_gnu' [17:31, 10:30](976 MB)
+PASS -- TEST 'rap_restart_gnu' [25:53, 06:07](622 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [18:41, 11:34](895 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [18:35, 11:41](902 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [20:49, 08:43](627 MB)
+PASS -- TEST 'hrrr_control_gnu' [12:33, 06:00](890 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [12:32, 05:57](876 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [11:37, 05:15](967 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [12:34, 05:57](890 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [24:30, 03:14](609 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [24:26, 03:11](702 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [18:40, 11:24](889 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:25]
+PASS -- TEST 'control_diag_debug_gnu' [08:29, 01:36](590 MB)
+PASS -- TEST 'regional_debug_gnu' [14:44, 07:34](595 MB)
+PASS -- TEST 'rap_control_debug_gnu' [09:23, 02:33](909 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [08:19, 02:26](907 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [08:19, 02:29](905 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [08:18, 02:36](903 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [08:32, 02:44](987 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:22, 03:54](901 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:20, 02:32](902 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:20, 02:34](902 MB)
+PASS -- TEST 'control_ras_debug_gnu' [05:17, 01:32](542 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [06:20, 02:16](536 MB)
+PASS -- TEST 'control_debug_p8_gnu' [04:38, 01:39](1287 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [05:21, 02:34](903 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:48](915 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:09](914 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:07, 01:45]
+PASS -- TEST 'control_wam_debug_gnu' [26:22, 02:32](241 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:08, 03:28]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [36:34, 11:51](744 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [30:30, 06:04](744 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [34:49, 10:55](797 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [28:36, 05:22](802 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [28:31, 06:00](743 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [12:19, 09:10](586 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:22, 03:21](578 MB)
+PASS -- TEST 'conus13km_control_gnu' [27:01, 04:15](896 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [07:45, 01:58](928 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:42, 02:20](594 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:07]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [29:48, 06:59](779 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:24]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [25:24, 02:32](757 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [25:21, 02:31](752 MB)
+PASS -- TEST 'conus13km_debug_gnu' [29:55, 07:04](913 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [14:45, 07:09](629 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [11:43, 04:21](948 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [28:47, 07:11](979 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:05, 03:25]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [24:25, 02:40](784 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:06, 14:03]
+PASS -- TEST 'cpld_control_p8_gnu' [32:20, 11:01](1508 MB)
+
+PASS -- COMPILE 's2s_gnu' [16:08, 14:02]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [28:14, 06:39](1400 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:21]
+PASS -- TEST 'cpld_debug_p8_gnu' [28:09, 06:17](1523 MB)
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 13:43]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:07, 22:13](1373 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:18]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [32:00, 13:05](1388 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:35]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [17:15, 03:07](702 MB)
SYNOPSIS:
-Starting Date/Time: 20240317 23:58:13
-Ending Date/Time: 20240318 01:49:49
-Total Time: 01h:51m:57s
+Starting Date/Time: 20240318 19:02:14
+Ending Date/Time: 20240318 21:14:57
+Total Time: 02h:13m:32s
Compiles Completed: 55/55
Tests Completed: 247/247
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index bb954465fb..3de3fa4b14 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-818ea1590078efdc8c6b0089acfbec656b9c1dca
+879e6870478881f0145029af307915a5d57b674d
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,365 +48,365 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3021165
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2844701
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:06, 11:32]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:14, 07:43](1889 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:07, 17:43]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:10, 13:26](1773 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:32, 14:09](2163 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:24, 06:31](1182 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:12, 15:15](1696 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:05, 04:47]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:17](1727 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:06, 11:05]
-PASS -- TEST 'cpld_control_p8_intel' [10:06, 07:41](2066 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:40](2079 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:17, 04:23](1978 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:35](1970 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:21](1738 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:09, 09:04](2498 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:06, 07:29](2064 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 06:24](1901 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:13, 07:39](2062 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 15:32](2793 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:20, 05:49](2927 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:01](3631 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:23, 05:28](3612 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 04:58](2020 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:06, 10:41]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:11, 07:07](1772 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:01](1816 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:10]
-PASS -- TEST 'cpld_debug_p8_intel' [09:04, 06:53](2043 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:05, 04:37]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:54, 04:42](1805 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:14]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:58, 03:59](1817 MB)
-
-PASS -- COMPILE 's2s_intel' [11:06, 09:19]
-PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:13](2816 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:06, 13:16]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:08, 07:15](2092 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:09]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:02, 13:50](1806 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:57, 06:56](1278 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:37](1729 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:34]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:54, 22:05](1766 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:11]
-PASS -- TEST 'control_flake_intel' [04:20, 02:52](708 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:06](667 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:10](667 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:10](663 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:09](664 MB)
-PASS -- TEST 'control_c48_intel' [07:26, 05:45](855 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB)
-PASS -- TEST 'control_c192_intel' [09:32, 07:49](977 MB)
-PASS -- TEST 'control_c384_intel' [11:06, 08:22](1456 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:59, 07:43](1532 MB)
-PASS -- TEST 'control_stochy_intel' [03:20, 01:25](668 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:26, 00:55](528 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:21](671 MB)
-PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](663 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:09](657 MB)
-PASS -- TEST 'control_p8_intel' [04:52, 02:39](1645 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:39](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 02:29](1633 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:56, 01:24](925 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:32](1638 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:55, 01:25](972 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:38](1628 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:55, 02:28](1729 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:48, 04:28](1631 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:30](1714 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:39](1635 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:12, 02:59](1660 MB)
-PASS -- TEST 'regional_control_intel' [06:31, 04:34](957 MB)
-PASS -- TEST 'regional_restart_intel' [04:24, 02:30](1101 MB)
-PASS -- TEST 'regional_decomp_intel' [06:26, 04:44](946 MB)
-PASS -- TEST 'regional_2threads_intel' [04:32, 03:02](911 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:30, 04:22](1487 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:31](955 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:30](955 MB)
-PASS -- TEST 'regional_wofs_intel' [07:28, 05:51](2067 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:41]
-PASS -- TEST 'rap_control_intel' [08:51, 06:37](1192 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:48, 03:26](1416 MB)
-PASS -- TEST 'rap_decomp_intel' [08:39, 06:56](1121 MB)
-PASS -- TEST 'rap_2threads_intel' [08:34, 06:13](1389 MB)
-PASS -- TEST 'rap_restart_intel' [05:52, 03:30](1131 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:38, 06:26](1199 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:54](1148 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 04:56](1199 MB)
-PASS -- TEST 'hrrr_control_intel' [05:52, 03:25](1062 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 03:37](1057 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:13](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:50](1019 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:00, 06:32](1186 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:21, 07:41](2014 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:38](2202 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:25]
-PASS -- TEST 'control_csawmg_intel' [07:26, 05:20](842 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](817 MB)
-PASS -- TEST 'control_ras_intel' [04:16, 02:51](818 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:05, 04:29]
-PASS -- TEST 'control_csawmg_gnu' [08:33, 06:33](811 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:25, 06:25](807 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:52]
-PASS -- TEST 'control_wam_intel' [03:19, 01:54](784 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:04]
-PASS -- TEST 'control_p8_faster_intel' [04:58, 02:15](1630 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:29, 04:09](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 03:53]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:21](822 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:15](828 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:32](839 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:14](827 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:27](878 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:23, 03:20](872 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:14, 02:18](849 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:22, 02:19](888 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:30, 02:24](1663 MB)
-PASS -- TEST 'regional_debug_intel' [16:31, 14:23](899 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:16, 03:58](1218 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1217 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:59](1222 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:16, 04:04](1237 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:02](1215 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:35, 04:08](1296 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:05](1216 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:03](1228 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:16, 04:02](1219 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:29, 03:58](1220 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:22, 03:56](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:56](1230 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:26](1217 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:56](1220 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:51](1219 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:53, 06:54](1226 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:37]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:46](793 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:23, 01:46](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 07:14]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 03:17](1274 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:49, 05:27](1135 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:54](1043 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 05:21](1292 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:39](1035 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:04](975 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:17](1101 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:39](950 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:19]
-PASS -- TEST 'conus13km_control_intel' [03:41, 01:43](1295 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:29, 00:44](1200 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:24, 01:04](1152 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:06]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:45](1074 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:57]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 03:57](1102 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:59](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1351 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:39, 12:03](998 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 06:41](1231 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 11:40](1391 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:01](1154 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:08, 09:56]
-PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:23](882 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:17, 05:09](1277 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:10, 06:26](937 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:00, 13:45](980 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:49](962 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:52, 05:33](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 07:11](614 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:54](435 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:12, 07:57](535 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:49, 04:06](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:39, 03:43](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:57](686 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:37](454 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:14](632 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:06, 11:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:57, 16:39](729 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:55, 16:35](811 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:55, 09:44](795 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:05, 09:40]
-PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](947 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:02, 05:26](957 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:24](1345 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:19](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1016 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:07](1013 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:08](1017 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:07](1161 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:07](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:05](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:49, 04:58](1165 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:44, 04:52](1140 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1148 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2432 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:02](2442 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:55]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:06](1067 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:07](1153 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:55]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:57](337 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:54](558 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:34](564 MB)
-
-PASS -- COMPILE 'atml_intel' [10:07, 09:01]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 05:53](1653 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:39, 05:54](1653 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:39, 03:05](945 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:33](1692 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:59]
-PASS -- TEST 'control_atmwav_intel' [03:41, 01:32](702 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:05, 07:39]
-PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:35](1793 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](1805 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:25, 04:31](1821 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:06, 07:12]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:52]
-PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 17:22](4603 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:05, 04:34]
-PASS -- TEST 'control_c48_gnu' [11:25, 09:27](860 MB)
-PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](733 MB)
-PASS -- TEST 'control_ras_gnu' [05:15, 03:47](728 MB)
-PASS -- TEST 'control_p8_gnu' [05:50, 03:38](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:40, 03:32](1516 MB)
-PASS -- TEST 'control_flake_gnu' [06:45, 04:26](810 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:05, 04:08]
-PASS -- TEST 'rap_control_gnu' [09:54, 07:49](1088 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:40, 07:56](1083 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:30, 07:28](1151 MB)
-PASS -- TEST 'rap_restart_gnu' [05:47, 03:58](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:50](1088 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:02, 07:51](1083 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:55, 05:44](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:47, 03:57](1071 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:45, 04:00](1133 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:45, 03:41](1030 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:06](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:05](879 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:22, 02:01](935 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:35](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:05, 04:47]
-PASS -- TEST 'control_diag_debug_gnu' [03:33, 01:22](777 MB)
-PASS -- TEST 'regional_debug_gnu' [08:26, 06:21](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:57](1098 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:41, 02:04](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:13, 02:04](1093 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 02:01](1094 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:02](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:29, 03:04](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:00](1096 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:17, 01:57](1091 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:09](725 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:16](723 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:26](1504 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:01](1101 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:07](1099 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:47, 03:19](1102 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:34]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 04:35]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:14](961 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:48](949 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](1008 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](891 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:36, 03:54](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:53, 05:29](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:59](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:39, 02:27](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:33, 01:08](1171 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:26](946 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:06, 09:16]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:29, 04:18](992 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:55]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:01](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:52](972 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:28](1278 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:31](960 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:27, 03:16](1188 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:22](1348 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:06, 06:39]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:57](1010 MB)
-
-PASS -- COMPILE 's2swa_gnu' [20:06, 18:13]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:17]
-
-PASS -- COMPILE 's2swa_debug_gnu' [08:06, 06:52]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 15:47]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:06, 06:41]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [18:06, 16:22]
+PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:28]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:00, 07:41](1891 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:15, 16:44]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:19, 13:28](1773 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:45, 14:09](2166 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:43, 06:32](1190 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:00](1690 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:45]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:57, 20:17](1733 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:07, 12:16]
+PASS -- TEST 'cpld_control_p8_intel' [16:02, 07:51](2092 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 07:43](2095 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:04, 04:15](1965 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:49, 07:38](1977 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 04:25](1743 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:52, 08:53](2501 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:50, 07:37](2076 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:56, 06:23](1886 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 07:45](2070 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [22:19, 15:40](2807 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:35, 05:51](2926 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:04, 08:53](3627 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:31, 06:10](3621 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:54, 05:02](2040 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:06, 10:05]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 07:05](1766 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:08, 04:00](1820 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:25]
+PASS -- TEST 'cpld_debug_p8_intel' [10:38, 06:50](2073 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 04:39](1807 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:21]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:05, 03:57](1816 MB)
+
+PASS -- COMPILE 's2s_intel' [12:07, 10:15]
+PASS -- TEST 'cpld_control_c48_intel' [12:13, 07:11](2832 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:07, 13:46]
+PASS -- TEST 'cpld_control_p8_faster_intel' [20:24, 07:34](2096 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:04, 16:29]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 13:51](1813 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 06:41](1293 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:45, 15:24](1719 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:31, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:30, 21:30](1769 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:01]
+PASS -- TEST 'control_flake_intel' [14:29, 02:55](710 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [12:01, 02:06](659 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:06, 02:16](675 MB)
+PASS -- TEST 'control_latlon_intel' [12:00, 02:09](673 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:05, 02:13](662 MB)
+PASS -- TEST 'control_c48_intel' [16:12, 05:46](857 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [16:11, 05:46](857 MB)
+PASS -- TEST 'control_c192_intel' [17:14, 08:07](983 MB)
+PASS -- TEST 'control_c384_intel' [17:11, 08:30](1450 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:56, 07:32](1526 MB)
+PASS -- TEST 'control_stochy_intel' [12:06, 01:27](666 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](545 MB)
+PASS -- TEST 'control_lndp_intel' [09:05, 01:21](670 MB)
+PASS -- TEST 'control_iovr4_intel' [09:09, 02:06](666 MB)
+PASS -- TEST 'control_iovr5_intel' [08:45, 02:10](672 MB)
+PASS -- TEST 'control_p8_intel' [08:20, 02:49](1646 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:12, 02:33](1629 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 02:27](1642 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:05, 01:28](918 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:54, 02:30](1625 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:07, 01:23](992 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:56, 02:36](1627 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:27, 02:26](1727 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:12, 04:37](1633 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 03:31](1717 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:20, 02:39](1659 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:04, 03:02](1651 MB)
+PASS -- TEST 'regional_control_intel' [06:28, 04:38](962 MB)
+PASS -- TEST 'regional_restart_intel' [09:25, 02:32](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [06:28, 04:49](948 MB)
+PASS -- TEST 'regional_2threads_intel' [04:40, 02:58](920 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:32, 04:23](1494 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:30](960 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:15, 04:32](961 MB)
+PASS -- TEST 'regional_wofs_intel' [07:32, 05:34](2072 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:26, 07:34]
+PASS -- TEST 'rap_control_intel' [08:52, 06:33](1207 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 03:41](1456 MB)
+PASS -- TEST 'rap_decomp_intel' [08:46, 06:48](1144 MB)
+PASS -- TEST 'rap_2threads_intel' [08:45, 06:12](1373 MB)
+PASS -- TEST 'rap_restart_intel' [09:01, 03:34](1132 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:07, 06:46](1207 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:56](1137 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:18, 05:14](1192 MB)
+PASS -- TEST 'hrrr_control_intel' [06:23, 03:24](1060 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:11, 03:26](1038 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [09:10, 03:09](1129 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [07:44, 01:54](1019 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [14:16, 06:29](1184 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:36, 07:51](2003 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:26, 07:34](2167 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:26, 07:22]
+PASS -- TEST 'control_csawmg_intel' [11:41, 05:24](827 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:56, 05:29](835 MB)
+PASS -- TEST 'control_ras_intel' [08:54, 02:54](820 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:59, 04:16]
+PASS -- TEST 'control_csawmg_gnu' [17:05, 06:39](808 MB)
+PASS -- TEST 'control_csawmgt_gnu' [17:05, 06:35](808 MB)
+
+PASS -- COMPILE 'wam_intel' [08:26, 07:05]
+PASS -- TEST 'control_wam_intel' [07:25, 01:53](772 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:55, 09:20]
+PASS -- TEST 'control_p8_faster_intel' [11:00, 02:18](1640 MB)
+PASS -- TEST 'regional_control_faster_intel' [11:38, 04:19](959 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 04:25]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:21, 02:14](821 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:26, 02:17](824 MB)
+PASS -- TEST 'control_stochy_debug_intel' [08:17, 02:28](827 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:16, 02:15](840 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [10:05, 03:31](877 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [10:01, 03:23](878 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:22, 02:21](835 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:35, 02:24](882 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:02, 02:28](1667 MB)
+PASS -- TEST 'regional_debug_intel' [18:02, 14:14](895 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:59, 04:04](1221 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:20, 04:11](1213 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:12](1218 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:02](1219 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:11](1228 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:38, 04:28](1298 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:10](1212 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:11](1214 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:09](1213 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:04](1235 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:04](1225 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:02](1220 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:34](1213 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:45, 03:57](1215 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:30, 04:51](1221 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:02](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 06:50](1215 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:03, 04:15]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:45](788 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:26, 01:46](787 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:37, 03:02]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:11]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:29](1269 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:52, 05:24](1144 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 02:56](1023 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:46, 05:14](1292 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 02:38](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 02:58](981 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:13, 04:02](1091 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:02, 01:36](965 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:58, 10:09]
+PASS -- TEST 'conus13km_control_intel' [04:43, 01:49](1301 MB)
+PASS -- TEST 'conus13km_2threads_intel' [09:36, 00:53](1212 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [10:33, 01:05](1164 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:57, 08:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 03:43](1086 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:38, 04:11]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 03:53](1094 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:13, 03:52](1096 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:57, 11:43](1334 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 12:42](982 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 06:38](1243 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 11:42](1391 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:38, 04:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:58, 04:04](1154 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:20, 10:08]
+PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:32](877 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:53, 05:24](1284 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:31, 06:39](960 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 14:05](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:30, 15:30](1007 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:29, 05:37](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 07:11](615 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [11:23, 03:00](437 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 08:11](539 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:16, 04:02](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 03:52](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:19, 04:54](675 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:24, 01:21](446 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:19, 03:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:53, 11:27](632 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:29, 11:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:51, 16:10](729 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:07, 18:11](813 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:20, 10:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:11, 10:09](789 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:20, 10:27]
+PASS -- TEST 'hafs_regional_docn_intel' [12:18, 05:32](938 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:49, 05:37](947 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:42, 16:27](1339 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [11:21, 06:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:12](1148 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:17](1096 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:18, 02:06](1015 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:09, 02:07](1008 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:22, 02:08](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:09](1124 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:09](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:03](999 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:59](1159 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 04:50](1137 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:07](1146 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:36, 03:00](2437 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:33, 03:00](2442 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 03:52]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:21, 05:05](1077 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:07](1134 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:07]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 00:58](332 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:55](560 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](561 MB)
+
+PASS -- COMPILE 'atml_intel' [10:08, 08:20]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:56](1635 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:51, 05:58](1631 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:03](950 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:10, 10:47]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:32](1701 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:10, 09:14]
+PASS -- TEST 'control_atmwav_intel' [03:42, 01:29](687 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:08, 07:10]
+PASS -- TEST 'atmaero_control_p8_intel' [06:21, 03:31](1792 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 04:20](1801 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:29](1810 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:10, 07:15]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:10, 03:04]
+PASS -- TEST 'regional_atmaq_debug_intel' [20:21, 16:49](4593 MB)
+
+PASS -- COMPILE 'atm_gnu' [09:09, 04:17]
+PASS -- TEST 'control_c48_gnu' [10:59, 09:28](881 MB)
+PASS -- TEST 'control_stochy_gnu' [04:17, 02:11](731 MB)
+PASS -- TEST 'control_ras_gnu' [05:16, 03:40](728 MB)
+PASS -- TEST 'control_p8_gnu' [06:20, 03:33](1518 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:56, 03:23](1517 MB)
+PASS -- TEST 'control_flake_gnu' [06:15, 04:22](813 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [09:09, 04:18]
+PASS -- TEST 'rap_control_gnu' [09:40, 07:39](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:40, 07:40](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:00, 07:08](1129 MB)
+PASS -- TEST 'rap_restart_gnu' [05:41, 04:01](884 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:13, 07:40](1082 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:44](1084 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:48](883 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:46, 03:57](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 03:57](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:37](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 03:58](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:17, 02:03](882 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:04](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:17, 07:36](1084 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:17, 10:23]
+PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:11](777 MB)
+PASS -- TEST 'regional_debug_gnu' [08:43, 06:15](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:38, 01:56](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:56](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:56](1093 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 03:03](1095 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:56](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:33, 01:54](1091 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:09](725 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:16](720 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:13](1504 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:37, 01:57](1100 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:31, 02:10](1102 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:30, 03:15](1100 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [08:09, 05:14]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:25, 06:36]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:21](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:55, 03:47](956 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:45](994 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:37, 03:24](876 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:37, 03:49](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:49, 05:34](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 01:58](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:36, 02:29](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:07](1171 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](950 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:19, 14:15]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:28](989 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:15, 12:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](976 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:52](967 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:30](1279 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 05:33](970 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 03:16](1190 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:32, 05:22](1347 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:09, 13:01]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](1000 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:21, 17:12]
+
+PASS -- COMPILE 's2s_gnu' [17:21, 15:59]
+
+PASS -- COMPILE 's2swa_debug_gnu' [15:21, 13:27]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 18:00]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:21, 12:55]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [20:14, 15:20]
SYNOPSIS:
-Starting Date/Time: 20240317 15:38:17
-Ending Date/Time: 20240317 17:01:00
-Total Time: 01h:23m:19s
+Starting Date/Time: 20240319 07:58:04
+Ending Date/Time: 20240319 09:37:41
+Total Time: 01h:40m:07s
Compiles Completed: 55/55
Tests Completed: 238/238
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index b45e0da9cf..81587c04bd 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0939a1dff2a2060b541eca9642a19c5ed1541f17
+7908de2724b95cab917b6b6c3d059c66cb8bdaa7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2893158
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3728126
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:23, 37:48]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 06:51](1792 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:29, 52:51]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:30](1662 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:12, 22:01](1883 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:13](998 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 23:37](1630 MB)
-
-PASS -- COMPILE 's2swa_intel' [39:23, 38:15]
-PASS -- TEST 'cpld_control_p8_intel' [10:21, 07:28](1828 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:43, 07:36](1821 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:19](1711 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 07:34](1851 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:21](1730 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 07:09](2274 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:14, 07:42](1826 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:38, 06:24](1791 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:40, 07:28](1833 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 07:09](1786 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:22, 35:55]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:28, 05:43](1662 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:39, 05:43](1717 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:06]
-PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:25](1842 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:40]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:10](1681 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:18, 31:51]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:39](1709 MB)
-
-PASS -- COMPILE 's2s_intel' [33:18, 32:02]
-PASS -- TEST 'cpld_control_c48_intel' [15:09, 12:41](2798 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:43, 32:58]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:56, 07:02](1829 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [49:24, 48:06]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:49, 20:40](1682 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 10:19](1033 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:37, 23:50](1654 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:41]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 31:59](1690 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:20, 34:33]
-PASS -- TEST 'control_flake_intel' [06:27, 04:30](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:28, 03:18](599 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 03:44](605 MB)
-PASS -- TEST 'control_latlon_intel' [05:25, 03:21](604 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 03:29](600 MB)
-PASS -- TEST 'control_c48_intel' [11:34, 10:06](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:08](849 MB)
-PASS -- TEST 'control_c192_intel' [14:46, 12:28](730 MB)
-PASS -- TEST 'control_c384_intel' [18:39, 15:43](895 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:17, 13:23](1017 MB)
-PASS -- TEST 'control_stochy_intel' [04:27, 02:17](602 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](435 MB)
-PASS -- TEST 'control_lndp_intel' [04:27, 02:12](600 MB)
-PASS -- TEST 'control_iovr4_intel' [05:28, 03:23](600 MB)
-PASS -- TEST 'control_iovr5_intel' [05:30, 03:25](596 MB)
-PASS -- TEST 'control_p8_intel' [06:31, 04:02](1582 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 03:53](1575 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:37, 03:45](1578 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:03, 02:09](818 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:13, 03:48](1571 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:13, 02:05](844 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:07, 04:00](1565 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:07, 03:40](1669 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:49, 06:57](1570 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:35, 05:05](1631 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:23, 04:00](1575 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:47, 04:32](1586 MB)
-PASS -- TEST 'regional_control_intel' [09:43, 07:04](767 MB)
-PASS -- TEST 'regional_restart_intel' [05:49, 03:41](936 MB)
-PASS -- TEST 'regional_decomp_intel' [09:41, 07:21](762 MB)
-PASS -- TEST 'regional_2threads_intel' [06:40, 04:14](757 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 06:57](761 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:56](766 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:18, 32:17]
-PASS -- TEST 'rap_control_intel' [12:10, 10:05](993 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:19, 05:32](1217 MB)
-PASS -- TEST 'rap_decomp_intel' [13:10, 10:39](980 MB)
-PASS -- TEST 'rap_2threads_intel' [12:10, 09:35](1079 MB)
-PASS -- TEST 'rap_restart_intel' [08:26, 05:14](987 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:36, 10:04](999 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:09, 10:44](980 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:29](1002 MB)
-PASS -- TEST 'hrrr_control_intel' [08:02, 05:08](990 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:01, 05:16](978 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:33, 04:43](1060 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:29, 02:46](920 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:34, 09:52](983 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:35, 12:22](1944 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:35, 12:11](1938 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:20, 30:47]
-PASS -- TEST 'control_csawmg_intel' [09:42, 08:01](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:42, 07:52](695 MB)
-PASS -- TEST 'control_ras_intel' [06:21, 04:23](664 MB)
-
-PASS -- COMPILE 'wam_intel' [31:20, 29:34]
-PASS -- TEST 'control_wam_intel' [04:22, 02:45](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:18]
-PASS -- TEST 'control_p8_faster_intel' [06:44, 03:36](1581 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](764 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:22]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:18](756 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 03:19](756 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:42](769 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:20, 03:19](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:37, 05:14](808 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:09](809 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](771 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:34, 03:26](815 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:32](1587 MB)
-PASS -- TEST 'regional_debug_intel' [23:52, 21:35](775 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:24, 06:02](1152 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:24, 05:53](1151 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1155 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 06:01](1148 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:01](1156 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:20](1238 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:06](1154 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 06:06](1154 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:01](1143 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 05:59](1159 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:52](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:03](1151 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:48](1148 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:55](1144 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:32, 07:18](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:29, 05:59](1152 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:31, 10:21](1159 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:40]
-PASS -- TEST 'control_wam_debug_intel' [08:25, 06:07](441 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:36]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:13, 05:09](1079 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:02, 08:14](912 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:03, 04:21](871 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:22, 07:48](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:59](906 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:37](859 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 06:14](899 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:22](846 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:23, 42:17]
-PASS -- TEST 'conus13km_control_intel' [05:04, 02:53](1105 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:20](1048 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1027 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:19, 30:14]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:26](903 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:44]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:56](1025 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 05:53](1027 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:06, 18:30](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:06, 18:39](858 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:57, 10:40](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:01, 18:26](1207 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:44]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:33, 06:02](1070 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:18, 34:11]
-PASS -- TEST 'hafs_regional_atm_intel' [09:16, 07:01](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:23](1085 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:39, 09:15](771 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:23](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:12](830 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:24, 05:41](780 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:21, 31:24]
-PASS -- TEST 'hafs_regional_docn_intel' [11:29, 08:35](774 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:31, 08:34](750 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:36](1060 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1018 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:30](930 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:34](927 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:36](924 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:36](1047 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:20, 03:38](1060 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:31](919 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:11, 07:51](894 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:36](840 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:37](1065 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:00](2399 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 05:01](2402 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:15]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 08:00](1028 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:48]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:37](1047 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:31](227 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:17](250 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:48](252 MB)
-
-PASS -- COMPILE 'atml_intel' [35:20, 33:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 07:54](1596 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:38, 07:45](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:51, 03:56](874 MB)
-
-PASS -- COMPILE 'atmw_intel' [34:18, 32:26]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:14](1606 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:19, 31:37]
-PASS -- TEST 'control_atmwav_intel' [05:10, 02:12](613 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 30:18]
-PASS -- TEST 'atmaero_control_p8_intel' [08:34, 05:07](1698 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:14](1722 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:38](1743 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:25, 38:16]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:44, 06:50](1787 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:42, 48:32]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 20:52](1659 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:10, 22:23](1876 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:18](988 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 24:06](1634 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:25, 38:27]
+PASS -- TEST 'cpld_control_p8_intel' [10:33, 07:40](1828 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:56, 07:39](1834 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:45, 04:18](1716 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:33, 07:48](1849 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:23](1732 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:28, 07:20](2270 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:27, 07:51](1828 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 07:05](1782 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:56, 07:48](1833 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:14](1784 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:23, 35:37]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:22, 05:48](1664 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1708 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:17]
+PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:26](1855 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:42]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:12](1679 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:17]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:42](1715 MB)
+
+PASS -- COMPILE 's2s_intel' [34:25, 32:36]
+PASS -- TEST 'cpld_control_c48_intel' [15:29, 12:44](2793 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:57, 33:16]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 06:59](1833 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 45:34]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:41](1687 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:40, 10:18](1037 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 23:55](1656 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:09, 04:56]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 31:53](1695 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:30, 35:06]
+PASS -- TEST 'control_flake_intel' [06:27, 04:30](648 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:17](596 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:51](596 MB)
+PASS -- TEST 'control_latlon_intel' [05:27, 03:19](602 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:28](599 MB)
+PASS -- TEST 'control_c48_intel' [11:41, 10:07](841 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 10:05](837 MB)
+PASS -- TEST 'control_c192_intel' [14:53, 12:24](726 MB)
+PASS -- TEST 'control_c384_intel' [19:17, 15:36](897 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:52, 13:21](1020 MB)
+PASS -- TEST 'control_stochy_intel' [04:28, 02:14](601 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB)
+PASS -- TEST 'control_lndp_intel' [04:28, 02:08](605 MB)
+PASS -- TEST 'control_iovr4_intel' [05:31, 03:17](597 MB)
+PASS -- TEST 'control_iovr5_intel' [05:31, 03:18](595 MB)
+PASS -- TEST 'control_p8_intel' [06:29, 04:02](1571 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 04:01](1574 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1580 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:11, 02:06](818 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:34, 03:52](1559 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](833 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:34, 04:00](1558 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:34, 03:37](1664 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:16, 06:56](1572 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 05:12](1643 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:03](1590 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:07, 04:39](1592 MB)
+PASS -- TEST 'regional_control_intel' [10:04, 07:05](765 MB)
+PASS -- TEST 'regional_restart_intel' [05:43, 03:43](938 MB)
+PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](760 MB)
+PASS -- TEST 'regional_2threads_intel' [06:56, 04:19](748 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:49, 06:56](759 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:54](761 MB)
+
+PASS -- COMPILE 'rrfs_intel' [35:24, 33:31]
+PASS -- TEST 'rap_control_intel' [12:10, 10:01](990 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:29](1214 MB)
+PASS -- TEST 'rap_decomp_intel' [13:14, 10:26](991 MB)
+PASS -- TEST 'rap_2threads_intel' [12:06, 09:29](1077 MB)
+PASS -- TEST 'rap_restart_intel' [08:20, 05:16](989 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:28, 10:00](990 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 10:39](989 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:49](1001 MB)
+PASS -- TEST 'hrrr_control_intel' [07:51, 05:07](988 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:19](982 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 04:43](1055 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:45](917 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:36, 09:48](993 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:13](1951 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 11:59](1940 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:19, 30:58]
+PASS -- TEST 'control_csawmg_intel' [09:50, 07:59](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:47, 07:54](695 MB)
+PASS -- TEST 'control_ras_intel' [06:24, 04:20](665 MB)
+
+PASS -- COMPILE 'wam_intel' [31:17, 29:47]
+PASS -- TEST 'control_wam_intel' [04:21, 02:44](507 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:18, 31:13]
+PASS -- TEST 'control_p8_faster_intel' [06:38, 03:35](1581 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](769 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:59]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 03:19](764 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](765 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:42](768 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:24](765 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:21](812 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:14](812 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:25, 03:22](771 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:30, 03:26](818 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:30](1592 MB)
+PASS -- TEST 'regional_debug_intel' [23:54, 21:40](779 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:26, 05:57](1154 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:52](1142 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:58](1152 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 06:02](1152 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:01](1146 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:17](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:13](1153 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:10](1150 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1152 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:59](1152 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:55](1148 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:59](1149 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 10:00](1151 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:03](1152 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:16](1157 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:02](1150 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:53, 10:24](1161 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:44]
+PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](438 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:33]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1070 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](903 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:59, 04:23](867 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:24, 07:52](943 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:01](908 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 04:39](853 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:08, 06:12](899 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:21](847 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:25, 42:33]
+PASS -- TEST 'conus13km_control_intel' [05:09, 03:02](1109 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:22](1059 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:33](1018 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:24, 30:26]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](900 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:53]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:59](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:52](1029 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:03, 18:20](1146 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](857 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:38](1088 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:19](1207 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:47]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:04](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:20, 34:58]
+PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:54](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:16](1088 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:09](773 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:16](806 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:58](824 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:25, 05:33](775 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:20, 31:19]
+PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:27](768 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:30](753 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:31, 03:35](1059 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:13](1030 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:31, 03:25](926 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:32, 03:32](936 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:32, 03:34](923 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 03:37](1054 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:32, 03:32](1076 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:30, 03:29](928 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:49](898 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:44](847 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:34](1069 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:04](2396 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:04](2394 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:01](1028 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:49](1079 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:51]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:31](228 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:18](254 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:47](248 MB)
+
+PASS -- COMPILE 'atml_intel' [35:20, 33:46]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:48, 07:54](1612 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 07:50](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:01](865 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:18, 31:59]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:15](1597 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:19, 30:28]
+PASS -- TEST 'control_atmwav_intel' [05:16, 02:11](612 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:19, 30:16]
+PASS -- TEST 'atmaero_control_p8_intel' [08:30, 05:08](1693 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:16](1719 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:42](1732 MB)
SYNOPSIS:
-Starting Date/Time: 20240315 18:58:13
-Ending Date/Time: 20240315 22:27:49
-Total Time: 03h:30m:13s
+Starting Date/Time: 20240319 13:16:22
+Ending Date/Time: 20240319 16:46:11
+Total Time: 03h:30m:34s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 444af26a1f..e8b5873eab 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0939a1dff2a2060b541eca9642a19c5ed1541f17
+7908de2724b95cab917b6b6c3d059c66cb8bdaa7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,357 +48,279 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400865
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_210523
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:10, 14:57]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:50, 05:08](3183 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:10, 19:36]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:55, 16:21](1740 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:04, 18:04](2024 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:05, 08:13](1111 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:55, 18:30](1644 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:43]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:32](1697 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:10, 14:38]
-PASS -- TEST 'cpld_control_p8_intel' [14:50, 05:33](3211 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:04, 05:51](3210 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:00, 03:23](3252 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [16:04, 05:46](3241 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:56, 03:24](3276 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:50, 06:12](3555 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [14:50, 05:46](3196 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:48, 04:43](3071 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:49, 05:39](3210 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:07, 09:55](3346 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:10, 06:08](3617 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:57, 10:59](4129 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:46, 06:58](4359 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:51, 05:28](3169 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:10, 14:22]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [14:34, 04:29](1742 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:46, 04:26](1778 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:41]
-PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:40](3251 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:52]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:12, 06:03](1757 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:10, 12:11]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:32](1705 MB)
-
-PASS -- COMPILE 's2s_intel' [14:10, 12:10]
-PASS -- TEST 'cpld_control_c48_intel' [10:00, 08:01](2835 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:41]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 05:18](3152 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:08, 17:07]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:32](1774 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:58, 08:05](1176 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:34](1677 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:51](1721 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:08, 13:45]
-PASS -- TEST 'control_flake_intel' [09:23, 03:31](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [08:22, 02:25](657 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:28, 02:32](657 MB)
-PASS -- TEST 'control_latlon_intel' [08:20, 02:26](655 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:29, 02:31](654 MB)
-PASS -- TEST 'control_c48_intel' [11:28, 05:56](882 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:28, 05:58](873 MB)
-PASS -- TEST 'control_c192_intel' [15:41, 09:10](852 MB)
-PASS -- TEST 'control_c384_intel' [17:32, 10:09](1252 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:57, 09:05](1352 MB)
-PASS -- TEST 'control_stochy_intel' [06:23, 01:38](652 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:28, 00:58](507 MB)
-PASS -- TEST 'control_lndp_intel' [03:25, 01:41](654 MB)
-PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](656 MB)
-PASS -- TEST 'control_iovr5_intel' [05:22, 02:28](648 MB)
-PASS -- TEST 'control_p8_intel' [06:00, 03:02](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:19, 02:57](1627 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:49](1638 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:14, 01:37](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:20, 02:52](1616 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:12, 01:36](926 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:13, 02:58](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:12, 03:00](1716 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:11](1633 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:53](1651 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:32, 02:59](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:58, 03:25](1635 MB)
-PASS -- TEST 'regional_control_intel' [07:36, 05:12](856 MB)
-PASS -- TEST 'regional_restart_intel' [05:37, 02:43](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:35, 05:29](849 MB)
-PASS -- TEST 'regional_2threads_intel' [05:46, 03:38](849 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:37, 05:04](1361 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:42, 05:06](853 MB)
-PASS -- TEST 'regional_wofs_intel' [08:37, 06:35](1917 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:09, 12:06]
-PASS -- TEST 'rap_control_intel' [11:28, 07:49](1107 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:44](1299 MB)
-PASS -- TEST 'rap_decomp_intel' [12:03, 08:14](1030 MB)
-PASS -- TEST 'rap_2threads_intel' [11:18, 07:57](1179 MB)
-PASS -- TEST 'rap_restart_intel' [06:20, 04:00](1096 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:06, 07:41](1110 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:06, 08:07](1030 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:31, 05:54](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [07:06, 03:57](996 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:06](1019 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:53, 03:28](1109 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:12](998 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:17, 07:36](1098 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:10](1994 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:32, 08:58](2076 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:09, 12:40]
-PASS -- TEST 'control_csawmg_intel' [08:43, 06:03](742 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:42, 05:57](748 MB)
-PASS -- TEST 'control_ras_intel' [05:23, 03:21](745 MB)
-
-PASS -- COMPILE 'wam_intel' [12:06, 10:53]
-PASS -- TEST 'control_wam_intel' [04:20, 02:06](659 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:09]
-PASS -- TEST 'control_p8_faster_intel' [05:26, 02:39](1631 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:40, 04:38](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:26]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 02:45](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:24, 02:42](809 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](813 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:48](820 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:06](866 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:07](864 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:48](825 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:29, 02:52](870 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:41, 03:01](1635 MB)
-PASS -- TEST 'regional_debug_intel' [19:45, 17:41](842 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:25, 04:59](1203 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:49](1202 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 05:04](1146 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1204 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:52](1202 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:11](1288 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:05](1206 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 05:04](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:00](1203 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:53](1203 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:53](1198 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:57](1202 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 07:58](1203 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:54](1198 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:58](1206 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:30, 04:55](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:29](1204 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:22]
-PASS -- TEST 'control_wam_debug_intel' [10:19, 05:10](512 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:07, 10:47]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 04:27](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:11, 06:26](1043 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:24, 03:27](982 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1092 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:48, 03:01](964 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:47, 03:35](926 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:16, 04:48](1039 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:47, 01:53](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:08, 12:44]
-PASS -- TEST 'conus13km_control_intel' [05:06, 02:04](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:46, 01:02](1123 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [06:43, 01:18](1107 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:07, 10:50]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:14](994 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 05:11](1023 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:19, 05:07](1074 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:53, 14:14](1253 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:12](921 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:30](1153 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 14:37](1294 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:18]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:02](1116 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:07, 12:35]
-PASS -- TEST 'hafs_regional_atm_intel' [09:21, 06:19](750 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:26, 06:08](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:31, 06:57](832 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:40, 12:47](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:30](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:19, 06:06](504 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:37, 07:32](468 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [08:01, 03:11](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:35, 08:08](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:48, 04:07](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:53, 03:55](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 05:26](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:25, 01:31](400 MB)
-FAIL TO COMPARE -- TEST 'gnv1_nested_intel' [, ]( MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:03]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 13:18](574 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:10, 13:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:07, 09:44](770 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:04, 09:50](708 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:10, 15:05]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:59, 06:55](731 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:08, 12:00]
-PASS -- TEST 'hafs_regional_docn_intel' [11:10, 06:13](831 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:15, 06:19](763 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:00](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:08, 07:44]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:35](1133 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:40](1090 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:31](1020 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:33](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:38](1013 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:38](1127 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:40](1136 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:33](1017 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](1063 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1040 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:53](1097 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:34](2446 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:40](2489 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:26]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:22](1062 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 07:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1131 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:02]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:28, 00:52](252 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:48](321 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:35](322 MB)
-
-PASS -- COMPILE 'atml_intel' [16:07, 11:59]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 04:20](1615 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:32, 04:19](1611 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 02:23](896 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:08, 12:03]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:36, 01:46](1663 MB)
-
-PASS -- COMPILE 'atmwm_intel' [15:07, 11:58]
-PASS -- TEST 'control_atmwav_intel' [05:28, 01:40](675 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:06, 11:40]
-PASS -- TEST 'atmaero_control_p8_intel' [07:30, 04:08](2951 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:50](3100 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:06, 05:04](3107 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:08, 11:25]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:21]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:52, 20:37](4393 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:29]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:53, 05:14](3181 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:07, 20:46]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 17:06](1736 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:05, 17:17](2029 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:04, 08:06](1116 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:06, 18:21](1647 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:29]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:24](1692 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:07, 13:45]
+PASS -- TEST 'cpld_control_p8_intel' [08:29, 05:37](3218 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:48, 05:39](3214 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:19](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:29, 05:40](3230 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 03:24](3273 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 06:07](3558 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:29, 05:39](3209 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:41](3067 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:51, 05:39](3211 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:51, 10:08](3336 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:26, 06:21](3564 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 11:06](4112 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:52, 06:56](4367 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:24](3171 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 15:03]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:20, 04:29](1733 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:39, 04:24](1777 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:44]
+PASS -- TEST 'cpld_debug_p8_intel' [13:37, 08:43](3243 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:10]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 06:03](1757 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:07, 14:24]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:22](1782 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 14:03]
+PASS -- TEST 'cpld_control_c48_intel' [10:12, 08:00](2828 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:44]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 05:30](3217 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:40]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:26, 16:32](1705 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:27, 08:04](1174 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:16, 19:25](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:57]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:46](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:06, 12:03]
+PASS -- TEST 'control_flake_intel' [05:20, 03:33](647 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:29](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:35](660 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:32](652 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:33](648 MB)
+PASS -- TEST 'control_c48_intel' [07:33, 05:57](870 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:56](878 MB)
+PASS -- TEST 'control_c192_intel' [11:38, 09:07](851 MB)
+PASS -- TEST 'control_c384_intel' [13:46, 10:07](1251 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:59, 09:08](1362 MB)
+PASS -- TEST 'control_stochy_intel' [03:20, 01:41](655 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](500 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:42](652 MB)
+PASS -- TEST 'control_iovr4_intel' [04:26, 02:24](651 MB)
+PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](651 MB)
+PASS -- TEST 'control_p8_intel' [05:19, 02:58](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:19, 02:58](1631 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:50](1642 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:40, 01:42](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:53](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 01:37](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:11, 03:01](1612 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:06, 03:00](1720 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:51, 05:14](1628 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:37, 03:57](1692 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:38, 03:02](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:44, 03:26](1650 MB)
+PASS -- TEST 'regional_control_intel' [07:36, 05:08](857 MB)
+PASS -- TEST 'regional_restart_intel' [05:49, 02:42](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:29, 05:26](851 MB)
+PASS -- TEST 'regional_2threads_intel' [05:31, 03:43](844 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:33, 05:04](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:07](857 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 05:13](857 MB)
+PASS -- TEST 'regional_wofs_intel' [08:35, 06:40](1917 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:08, 10:40]
+PASS -- TEST 'rap_control_intel' [10:35, 07:44](1105 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:48](1296 MB)
+PASS -- TEST 'rap_decomp_intel' [11:23, 08:14](1030 MB)
+PASS -- TEST 'rap_2threads_intel' [10:36, 07:51](1182 MB)
+PASS -- TEST 'rap_restart_intel' [06:27, 04:03](1101 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:39, 07:46](1107 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:07](1034 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 05:48](1134 MB)
+PASS -- TEST 'hrrr_control_intel' [07:00, 04:07](1036 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 04:11](1019 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 03:30](1110 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:11](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:28, 07:43](1102 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:14](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:55](2080 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:09, 11:36]
+PASS -- TEST 'control_csawmg_intel' [07:50, 06:03](749 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:55, 06:03](750 MB)
+PASS -- TEST 'control_ras_intel' [05:25, 03:15](736 MB)
+
+PASS -- COMPILE 'wam_intel' [13:09, 11:08]
+PASS -- TEST 'control_wam_intel' [04:18, 02:04](657 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:47]
+PASS -- TEST 'control_p8_faster_intel' [05:34, 02:41](1621 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:48, 04:40](854 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:47]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:43](806 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:45](814 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](816 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](811 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:08](867 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:06](860 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:43](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](870 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:54, 02:51](1645 MB)
+PASS -- TEST 'regional_debug_intel' [19:47, 17:40](843 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:23, 04:57](1197 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:51](1200 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:52](1193 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:56](1202 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1202 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:15](1284 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:56](1199 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:51](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:56](1201 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:53](1204 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:53](1203 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:56](1204 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:05](1141 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:53](1198 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:59](1208 MB)
+PASS -- TEST 'rap_flake_debug_intel' [11:24, 04:52](1213 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:19](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:08, 03:43]
+PASS -- TEST 'control_wam_debug_intel' [11:18, 05:02](510 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 10:49]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:55, 04:25](1162 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:28, 06:25](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:42, 03:28](961 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:00, 06:41](1094 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:40, 02:57](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:13, 03:42](931 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:14, 04:48](1037 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:22, 01:54](939 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:36]
+PASS -- TEST 'conus13km_control_intel' [08:57, 02:05](1160 MB)
+PASS -- TEST 'conus13km_2threads_intel' [08:52, 01:00](1121 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [08:42, 01:15](1115 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 11:35]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:51, 04:20](990 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:22, 04:58](1088 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:21, 04:50](1078 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:01, 14:11](1231 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:44, 14:40](924 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [14:44, 08:23](1116 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:44, 14:34](1280 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:19]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:25, 04:54](1128 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:07, 12:41]
+PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:34](744 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:25, 05:59](1125 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:30, 06:58](826 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [22:15, 13:05](824 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 14:44](1020 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:56, 06:07](498 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:24, 07:20](513 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:07](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:21, 07:55](471 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:07](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:53, 03:55](524 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:54, 05:21](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:24, 01:22](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [11:50, 04:27](798 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:50, 12:53](572 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:06, 13:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:04, 09:32](677 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:33](704 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 13:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:07, 06:54](729 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:06, 12:09]
+PASS -- TEST 'hafs_regional_docn_intel' [15:14, 06:15](828 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:13, 06:19](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:02, 15:49](1207 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:35]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:16, 02:37](1151 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:15, 01:38](1080 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:14, 02:37](1016 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:36](1005 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:12, 02:38](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:15, 02:41](1129 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:13, 02:37](1127 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:18, 02:37](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:10, 06:06](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 05:50](1043 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:40](1133 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:36](2439 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 03:40](2491 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:58]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1055 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1136 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:00]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:49](254 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](326 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:33](321 MB)
+
+PASS -- COMPILE 'atml_intel' [15:07, 12:45]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:14](1593 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:27, 04:18](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:26](907 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:07, 12:03]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 01:45](1664 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:07, 11:17]
+PASS -- TEST 'control_atmwav_intel' [07:08, 01:41](666 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:07, 11:54]
+PASS -- TEST 'atmaero_control_p8_intel' [10:23, 04:08](3023 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:50](3090 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:07](3119 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:07, 10:47]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:49, 21:10](4574 MB)
SYNOPSIS:
-Starting Date/Time: 20240315 12:47:18
-Ending Date/Time: 20240315 14:22:44
-Total Time: 01h:36m:12s
+Starting Date/Time: 20240319 08:14:33
+Ending Date/Time: 20240319 09:52:54
+Total Time: 01h:39m:11s
Compiles Completed: 39/39
-Tests Completed: 181/182
-Failed Tests:
-* TEST gnv1_nested_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2181/tests/logs/log_orion/rt_gnv1_nested_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ORION REGRESSION TESTING LOG====
-====START OF ORION REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-0939a1dff2a2060b541eca9642a19c5ed1541f17
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5141-g2f15ae92)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_120510
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafsw_intel' [16:08, 14:05]
-PASS -- TEST 'gnv1_nested_intel' [06:42, 04:50](809 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240315 14:56:25
-Ending Date/Time: 20240315 15:36:40
-Total Time: 00h:40m:30s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 58db38592f..5346ff3eb9 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0939a1dff2a2060b541eca9642a19c5ed1541f17
+7908de2724b95cab917b6b6c3d059c66cb8bdaa7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 87e6d92e2ca48a55b66f8810f347b51c70c193c4 FV3/ccpp/framework (v0.1.0-1436-g87e6d92)
- 2f15ae92802cae11fd0efb902439a084609984f3 FV3/ccpp/physics (EP4-695-g2f15ae92)
+ 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
+ 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (EP4-737-g94596b38)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5e667b1ecd159f7c53336ff2791bbf219dca6891 FV3 (remotes/origin/feature/ccpp_framework_merge_feature_capgen_into_main_20240308)
+ 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
NOTES:
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_259455
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10549
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:03, 15:20]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:17, 01:28](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:57, 11:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [56:21, 02:13](1590 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:41, 02:06](1710 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [37:21, 01:22](846 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:22, 01:44](1564 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:22]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [03:58, 01:44](1609 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:53, 11:07]
-PASS -- TEST 'cpld_control_p8_intel' [57:26, 01:50](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [57:26, 02:21](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [48:24, 01:45](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [57:26, 01:50](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [48:24, 01:42](3081 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [57:26, 01:22](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [57:26, 01:43](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [57:27, 01:46](2925 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:26, 02:07](3003 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [57:35, 03:30](3955 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [39:00, 04:30](4255 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [57:26, 02:17](2967 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:13, 20:46]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [48:06, 00:48](1588 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [48:06, 01:58](1637 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [23:17, 22:22]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [46:01, 00:57](1634 MB)
-
-PASS -- COMPILE 's2s_intel' [10:51, 09:41]
-PASS -- TEST 'cpld_control_c48_intel' [58:28, 00:43](2652 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [32:40, 31:36]
-PASS -- TEST 'cpld_control_p8_faster_intel' [36:22, 01:57](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:03, 15:27]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:17, 01:26](1607 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:39, 01:33](900 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:04, 00:46](1580 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:21, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [03:59, 01:37](1612 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [22:07, 21:33]
-PASS -- TEST 'control_flake_intel' [41:50, 00:24](574 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [41:50, 00:48](523 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [41:50, 00:44](529 MB)
-PASS -- TEST 'control_latlon_intel' [41:50, 00:46](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:50, 00:51](523 MB)
-PASS -- TEST 'control_c48_intel' [41:49, 00:57](713 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [41:49, 00:58](714 MB)
-PASS -- TEST 'control_c192_intel' [41:50, 00:27](636 MB)
-PASS -- TEST 'control_c384_intel' [41:54, 01:59](957 MB)
-PASS -- TEST 'control_c384gdas_intel' [41:54, 02:34](1087 MB)
-PASS -- TEST 'control_stochy_intel' [41:50, 00:27](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [39:25, 00:58](333 MB)
-PASS -- TEST 'control_lndp_intel' [41:50, 00:31](528 MB)
-PASS -- TEST 'control_iovr4_intel' [41:50, 00:45](522 MB)
-PASS -- TEST 'control_iovr5_intel' [41:50, 00:44](523 MB)
-PASS -- TEST 'control_p8_intel' [41:50, 01:57](1500 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [41:50, 02:01](1502 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [41:50, 02:04](1507 MB)
-PASS -- TEST 'control_restart_p8_intel' [36:18, 01:22](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [41:31, 01:38](1504 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [36:16, 01:22](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [41:22, 01:32](1495 MB)
-PASS -- TEST 'control_2threads_p8_intel' [41:22, 01:13](1589 MB)
-PASS -- TEST 'control_p8_lndp_intel' [40:14, 01:19](1511 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:01](1568 MB)
-PASS -- TEST 'control_p8_mynn_intel' [39:26, 01:50](1517 MB)
-PASS -- TEST 'merra2_thompson_intel' [38:23, 01:42](1512 MB)
-PASS -- TEST 'regional_control_intel' [38:19, 00:25](608 MB)
-PASS -- TEST 'regional_restart_intel' [32:26, 00:25](777 MB)
-PASS -- TEST 'regional_decomp_intel' [38:19, 00:10](608 MB)
-PASS -- TEST 'regional_2threads_intel' [38:19, 01:15](665 MB)
-PASS -- TEST 'regional_noquilt_intel' [38:15, 00:33](1154 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [38:11, 00:33](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [38:08, 00:22](610 MB)
-PASS -- TEST 'regional_wofs_intel' [37:56, 01:05](1579 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:32, 32:40]
-PASS -- TEST 'rap_control_intel' [30:25, 01:20](919 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:26, 01:12](1095 MB)
-PASS -- TEST 'rap_decomp_intel' [30:25, 01:40](917 MB)
-PASS -- TEST 'rap_2threads_intel' [30:25, 01:58](1006 MB)
-PASS -- TEST 'rap_restart_intel' [21:45, 01:22](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [30:25, 01:21](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:25, 01:40](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [21:46, 01:50](787 MB)
-PASS -- TEST 'hrrr_control_intel' [30:25, 01:10](909 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [30:25, 01:07](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [30:26, 01:34](998 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [25:13, 01:05](739 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [30:25, 01:19](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [30:25, 01:09](1881 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:01, 00:29](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [18:52, 18:25]
-PASS -- TEST 'control_csawmg_intel' [37:43, 00:45](600 MB)
-PASS -- TEST 'control_csawmgt_intel' [36:59, 00:49](600 MB)
-PASS -- TEST 'control_ras_intel' [36:56, 01:00](560 MB)
-
-PASS -- COMPILE 'wam_intel' [16:47, 16:12]
-PASS -- TEST 'control_wam_intel' [36:16, 00:54](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:38, 12:14]
-PASS -- TEST 'control_p8_faster_intel' [43:44, 02:09](1505 MB)
-PASS -- TEST 'regional_control_faster_intel' [43:43, 00:29](611 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [25:07, 23:53]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:09, 01:21](689 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [28:09, 00:29](689 MB)
-PASS -- TEST 'control_stochy_debug_intel' [28:09, 01:01](693 MB)
-PASS -- TEST 'control_lndp_debug_intel' [28:09, 01:17](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [28:09, 00:42](730 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [28:09, 00:44](732 MB)
-PASS -- TEST 'control_ras_debug_intel' [27:26, 01:11](702 MB)
-PASS -- TEST 'control_diag_debug_intel' [27:15, 01:14](746 MB)
-PASS -- TEST 'control_debug_p8_intel' [27:08, 01:11](1521 MB)
-PASS -- TEST 'regional_debug_intel' [25:12, 00:09](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [25:13, 01:00](1077 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [25:09, 01:08](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [24:19, 01:03](1073 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [24:11, 01:01](1072 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:55, 01:00](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [23:29, 00:56](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:28, 00:53](1073 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:26, 00:53](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [22:55, 00:56](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:40, 01:00](1077 MB)
-PASS -- TEST 'rap_noah_debug_intel' [22:20, 01:08](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [22:10, 01:00](1077 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [22:10, 01:01](1075 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [21:58, 01:03](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [21:49, 01:13](1077 MB)
-PASS -- TEST 'rap_flake_debug_intel' [21:45, 00:59](1074 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [21:43, 01:20](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [18:53, 18:36]
-PASS -- TEST 'control_wam_debug_intel' [33:59, 00:58](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:12, 22:19]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:11, 01:23](950 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:10, 01:33](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:10, 01:38](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 02:02](855 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:11, 01:32](842 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:10, 01:30](786 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:25, 01:14](687 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:57, 00:21](666 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:52, 17:42]
-PASS -- TEST 'conus13km_control_intel' [21:14, 01:07](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [17:20, 00:58](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [17:19, 00:49](882 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:47, 14:44]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:09, 01:32](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:22, 04:31]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [36:16, 01:10](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [36:15, 00:16](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [35:41, 00:52](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [35:03, 00:31](708 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [34:00, 00:40](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:27, 00:44](1105 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [23:11, 22:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [17:26, 01:06](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [23:06, 22:31]
-PASS -- TEST 'hafs_regional_atm_intel' [16:33, 02:15](621 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 00:35](967 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:31, 01:45](665 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:31, 01:48](697 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 01:47](709 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:22, 01:06](389 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:19, 02:13](412 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [16:08, 01:25](279 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:50, 02:27](369 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:45, 01:27](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:35, 00:52](425 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:26, 00:56](487 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:20, 01:12](310 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:21, 04:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [31:21, 00:50](499 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [22:07, 21:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:23, 00:55](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:23, 00:47](711 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:48, 15:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:38, 01:04](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:41, 12:01]
-PASS -- TEST 'hafs_regional_docn_intel' [18:37, 01:19](661 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:37, 01:14](644 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 00:44](881 MB)
-
-PASS -- COMPILE 'atml_intel' [13:43, 13:05]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:42, 01:12](1551 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [16:42, 02:15](1547 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 00:21](748 MB)
-
-PASS -- COMPILE 'atmaero_intel' [18:55, 18:30]
-PASS -- TEST 'atmaero_control_p8_intel' [09:14, 01:42](2848 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:14, 01:04](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 01:46](2926 MB)
-
-PASS -- COMPILE 'atmaq_intel' [19:00, 17:59]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:26, 07:00]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:43, 01:40](4438 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:35, 11:04]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:51, 01:19](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [39:46, 38:52]
+PASS -- TEST 'cpld_control_gfsv17_intel' [13:39, 02:31](1586 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:55, 01:56](1708 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [54:55, 02:10](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:40, 02:17](1577 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:34, 10:22]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [41:53, 01:15](1604 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:55, 18:56]
+PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:29](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:34](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [24:57, 02:02](3059 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:26](3028 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [24:57, 01:55](3082 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 00:59](3317 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:32](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:24](2925 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:38](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 05:02](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 04:24](4254 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:50](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:32, 10:05]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [42:53, 00:59](1584 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:53, 01:08](1635 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [24:04, 23:22]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:21, 02:01](1634 MB)
+
+PASS -- COMPILE 's2s_intel' [27:10, 26:15]
+PASS -- TEST 'cpld_control_c48_intel' [26:00, 00:50](2657 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [28:13, 27:56]
+PASS -- TEST 'cpld_control_p8_faster_intel' [24:57, 01:47](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [11:35, 10:52]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 01:30](1602 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:01, 01:43](901 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:37, 01:04](1568 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 04:18]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:06, 01:08](1623 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:50, 18:04]
+PASS -- TEST 'control_flake_intel' [29:13, 00:25](570 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [29:13, 00:48](518 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:13, 00:43](531 MB)
+PASS -- TEST 'control_latlon_intel' [29:13, 00:40](525 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:13, 00:49](521 MB)
+PASS -- TEST 'control_c48_intel' [29:12, 00:57](716 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [29:12, 00:57](714 MB)
+PASS -- TEST 'control_c192_intel' [29:13, 00:35](639 MB)
+PASS -- TEST 'control_c384_intel' [29:17, 01:53](954 MB)
+PASS -- TEST 'control_c384gdas_intel' [29:17, 02:36](1093 MB)
+PASS -- TEST 'control_stochy_intel' [29:13, 00:24](535 MB)
+PASS -- TEST 'control_stochy_restart_intel' [26:45, 01:01](332 MB)
+PASS -- TEST 'control_lndp_intel' [29:13, 00:26](527 MB)
+PASS -- TEST 'control_iovr4_intel' [29:13, 00:43](524 MB)
+PASS -- TEST 'control_iovr5_intel' [29:13, 00:39](524 MB)
+PASS -- TEST 'control_p8_intel' [29:13, 01:57](1501 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [29:13, 01:58](1499 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [29:13, 01:59](1510 MB)
+PASS -- TEST 'control_restart_p8_intel' [23:37, 00:54](689 MB)
+PASS -- TEST 'control_noqr_p8_intel' [26:45, 01:29](1488 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [21:33, 00:58](695 MB)
+PASS -- TEST 'control_decomp_p8_intel' [26:01, 01:35](1497 MB)
+PASS -- TEST 'control_2threads_p8_intel' [25:43, 00:52](1593 MB)
+PASS -- TEST 'control_p8_lndp_intel' [25:41, 01:20](1510 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [25:40, 01:06](1566 MB)
+PASS -- TEST 'control_p8_mynn_intel' [25:40, 01:53](1513 MB)
+PASS -- TEST 'merra2_thompson_intel' [25:36, 01:36](1510 MB)
+PASS -- TEST 'regional_control_intel' [25:32, 00:20](609 MB)
+PASS -- TEST 'regional_restart_intel' [19:37, 00:29](776 MB)
+PASS -- TEST 'regional_decomp_intel' [24:54, 01:04](606 MB)
+PASS -- TEST 'regional_2threads_intel' [24:45, 01:02](666 MB)
+PASS -- TEST 'regional_noquilt_intel' [24:44, 00:33](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [24:38, 00:28](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [24:11, 00:15](610 MB)
+PASS -- TEST 'regional_wofs_intel' [23:33, 01:01](1584 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:42, 12:32]
+PASS -- TEST 'rap_control_intel' [22:24, 01:22](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:24, 01:16](1092 MB)
+PASS -- TEST 'rap_decomp_intel' [21:36, 02:08](917 MB)
+PASS -- TEST 'rap_2threads_intel' [21:33, 01:34](1010 MB)
+PASS -- TEST 'rap_restart_intel' [13:41, 01:19](785 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [20:52, 01:17](913 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:51, 01:59](912 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [12:18, 01:58](788 MB)
+PASS -- TEST 'hrrr_control_intel' [20:16, 01:16](913 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [20:11, 01:09](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [20:06, 01:24](987 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [15:00, 01:08](741 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [19:52, 01:22](914 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [19:48, 01:09](1876 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:07, 00:28](1860 MB)
+
+PASS -- COMPILE 'csawmg_intel' [23:01, 22:26]
+PASS -- TEST 'control_csawmg_intel' [18:49, 00:32](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [18:43, 00:40](599 MB)
+PASS -- TEST 'control_ras_intel' [18:39, 00:49](561 MB)
+
+PASS -- COMPILE 'wam_intel' [22:02, 21:34]
+PASS -- TEST 'control_wam_intel' [18:18, 00:57](273 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [30:26, 29:18]
+PASS -- TEST 'control_p8_faster_intel' [11:25, 02:03](1510 MB)
+PASS -- TEST 'regional_control_faster_intel' [11:19, 00:29](611 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [21:02, 20:46]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:49, 01:18](687 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:27, 01:25](690 MB)
+PASS -- TEST 'control_stochy_debug_intel' [12:23, 00:54](694 MB)
+PASS -- TEST 'control_lndp_debug_intel' [11:56, 01:12](695 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [11:31, 00:43](736 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [11:20, 00:47](735 MB)
+PASS -- TEST 'control_ras_debug_intel' [10:55, 01:10](700 MB)
+PASS -- TEST 'control_diag_debug_intel' [10:52, 01:15](746 MB)
+PASS -- TEST 'control_debug_p8_intel' [10:15, 01:07](1519 MB)
+PASS -- TEST 'regional_debug_intel' [10:01, 01:08](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:14, 01:01](1079 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:14, 01:04](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 00:59](1073 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:02, 01:01](1074 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 00:58](1074 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:09, 00:55](1163 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 00:53](1072 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 00:50](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:37, 00:55](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 01:06](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:56, 01:08](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:55, 01:04](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:46, 00:49](1071 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 01:10](1066 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 01:14](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:55, 01:03](1073 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:39, 01:35](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:43, 13:23]
+PASS -- TEST 'control_wam_debug_intel' [15:37, 00:59](301 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 14:08]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:31, 01:20](955 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:30, 01:18](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:30, 01:43](785 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:30, 01:50](856 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:31, 02:01](843 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:30, 01:35](788 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:45](687 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:31, 00:15](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:58, 20:25]
+PASS -- TEST 'conus13km_control_intel' [05:30, 01:05](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:54](1006 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 00:42](879 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:56, 16:17]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 01:30](809 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:22, 03:57]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:16, 01:17](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:02, 00:17](952 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:02, 00:43](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:57, 00:35](713 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [17:40, 00:48](1038 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:35, 00:34](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:27, 07:01]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:22, 01:07](979 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:48, 13:37]
+PASS -- TEST 'hafs_regional_atm_intel' [03:40, 02:08](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:19, 01:20](968 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:05, 02:01](662 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [02:37, 01:37](690 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [02:38, 01:27](707 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:37, 01:16](388 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:28, 02:12](408 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [01:50, 01:19](289 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:38, 02:20](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 01:35](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [01:20, 00:50](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [01:14, 01:54](491 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:05, 01:08](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:33, 09:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:46, 01:05](502 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:21, 00:52](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:21, 00:49](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:42, 12:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:16, 00:59](712 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:42, 14:18]
+PASS -- TEST 'hafs_regional_docn_intel' [58:57, 01:14](660 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [58:57, 02:11](649 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [58:55, 00:38](880 MB)
+
+PASS -- COMPILE 'atml_intel' [21:59, 21:38]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:24, 02:29](1539 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [51:24, 02:34](1553 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:16, 01:16](744 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:46, 13:35]
+PASS -- TEST 'atmaero_control_p8_intel' [57:41, 01:37](2849 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [57:41, 01:02](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [57:41, 01:51](2926 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:48, 14:48]
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:39, 10:56]
+PASS -- TEST 'regional_atmaq_debug_intel' [57:42, 01:13](4434 MB)
SYNOPSIS:
-Starting Date/Time: 20240315 18:50:23
-Ending Date/Time: 20240315 20:07:29
-Total Time: 01h:17m:44s
+Starting Date/Time: 20240319 13:06:16
+Ending Date/Time: 20240319 14:29:03
+Total Time: 01h:23m:32s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/test_changes.list b/tests/test_changes.list
index d8008eff46..e69de29bb2 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,14 +0,0 @@
-conus13km_control intel
-conus13km_2threads intel
-conus13km_restart_mismatch intel
-conus13km_debug intel
-conus13km_debug_qr intel
-conus13km_debug_2threads intel
-conus13km_radar_tten_debug intel
-conus13km_control gnu
-conus13km_2threads gnu
-conus13km_restart_mismatch gnu
-conus13km_debug gnu
-conus13km_debug_qr gnu
-conus13km_debug_2threads gnu
-conus13km_radar_tten_debug gnu
From 7fdb58cad0dad2f62ce7813c6719554d1c5a17af Mon Sep 17 00:00:00 2001
From: RatkoVasic-NOAA <37597874+RatkoVasic-NOAA@users.noreply.github.com>
Date: Fri, 22 Mar 2024 09:09:38 -0400
Subject: [PATCH 13/33] Fix modulefiles for Hera/Rocky8 OS. (#2194)
- update module paths in Hera intel/gnu lua files for Rocky8 OS spack-stack libraries.
---
modulefiles/ufs_hera.gnu.lua | 4 +-
modulefiles/ufs_hera.intel.lua | 2 +-
tests/logs/RegressionTests_derecho.log | 526 ++++++++--------
tests/logs/RegressionTests_gaea.log | 540 ++++++++--------
tests/logs/RegressionTests_hera.log | 732 +++++++++++-----------
tests/logs/RegressionTests_hercules.log | 797 +++++++++++++-----------
tests/logs/RegressionTests_orion.log | 620 ++++++++++--------
tests/rt.conf | 6 +-
8 files changed, 1690 insertions(+), 1537 deletions(-)
diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua
index a3913978fd..a67f41b678 100644
--- a/modulefiles/ufs_hera.gnu.lua
+++ b/modulefiles/ufs_hera.gnu.lua
@@ -2,9 +2,7 @@ help([[
loads UFS Model prerequisites for Hera/GNU
]])
-prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
--- for openmpi, need
-prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles")
+prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core")
stack_gnu_ver=os.getenv("stack_gnu_ver") or "9.2.0"
load(pathJoin("stack-gcc", stack_gnu_ver))
diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua
index bad1fb0792..67a610c306 100644
--- a/modulefiles/ufs_hera.intel.lua
+++ b/modulefiles/ufs_hera.intel.lua
@@ -2,7 +2,7 @@ help([[
loads UFS Model prerequisites for Hera/Intel
]])
-prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
+prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env-rocky8/install/modulefiles/Core")
stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0"
load(pathJoin("stack-intel", stack_intel_ver))
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index c133ec4b92..4c5dda01e8 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-879e6870478881f0145029af307915a5d57b674d
+55da2dd260008d4a1196c77c941d5b3300bcae45
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_116949
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_81433
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:27, 19:47]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:48, 04:57](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:32, 21:05]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:31, 13:49](1683 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:43, 15:04](1820 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:27, 07:10](954 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 15:53](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:22, 09:30]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 21:47](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:28, 19:24]
-PASS -- TEST 'cpld_control_p8_intel' [12:04, 05:37](3092 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 05:33](3088 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:16](3146 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:04, 05:34](3126 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:28, 03:18](3177 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:04, 05:29](3088 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:10, 04:34](3383 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:24, 05:36](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [19:22, 08:47](3635 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:13, 06:01](3609 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [43:16, 09:43](4342 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [29:37, 06:57](4649 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:47, 05:14](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:27, 18:46]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:12](1680 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:00, 04:18](1725 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:23, 09:33]
-PASS -- TEST 'cpld_debug_p8_intel' [11:31, 07:52](3152 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:23, 08:49]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:15](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:28, 14:30]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:04, 04:14](1725 MB)
-
-PASS -- COMPILE 's2s_intel' [15:28, 14:19]
-PASS -- TEST 'cpld_control_c48_intel' [09:16, 06:35](2669 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:31, 22:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:33, 05:26](3097 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:34, 19:29]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:44, 14:01](1698 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 07:17](1015 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:08, 15:56](1672 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:25, 08:55]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:29, 22:39](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:29]
-PASS -- TEST 'control_flake_intel' [05:38, 03:25](670 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:04](617 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 02:08](623 MB)
-PASS -- TEST 'control_latlon_intel' [04:38, 02:04](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:42, 02:10](623 MB)
-PASS -- TEST 'control_c48_intel' [07:15, 05:15](735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:18, 05:14](733 MB)
-PASS -- TEST 'control_c192_intel' [11:08, 07:51](737 MB)
-PASS -- TEST 'control_c384_intel' [16:00, 08:07](1059 MB)
-PASS -- TEST 'control_c384gdas_intel' [24:00, 07:11](1206 MB)
-PASS -- TEST 'control_stochy_intel' [03:39, 01:29](624 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:03, 00:54](440 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:20](624 MB)
-PASS -- TEST 'control_iovr4_intel' [04:16, 02:06](621 MB)
-PASS -- TEST 'control_iovr5_intel' [04:18, 02:03](621 MB)
-PASS -- TEST 'control_p8_intel' [06:11, 02:27](1591 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:14, 02:27](1595 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:12, 02:26](1604 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:57, 01:25](798 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:08, 02:27](1593 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:44, 01:23](802 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:59, 02:32](1584 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:15, 04:20](1591 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 03:17](1650 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:36, 02:29](1607 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:20, 03:00](1603 MB)
-PASS -- TEST 'regional_control_intel' [06:54, 04:30](629 MB)
-PASS -- TEST 'regional_restart_intel' [05:29, 02:31](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:40, 04:40](628 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:31, 04:23](1156 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 04:25](628 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 04:27](628 MB)
-PASS -- TEST 'regional_wofs_intel' [07:40, 05:36](1600 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:38, 11:25]
-PASS -- TEST 'rap_control_intel' [09:01, 06:08](1003 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:42, 03:48](1194 MB)
-PASS -- TEST 'rap_decomp_intel' [10:11, 06:23](1001 MB)
-PASS -- TEST 'rap_restart_intel' [05:48, 03:10](878 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:09, 06:03](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 06:21](1001 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:02, 04:37](879 MB)
-PASS -- TEST 'hrrr_control_intel' [05:54, 03:12](997 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 03:17](997 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:54, 02:47](1090 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:07, 01:44](830 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:00, 05:56](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:20](1956 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:09](1947 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:36, 10:21]
-PASS -- TEST 'control_csawmg_intel' [07:44, 05:50](696 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:37, 05:45](689 MB)
-PASS -- TEST 'control_ras_intel' [05:00, 02:51](655 MB)
-
-PASS -- COMPILE 'wam_intel' [10:30, 09:35]
-PASS -- TEST 'control_wam_intel' [03:30, 01:53](385 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:32, 12:42]
-PASS -- TEST 'control_p8_faster_intel' [05:44, 02:22](1593 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:31, 04:13](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:40, 08:38]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:37](792 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:37](790 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:05, 02:54](793 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:34](794 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:01](840 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:50, 03:52](839 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:02, 02:36](807 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:15, 02:42](855 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:21, 02:39](1627 MB)
-PASS -- TEST 'regional_debug_intel' [19:19, 16:06](665 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:08, 04:41](1177 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:37](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:38](1181 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:41](1180 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:13, 04:47](1178 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:34, 04:51](1260 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:43](1179 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:47](1181 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:14, 04:41](1186 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:05, 04:38](1179 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:08, 04:41](1176 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:05, 04:39](1180 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:08, 07:30](1178 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:07, 04:34](1172 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:26](1183 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:01, 04:39](1182 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 07:51](1181 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:28, 05:29]
-PASS -- TEST 'control_wam_debug_intel' [05:43, 04:43](425 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 09:50]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 03:30](1060 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 05:06](882 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:00, 02:47](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 02:54](878 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:15, 03:52](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:00, 01:37](778 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 11:48]
-PASS -- TEST 'conus13km_control_intel' [05:52, 01:52](1080 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:30, 00:54](1079 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:36, 01:08](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:30, 09:46]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:38](906 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:22, 05:47]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:58, 04:39](1057 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:51, 04:25](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:53, 13:36](1133 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 13:33](815 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 13:26](1200 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:28, 05:27]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:59, 04:42](1079 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:30, 15:57]
-PASS -- TEST 'hafs_regional_atm_intel' [07:36, 04:31](713 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:56, 05:06](1066 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:12, 06:27](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:44, 10:57](791 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:32, 12:06](817 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:07, 04:37](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:06, 05:44](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:29, 02:20](386 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 06:13](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:27, 03:17](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:03](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:44, 03:49](581 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:46, 01:16](425 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:32, 03:21](782 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:24, 07:06]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:47, 12:28](611 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:31, 19:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:59, 07:07](637 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:24, 07:11](746 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:59, 05:21](674 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:26, 14:16]
-PASS -- TEST 'hafs_regional_docn_intel' [08:08, 05:40](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:21, 05:33](736 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:15](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:22, 07:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:54, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:59, 01:32](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:42, 02:21](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:44, 02:22](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:22](643 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:42, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:13, 05:39](689 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:20, 05:38](672 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:28, 02:32](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:53](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 03:56](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 05:00]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:50, 05:08](744 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:15, 07:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:50, 02:28](747 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:24]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:52, 01:08](311 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:46, 01:05](450 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:44](450 MB)
-
-PASS -- COMPILE 'atml_intel' [13:23, 12:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:53, 06:53](1635 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:37, 06:28](1628 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:57](847 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:24, 12:40]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:33](1628 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:18, 12:19]
-PASS -- TEST 'control_atmwav_intel' [03:04, 01:33](635 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:18, 11:11]
-PASS -- TEST 'atmaero_control_p8_intel' [05:51, 03:38](2944 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:15](3001 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 04:28](3007 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:18, 10:46]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:17]
-PASS -- TEST 'regional_atmaq_debug_intel' [28:06, 21:58](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [57:25, 19:34]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 04:54](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:20, 20:29]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 13:51](1689 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:31, 15:05](1817 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:19, 07:09](1369 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:24, 15:52](1652 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:26, 09:22]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:53, 21:45](1695 MB)
+
+PASS -- COMPILE 's2swa_intel' [47:16, 19:38]
+PASS -- TEST 'cpld_control_p8_intel' [12:06, 05:36](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 05:37](3094 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:44, 03:16](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 05:36](3119 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [16:30, 03:18](3180 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 05:35](3087 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:37](3384 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 05:38](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:40, 08:46](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:49, 05:44](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:08, 09:37](4344 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:35, 06:48](4647 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:17, 05:16](3064 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:06, 18:55]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:51, 04:13](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:10, 04:13](1725 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [45:22, 09:28]
+PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:44](3149 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [39:21, 08:48]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 05:17](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [54:27, 14:23]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:57, 04:15](1724 MB)
+
+PASS -- COMPILE 's2s_intel' [51:27, 14:13]
+PASS -- TEST 'cpld_control_c48_intel' [10:19, 06:34](2668 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [03:31, 22:51]
+PASS -- TEST 'cpld_control_p8_faster_intel' [19:43, 05:27](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [38:29, 19:38]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:59, 14:00](1698 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:24, 07:11](1014 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:01, 15:57](1665 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:20, 08:53]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:53, 22:44](1704 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:23]
+PASS -- TEST 'control_flake_intel' [06:06, 03:23](1391 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:01, 02:03](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:10](625 MB)
+PASS -- TEST 'control_latlon_intel' [05:00, 02:07](618 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:09, 02:10](621 MB)
+PASS -- TEST 'control_c48_intel' [49:09, 05:14](740 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [51:22, 05:13](736 MB)
+PASS -- TEST 'control_c192_intel' [15:51, 07:53](738 MB)
+PASS -- TEST 'control_c384_intel' [12:29, 08:09](1055 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:13, 07:12](1198 MB)
+PASS -- TEST 'control_stochy_intel' [06:06, 01:28](625 MB)
+PASS -- TEST 'control_stochy_restart_intel' [12:50, 00:51](435 MB)
+PASS -- TEST 'control_lndp_intel' [04:00, 01:25](1369 MB)
+PASS -- TEST 'control_iovr4_intel' [05:05, 02:06](618 MB)
+PASS -- TEST 'control_iovr5_intel' [05:04, 02:07](622 MB)
+PASS -- TEST 'control_p8_intel' [15:06, 02:32](1601 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:12, 02:27](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [16:14, 02:27](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:40, 01:26](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [15:06, 02:27](1589 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 01:21](804 MB)
+PASS -- TEST 'control_decomp_p8_intel' [16:31, 02:32](1593 MB)
+PASS -- TEST 'control_p8_lndp_intel' [19:32, 04:21](1594 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [17:49, 03:18](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [16:13, 02:33](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [16:10, 03:00](1599 MB)
+PASS -- TEST 'regional_control_intel' [08:33, 04:28](632 MB)
+PASS -- TEST 'regional_restart_intel' [10:07, 02:29](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [39:36, 04:23](1163 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 04:26](627 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [13:09, 04:27](629 MB)
+PASS -- TEST 'regional_wofs_intel' [13:07, 05:37](1601 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:22, 11:02]
+PASS -- TEST 'rap_control_intel' [14:28, 06:05](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:41, 03:45](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [14:21, 06:20](1006 MB)
+PASS -- TEST 'rap_restart_intel' [15:28, 03:14](877 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:06, 06:04](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 06:21](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [16:35, 04:34](1369 MB)
+PASS -- TEST 'hrrr_control_intel' [10:23, 03:12](997 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [11:23, 03:16](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [35:27, 02:47](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [12:40, 01:44](833 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:11, 05:58](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 07:22](1955 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 07:11](1946 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:29, 10:19]
+PASS -- TEST 'control_csawmg_intel' [13:11, 05:49](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [16:08, 05:47](693 MB)
+PASS -- TEST 'control_ras_intel' [13:37, 02:53](653 MB)
+
+PASS -- COMPILE 'wam_intel' [13:27, 09:43]
+PASS -- TEST 'control_wam_intel' [12:32, 01:53](380 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [15:22, 12:47]
+PASS -- TEST 'control_p8_faster_intel' [11:34, 02:22](1601 MB)
+PASS -- TEST 'regional_control_faster_intel' [13:04, 04:13](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:33]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:39, 02:36](789 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:43, 02:33](796 MB)
+PASS -- TEST 'control_stochy_debug_intel' [14:44, 02:56](797 MB)
+PASS -- TEST 'control_lndp_debug_intel' [13:43, 02:33](796 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [16:11, 03:58](836 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [17:16, 03:54](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [15:47, 02:38](805 MB)
+PASS -- TEST 'control_diag_debug_intel' [12:58, 02:39](852 MB)
+PASS -- TEST 'control_debug_p8_intel' [14:15, 02:44](1624 MB)
+PASS -- TEST 'regional_debug_intel' [23:18, 16:04](675 MB)
+PASS -- TEST 'rap_control_debug_intel' [14:50, 04:43](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [12:48, 04:42](1173 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [12:41, 04:47](1178 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [13:44, 04:40](1179 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:38, 04:37](1179 MB)
+PASS -- TEST 'rap_diag_debug_intel' [15:01, 04:55](1266 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:39, 04:44](1180 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:44, 04:45](1179 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [13:41, 04:44](1182 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:39, 04:40](1178 MB)
+PASS -- TEST 'rap_noah_debug_intel' [11:41, 04:37](1178 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [13:38, 04:47](1173 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:37, 07:37](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [12:35, 04:40](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [11:42, 05:36](1181 MB)
+PASS -- TEST 'rap_flake_debug_intel' [12:36, 04:40](1181 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:27, 07:56](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:25, 05:25]
+PASS -- TEST 'control_wam_debug_intel' [11:29, 04:36](417 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 09:28]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:38, 03:27](1059 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 05:07](880 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 02:48](879 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:53](880 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 03:54](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 01:33](775 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:25, 11:55]
+PASS -- TEST 'conus13km_control_intel' [04:24, 01:53](1081 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:58](1082 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:20, 01:08](973 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:40, 09:36]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:16, 03:39](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [54:37, 06:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:33](1054 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:38, 04:29](1053 MB)
+PASS -- TEST 'conus13km_debug_intel' [22:32, 13:29](1135 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [22:32, 13:59](816 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:26, 13:28](1201 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:40, 05:51]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:48, 04:43](1081 MB)
+
+PASS -- COMPILE 'hafsw_intel' [01:33, 16:19]
+PASS -- TEST 'hafs_regional_atm_intel' [08:43, 04:31](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:07, 05:07](1070 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:57, 06:22](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [22:47, 10:57](792 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:04, 12:07](935 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:27, 04:37](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:45, 05:44](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:11, 02:19](389 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 06:14](460 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:22, 03:18](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:38, 03:02](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:20, 03:47](584 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:41, 01:14](424 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:10, 03:27](788 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [53:41, 07:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:20, 11:58](611 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [05:41, 20:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](630 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:11](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [01:44, 17:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:35, 05:22](1073 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [57:36, 14:33]
+PASS -- TEST 'hafs_regional_docn_intel' [08:24, 05:32](748 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 05:32](735 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:32, 16:12](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [47:41, 07:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:38, 01:31](736 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:22](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:50, 02:24](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:39, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:44, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [23:56, 02:28](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [19:47, 02:21](645 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:58, 05:37](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:58, 05:40](671 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:48, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:53, 03:52](1955 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [09:44, 03:52](2016 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [39:25, 05:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:43, 05:08](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [34:28, 07:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:27](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [29:28, 02:32]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:44, 01:11](300 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:42, 01:06](455 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:36, 00:42](449 MB)
+
+PASS -- COMPILE 'atml_intel' [37:29, 12:46]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:09, 06:45](1638 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [32:11, 06:32](1630 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:16, 03:27](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [36:27, 12:30]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [27:46, 01:33](1634 MB)
+
+PASS -- COMPILE 'atmwm_intel' [36:28, 12:52]
+PASS -- TEST 'control_atmwav_intel' [27:18, 01:29](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [34:34, 11:03]
+PASS -- TEST 'atmaero_control_p8_intel' [31:05, 03:36](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [31:58, 04:15](3001 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:32, 04:34](3015 MB)
+
+PASS -- COMPILE 'atmaq_intel' [29:26, 11:12]
+
+PASS -- COMPILE 'atmaq_debug_intel' [24:30, 06:44]
+PASS -- TEST 'regional_atmaq_debug_intel' [47:35, 21:47](4529 MB)
SYNOPSIS:
-Starting Date/Time: 20240319 06:58:51
-Ending Date/Time: 20240319 08:34:27
-Total Time: 01h:36m:28s
+Starting Date/Time: 20240321 10:52:46
+Ending Date/Time: 20240321 14:12:13
+Total Time: 03h:20m:40s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index f9d95844de..1df33ad512 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-889b350550238abd90bed430ef48afac6ecf1d84
+55da2dd260008d4a1196c77c941d5b3300bcae45
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/FV3_RT/rt_206641
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_211500
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:02, 07:26](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 22:25]
-PASS -- TEST 'cpld_control_gfsv17_intel' [28:16, 13:56](1691 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:59, 14:54](1814 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:49, 07:27](951 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 15:06](1673 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:13, 12:43]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:00, 24:49](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:24, 12:09]
-PASS -- TEST 'cpld_control_p8_intel' [15:14, 09:28](3100 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:25, 09:23](3101 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [15:46, 05:40](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:22, 09:01](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [15:05, 06:15](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 07:26](3416 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:57, 09:02](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:48](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:25](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [20:05, 11:18](3272 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [19:13, 07:47](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [27:53, 13:19](4040 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:30, 09:37](4336 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:59, 08:02](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:14, 17:44]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [23:08, 05:11](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:18, 05:32](1728 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [14:13, 12:06]
-PASS -- TEST 'cpld_debug_p8_intel' [24:56, 10:12](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:13, 12:20]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:46, 05:58](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:10, 16:16]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [24:12, 05:37](1730 MB)
-
-PASS -- COMPILE 's2s_intel' [16:09, 14:41]
-PASS -- TEST 'cpld_control_c48_intel' [11:21, 06:56](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:24, 12:09]
-PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 09:00](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:13, 22:04]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:14, 15:27](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:56](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 17:25](1683 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 13:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:45, 26:16](1708 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:09, 14:53]
-PASS -- TEST 'control_flake_intel' [15:52, 04:13](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [11:20, 02:51](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:21, 03:20](627 MB)
-PASS -- TEST 'control_latlon_intel' [14:04, 03:09](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:52, 03:07](623 MB)
-PASS -- TEST 'control_c48_intel' [13:22, 05:40](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [17:26, 05:41](728 MB)
-PASS -- TEST 'control_c192_intel' [25:30, 09:50](738 MB)
-PASS -- TEST 'control_c384_intel' [34:02, 17:19](1041 MB)
-PASS -- TEST 'control_c384gdas_intel' [35:38, 14:14](1184 MB)
-PASS -- TEST 'control_stochy_intel' [15:55, 01:59](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [14:41, 01:26](430 MB)
-PASS -- TEST 'control_lndp_intel' [14:04, 02:00](628 MB)
-PASS -- TEST 'control_iovr4_intel' [14:09, 03:07](622 MB)
-PASS -- TEST 'control_iovr5_intel' [17:09, 03:57](623 MB)
-PASS -- TEST 'control_p8_intel' [24:15, 03:46](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [25:40, 03:51](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [23:26, 03:18](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [14:29, 02:19](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [24:14, 03:22](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [14:30, 02:19](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [24:13, 03:24](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [20:17, 03:20](1684 MB)
-PASS -- TEST 'control_p8_lndp_intel' [25:03, 05:18](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [16:25, 04:45](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [15:23, 03:51](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [15:28, 04:15](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:48, 05:23](615 MB)
-PASS -- TEST 'regional_restart_intel' [05:46, 02:44](789 MB)
-PASS -- TEST 'regional_decomp_intel' [07:46, 05:37](615 MB)
-PASS -- TEST 'regional_2threads_intel' [11:54, 03:10](766 MB)
-PASS -- TEST 'regional_noquilt_intel' [13:33, 04:45](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:26, 04:38](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [14:16, 05:00](615 MB)
-PASS -- TEST 'regional_wofs_intel' [13:52, 06:06](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:13, 12:31]
-PASS -- TEST 'rap_control_intel' [21:29, 07:17](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:08, 04:03](1186 MB)
-PASS -- TEST 'rap_decomp_intel' [22:15, 07:30](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [21:23, 06:22](1093 MB)
-PASS -- TEST 'rap_restart_intel' [06:00, 03:53](881 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [22:11, 07:06](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:10, 07:38](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 05:20](880 MB)
-PASS -- TEST 'hrrr_control_intel' [16:23, 04:12](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [16:14, 04:18](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [14:14, 03:11](1084 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:28](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [18:12, 07:09](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [20:51, 08:49](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:45, 08:25](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [16:09, 14:14]
-PASS -- TEST 'control_csawmg_intel' [16:44, 07:05](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [16:45, 07:00](692 MB)
-PASS -- TEST 'control_ras_intel' [13:35, 03:46](657 MB)
-
-PASS -- COMPILE 'wam_intel' [15:09, 13:28]
-PASS -- TEST 'control_wam_intel' [10:35, 02:30](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:45]
-PASS -- TEST 'control_p8_faster_intel' [12:18, 03:33](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:47, 04:49](615 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:08, 10:55]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:39, 03:01](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:38, 03:03](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:36, 03:16](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:14](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:44, 04:42](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:49, 04:23](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:27, 03:04](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:33, 03:08](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:42, 03:22](1619 MB)
-PASS -- TEST 'regional_debug_intel' [19:54, 16:36](634 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:38, 05:20](1167 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:37, 05:07](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 04:59](1167 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:43, 04:59](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:40, 05:12](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:42, 05:17](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:40, 05:10](1167 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 05:04](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [09:37, 05:26](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:39, 05:00](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:30, 04:49](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:00](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:32, 07:59](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:43, 04:56](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:20](1169 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:31, 05:22](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:17, 08:49](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:08, 07:36]
-PASS -- TEST 'control_wam_debug_intel' [06:28, 05:00](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:09, 11:11]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:11, 04:08](1052 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:05, 06:11](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:29](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 05:14](949 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:16, 02:48](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:49](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:10, 04:30](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:49, 02:28](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 13:37]
-PASS -- TEST 'conus13km_control_intel' [12:11, 02:55](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [12:52, 01:35](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [13:49, 01:55](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 12:55]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:15, 05:29](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:08, 07:27]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:34, 05:33](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:32, 05:22](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [25:01, 14:32](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [24:59, 14:41](805 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:47, 08:29](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 14:25](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:09, 09:51]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:40, 05:25](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:10, 17:30]
-PASS -- TEST 'hafs_regional_atm_intel' [14:37, 05:21](705 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:43, 04:40](1055 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:46, 07:42](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [23:29, 11:52](789 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:17, 13:36](801 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:26, 06:18](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [18:12, 06:49](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [12:36, 03:05](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:17, 08:15](435 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:07, 03:58](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:36, 03:33](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [17:22, 04:50](567 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:47, 01:51](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [17:34, 04:20](764 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:10, 12:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:18, 12:51](585 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [22:12, 20:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:19, 07:54](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:28, 08:04](786 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:09, 16:25]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:40, 06:21](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:11, 15:37]
-PASS -- TEST 'hafs_regional_docn_intel' [16:28, 06:41](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:30, 06:27](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:29, 20:22](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:19, 10:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [12:41, 02:56](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:39, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:34, 02:56](635 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:30, 02:27](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:37, 02:28](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:31, 02:36](745 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:24, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:30, 02:26](638 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:06, 06:19](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:07](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:53, 04:40](2012 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:53, 04:34](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:14]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:49, 05:28](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:08, 11:11]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:36, 02:33](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:06, 03:19]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:13, 02:19](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:07, 01:09](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:09, 01:20](456 MB)
-
-PASS -- COMPILE 'atml_intel' [16:10, 14:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:54, 09:07](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:54, 09:26](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 05:10](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:13, 13:33]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:18, 02:27](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [15:14, 13:26]
-PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:09, 13:08]
-PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:15](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:34, 07:09](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:15, 07:09](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [14:12, 12:29]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:10, 09:52]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:17, 18:37](4481 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [00:58, 59:35]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:17, 08:25](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:44, 23:26]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 13:41](1700 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:48](1813 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 06:51](952 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:53, 14:54](1666 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:46, 14:59]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [30:49, 24:34](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [24:44, 23:38]
+PASS -- TEST 'cpld_control_p8_intel' [14:06, 08:30](3099 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:17, 08:44](3099 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [10:35, 05:59](3158 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:05, 08:21](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:35, 05:30](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:56, 07:08](3415 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:54, 08:21](3100 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:56, 07:14](3023 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:17, 08:40](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 10:35](3270 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:41, 08:47](3599 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 13:18](4037 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:24, 09:23](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:04, 08:29](3069 MB)
+
+PASS -- COMPILE 's2sw_intel' [58:53, 57:22]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:07, 05:34](1683 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:04, 05:26](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [16:46, 14:51]
+PASS -- TEST 'cpld_debug_p8_intel' [15:20, 10:54](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [18:46, 16:42]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 06:16](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:46, 17:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:41, 05:43](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [20:43, 19:31]
+PASS -- TEST 'cpld_control_c48_intel' [09:39, 06:57](2661 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [36:47, 35:23]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:53, 08:41](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:25]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:35, 14:58](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:15, 07:42](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 17:08](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:09, 14:33]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:11, 26:39](1708 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:59]
+PASS -- TEST 'control_flake_intel' [05:57, 03:51](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:10, 02:23](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:44](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:50, 02:42](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:39](623 MB)
+PASS -- TEST 'control_c48_intel' [08:55, 05:39](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:45, 05:39](721 MB)
+PASS -- TEST 'control_c192_intel' [12:00, 09:08](739 MB)
+PASS -- TEST 'control_c384_intel' [19:49, 16:32](1041 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:37, 14:17](1188 MB)
+PASS -- TEST 'control_stochy_intel' [03:39, 01:55](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:37, 02:01](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:39, 01:52](628 MB)
+PASS -- TEST 'control_iovr4_intel' [05:01, 02:40](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:52, 02:35](623 MB)
+PASS -- TEST 'control_p8_intel' [07:06, 03:31](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:30, 04:09](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 03:57](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:50, 02:18](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:18, 04:38](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:00](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [08:12, 04:24](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:00, 03:31](1689 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:55, 06:03](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:18, 04:20](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:33, 03:34](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:15, 04:15](1615 MB)
+PASS -- TEST 'regional_control_intel' [08:01, 04:46](615 MB)
+PASS -- TEST 'regional_restart_intel' [06:49, 02:57](789 MB)
+PASS -- TEST 'regional_decomp_intel' [09:37, 05:13](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:48, 02:51](755 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:44, 04:56](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 04:44](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 04:51](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:56, 06:03](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:11, 15:41]
+PASS -- TEST 'rap_control_intel' [11:21, 06:56](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:56](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [11:55, 07:11](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:42, 05:53](1099 MB)
+PASS -- TEST 'rap_restart_intel' [07:35, 03:39](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:22, 06:55](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:56, 07:14](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:09, 05:18](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:41, 03:50](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:41, 04:00](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:41, 03:02](1080 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:00](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:21, 06:41](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 08:08](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:56](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [19:14, 17:38]
+PASS -- TEST 'control_csawmg_intel' [09:29, 06:58](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:14, 06:45](691 MB)
+PASS -- TEST 'control_ras_intel' [06:02, 03:49](658 MB)
+
+PASS -- COMPILE 'wam_intel' [15:13, 14:02]
+PASS -- TEST 'control_wam_intel' [05:03, 02:12](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:12]
+PASS -- TEST 'control_p8_faster_intel' [06:58, 03:48](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:13, 04:32](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:38]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:07, 03:09](777 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:57, 03:25](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:35, 04:02](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:49](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:31, 04:24](824 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:12](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:49, 02:57](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:00, 03:02](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:35, 03:24](1618 MB)
+PASS -- TEST 'regional_debug_intel' [19:20, 16:01](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:03, 05:09](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:02, 05:02](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:04](1167 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:40, 05:05](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:57, 05:00](1169 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:30, 05:16](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:36, 05:10](1165 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:10](1166 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:43, 05:05](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:01, 05:13](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:08, 04:57](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:06](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:40, 07:55](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:18](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:46, 05:04](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:32](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:12, 08:44]
+PASS -- TEST 'control_wam_debug_intel' [06:42, 05:08](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 14:48]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:17, 04:01](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:24, 05:59](889 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:13, 03:54](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:12, 05:26](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:05](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 03:19](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:10](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:08](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:14, 15:44]
+PASS -- TEST 'conus13km_control_intel' [06:22, 03:17](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:04](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:57](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 13:26]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:41](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:10, 11:29]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:03, 05:08](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:54, 05:09](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:40, 13:54](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:38, 14:19](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 08:33](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:19, 13:51](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 10:08]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:04](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [24:15, 22:19]
+PASS -- TEST 'hafs_regional_atm_intel' [08:51, 05:19](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:30](1059 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:03, 07:42](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:55, 11:42](783 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:50](794 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:18, 05:16](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:43, 06:50](499 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:19, 03:13](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 08:23](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 03:41](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:43](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 04:59](566 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:57, 01:59](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:52, 04:13](764 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:15, 13:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 12:56](581 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [26:19, 24:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:31, 07:48](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:39, 07:56](785 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:51]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:09](785 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:10, 18:12]
+PASS -- TEST 'hafs_regional_docn_intel' [09:33, 06:09](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 06:34](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:12](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [20:12, 18:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:41](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:36](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:31](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:37](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:30](635 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:40](745 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:39, 06:14](690 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:09](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:38](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 04:39](2011 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:37](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:08, 09:59]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:30](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [17:09, 15:12]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:46](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [12:12, 10:44]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:17, 04:13](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:56, 02:40](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:58, 02:01](456 MB)
+
+PASS -- COMPILE 'atml_intel' [18:10, 16:41]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:37, 10:04](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:56, 09:17](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:58, 04:01](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:14, 15:44]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:07, 02:58](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [18:09, 16:40]
+PASS -- TEST 'control_atmwav_intel' [05:19, 02:31](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:10, 15:00]
+PASS -- TEST 'atmaero_control_p8_intel' [10:12, 07:05](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:02, 07:43](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:48, 07:44](3018 MB)
+
+PASS -- COMPILE 'atmaq_intel' [37:18, 35:47]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:56]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 21:00](4449 MB)
SYNOPSIS:
-Starting Date/Time: 20240319 11:05:14
-Ending Date/Time: 20240319 13:19:30
-Total Time: 02h:15m:11s
+Starting Date/Time: 20240321 12:44:25
+Ending Date/Time: 20240321 14:36:49
+Total Time: 01h:53m:27s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 1205225b76..3665612fc2 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,21 +1,21 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ba1d11b83d417702ff3cb008a21c042067675a27
+55da2dd260008d4a1196c77c941d5b3300bcae45
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g758491e)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5ef24e6280fb6fc7df685ba5f48917e83d46d177 FV3 (heads/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -25,375 +25,373 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_217014
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2266279
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:02]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:06, 05:21](3159 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:08, 16:17]
-PASS -- TEST 'cpld_control_gfsv17_intel' [25:18, 16:10](1729 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:23, 16:51](2011 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:11, 07:42](1074 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:17, 18:18](1615 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:26]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 22:24](1672 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:07, 12:09]
-PASS -- TEST 'cpld_control_p8_intel' [10:22, 05:38](3186 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:30, 05:44](3163 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:37, 03:23](3256 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 05:47](3218 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:37, 03:29](3270 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:15, 05:38](3526 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:22, 05:40](3170 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:15, 04:41](3010 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:20, 05:45](3165 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [23:32, 09:49](3317 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:53, 06:07](3587 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:07](4141 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 06:46](4344 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:23, 05:26](3165 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:07, 11:36]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:41](1693 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:31](1764 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:28]
-PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:10](3249 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:07]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:45](1707 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:07, 10:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1771 MB)
-
-PASS -- COMPILE 's2s_intel' [13:07, 10:30]
-PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:21](2830 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:08, 16:17]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:28, 05:17](3195 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:11]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:12, 16:28](1763 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 07:39](1146 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 18:40](1639 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:53]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 24:09](1693 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:07, 10:33]
-PASS -- TEST 'control_flake_intel' [11:31, 03:16](698 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [11:33, 02:22](643 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:35, 02:32](628 MB)
-PASS -- TEST 'control_latlon_intel' [11:28, 02:24](642 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:35, 02:29](648 MB)
-PASS -- TEST 'control_c48_intel' [09:28, 06:17](873 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:28, 06:16](872 MB)
-PASS -- TEST 'control_c192_intel' [17:50, 09:09](844 MB)
-PASS -- TEST 'control_c384_intel' [18:49, 09:22](1283 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:32, 08:21](1386 MB)
-PASS -- TEST 'control_stochy_intel' [10:20, 01:41](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:58](471 MB)
-PASS -- TEST 'control_lndp_intel' [10:17, 01:33](619 MB)
-PASS -- TEST 'control_iovr4_intel' [11:20, 02:29](621 MB)
-PASS -- TEST 'control_iovr5_intel' [10:20, 02:26](646 MB)
-PASS -- TEST 'control_p8_intel' [12:04, 02:57](1613 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [10:03, 02:59](1611 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:01, 02:59](1581 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:54, 01:46](887 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:02, 02:55](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:44](913 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:58, 03:02](1612 MB)
-PASS -- TEST 'control_2threads_p8_intel' [08:53, 02:50](1705 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:47, 05:23](1608 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 03:54](1672 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:05, 03:07](1624 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:03, 03:32](1613 MB)
-PASS -- TEST 'regional_control_intel' [07:41, 05:12](847 MB)
-PASS -- TEST 'regional_restart_intel' [09:45, 02:46](1017 MB)
-PASS -- TEST 'regional_decomp_intel' [07:40, 05:29](847 MB)
-PASS -- TEST 'regional_2threads_intel' [05:43, 03:19](814 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:40, 05:13](1361 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:41, 05:24](845 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:35, 05:25](815 MB)
-PASS -- TEST 'regional_wofs_intel' [08:40, 06:39](1914 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:09, 09:55]
-PASS -- TEST 'rap_control_intel' [11:45, 07:53](1105 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:03, 04:25](1294 MB)
-PASS -- TEST 'rap_decomp_intel' [11:39, 08:22](1026 MB)
-PASS -- TEST 'rap_2threads_intel' [10:34, 07:37](1137 MB)
-PASS -- TEST 'rap_restart_intel' [06:43, 04:02](1063 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:55](1093 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:44, 08:17](1027 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:45](1124 MB)
-PASS -- TEST 'hrrr_control_intel' [06:33, 04:07](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:33, 04:15](1041 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:53](1116 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:28, 02:10](997 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:51, 07:48](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1962 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:03](2058 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:06, 09:37]
-PASS -- TEST 'control_csawmg_intel' [08:46, 06:12](708 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:43, 06:06](745 MB)
-PASS -- TEST 'control_ras_intel' [05:19, 03:25](746 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:06, 03:37]
-PASS -- TEST 'control_csawmg_gnu' [15:41, 08:52](590 MB)
-PASS -- TEST 'control_csawmgt_gnu' [15:42, 08:41](588 MB)
-
-PASS -- COMPILE 'wam_intel' [11:06, 09:04]
-PASS -- TEST 'control_wam_intel' [09:21, 02:03](647 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:06, 09:52]
-PASS -- TEST 'control_p8_faster_intel' [09:59, 02:40](1614 MB)
-PASS -- TEST 'regional_control_faster_intel' [11:42, 04:40](849 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:23]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:26, 02:36](805 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:27, 02:39](785 MB)
-PASS -- TEST 'control_stochy_debug_intel' [09:21, 03:06](812 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:22, 02:44](785 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:37, 04:05](859 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [08:38, 03:59](856 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:20, 02:40](819 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:29, 02:44](867 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:45, 02:46](1636 MB)
-PASS -- TEST 'regional_debug_intel' [18:46, 16:49](832 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:24, 04:42](1189 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:23, 04:36](1195 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:42](1201 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:46](1189 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 04:45](1206 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:59](1290 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 04:53](1178 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 04:48](1196 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:25, 04:49](1188 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 04:52](1165 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:41](1178 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 04:46](1197 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 07:43](1197 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:39](1157 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:00](1174 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:48](1203 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:37, 08:08](1206 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:06, 02:30]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:34, 02:09](570 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:35, 02:05](571 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:06, 03:15]
-PASS -- TEST 'control_wam_debug_intel' [06:18, 04:45](509 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:08, 09:25]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 03:55](1151 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:38, 06:21](1044 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:20](963 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:34, 06:02](1083 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:08](966 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:32](934 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:36, 04:46](1021 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:52](937 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:09, 11:24]
-PASS -- TEST 'conus13km_control_intel' [04:55, 02:03](1194 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:53](1088 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:13](1102 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 09:23]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:11](985 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:07, 03:10]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:47](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:37](1075 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:50, 13:50](1218 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:00](903 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 07:40](1145 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 13:53](1270 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:07, 03:12]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:50](1110 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:08, 11:10]
-PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:52](732 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:06](1105 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:59](828 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:17](854 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:29, 14:44](853 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:06, 05:22](498 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 06:33](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 02:48](367 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:11, 07:03](482 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:34](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:56, 03:24](518 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](583 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:15](399 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:55, 04:04](800 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [11:08, 03:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 12:27](557 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:08, 11:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:54, 08:29](633 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:00, 08:33](704 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 11:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:23](686 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:07, 11:02]
-PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:14](825 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:12, 06:16](810 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:58](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:11]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 02:37](1119 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:17, 01:43](1067 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:35](1001 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:36](1017 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:37](998 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:40](1120 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:41](1110 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](995 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:11](1050 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:57](1022 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:45](1113 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:53](2490 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:16, 04:13](2432 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:09]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:15, 06:06](1048 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:14]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:14, 02:42](1121 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:08, 01:08]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:29, 00:43](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:50](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:23, 00:30](320 MB)
-
-PASS -- COMPILE 'atml_intel' [13:07, 11:17]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:08, 04:13](1587 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:02, 04:17](1581 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 02:29](872 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:07, 10:12]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:51, 01:44](1635 MB)
-
-PASS -- COMPILE 'atmwm_intel' [17:08, 09:53]
-PASS -- TEST 'control_atmwav_intel' [04:31, 01:38](666 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:07, 09:46]
-PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:52](3015 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:47](3069 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 04:58](3106 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:07, 09:43]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:07, 03:18]
-PASS -- TEST 'regional_atmaq_debug_intel' [27:01, 20:44](4366 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:08, 03:28]
-PASS -- TEST 'control_c48_gnu' [13:25, 11:36](787 MB)
-PASS -- TEST 'control_stochy_gnu' [07:19, 04:05](553 MB)
-PASS -- TEST 'control_ras_gnu' [07:19, 05:04](551 MB)
-PASS -- TEST 'control_p8_gnu' [09:59, 04:54](1302 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [10:56, 04:37](1304 MB)
-PASS -- TEST 'control_flake_gnu' [10:21, 05:57](593 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:07, 03:33]
-PASS -- TEST 'rap_control_gnu' [16:41, 11:27](894 MB)
-PASS -- TEST 'rap_decomp_gnu' [16:36, 11:41](892 MB)
-PASS -- TEST 'rap_2threads_gnu' [17:31, 10:30](976 MB)
-PASS -- TEST 'rap_restart_gnu' [25:53, 06:07](622 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [18:41, 11:34](895 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [18:35, 11:41](902 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [20:49, 08:43](627 MB)
-PASS -- TEST 'hrrr_control_gnu' [12:33, 06:00](890 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [12:32, 05:57](876 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [11:37, 05:15](967 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [12:34, 05:57](890 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [24:30, 03:14](609 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [24:26, 03:11](702 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [18:40, 11:24](889 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:25]
-PASS -- TEST 'control_diag_debug_gnu' [08:29, 01:36](590 MB)
-PASS -- TEST 'regional_debug_gnu' [14:44, 07:34](595 MB)
-PASS -- TEST 'rap_control_debug_gnu' [09:23, 02:33](909 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [08:19, 02:26](907 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [08:19, 02:29](905 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [08:18, 02:36](903 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [08:32, 02:44](987 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:22, 03:54](901 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:20, 02:32](902 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:20, 02:34](902 MB)
-PASS -- TEST 'control_ras_debug_gnu' [05:17, 01:32](542 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [06:20, 02:16](536 MB)
-PASS -- TEST 'control_debug_p8_gnu' [04:38, 01:39](1287 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [05:21, 02:34](903 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:48](915 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:36, 04:09](914 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:07, 01:45]
-PASS -- TEST 'control_wam_debug_gnu' [26:22, 02:32](241 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:08, 03:28]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [36:34, 11:51](744 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [30:30, 06:04](744 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [34:49, 10:55](797 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [28:36, 05:22](802 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [28:31, 06:00](743 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [12:19, 09:10](586 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:22, 03:21](578 MB)
-PASS -- TEST 'conus13km_control_gnu' [27:01, 04:15](896 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [07:45, 01:58](928 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [05:42, 02:20](594 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:07]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [29:48, 06:59](779 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:24]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [25:24, 02:32](757 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [25:21, 02:31](752 MB)
-PASS -- TEST 'conus13km_debug_gnu' [29:55, 07:04](913 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [14:45, 07:09](629 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [11:43, 04:21](948 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [28:47, 07:11](979 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:05, 03:25]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [24:25, 02:40](784 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:06, 14:03]
-PASS -- TEST 'cpld_control_p8_gnu' [32:20, 11:01](1508 MB)
-
-PASS -- COMPILE 's2s_gnu' [16:08, 14:02]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [28:14, 06:39](1400 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:21]
-PASS -- TEST 'cpld_debug_p8_gnu' [28:09, 06:17](1523 MB)
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 13:43]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [43:07, 22:13](1373 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:18]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [32:00, 13:05](1388 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:07, 13:35]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [17:15, 03:07](702 MB)
+* (-l) - USE CONFIG FILE: rt.conf
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:53]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:24, 05:32](3159 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:44, 15:44]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:47, 17:02](1725 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 17:45](2001 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:53, 08:00](1091 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1616 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:28, 22:46](1625 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:52, 12:52]
+PASS -- TEST 'cpld_control_p8_intel' [06:42, 05:49](3190 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:46, 05:51](3193 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:27](3235 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:47](3209 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:28](3259 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:20, 05:36](3528 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:37, 05:50](3199 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:46](3049 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:42, 05:49](3202 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:52, 10:14](3319 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 06:11](3602 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:45](4142 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 06:07](4338 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:28](3156 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:04, 12:03]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:38, 04:52](1715 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:25](1777 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:18, 04:18]
+PASS -- TEST 'cpld_debug_p8_intel' [09:46, 08:54](3177 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [03:58, 03:58]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:31, 05:43](1724 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:14, 11:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:17, 04:24](1759 MB)
+
+PASS -- COMPILE 's2s_intel' [11:18, 11:18]
+PASS -- TEST 'cpld_control_c48_intel' [09:59, 09:26](2798 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:35, 16:34]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:24, 05:27](3200 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [14:59, 14:59]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 17:15](1759 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:18, 08:15](1141 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:40](1670 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:03, 04:03]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1678 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:10, 11:10]
+PASS -- TEST 'control_flake_intel' [03:39, 03:24](682 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:42, 02:27](636 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:48, 02:31](643 MB)
+PASS -- TEST 'control_latlon_intel' [02:39, 02:28](633 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:28](633 MB)
+PASS -- TEST 'control_c48_intel' [06:40, 06:26](852 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:34, 06:22](853 MB)
+PASS -- TEST 'control_c192_intel' [09:39, 09:13](833 MB)
+PASS -- TEST 'control_c384_intel' [10:17, 09:09](1276 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1383 MB)
+PASS -- TEST 'control_stochy_intel' [01:49, 01:36](643 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:15, 01:00](486 MB)
+PASS -- TEST 'control_lndp_intel' [01:44, 01:33](640 MB)
+PASS -- TEST 'control_iovr4_intel' [02:37, 02:25](635 MB)
+PASS -- TEST 'control_iovr5_intel' [02:40, 02:27](638 MB)
+PASS -- TEST 'control_p8_intel' [03:49, 03:04](1607 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 03:02](1610 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:41, 02:57](1623 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:18, 01:42](875 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:39, 03:02](1607 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:37](921 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:42, 03:05](1598 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:30, 02:56](1698 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:57, 05:22](1611 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1677 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:41, 03:02](1617 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:09, 03:30](1593 MB)
+PASS -- TEST 'regional_control_intel' [05:35, 05:10](829 MB)
+PASS -- TEST 'regional_restart_intel' [03:11, 02:46](1007 MB)
+PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](827 MB)
+PASS -- TEST 'regional_2threads_intel' [03:43, 03:15](836 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:35, 05:10](1342 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:08](834 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:10](830 MB)
+PASS -- TEST 'regional_wofs_intel' [07:16, 06:46](1890 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:34, 10:33]
+PASS -- TEST 'rap_control_intel' [08:06, 07:41](1084 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:11](1278 MB)
+PASS -- TEST 'rap_decomp_intel' [08:32, 08:07](1022 MB)
+PASS -- TEST 'rap_2threads_intel' [07:42, 07:16](1158 MB)
+PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1088 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:16, 07:45](1083 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:09](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:51](1092 MB)
+PASS -- TEST 'hrrr_control_intel' [04:20, 03:58](1023 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:10](1015 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:10, 03:42](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:28, 02:10](990 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:12, 07:40](1087 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:16](1981 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:56](2054 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:11, 10:11]
+PASS -- TEST 'control_csawmg_intel' [06:28, 06:00](733 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:25, 05:54](738 MB)
+PASS -- TEST 'control_ras_intel' [03:22, 03:13](727 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33]
+PASS -- TEST 'control_csawmg_gnu' [08:45, 08:19](533 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:39, 08:15](533 MB)
+
+PASS -- COMPILE 'wam_intel' [09:56, 09:55]
+PASS -- TEST 'control_wam_intel' [02:12, 02:03](634 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:35, 10:34]
+PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1619 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:10, 04:42](832 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:27, 04:26]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:01, 02:44](776 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:57, 02:40](773 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:06](781 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:47](760 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:30, 05:02](837 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:31, 04:06](831 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:00, 02:50](791 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:08, 02:48](838 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1598 MB)
+PASS -- TEST 'regional_debug_intel' [17:39, 17:10](804 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:14, 05:02](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:58, 04:47](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:11, 04:59](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:11, 05:00](1162 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:10, 04:58](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:12](1246 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 05:04](1173 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:06](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:13](1171 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:55](1180 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:00, 04:47](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:07, 04:55](1175 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:53](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1169 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:07, 05:52](1161 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:54](1171 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1170 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:37]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](506 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:38, 02:10](509 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:50, 03:49]
+PASS -- TEST 'control_wam_debug_intel' [05:13, 04:59](486 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:01, 10:00]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 03:54](1147 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:22](1033 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:52, 03:24](971 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 06:08](1079 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 03:10](956 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:06, 03:38](916 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:22, 04:49](1025 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:17, 01:51](925 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:23, 12:22]
+PASS -- TEST 'conus13km_control_intel' [03:02, 02:08](1193 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:54](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1090 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 10:25]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](967 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:39, 03:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:55](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:03, 04:50](1026 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:11, 14:30](1214 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 14:44](904 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:51, 08:15](1124 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 15:03](1210 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:24, 03:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 04:55](1093 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:41, 11:40]
+PASS -- TEST 'hafs_regional_atm_intel' [05:57, 04:58](731 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:55](1100 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:07, 06:51](823 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:38, 13:34](841 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:14](870 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:23, 05:30](487 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:54, 06:39](506 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:14, 02:41](362 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:00, 07:19](483 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:43](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:31](504 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:04](562 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:13](408 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:34, 04:02](785 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:11, 04:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:20, 12:34](543 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:51, 11:51]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:33, 08:46](614 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:43, 08:47](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:33, 11:33]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:15, 06:26](683 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:19, 11:18]
+PASS -- TEST 'hafs_regional_docn_intel' [07:36, 06:30](817 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:43, 06:33](800 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:10](1206 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [05:59, 05:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:40](1142 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:46, 01:37](1094 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:33](1010 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:49, 02:37](1014 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:41](1009 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:41](1132 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:50, 02:43](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:43, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1053 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:32, 06:31](1034 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:47, 02:41](1155 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:01, 03:52](2433 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2430 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:06]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1067 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:15, 06:14]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:42](1134 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:22, 01:20]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:11, 00:52](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:46](317 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:32](325 MB)
+
+PASS -- COMPILE 'atml_intel' [11:43, 11:42]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:19](1589 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:17](1587 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:47, 02:14](884 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:56, 10:56]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:21, 01:43](1655 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:39, 10:39]
+PASS -- TEST 'control_atmwav_intel' [02:04, 01:40](652 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:44, 10:44]
+PASS -- TEST 'atmaero_control_p8_intel' [04:48, 04:04](2995 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:44, 04:58](3071 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:35, 06:04](3090 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:14, 10:13]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:36]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:41, 20:57](4449 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:44, 03:43]
+PASS -- TEST 'control_c48_gnu' [10:58, 10:46](751 MB)
+PASS -- TEST 'control_stochy_gnu' [03:35, 03:24](494 MB)
+PASS -- TEST 'control_ras_gnu' [04:49, 04:38](503 MB)
+PASS -- TEST 'control_p8_gnu' [05:20, 04:36](1254 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:14, 04:32](1252 MB)
+PASS -- TEST 'control_flake_gnu' [10:41, 10:30](536 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:43, 03:42]
+PASS -- TEST 'rap_control_gnu' [11:13, 10:52](842 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:16, 10:54](843 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:10, 09:44](923 MB)
+PASS -- TEST 'rap_restart_gnu' [05:58, 05:30](573 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:56, 10:33](842 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:28, 11:03](843 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:25, 07:58](576 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:51, 05:34](843 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:51, 05:33](832 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:02](914 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:56, 05:35](843 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](558 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:09, 02:47](649 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:43, 10:16](838 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37]
+PASS -- TEST 'control_diag_debug_gnu' [01:59, 01:38](527 MB)
+PASS -- TEST 'regional_debug_gnu' [11:58, 11:30](541 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:51, 02:37](844 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:40, 02:31](847 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:42, 02:33](853 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:51, 02:40](852 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:19, 02:51](929 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:02](846 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:46, 02:35](847 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:35](840 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:32](483 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:40](479 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:40](1233 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:47, 02:35](846 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:04, 02:53](850 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:36, 04:14](853 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:47, 01:47]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:37, 03:36]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:41, 09:16](697 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:55](703 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:03, 08:38](745 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:57, 04:36](741 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:23, 05:01](699 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:26, 06:57](547 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:45, 02:30](535 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:50, 03:12](872 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:10, 05:40](870 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:56](552 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:18, 05:18]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:46](727 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:37, 03:36]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 02:29](702 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:39, 02:27](701 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:56](875 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:59](562 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:04, 07:35](880 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 06:58](942 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:38, 03:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:52, 02:39](730 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:46, 14:46]
+
+PASS -- COMPILE 's2s_gnu' [14:27, 14:27]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:27, 06:34](1344 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:41, 02:40]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:42, 23:53](1306 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:25, 02:24]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:42, 16:58](1307 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:00, 14:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:07, 03:00](694 MB)
SYNOPSIS:
-Starting Date/Time: 20240318 19:02:14
-Ending Date/Time: 20240318 21:14:57
-Total Time: 02h:13m:32s
+Starting Date/Time: 20240321 17:22:54
+Ending Date/Time: 20240321 19:31:46
+Total Time: 02h:10m:00s
Compiles Completed: 55/55
-Tests Completed: 247/247
+Tests Completed: 244/244
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 3de3fa4b14..7b84273d14 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-879e6870478881f0145029af307915a5d57b674d
+55da2dd260008d4a1196c77c941d5b3300bcae45
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,367 +48,446 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_2844701
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_737084
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:28]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:00, 07:41](1891 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:15, 16:44]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:19, 13:28](1773 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:45, 14:09](2166 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:43, 06:32](1190 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:00](1690 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:45]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:57, 20:17](1733 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:07, 12:16]
-PASS -- TEST 'cpld_control_p8_intel' [16:02, 07:51](2092 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:58, 07:43](2095 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:04, 04:15](1965 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:49, 07:38](1977 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 04:25](1743 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:52, 08:53](2501 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:50, 07:37](2076 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:56, 06:23](1886 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:03, 07:45](2070 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [22:19, 15:40](2807 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:35, 05:51](2926 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:04, 08:53](3627 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:31, 06:10](3621 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:54, 05:02](2040 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:06, 10:05]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:57, 07:05](1766 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:08, 04:00](1820 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:25]
-PASS -- TEST 'cpld_debug_p8_intel' [10:38, 06:50](2073 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 04:39](1807 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:21]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:05, 03:57](1816 MB)
-
-PASS -- COMPILE 's2s_intel' [12:07, 10:15]
-PASS -- TEST 'cpld_control_c48_intel' [12:13, 07:11](2832 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:07, 13:46]
-PASS -- TEST 'cpld_control_p8_faster_intel' [20:24, 07:34](2096 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:04, 16:29]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 13:51](1813 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 06:41](1293 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:45, 15:24](1719 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:31, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:30, 21:30](1769 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:26, 09:01]
-PASS -- TEST 'control_flake_intel' [14:29, 02:55](710 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [12:01, 02:06](659 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:06, 02:16](675 MB)
-PASS -- TEST 'control_latlon_intel' [12:00, 02:09](673 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:05, 02:13](662 MB)
-PASS -- TEST 'control_c48_intel' [16:12, 05:46](857 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [16:11, 05:46](857 MB)
-PASS -- TEST 'control_c192_intel' [17:14, 08:07](983 MB)
-PASS -- TEST 'control_c384_intel' [17:11, 08:30](1450 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:56, 07:32](1526 MB)
-PASS -- TEST 'control_stochy_intel' [12:06, 01:27](666 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:59](545 MB)
-PASS -- TEST 'control_lndp_intel' [09:05, 01:21](670 MB)
-PASS -- TEST 'control_iovr4_intel' [09:09, 02:06](666 MB)
-PASS -- TEST 'control_iovr5_intel' [08:45, 02:10](672 MB)
-PASS -- TEST 'control_p8_intel' [08:20, 02:49](1646 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:12, 02:33](1629 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:20, 02:27](1642 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:05, 01:28](918 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:54, 02:30](1625 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:07, 01:23](992 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:56, 02:36](1627 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:27, 02:26](1727 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:12, 04:37](1633 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:23, 03:31](1717 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:20, 02:39](1659 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:04, 03:02](1651 MB)
-PASS -- TEST 'regional_control_intel' [06:28, 04:38](962 MB)
-PASS -- TEST 'regional_restart_intel' [09:25, 02:32](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [06:28, 04:49](948 MB)
-PASS -- TEST 'regional_2threads_intel' [04:40, 02:58](920 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:32, 04:23](1494 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:30](960 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:15, 04:32](961 MB)
-PASS -- TEST 'regional_wofs_intel' [07:32, 05:34](2072 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:26, 07:34]
-PASS -- TEST 'rap_control_intel' [08:52, 06:33](1207 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:02, 03:41](1456 MB)
-PASS -- TEST 'rap_decomp_intel' [08:46, 06:48](1144 MB)
-PASS -- TEST 'rap_2threads_intel' [08:45, 06:12](1373 MB)
-PASS -- TEST 'rap_restart_intel' [09:01, 03:34](1132 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:07, 06:46](1207 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:56](1137 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:18, 05:14](1192 MB)
-PASS -- TEST 'hrrr_control_intel' [06:23, 03:24](1060 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:11, 03:26](1038 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [09:10, 03:09](1129 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [07:44, 01:54](1019 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [14:16, 06:29](1184 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:36, 07:51](2003 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:26, 07:34](2167 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:26, 07:22]
-PASS -- TEST 'control_csawmg_intel' [11:41, 05:24](827 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:56, 05:29](835 MB)
-PASS -- TEST 'control_ras_intel' [08:54, 02:54](820 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:59, 04:16]
-PASS -- TEST 'control_csawmg_gnu' [17:05, 06:39](808 MB)
-PASS -- TEST 'control_csawmgt_gnu' [17:05, 06:35](808 MB)
-
-PASS -- COMPILE 'wam_intel' [08:26, 07:05]
-PASS -- TEST 'control_wam_intel' [07:25, 01:53](772 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:55, 09:20]
-PASS -- TEST 'control_p8_faster_intel' [11:00, 02:18](1640 MB)
-PASS -- TEST 'regional_control_faster_intel' [11:38, 04:19](959 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 04:25]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:21, 02:14](821 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:26, 02:17](824 MB)
-PASS -- TEST 'control_stochy_debug_intel' [08:17, 02:28](827 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:16, 02:15](840 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [10:05, 03:31](877 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [10:01, 03:23](878 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:22, 02:21](835 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:35, 02:24](882 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:02, 02:28](1667 MB)
-PASS -- TEST 'regional_debug_intel' [18:02, 14:14](895 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:59, 04:04](1221 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:20, 04:11](1213 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:12](1218 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:02](1219 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:11](1228 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:38, 04:28](1298 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:10](1212 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:11](1214 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:19, 04:09](1213 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:17, 04:04](1235 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:04](1225 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:02](1220 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:34](1213 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:45, 03:57](1215 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:30, 04:51](1221 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:02](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 06:50](1215 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:03, 04:15]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 01:45](788 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:26, 01:46](787 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:37, 03:02]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:37, 07:11]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:29](1269 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:52, 05:24](1144 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 02:56](1023 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:46, 05:14](1292 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 02:38](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 02:58](981 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:13, 04:02](1091 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:02, 01:36](965 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:58, 10:09]
-PASS -- TEST 'conus13km_control_intel' [04:43, 01:49](1301 MB)
-PASS -- TEST 'conus13km_2threads_intel' [09:36, 00:53](1212 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [10:33, 01:05](1164 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:57, 08:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 03:43](1086 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:38, 04:11]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:15, 03:53](1094 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:13, 03:52](1096 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:57, 11:43](1334 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:41, 12:42](982 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 06:38](1243 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 11:42](1391 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:38, 04:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:58, 04:04](1154 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:20, 10:08]
-PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:32](877 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:53, 05:24](1284 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:31, 06:39](960 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:31, 14:05](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:30, 15:30](1007 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:29, 05:37](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 07:11](615 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [11:23, 03:00](437 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 08:11](539 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:16, 04:02](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 03:52](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:19, 04:54](675 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:24, 01:21](446 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:19, 03:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:53, 11:27](632 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:29, 11:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:51, 16:10](729 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:07, 18:11](813 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:20, 10:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:11, 10:09](789 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:20, 10:27]
-PASS -- TEST 'hafs_regional_docn_intel' [12:18, 05:32](938 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:49, 05:37](947 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:42, 16:27](1339 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [11:21, 06:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:12](1148 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:17](1096 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:18, 02:06](1015 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:09, 02:07](1008 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:22, 02:08](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 02:09](1124 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:09](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:03](999 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:59](1159 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 04:50](1137 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:07](1146 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:36, 03:00](2437 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:33, 03:00](2442 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 03:52]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:21, 05:05](1077 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:07](1134 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:07]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 00:58](332 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:55](560 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:36](561 MB)
-
-PASS -- COMPILE 'atml_intel' [10:08, 08:20]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:17, 05:56](1635 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:51, 05:58](1631 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:37, 03:03](950 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:10, 10:47]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:32](1701 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:10, 09:14]
-PASS -- TEST 'control_atmwav_intel' [03:42, 01:29](687 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:08, 07:10]
-PASS -- TEST 'atmaero_control_p8_intel' [06:21, 03:31](1792 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:27, 04:20](1801 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:29](1810 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:10, 07:15]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:10, 03:04]
-PASS -- TEST 'regional_atmaq_debug_intel' [20:21, 16:49](4593 MB)
-
-PASS -- COMPILE 'atm_gnu' [09:09, 04:17]
-PASS -- TEST 'control_c48_gnu' [10:59, 09:28](881 MB)
-PASS -- TEST 'control_stochy_gnu' [04:17, 02:11](731 MB)
-PASS -- TEST 'control_ras_gnu' [05:16, 03:40](728 MB)
-PASS -- TEST 'control_p8_gnu' [06:20, 03:33](1518 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:56, 03:23](1517 MB)
-PASS -- TEST 'control_flake_gnu' [06:15, 04:22](813 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [09:09, 04:18]
-PASS -- TEST 'rap_control_gnu' [09:40, 07:39](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:40, 07:40](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:00, 07:08](1129 MB)
-PASS -- TEST 'rap_restart_gnu' [05:41, 04:01](884 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:13, 07:40](1082 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:44](1084 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:48](883 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:46, 03:57](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 03:57](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:37](1041 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 03:58](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:17, 02:03](882 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:04](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:17, 07:36](1084 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [14:17, 10:23]
-PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:11](777 MB)
-PASS -- TEST 'regional_debug_gnu' [08:43, 06:15](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:38, 01:56](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:18, 01:56](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:56](1093 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:23, 02:03](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 03:03](1095 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:56](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:33, 01:54](1091 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:09](725 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:16](720 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:13](1504 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:37, 01:57](1100 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:31, 02:10](1102 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:30, 03:15](1100 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [08:09, 05:14]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:25, 06:36]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:32, 07:21](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:55, 03:47](956 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:45](994 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:37, 03:24](876 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:37, 03:49](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:49, 05:34](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 01:58](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:36, 02:29](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:07](1171 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](950 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [17:19, 14:15]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:28](989 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [15:15, 12:37]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:55](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:52](967 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:30](1279 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 05:33](970 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:29, 03:16](1190 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:32, 05:22](1347 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:09, 13:01]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](1000 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:21, 17:12]
-
-PASS -- COMPILE 's2s_gnu' [17:21, 15:59]
-
-PASS -- COMPILE 's2swa_debug_gnu' [15:21, 13:27]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [19:11, 18:00]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:21, 12:55]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [20:14, 15:20]
+PASS -- COMPILE 's2swa_32bit_intel' [17:07, 10:46]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 07:42](1887 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:07, 17:36]
+PASS -- TEST 'cpld_control_gfsv17_intel' [25:16, 13:40](1775 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:01, 14:25](2165 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:31](1168 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:51, 15:14](1699 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:07, 06:03]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:25](1719 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:07, 11:33]
+PASS -- TEST 'cpld_control_p8_intel' [09:53, 07:34](2077 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:08, 07:39](2135 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [13:09, 04:21](1963 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 07:46](1997 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:20](1734 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:46, 09:15](2497 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 07:49](2070 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:17, 06:28](1896 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:37](2086 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 15:15](2806 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:09, 06:00](2926 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:05, 09:07](3620 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:20, 06:33](3618 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:51, 05:02](2020 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:07, 11:13]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:03](1776 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:05](1827 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [12:07, 06:16]
+PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:00](2071 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:07, 06:02]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:55, 04:49](1791 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:07, 08:20]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:51, 03:58](1809 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 08:20]
+PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:12](2836 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:07, 11:59]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:05, 07:23](2087 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:25]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 14:05](1811 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:04, 06:51](1295 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:29](1722 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:30]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:48, 21:30](1781 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:21]
+PASS -- TEST 'control_flake_intel' [15:21, 02:55](721 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [14:24, 02:06](668 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:28, 02:26](667 MB)
+PASS -- TEST 'control_latlon_intel' [14:21, 02:08](661 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:27, 02:58](654 MB)
+PASS -- TEST 'control_c48_intel' [10:27, 05:48](862 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [18:26, 05:54](851 MB)
+PASS -- TEST 'control_c192_intel' [15:32, 07:59](989 MB)
+PASS -- TEST 'control_c384_intel' [16:08, 08:31](1432 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:02, 07:24](1532 MB)
+PASS -- TEST 'control_stochy_intel' [14:21, 01:28](674 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:33, 00:53](548 MB)
+PASS -- TEST 'control_lndp_intel' [14:21, 01:27](671 MB)
+PASS -- TEST 'control_iovr4_intel' [15:24, 02:15](661 MB)
+PASS -- TEST 'control_iovr5_intel' [12:19, 02:15](664 MB)
+PASS -- TEST 'control_p8_intel' [11:53, 02:36](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:56, 02:42](1645 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:52, 02:34](1653 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:50, 01:28](918 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:43, 02:36](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:01, 01:27](977 MB)
+PASS -- TEST 'control_decomp_p8_intel' [11:36, 02:44](1638 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:40, 02:31](1740 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:37, 04:36](1636 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 03:36](1716 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:41](1640 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:00, 03:05](1662 MB)
+PASS -- TEST 'regional_control_intel' [07:25, 04:50](956 MB)
+PASS -- TEST 'regional_restart_intel' [07:26, 02:44](1110 MB)
+PASS -- TEST 'regional_decomp_intel' [07:24, 04:51](948 MB)
+PASS -- TEST 'regional_2threads_intel' [05:30, 03:05](913 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:30, 04:29](1490 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:28, 04:40](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:24, 04:35](959 MB)
+PASS -- TEST 'regional_wofs_intel' [08:26, 05:51](2068 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:47]
+PASS -- TEST 'rap_control_intel' [09:44, 06:37](1198 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:30](1408 MB)
+PASS -- TEST 'rap_decomp_intel' [09:32, 06:57](1133 MB)
+PASS -- TEST 'rap_2threads_intel' [08:37, 06:23](1380 MB)
+PASS -- TEST 'rap_restart_intel' [09:57, 03:35](1158 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:46, 06:37](1188 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 07:04](1142 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:50, 05:03](1185 MB)
+PASS -- TEST 'hrrr_control_intel' [05:45, 03:33](1095 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:30](1059 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:15](1120 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:17, 02:06](1034 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:58, 06:26](1208 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:00](2007 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 07:33](2178 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:07]
+PASS -- TEST 'control_csawmg_intel' [07:27, 05:27](836 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:26, 05:25](837 MB)
+PASS -- TEST 'control_ras_intel' [08:16, 02:59](847 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:05, 04:21]
+PASS -- TEST 'control_csawmg_gnu' [12:36, 06:39](808 MB)
+PASS -- TEST 'control_csawmgt_gnu' [12:33, 06:36](810 MB)
+
+PASS -- COMPILE 'wam_intel' [08:05, 06:39]
+PASS -- TEST 'control_wam_intel' [06:18, 01:52](784 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:52]
+PASS -- TEST 'control_p8_faster_intel' [06:54, 02:26](1642 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:24, 04:15](961 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:15]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:16, 02:19](825 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:20, 02:17](821 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:16, 02:37](834 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:14, 02:16](832 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [09:25, 03:24](868 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [09:24, 03:29](894 MB)
+PASS -- TEST 'control_ras_debug_intel' [08:16, 02:23](835 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:20, 02:22](884 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:32, 02:26](1660 MB)
+PASS -- TEST 'regional_debug_intel' [18:54, 14:08](892 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:19, 04:05](1216 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:17, 03:59](1210 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:16, 04:04](1219 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:15, 04:02](1223 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 04:08](1228 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:32, 04:16](1302 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:07](1215 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:14, 04:09](1222 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:16, 04:06](1222 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:07](1236 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:19, 03:57](1216 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:06](1218 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:39](1219 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:16, 03:57](1213 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:55](1224 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:03](1221 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:54](1218 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 04:01]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:47](789 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:22, 01:48](789 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:06, 03:30]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:06, 07:25]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:22](1271 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:47, 05:27](1142 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:55](1039 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:29](1289 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:57, 02:48](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:09](1006 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:10](1098 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 01:36](957 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:06, 09:35]
+PASS -- TEST 'conus13km_control_intel' [03:42, 01:47](1305 MB)
+PASS -- TEST 'conus13km_2threads_intel' [08:43, 00:55](1205 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [09:29, 01:09](1159 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:06, 07:31]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:50](1088 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:05, 03:29]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 04:01](1094 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:51](1100 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:32, 11:39](1338 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:45](996 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:12, 06:34](1239 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:28, 11:33](1402 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:29]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:15, 04:06](1151 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:06, 09:44]
+PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:29](879 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:15, 05:13](1272 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:12, 06:34](943 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:15](979 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:15, 15:00](1010 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:57, 05:46](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:15, 07:16](613 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:59](436 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:09, 08:35](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:44, 04:08](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:46, 03:59](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:51, 05:00](680 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:23, 01:32](452 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:06, 03:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:53, 11:32](638 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:05, 11:03]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:01, 17:11](725 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:02, 16:36](810 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:57, 09:44](795 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:05, 08:57]
+PASS -- TEST 'hafs_regional_docn_intel' [13:02, 06:32](939 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 05:46](937 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:30](1341 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:05, 06:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:13, 02:10](1148 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1090 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:02](1015 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:12, 02:06](1017 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:11, 02:10](1017 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1150 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:09, 02:09](1149 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:04](1017 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 05:00](1141 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:44, 04:53](1148 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:10](1140 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:01](2383 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 03:03](2382 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:05, 03:47]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:07](1073 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:05, 06:12]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1145 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 01:16](335 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 01:00](558 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:33](566 MB)
+
+PASS -- COMPILE 'atml_intel' [11:05, 08:45]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 06:22](1645 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:11](1655 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:16](939 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:39]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:37](1693 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:41]
+PASS -- TEST 'control_atmwav_intel' [03:43, 01:29](700 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:24]
+PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1781 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:15](1800 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:30](1831 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:06, 07:00]
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:06, 02:44]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 16:44](4594 MB)
+
+PASS -- COMPILE 'atm_gnu' [08:05, 03:57]
+PASS -- TEST 'control_c48_gnu' [11:27, 09:25](863 MB)
+PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](727 MB)
+PASS -- TEST 'control_ras_gnu' [05:13, 03:53](730 MB)
+PASS -- TEST 'control_p8_gnu' [05:50, 03:43](1511 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 03:36](1516 MB)
+PASS -- TEST 'control_flake_gnu' [06:16, 04:35](806 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [08:05, 03:57]
+PASS -- TEST 'rap_control_gnu' [11:55, 09:07](1082 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:48, 07:51](1086 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:39, 07:12](1128 MB)
+PASS -- TEST 'rap_restart_gnu' [05:58, 03:57](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:49, 07:47](1084 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:53, 07:58](1087 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:58, 06:00](886 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:42, 04:13](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 04:05](1134 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 03:46](1030 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:07](1080 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:15, 02:11](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:15, 02:06](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:55, 07:40](1085 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 04:38]
+PASS -- TEST 'control_diag_debug_gnu' [04:21, 01:19](774 MB)
+PASS -- TEST 'regional_debug_gnu' [09:28, 06:25](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:16, 02:03](1094 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 02:00](1085 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:02](1090 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:59](1092 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:06](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:09](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:03](1097 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 02:00](1090 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:12](724 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:17](1500 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:58](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:11](1096 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:17](1097 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [07:05, 02:50]
+FAIL TO COMPARE -- TEST 'control_wam_debug_gnu' [, ]( MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:05, 04:32]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:22](961 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:51](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 06:51](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](888 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:57](954 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:34](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:06](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:40, 02:38](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:11](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:26, 01:31](938 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:06, 09:11]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:26](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:06, 06:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:14, 01:56](974 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:15, 01:53](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:32](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:31](972 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:18](1192 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:31](1351 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 06:34]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:02](1002 MB)
+
+PASS -- COMPILE 's2swa_gnu' [20:05, 14:33]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 14:31]
+
+PASS -- COMPILE 's2swa_debug_gnu' [09:06, 05:03]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 14:56]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:05, 05:16]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20]
SYNOPSIS:
-Starting Date/Time: 20240319 07:58:04
-Ending Date/Time: 20240319 09:37:41
-Total Time: 01h:40m:07s
+Starting Date/Time: 20240321 11:53:01
+Ending Date/Time: 20240321 13:35:26
+Total Time: 01h:43m:01s
Compiles Completed: 55/55
-Tests Completed: 238/238
+Tests Completed: 238/239
+Failed Tests:
+* TEST control_wam_debug_gnu: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2194/tests/logs/log_hercules/rt_control_wam_debug_gnu.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERCULES REGRESSION TESTING LOG====
+====START OF HERCULES REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+55da2dd260008d4a1196c77c941d5b3300bcae45
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1958825
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'wam_debug_gnu' [07:06, 02:10]
+PASS -- TEST 'control_wam_debug_gnu' [04:26, 02:05](499 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240321 14:09:35
+Ending Date/Time: 20240321 14:22:27
+Total Time: 00h:13m:10s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index e8b5873eab..f9aeedb7b4 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7908de2724b95cab917b6b6c3d059c66cb8bdaa7
+55da2dd260008d4a1196c77c941d5b3300bcae45
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -26,19 +26,19 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,279 +48,357 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_210523
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_281704
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:29]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:53, 05:14](3181 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:07, 20:46]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 17:06](1736 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:05, 17:17](2029 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:04, 08:06](1116 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:06, 18:21](1647 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:29]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:24](1692 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:07, 13:45]
-PASS -- TEST 'cpld_control_p8_intel' [08:29, 05:37](3218 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:48, 05:39](3214 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:19](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:29, 05:40](3230 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:50, 03:24](3273 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 06:07](3558 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:29, 05:39](3209 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:41](3067 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:51, 05:39](3211 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:51, 10:08](3336 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:26, 06:21](3564 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 11:06](4112 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:52, 06:56](4367 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:24](3171 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 15:03]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:20, 04:29](1733 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:39, 04:24](1777 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:44]
-PASS -- TEST 'cpld_debug_p8_intel' [13:37, 08:43](3243 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:10]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 06:03](1757 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:07, 14:24]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:38, 04:22](1782 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 14:03]
-PASS -- TEST 'cpld_control_c48_intel' [10:12, 08:00](2828 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:44]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 05:30](3217 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:40]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:26, 16:32](1705 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:27, 08:04](1174 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:16, 19:25](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:57]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:46](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:06, 12:03]
-PASS -- TEST 'control_flake_intel' [05:20, 03:33](647 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:25, 02:29](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:35](660 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:32](652 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:29, 02:33](648 MB)
-PASS -- TEST 'control_c48_intel' [07:33, 05:57](870 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:56](878 MB)
-PASS -- TEST 'control_c192_intel' [11:38, 09:07](851 MB)
-PASS -- TEST 'control_c384_intel' [13:46, 10:07](1251 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:59, 09:08](1362 MB)
-PASS -- TEST 'control_stochy_intel' [03:20, 01:41](655 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](500 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:42](652 MB)
-PASS -- TEST 'control_iovr4_intel' [04:26, 02:24](651 MB)
-PASS -- TEST 'control_iovr5_intel' [04:22, 02:30](651 MB)
-PASS -- TEST 'control_p8_intel' [05:19, 02:58](1625 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:19, 02:58](1631 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:50](1642 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:40, 01:42](893 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:53](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:23, 01:37](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:11, 03:01](1612 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:06, 03:00](1720 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:51, 05:14](1628 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:37, 03:57](1692 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:38, 03:02](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:44, 03:26](1650 MB)
-PASS -- TEST 'regional_control_intel' [07:36, 05:08](857 MB)
-PASS -- TEST 'regional_restart_intel' [05:49, 02:42](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:29, 05:26](851 MB)
-PASS -- TEST 'regional_2threads_intel' [05:31, 03:43](844 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:33, 05:04](1360 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:07](857 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 05:13](857 MB)
-PASS -- TEST 'regional_wofs_intel' [08:35, 06:40](1917 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:08, 10:40]
-PASS -- TEST 'rap_control_intel' [10:35, 07:44](1105 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:01, 04:48](1296 MB)
-PASS -- TEST 'rap_decomp_intel' [11:23, 08:14](1030 MB)
-PASS -- TEST 'rap_2threads_intel' [10:36, 07:51](1182 MB)
-PASS -- TEST 'rap_restart_intel' [06:27, 04:03](1101 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:39, 07:46](1107 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:07](1034 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 05:48](1134 MB)
-PASS -- TEST 'hrrr_control_intel' [07:00, 04:07](1036 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:24, 04:11](1019 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:01, 03:30](1110 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:11](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:28, 07:43](1102 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:14](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:55](2080 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:09, 11:36]
-PASS -- TEST 'control_csawmg_intel' [07:50, 06:03](749 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:55, 06:03](750 MB)
-PASS -- TEST 'control_ras_intel' [05:25, 03:15](736 MB)
-
-PASS -- COMPILE 'wam_intel' [13:09, 11:08]
-PASS -- TEST 'control_wam_intel' [04:18, 02:04](657 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:47]
-PASS -- TEST 'control_p8_faster_intel' [05:34, 02:41](1621 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:48, 04:40](854 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:47]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:43](806 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:45](814 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](816 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](811 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:08](867 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:41, 04:06](860 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:43](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](870 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:54, 02:51](1645 MB)
-PASS -- TEST 'regional_debug_intel' [19:47, 17:40](843 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:23, 04:57](1197 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:51](1200 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:52](1193 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:56](1202 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:51](1202 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:15](1284 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 04:56](1199 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:51](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:56](1201 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:25, 04:53](1204 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:53](1203 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:56](1204 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:05](1141 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:53](1198 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 05:59](1208 MB)
-PASS -- TEST 'rap_flake_debug_intel' [11:24, 04:52](1213 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:19](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:08, 03:43]
-PASS -- TEST 'control_wam_debug_intel' [11:18, 05:02](510 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 10:49]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:55, 04:25](1162 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:28, 06:25](1053 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:42, 03:28](961 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:00, 06:41](1094 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:40, 02:57](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:13, 03:42](931 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:14, 04:48](1037 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:22, 01:54](939 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:36]
-PASS -- TEST 'conus13km_control_intel' [08:57, 02:05](1160 MB)
-PASS -- TEST 'conus13km_2threads_intel' [08:52, 01:00](1121 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [08:42, 01:15](1115 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:09, 11:35]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:51, 04:20](990 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:22, 04:58](1088 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:21, 04:50](1078 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:01, 14:11](1231 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:44, 14:40](924 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [14:44, 08:23](1116 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:44, 14:34](1280 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:19]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:25, 04:54](1128 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:07, 12:41]
-PASS -- TEST 'hafs_regional_atm_intel' [09:14, 05:34](744 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:25, 05:59](1125 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:30, 06:58](826 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [22:15, 13:05](824 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 14:44](1020 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:56, 06:07](498 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:24, 07:20](513 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:07](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:21, 07:55](471 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:44, 04:07](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:53, 03:55](524 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:54, 05:21](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:24, 01:22](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [11:50, 04:27](798 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:50, 12:53](572 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:06, 13:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:04, 09:32](677 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:33](704 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:09, 13:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:07, 06:54](729 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:06, 12:09]
-PASS -- TEST 'hafs_regional_docn_intel' [15:14, 06:15](828 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:13, 06:19](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:02, 15:49](1207 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:35]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:16, 02:37](1151 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:15, 01:38](1080 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:14, 02:37](1016 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:14, 02:36](1005 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:12, 02:38](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:15, 02:41](1129 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:13, 02:37](1127 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:18, 02:37](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:10, 06:06](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 05:50](1043 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:40](1133 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:36](2439 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 03:40](2491 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:58]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1055 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 06:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1136 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:00]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:49](254 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](326 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:33](321 MB)
-
-PASS -- COMPILE 'atml_intel' [15:07, 12:45]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:14](1593 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:27, 04:18](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:26](907 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:07, 12:03]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 01:45](1664 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:07, 11:17]
-PASS -- TEST 'control_atmwav_intel' [07:08, 01:41](666 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:07, 11:54]
-PASS -- TEST 'atmaero_control_p8_intel' [10:23, 04:08](3023 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:50](3090 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:59, 05:07](3119 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:07, 10:47]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:17]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:49, 21:10](4574 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:49]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 05:08](3180 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:56, 16:31](1743 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 17:09](2057 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:03](1113 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 18:25](1648 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:08]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:22, 23:21](1696 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:07, 14:19]
+PASS -- TEST 'cpld_control_p8_intel' [17:45, 05:38](3212 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:00, 05:41](3208 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:21](3249 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 05:38](3237 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:46, 03:19](3278 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [19:00, 06:08](3556 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [17:45, 05:42](3202 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:42, 04:44](3061 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:01, 05:41](3212 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 09:52](3341 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:20](3546 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:02, 10:57](4120 MB)
+FAIL TO COMPARE -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [17:46, 05:27](3176 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:07, 13:50]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [11:19, 04:24](1734 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:27](1787 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:17]
+PASS -- TEST 'cpld_debug_p8_intel' [11:36, 08:47](3252 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 06:02](1755 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:06]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 04:18](1785 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 13:06]
+PASS -- TEST 'cpld_control_c48_intel' [14:58, 08:04](2826 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:45, 05:22](3213 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [21:07, 19:06]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:16, 16:35](1771 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:05](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 18:30](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:16]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:06, 24:47](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:16]
+PASS -- TEST 'control_flake_intel' [05:19, 03:28](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:19, 02:21](654 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:31](652 MB)
+PASS -- TEST 'control_latlon_intel' [11:19, 02:30](647 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:28, 02:34](648 MB)
+PASS -- TEST 'control_c48_intel' [12:26, 05:56](877 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [14:28, 05:55](877 MB)
+PASS -- TEST 'control_c192_intel' [11:33, 09:00](860 MB)
+PASS -- TEST 'control_c384_intel' [20:31, 10:03](1251 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:01, 08:48](1362 MB)
+PASS -- TEST 'control_stochy_intel' [03:23, 01:43](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](503 MB)
+PASS -- TEST 'control_lndp_intel' [05:17, 01:35](656 MB)
+PASS -- TEST 'control_iovr4_intel' [05:22, 02:31](646 MB)
+PASS -- TEST 'control_iovr5_intel' [04:21, 02:33](649 MB)
+PASS -- TEST 'control_p8_intel' [05:10, 03:00](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 02:56](1639 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:37, 02:49](1639 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:16, 01:42](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:16, 02:53](1617 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 01:37](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:02](1618 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:00](1722 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:01, 07:31](1625 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:45, 05:36](1689 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:49, 04:24](1632 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:09, 03:27](1635 MB)
+PASS -- TEST 'regional_control_intel' [07:57, 05:04](857 MB)
+PASS -- TEST 'regional_restart_intel' [04:37, 02:44](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [07:33, 05:29](845 MB)
+PASS -- TEST 'regional_2threads_intel' [05:50, 03:39](845 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:41, 05:01](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:01](861 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 05:08](860 MB)
+PASS -- TEST 'regional_wofs_intel' [09:39, 06:33](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:07, 12:18]
+PASS -- TEST 'rap_control_intel' [11:36, 07:47](1100 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 04:41](1300 MB)
+PASS -- TEST 'rap_decomp_intel' [12:26, 08:49](1024 MB)
+PASS -- TEST 'rap_2threads_intel' [10:37, 07:51](1179 MB)
+PASS -- TEST 'rap_restart_intel' [06:26, 04:02](1105 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:33, 11:29](1110 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:42, 08:01](1039 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:30, 05:50](1128 MB)
+PASS -- TEST 'hrrr_control_intel' [07:28, 03:58](1036 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:09](1022 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 03:25](1116 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:29, 07:35](1095 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:19](1992 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 08:51](2069 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:06, 11:08]
+PASS -- TEST 'control_csawmg_intel' [08:34, 06:03](740 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:36, 05:56](748 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:19](739 MB)
+
+PASS -- COMPILE 'wam_intel' [15:07, 11:08]
+PASS -- TEST 'control_wam_intel' [04:17, 02:07](656 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:06, 11:44]
+PASS -- TEST 'control_p8_faster_intel' [05:34, 02:36](1630 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:33]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:42](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](814 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](813 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](819 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:16](869 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:43, 04:00](858 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:44](824 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:26, 02:51](871 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:46, 02:54](1636 MB)
+PASS -- TEST 'regional_debug_intel' [19:42, 17:18](845 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:19, 04:51](1201 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:47](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:47](1197 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:53](1202 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:51](1206 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:15](1285 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:05](1200 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:04](1200 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:19, 05:03](1208 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:07](1204 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:54](1206 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:57](1205 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:55](1198 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:45](1193 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:05](1208 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:57](1199 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:24, 08:28](1208 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02]
+PASS -- TEST 'control_wam_debug_intel' [06:18, 05:00](502 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 11:40]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:22](1167 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:21](1044 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 03:25](980 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:50, 06:44](1086 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 02:57](963 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 03:39](921 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:17, 04:49](1036 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:52](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:06, 13:43]
+PASS -- TEST 'conus13km_control_intel' [04:56, 02:07](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:48, 01:04](1126 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:21](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 11:10]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:17](998 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1077 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:47](1079 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:50, 14:27](1229 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:40](929 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:44, 08:19](1155 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:36](1290 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:21]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:56](1123 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:07, 12:11]
+PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:33](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:22, 05:47](1112 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 06:57](832 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:58](865 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:43](834 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:55, 06:05](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:22, 07:17](520 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 03:09](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 07:58](465 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 05:42](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:55, 03:57](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:23](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:24, 01:30](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:52, 04:31](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:06, 03:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:01](574 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:55, 09:27](674 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:15, 10:06](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 14:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:57, 09:21](727 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:06, 13:56]
+PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:20](831 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:08, 06:26](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 15:57](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:14]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:35](1130 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:45](1091 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1021 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1000 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:51](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:41](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:31](1009 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:11](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:59](1038 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:41](1125 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:31](2491 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:35](2489 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:48]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:11](1060 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1122 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:13]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:46](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:48](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:35](320 MB)
+
+PASS -- COMPILE 'atml_intel' [15:07, 12:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:40, 04:15](1600 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:38, 04:15](1601 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:24](899 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:08, 12:21]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 01:46](1667 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:07, 11:42]
+PASS -- TEST 'control_atmwav_intel' [04:11, 01:39](676 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:07, 11:47]
+PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:05](2969 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:53](3089 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:05](3107 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:06, 10:11]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:06, 03:19]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:42, 20:56](4568 MB)
SYNOPSIS:
-Starting Date/Time: 20240319 08:14:33
-Ending Date/Time: 20240319 09:52:54
-Total Time: 01h:39m:11s
+Starting Date/Time: 20240321 11:53:32
+Ending Date/Time: 20240321 13:32:01
+Total Time: 01h:39m:27s
Compiles Completed: 39/39
-Tests Completed: 182/182
+Tests Completed: 181/182
+Failed Tests:
+* TEST cpld_restart_bmark_p8_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2194/tests/logs/log_orion/rt_cpld_restart_bmark_p8_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+55da2dd260008d4a1196c77c941d5b3300bcae45
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_284715
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nems
+* (-l) - USE CONFIG FILE: rt.conf
+
+PASS -- COMPILE 's2swa_intel' [16:06, 14:23]
+PASS -- TEST 'cpld_bmark_p8_intel' [19:05, 11:20](4122 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 07:17](4364 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240321 13:50:38
+Ending Date/Time: 20240321 14:43:04
+Total Time: 00h:52m:41s
+Compiles Completed: 1/1
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/rt.conf b/tests/rt.conf
index df432cff3d..0f99745539 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -374,7 +374,7 @@ RUN | gnv1_c96_no_nest_debug | + hera hercules
COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 |
-RUN | control_wam_debug | + hera | baseline |
+RUN | control_wam_debug | + hercules | baseline |
### 32-bit physics tests ###
@@ -413,13 +413,13 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules
### S2S tests ###
COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 |
-RUN | cpld_control_p8 | + hera | baseline |
+# RUN | cpld_control_p8 | + hera | baseline |
COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 |
RUN | cpld_control_nowave_noaero_p8 | + hera | baseline |
COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 |
-RUN | cpld_debug_p8 | + hera | baseline |
+# RUN | cpld_debug_p8 | + hera | baseline |
# Unstructured WW3
COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 |
From c54e98637ead81b1fc1e336bd0443c8bfb6faf01 Mon Sep 17 00:00:00 2001
From: "Samuel Trahan (NOAA contractor)"
<39415369+SamuelTrahanNOAA@users.noreply.github.com>
Date: Wed, 27 Mar 2024 16:11:03 -0400
Subject: [PATCH 14/33] regression test system bug fixes, eliminate MOM6
warnings (#2197), add xr_cnvcld flag to FV3 (#2185) (#2202)
* UFSWM - atparse.bash: correctly handle input that doesn't end with an end-of-line character. Fix some bugs in Rocoto support and clean up rt.sh.
* FV3 - namelist flag xr_cnvcld to control if suspended grid-mean convective cloud condensate should be included in cloud fraction and optical depth calculation in radiation in the GFS suite
* ccpp - physics-level changes to implement new namelist variable
* MOM6 - update MOM6 code to eliminate all compiler warnings
---
FV3 | 2 +-
MOM6-interface/MOM6 | 2 +-
tests/atparse.bash | 84 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 146 ++--
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 524 ++++++------
tests/logs/RegressionTests_hera.log | 722 ++++++++--------
tests/logs/RegressionTests_hercules.log | 796 ++++++++----------
tests/logs/RegressionTests_jet.log | 474 +++++------
tests/logs/RegressionTests_orion.log | 620 ++++++--------
tests/logs/RegressionTests_wcoss2.log | 462 +++++-----
tests/rt.sh | 219 +++--
tests/rt_utils.sh | 11 +-
14 files changed, 2048 insertions(+), 2086 deletions(-)
diff --git a/FV3 b/FV3
index 6942270941..1ba84102cb 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 694227094198b8c1fe101af22dc506e9aeff9ebe
+Subproject commit 1ba84102cb814ec377efae92264fceb317c24398
diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6
index 10521a921d..ab7bd14d20 160000
--- a/MOM6-interface/MOM6
+++ b/MOM6-interface/MOM6
@@ -1 +1 @@
-Subproject commit 10521a921d2f442de19a0cda240d912fd918c40c
+Subproject commit ab7bd14d209592d55490e75dbfaa61cb4a62df97
diff --git a/tests/atparse.bash b/tests/atparse.bash
index a1d9496982..5e0e8985d8 100755
--- a/tests/atparse.bash
+++ b/tests/atparse.bash
@@ -1,42 +1,106 @@
#! /usr/bin/env bash
function atparse {
- local __set_x
- [ -o xtrace ] && __set_x='set -x' || __set_x='set +x'
- set +x
+ # Usage:
+ # source atparse.bash # defines the "atparse" function; only do this once
+ # atparse [ var1=value1 [ var2=value2 [...] ] ] < input_file > output_file
+ # This function filters text from stdin to stdout. It scans for text sequences like:
+ # @[varname]
+ # And replaces them with the value of the corresponding ${varname} variable.
+ # You can provide variables that are not set in bash by providing them on the command line.
+ # If set -u is enabled, it will exit the process when a variable is empty or undefined via set -u.
+
# Use __ in names to avoid clashing with variables in {var} blocks.
- local __text __before __after __during
+ local __text # current line of text being parsed, or the current command-line argument being parsed
+ local __before # all text before the next @[...] option
+ local __after # all text after the next @[...] option
+ local __during # the contents of the @[...] option, including the @[ and ]
+ local __set_x=":" # will be "set -x" if the calling script had that option enabled
+ local __set_u=":" # will be "set -u" if the calling script had that option enabled
+ local __set_e=":" # will be "set -e" if the calling script had that option enabled
+ local __abort_on_undefined=NO # YES = script should abort if a variable is undefined, NO otherwise
+
+ # Ensure "set -x -e -u" are all inactive, but remember if they
+ # were active so we can reset them later.
+ if [[ -o xtrace ]] ; then
+ __set_x="set -x"
+ fi
+ if [[ -o errexit ]] ; then
+ __set_e="set -e"
+ fi
+ if [[ -o nounset ]] ; then
+ __set_u="set -u"
+ __abort_on_undefined=YES
+ fi
+ set +eux
+
+ # Allow setting variables on the atparse command line rather than the environment.
+ # They will be local variables in this function.
for __text in "$@" ; do
if [[ $__text =~ ^([a-zA-Z][a-zA-Z0-9_]*)=(.*)$ ]] ; then
eval "local ${BASH_REMATCH[1]}"
eval "${BASH_REMATCH[1]}="'"${BASH_REMATCH[2]}"'
else
- echo "ERROR: Ignoring invalid argument $__text\n" 1>&2
+ echo "ERROR: Ignoring invalid argument $__text" 1>&2
fi
done
- while IFS= read -r __text ; do
+
+ # Loop over all lines of text.
+ while [[ 1 == 1 ]] ; do
+ # Read the next line of text. This will "fail" if no more text
+ # is left OR if the last line lacks an end-of-line character.
+ read -d '' -r __text
+
+ # Stop when "read" reports it is done ($? -ne 0) AND the text is
+ # non-empty (! -n "$__text"). This ensures we read the final line
+ # even if it lacks an end-of-line character.
+ if [[ $? -ne 0 ]] ; then
+ if [[ -n "$__text" ]] ; then
+ # Text remained, but it had no end-of-line.
+ :
+ else
+ break
+ fi
+ fi
+ # Search for strings like @[varname] or @['string'] or @[@]
while [[ "$__text" =~ ^([^@]*)(@\[[a-zA-Z_][a-zA-Z_0-9]*\]|@\[\'[^\']*\'\]|@\[@\]|@)(.*) ]] ; do
__before="${BASH_REMATCH[1]}"
__during="${BASH_REMATCH[2]}"
__after="${BASH_REMATCH[3]}"
-# printf 'PARSE[%s|%s|%s]\n' "$__before" "$__during" "$__after"
printf %s "$__before"
+ # @['string'] inserts string
if [[ "$__during" =~ ^@\[\'(.*)\'\]$ ]] ; then
printf %s "${BASH_REMATCH[1]}"
+ # @[@] inserts @
elif [[ "$__during" == '@[@]' ]] ; then
printf @
+ # @[varname] inserts $varname
elif [[ "$__during" =~ ^@\[([a-zA-Z_][a-zA-Z_0-9]*)\] ]] ; then
+ # Flag unknown variables at this step only.
+ if [[ ${__abort_on_undefined} == YES ]] ; then
+ set -u
+ fi
eval 'printf %s "$'"${BASH_REMATCH[1]}"'"'
+ if [[ ${__abort_on_undefined} == YES ]] ; then
+ set +u
+ fi
+ # Unrecognized sequences are inserted verbatim.
else
printf '%s' "$__during"
fi
+ # Continue until we run out of text in this line.
if [[ "$__after" == "$__text" ]] ; then
break
fi
__text="$__after"
done
+ # Print the corrected text
printf '%s\n' "$__text"
done
+
+ # Restore the calling script's shell options.
eval "$__set_x"
+ eval "$__set_u"
+ eval "$__set_e"
}
function test_atparse {
@@ -45,14 +109,18 @@ function test_atparse {
testvar='[testvar]'
var1='[var1]'
var2='[var2]'
- cat<<\EOF | atparse var3='**'
+ var4='[var4]'
+ ( cat<<\EOF ; echo -n "line with no end-of-line character [var4] = @[var4]" ) | atparse var3='**'
Nothing special here. = @['Nothing special here.']
[testvar] = @[testvar]
[var1] [var2] = @[var1] @[var2]
** = @[var3]
+[var4] == @[var4]
@ = @[@] = @['@']
+@[undefined_variable_that_should_exit_script_if_set_minus_u_is_used]
-n
eval "export PE$c=\${PE$c:-0}" = @[' eval "export PE$c=\${PE$c:-0}"']
EOF
+ echo " ... this text should be on the same line as the line with no end-of-line character"
echo "After block, \$var3 = \"$var3\" should be empty"
}
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 08758d8f87..ad867c6e92 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 15 14:30:32 UTC 2024
+Tue Mar 26 16:22:58 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 280.403230
- 0: The maximum resident set size (KB) = 1301268
+ 0: The total amount of wall time = 273.805616
+ 0: The maximum resident set size (KB) = 1258976
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 914.973019
- 0: The maximum resident set size (KB) = 1289712
+ 0: The total amount of wall time = 952.201032
+ 0: The maximum resident set size (KB) = 1237956
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 254.193285
- 0: The maximum resident set size (KB) = 1277804
+ 0: The total amount of wall time = 242.017304
+ 0: The maximum resident set size (KB) = 1230120
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 250.421070
- 0: The maximum resident set size (KB) = 1278668
+ 0: The total amount of wall time = 236.990247
+ 0: The maximum resident set size (KB) = 1230212
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 267.943348
- 0: The maximum resident set size (KB) = 1275920
+ 0: The total amount of wall time = 236.183608
+ 0: The maximum resident set size (KB) = 1242204
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 249.896889
- 0: The maximum resident set size (KB) = 1276116
+ 0: The total amount of wall time = 239.119350
+ 0: The maximum resident set size (KB) = 1231424
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_63946/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 256.272146
- 0: The maximum resident set size (KB) = 1278636
+ 0: The total amount of wall time = 239.894578
+ 0: The maximum resident set size (KB) = 1240384
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 15 15:51:09 UTC 2024
-Elapsed time: 01h:20m:37s. Have a nice day!
+Tue Mar 26 17:56:35 UTC 2024
+Elapsed time: 01h:33m:38s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 7371cb73b4..09ce2852a0 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,79 +1,77 @@
-Fri Mar 15 17:05:46 UTC 2024
+Tue Mar 26 22:12:47 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
- Moving sfcf021.tile1.nc .........OK
- Moving sfcf021.tile2.nc .........OK
- Moving sfcf021.tile3.nc .........OK
- Moving sfcf021.tile4.nc .........OK
- Moving sfcf021.tile5.nc .........OK
- Moving sfcf021.tile6.nc .........OK
- Moving atmf021.tile1.nc .........OK
- Moving atmf021.tile2.nc .........OK
- Moving atmf021.tile3.nc .........OK
- Moving atmf021.tile4.nc .........OK
- Moving atmf021.tile5.nc .........OK
- Moving atmf021.tile6.nc .........OK
- Moving sfcf024.tile1.nc .........OK
- Moving sfcf024.tile2.nc .........OK
- Moving sfcf024.tile3.nc .........OK
- Moving sfcf024.tile4.nc .........OK
- Moving sfcf024.tile5.nc .........OK
- Moving sfcf024.tile6.nc .........OK
- Moving atmf024.tile1.nc .........OK
- Moving atmf024.tile2.nc .........OK
- Moving atmf024.tile3.nc .........OK
- Moving atmf024.tile4.nc .........OK
- Moving atmf024.tile5.nc .........OK
- Moving atmf024.tile6.nc .........OK
- Moving RESTART/20210323.060000.coupler.res .........OK
- Moving RESTART/20210323.060000.fv_core.res.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Moving RESTART/20210323.060000.MOM.res.nc .........OK
- Moving RESTART/iced.2021-03-23-21600.nc .........OK
- Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+ Moving sfcf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile1.nc
+ Moving sfcf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile2.nc
+ Moving sfcf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile3.nc
+ Moving sfcf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile4.nc
+ Moving sfcf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile5.nc
+ Moving sfcf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile6.nc
+ Moving atmf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile1.nc
+ Moving atmf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile2.nc
+ Moving atmf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile3.nc
+ Moving atmf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile4.nc
+ Moving atmf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile5.nc
+ Moving atmf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile6.nc
+ Moving sfcf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile1.nc
+ Moving sfcf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile2.nc
+ Moving sfcf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile3.nc
+ Moving sfcf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile4.nc
+ Moving sfcf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile5.nc
+ Moving sfcf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile6.nc
+ Moving atmf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile1.nc
+ Moving atmf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile2.nc
+ Moving atmf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile3.nc
+ Moving atmf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile4.nc
+ Moving atmf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile5.nc
+ Moving atmf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile6.nc
+ Moving RESTART/20210323.060000.coupler.res .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.coupler.res
+ Moving RESTART/20210323.060000.fv_core.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile1.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile2.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile3.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile4.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile5.nc
+ Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile6.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile1.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile2.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile3.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile4.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile5.nc
+ Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile6.nc
+ Moving RESTART/20210323.060000.phy_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile1.nc
+ Moving RESTART/20210323.060000.phy_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile2.nc
+ Moving RESTART/20210323.060000.phy_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile3.nc
+ Moving RESTART/20210323.060000.phy_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile4.nc
+ Moving RESTART/20210323.060000.phy_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile5.nc
+ Moving RESTART/20210323.060000.phy_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile6.nc
+ Moving RESTART/20210323.060000.sfc_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile1.nc
+ Moving RESTART/20210323.060000.sfc_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile2.nc
+ Moving RESTART/20210323.060000.sfc_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile3.nc
+ Moving RESTART/20210323.060000.sfc_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile4.nc
+ Moving RESTART/20210323.060000.sfc_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile5.nc
+ Moving RESTART/20210323.060000.sfc_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile6.nc
+ Moving RESTART/20210323.060000.MOM.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.MOM.res.nc
+ Moving RESTART/iced.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/iced.2021-03-23-21600.nc
+ Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc
- 0: The total amount of wall time = 1356.631044
- 0: The maximum resident set size (KB) = 1411552
-Test dbg_base PASS
+Test dbg_base FAIL
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +133,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 388.496545
- 0: The maximum resident set size (KB) = 1403852
+ 0: The total amount of wall time = 388.843974
+ 0: The maximum resident set size (KB) = 1344020
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_183838/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +203,13 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 390.554898
- 0: The maximum resident set size (KB) = 1403928
+ 0: The total amount of wall time = 628.835447
+ 0: The maximum resident set size (KB) = 1344928
Test std_base PASS
-OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 15 22:24:11 UTC 2024
-Elapsed time: 05h:18m:26s. Have a nice day!
+FAILED TESTS:
+Test dbg_base failed in check_result failed
+OPERATION REQUIREMENT TEST FAILED
+Wed Mar 27 00:59:11 UTC 2024
+Elapsed time: 02h:46m:25s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index bfe3cac9fc..c850e901e5 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 15 16:17:17 UTC 2024
+Tue Mar 26 20:13:13 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 511.975861
- 0: The maximum resident set size (KB) = 589832
+ 0: The total amount of wall time = 2158.268024
+ 0: The maximum resident set size (KB) = 543636
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 519.974209
- 0: The maximum resident set size (KB) = 589384
+ 0: The total amount of wall time = 2133.860924
+ 0: The maximum resident set size (KB) = 549544
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_135871/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 532.386605
- 0: The maximum resident set size (KB) = 589932
+ 0: The total amount of wall time = 2127.082224
+ 0: The maximum resident set size (KB) = 542244
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 15 17:01:36 UTC 2024
-Elapsed time: 00h:44m:20s. Have a nice day!
+Tue Mar 26 22:12:01 UTC 2024
+Elapsed time: 01h:58m:49s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 4c5dda01e8..a399e2d764 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
+2df0c04528dab7f66acaaba949e607a1f3951915
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,17 +11,17 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
@@ -32,10 +32,10 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_81433
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2712
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [57:25, 19:34]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 04:54](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:20, 20:29]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 13:51](1689 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:31, 15:05](1817 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:19, 07:09](1369 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:24, 15:52](1652 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:26, 09:22]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:53, 21:45](1695 MB)
-
-PASS -- COMPILE 's2swa_intel' [47:16, 19:38]
-PASS -- TEST 'cpld_control_p8_intel' [12:06, 05:36](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 05:37](3094 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:44, 03:16](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:24, 05:36](3119 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [16:30, 03:18](3180 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:22, 05:35](3087 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:37](3384 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 05:38](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:40, 08:46](3633 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:49, 05:44](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:08, 09:37](4344 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:35, 06:48](4647 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:17, 05:16](3064 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:06, 18:55]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:51, 04:13](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:10, 04:13](1725 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [45:22, 09:28]
-PASS -- TEST 'cpld_debug_p8_intel' [10:59, 07:44](3149 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [39:21, 08:48]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 05:17](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [54:27, 14:23]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:57, 04:15](1724 MB)
-
-PASS -- COMPILE 's2s_intel' [51:27, 14:13]
-PASS -- TEST 'cpld_control_c48_intel' [10:19, 06:34](2668 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [03:31, 22:51]
-PASS -- TEST 'cpld_control_p8_faster_intel' [19:43, 05:27](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [38:29, 19:38]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:59, 14:00](1698 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:24, 07:11](1014 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:01, 15:57](1665 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:20, 08:53]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:53, 22:44](1704 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:24, 12:23]
-PASS -- TEST 'control_flake_intel' [06:06, 03:23](1391 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:01, 02:03](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:10](625 MB)
-PASS -- TEST 'control_latlon_intel' [05:00, 02:07](618 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:09, 02:10](621 MB)
-PASS -- TEST 'control_c48_intel' [49:09, 05:14](740 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [51:22, 05:13](736 MB)
-PASS -- TEST 'control_c192_intel' [15:51, 07:53](738 MB)
-PASS -- TEST 'control_c384_intel' [12:29, 08:09](1055 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:13, 07:12](1198 MB)
-PASS -- TEST 'control_stochy_intel' [06:06, 01:28](625 MB)
-PASS -- TEST 'control_stochy_restart_intel' [12:50, 00:51](435 MB)
-PASS -- TEST 'control_lndp_intel' [04:00, 01:25](1369 MB)
-PASS -- TEST 'control_iovr4_intel' [05:05, 02:06](618 MB)
-PASS -- TEST 'control_iovr5_intel' [05:04, 02:07](622 MB)
-PASS -- TEST 'control_p8_intel' [15:06, 02:32](1601 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [13:12, 02:27](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [16:14, 02:27](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:40, 01:26](802 MB)
-PASS -- TEST 'control_noqr_p8_intel' [15:06, 02:27](1589 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 01:21](804 MB)
-PASS -- TEST 'control_decomp_p8_intel' [16:31, 02:32](1593 MB)
-PASS -- TEST 'control_p8_lndp_intel' [19:32, 04:21](1594 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [17:49, 03:18](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [16:13, 02:33](1607 MB)
-PASS -- TEST 'merra2_thompson_intel' [16:10, 03:00](1599 MB)
-PASS -- TEST 'regional_control_intel' [08:33, 04:28](632 MB)
-PASS -- TEST 'regional_restart_intel' [10:07, 02:29](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [39:36, 04:23](1163 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:04, 04:26](627 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [13:09, 04:27](629 MB)
-PASS -- TEST 'regional_wofs_intel' [13:07, 05:37](1601 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:22, 11:02]
-PASS -- TEST 'rap_control_intel' [14:28, 06:05](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:41, 03:45](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [14:21, 06:20](1006 MB)
-PASS -- TEST 'rap_restart_intel' [15:28, 03:14](877 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:06, 06:04](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 06:21](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [16:35, 04:34](1369 MB)
-PASS -- TEST 'hrrr_control_intel' [10:23, 03:12](997 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [11:23, 03:16](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [35:27, 02:47](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [12:40, 01:44](833 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:11, 05:58](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 07:22](1955 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 07:11](1946 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:29, 10:19]
-PASS -- TEST 'control_csawmg_intel' [13:11, 05:49](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [16:08, 05:47](693 MB)
-PASS -- TEST 'control_ras_intel' [13:37, 02:53](653 MB)
-
-PASS -- COMPILE 'wam_intel' [13:27, 09:43]
-PASS -- TEST 'control_wam_intel' [12:32, 01:53](380 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [15:22, 12:47]
-PASS -- TEST 'control_p8_faster_intel' [11:34, 02:22](1601 MB)
-PASS -- TEST 'regional_control_faster_intel' [13:04, 04:13](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:33]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:39, 02:36](789 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:43, 02:33](796 MB)
-PASS -- TEST 'control_stochy_debug_intel' [14:44, 02:56](797 MB)
-PASS -- TEST 'control_lndp_debug_intel' [13:43, 02:33](796 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [16:11, 03:58](836 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [17:16, 03:54](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [15:47, 02:38](805 MB)
-PASS -- TEST 'control_diag_debug_intel' [12:58, 02:39](852 MB)
-PASS -- TEST 'control_debug_p8_intel' [14:15, 02:44](1624 MB)
-PASS -- TEST 'regional_debug_intel' [23:18, 16:04](675 MB)
-PASS -- TEST 'rap_control_debug_intel' [14:50, 04:43](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [12:48, 04:42](1173 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [12:41, 04:47](1178 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [13:44, 04:40](1179 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:38, 04:37](1179 MB)
-PASS -- TEST 'rap_diag_debug_intel' [15:01, 04:55](1266 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:39, 04:44](1180 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:44, 04:45](1179 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [13:41, 04:44](1182 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:39, 04:40](1178 MB)
-PASS -- TEST 'rap_noah_debug_intel' [11:41, 04:37](1178 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [13:38, 04:47](1173 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:37, 07:37](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [12:35, 04:40](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [11:42, 05:36](1181 MB)
-PASS -- TEST 'rap_flake_debug_intel' [12:36, 04:40](1181 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:27, 07:56](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:25, 05:25]
-PASS -- TEST 'control_wam_debug_intel' [11:29, 04:36](417 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 09:28]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:38, 03:27](1059 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 05:07](880 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 02:48](879 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:01, 02:53](880 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 03:54](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 01:33](775 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:25, 11:55]
-PASS -- TEST 'conus13km_control_intel' [04:24, 01:53](1081 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:29, 00:58](1082 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:20, 01:08](973 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:40, 09:36]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:16, 03:39](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [54:37, 06:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:33](1054 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:38, 04:29](1053 MB)
-PASS -- TEST 'conus13km_debug_intel' [22:32, 13:29](1135 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [22:32, 13:59](816 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:26, 13:28](1201 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:40, 05:51]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:48, 04:43](1081 MB)
-
-PASS -- COMPILE 'hafsw_intel' [01:33, 16:19]
-PASS -- TEST 'hafs_regional_atm_intel' [08:43, 04:31](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:07, 05:07](1070 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:57, 06:22](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [22:47, 10:57](792 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:04, 12:07](935 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:27, 04:37](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:45, 05:44](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:11, 02:19](389 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 06:14](460 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:22, 03:18](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:38, 03:02](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:20, 03:47](584 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:41, 01:14](424 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:10, 03:27](788 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [53:41, 07:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:20, 11:58](611 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [05:41, 20:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](630 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:11](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [01:44, 17:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:35, 05:22](1073 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [57:36, 14:33]
-PASS -- TEST 'hafs_regional_docn_intel' [08:24, 05:32](748 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:27, 05:32](735 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:32, 16:12](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [47:41, 07:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [21:50, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:38, 01:31](736 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:50, 02:22](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:50, 02:24](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:39, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [15:44, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [23:56, 02:28](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [19:47, 02:21](645 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:58, 05:37](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [22:58, 05:40](671 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:48, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [24:53, 03:52](1955 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [09:44, 03:52](2016 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [39:25, 05:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:43, 05:08](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [34:28, 07:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:31, 02:27](749 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [29:28, 02:32]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:44, 01:11](300 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:42, 01:06](455 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:36, 00:42](449 MB)
-
-PASS -- COMPILE 'atml_intel' [37:29, 12:46]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:09, 06:45](1638 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [32:11, 06:32](1630 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:16, 03:27](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [36:27, 12:30]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [27:46, 01:33](1634 MB)
-
-PASS -- COMPILE 'atmwm_intel' [36:28, 12:52]
-PASS -- TEST 'control_atmwav_intel' [27:18, 01:29](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [34:34, 11:03]
-PASS -- TEST 'atmaero_control_p8_intel' [31:05, 03:36](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [31:58, 04:15](3001 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:32, 04:34](3015 MB)
-
-PASS -- COMPILE 'atmaq_intel' [29:26, 11:12]
-
-PASS -- COMPILE 'atmaq_debug_intel' [24:30, 06:44]
-PASS -- TEST 'regional_atmaq_debug_intel' [47:35, 21:47](4529 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:46, 19:22]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 04:57](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:46, 20:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:15, 13:51](1686 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:56, 15:07](1823 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:38, 07:10](956 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:24, 15:50](1652 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:40, 09:15]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:16, 21:38](1694 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:40, 19:16]
+PASS -- TEST 'cpld_control_p8_intel' [10:15, 05:37](3089 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:15, 05:37](3088 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:01, 03:18](3147 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:15, 05:35](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:01, 03:21](3172 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:07, 05:31](3089 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 04:35](3395 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 05:34](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:52, 08:51](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:40, 05:57](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [34:35, 09:43](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:43, 06:57](4652 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:46, 05:20](3059 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:46, 18:38]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 04:11](1678 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:33, 04:15](1721 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:41, 09:13]
+PASS -- TEST 'cpld_debug_p8_intel' [10:45, 07:47](3150 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:36, 08:39]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 05:17](1704 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:42, 14:14]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:16](1716 MB)
+
+PASS -- COMPILE 's2s_intel' [14:43, 14:18]
+PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:38](2671 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:46, 22:45]
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:26, 05:28](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:31, 19:37]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:02](1698 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:19](1015 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:20, 15:59](1667 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:20, 08:38]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:08, 22:37](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:23, 12:26]
+PASS -- TEST 'control_flake_intel' [08:46, 03:27](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [07:52, 02:04](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 02:11](625 MB)
+PASS -- TEST 'control_latlon_intel' [08:48, 02:05](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:58, 02:07](618 MB)
+PASS -- TEST 'control_c48_intel' [10:52, 05:13](734 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:44, 05:13](739 MB)
+PASS -- TEST 'control_c192_intel' [14:45, 07:52](740 MB)
+PASS -- TEST 'control_c384_intel' [17:17, 08:06](1059 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:42, 07:14](1203 MB)
+PASS -- TEST 'control_stochy_intel' [06:45, 01:27](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:52](904 MB)
+PASS -- TEST 'control_lndp_intel' [06:47, 01:22](625 MB)
+PASS -- TEST 'control_iovr4_intel' [07:55, 02:06](618 MB)
+PASS -- TEST 'control_iovr5_intel' [03:37, 02:05](617 MB)
+PASS -- TEST 'control_p8_intel' [04:57, 02:27](1599 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:29](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 02:27](1605 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:45, 01:23](803 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:31](1591 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 01:23](801 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:13, 02:33](1593 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:59, 04:21](1592 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:17](1658 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:32](1602 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:57, 02:58](1599 MB)
+PASS -- TEST 'regional_control_intel' [06:24, 04:29](632 MB)
+PASS -- TEST 'regional_restart_intel' [04:22, 02:28](798 MB)
+PASS -- TEST 'regional_decomp_intel' [06:23, 04:41](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [11:10, 04:24](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:11, 04:28](631 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:07, 04:29](631 MB)
+PASS -- TEST 'regional_wofs_intel' [12:09, 05:36](1601 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:20, 11:06]
+PASS -- TEST 'rap_control_intel' [11:27, 06:03](1003 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:40, 03:42](1192 MB)
+PASS -- TEST 'rap_decomp_intel' [12:24, 06:21](1003 MB)
+PASS -- TEST 'rap_restart_intel' [05:21, 03:13](878 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:20, 06:04](1002 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 06:22](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 04:33](877 MB)
+PASS -- TEST 'hrrr_control_intel' [07:14, 03:13](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 03:18](996 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:48](1090 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:46](829 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:24, 05:58](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 07:20](1954 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:57, 07:08](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:15, 10:12]
+PASS -- TEST 'control_csawmg_intel' [08:41, 05:52](693 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:40, 05:47](696 MB)
+PASS -- TEST 'control_ras_intel' [04:38, 02:52](656 MB)
+
+PASS -- COMPILE 'wam_intel' [13:21, 09:28]
+PASS -- TEST 'control_wam_intel' [03:31, 01:55](385 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [15:21, 12:31]
+PASS -- TEST 'control_p8_faster_intel' [05:06, 02:22](1600 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:28, 04:17](630 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 08:22]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:34](790 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:40, 02:32](795 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:57](797 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:39, 02:32](797 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:36, 03:57](835 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:05](837 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:43, 02:38](1249 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:38, 02:40](852 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:25, 02:42](1623 MB)
+PASS -- TEST 'regional_debug_intel' [17:36, 15:53](662 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:35, 04:37](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:42, 04:31](1177 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:44, 04:41](1181 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:49, 04:38](1178 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:52, 04:38](1249 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:34, 04:50](1259 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 04:45](1180 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:49, 04:53](1180 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:47](1181 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:42, 04:37](1180 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:40, 04:34](1177 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:39](1178 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:29](1180 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:33](1172 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:49](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:35, 04:47](1178 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:11, 07:54](1180 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:24, 05:14]
+PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](420 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:33]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:39, 03:30](1058 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:08, 05:08](882 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:03, 02:46](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:09, 02:54](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:53](793 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:32](774 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:24, 11:45]
+PASS -- TEST 'conus13km_control_intel' [04:37, 01:53](1082 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:34, 00:58](1086 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:34, 01:08](970 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:25, 09:44]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](912 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:30]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:34](1053 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:26](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:13, 13:17](1131 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:38](814 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 13:22](1199 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:37, 04:36](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:22, 15:40]
+PASS -- TEST 'hafs_regional_atm_intel' [06:48, 04:33](720 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:21, 05:07](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:27](775 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:56, 10:59](790 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:51, 12:03](814 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:42, 04:44](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 05:41](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:21](388 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:16](457 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:18](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:31, 03:05](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:24, 03:52](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:17](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:18, 03:23](781 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:24, 06:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:17, 11:57](607 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:32, 19:27]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:08](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:09](687 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:50, 05:22](673 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:27, 13:53]
+PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:35](750 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 05:37](736 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:11](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:22, 07:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:47, 01:33](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](641 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:24](644 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:31](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 02:30](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:22](640 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 05:40](1369 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:35, 03:54](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:27, 03:56](2016 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 05:02]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:03](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:26, 07:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:28](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:22]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:09](308 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:06](449 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:41, 00:44](450 MB)
+
+PASS -- COMPILE 'atml_intel' [13:16, 12:55]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:39](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:08, 06:21](1626 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:20](853 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:21, 12:29]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 01:37](1627 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:21, 12:19]
+PASS -- TEST 'control_atmwav_intel' [02:59, 01:30](635 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:21, 11:07]
+PASS -- TEST 'atmaero_control_p8_intel' [06:51, 03:45](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:20](2995 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:31](3013 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:27, 10:45]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:09]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:59, 21:55](4533 MB)
SYNOPSIS:
-Starting Date/Time: 20240321 10:52:46
-Ending Date/Time: 20240321 14:12:13
-Total Time: 03h:20m:40s
+Starting Date/Time: 20240325 17:32:13
+Ending Date/Time: 20240325 19:04:27
+Total Time: 01h:32m:59s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 3665612fc2..cbc4be40d7 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
+0a6b9489ca89719f3fab9fa759a07c60c4c91f78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -25,371 +25,371 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2266279
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2507836
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
+* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:53]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:24, 05:32](3159 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:44, 15:44]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:47, 17:02](1725 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 17:45](2001 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:53, 08:00](1091 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1616 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:28, 22:46](1625 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:52, 12:52]
-PASS -- TEST 'cpld_control_p8_intel' [06:42, 05:49](3190 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:46, 05:51](3193 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:27](3235 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:47](3209 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:28](3259 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:20, 05:36](3528 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:37, 05:50](3199 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:46](3049 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:42, 05:49](3202 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:52, 10:14](3319 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 06:11](3602 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:43, 09:45](4142 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 06:07](4338 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:28](3156 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:04, 12:03]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:38, 04:52](1715 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:25](1777 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:18, 04:18]
-PASS -- TEST 'cpld_debug_p8_intel' [09:46, 08:54](3177 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [03:58, 03:58]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:31, 05:43](1724 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:14, 11:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:17, 04:24](1759 MB)
-
-PASS -- COMPILE 's2s_intel' [11:18, 11:18]
-PASS -- TEST 'cpld_control_c48_intel' [09:59, 09:26](2798 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:35, 16:34]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:24, 05:27](3200 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [14:59, 14:59]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 17:15](1759 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:18, 08:15](1141 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:40](1670 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:03, 04:03]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1678 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:10, 11:10]
-PASS -- TEST 'control_flake_intel' [03:39, 03:24](682 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:42, 02:27](636 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:48, 02:31](643 MB)
-PASS -- TEST 'control_latlon_intel' [02:39, 02:28](633 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:28](633 MB)
-PASS -- TEST 'control_c48_intel' [06:40, 06:26](852 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:34, 06:22](853 MB)
-PASS -- TEST 'control_c192_intel' [09:39, 09:13](833 MB)
-PASS -- TEST 'control_c384_intel' [10:17, 09:09](1276 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1383 MB)
-PASS -- TEST 'control_stochy_intel' [01:49, 01:36](643 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:15, 01:00](486 MB)
-PASS -- TEST 'control_lndp_intel' [01:44, 01:33](640 MB)
-PASS -- TEST 'control_iovr4_intel' [02:37, 02:25](635 MB)
-PASS -- TEST 'control_iovr5_intel' [02:40, 02:27](638 MB)
-PASS -- TEST 'control_p8_intel' [03:49, 03:04](1607 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 03:02](1610 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:41, 02:57](1623 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:18, 01:42](875 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:39, 03:02](1607 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:37](921 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:42, 03:05](1598 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:30, 02:56](1698 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:57, 05:22](1611 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1677 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:41, 03:02](1617 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:09, 03:30](1593 MB)
-PASS -- TEST 'regional_control_intel' [05:35, 05:10](829 MB)
-PASS -- TEST 'regional_restart_intel' [03:11, 02:46](1007 MB)
-PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](827 MB)
-PASS -- TEST 'regional_2threads_intel' [03:43, 03:15](836 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:35, 05:10](1342 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:37, 05:08](834 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:10](830 MB)
-PASS -- TEST 'regional_wofs_intel' [07:16, 06:46](1890 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:34, 10:33]
-PASS -- TEST 'rap_control_intel' [08:06, 07:41](1084 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:11](1278 MB)
-PASS -- TEST 'rap_decomp_intel' [08:32, 08:07](1022 MB)
-PASS -- TEST 'rap_2threads_intel' [07:42, 07:16](1158 MB)
-PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1088 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:16, 07:45](1083 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:09](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:51](1092 MB)
-PASS -- TEST 'hrrr_control_intel' [04:20, 03:58](1023 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:10](1015 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:10, 03:42](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:28, 02:10](990 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:12, 07:40](1087 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:16](1981 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:56](2054 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:11, 10:11]
-PASS -- TEST 'control_csawmg_intel' [06:28, 06:00](733 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:25, 05:54](738 MB)
-PASS -- TEST 'control_ras_intel' [03:22, 03:13](727 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33]
-PASS -- TEST 'control_csawmg_gnu' [08:45, 08:19](533 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:39, 08:15](533 MB)
-
-PASS -- COMPILE 'wam_intel' [09:56, 09:55]
-PASS -- TEST 'control_wam_intel' [02:12, 02:03](634 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:35, 10:34]
-PASS -- TEST 'control_p8_faster_intel' [03:16, 02:38](1619 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:10, 04:42](832 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:27, 04:26]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:01, 02:44](776 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:57, 02:40](773 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:06](781 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:47](760 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:30, 05:02](837 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:31, 04:06](831 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:00, 02:50](791 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:08, 02:48](838 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1598 MB)
-PASS -- TEST 'regional_debug_intel' [17:39, 17:10](804 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:14, 05:02](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:58, 04:47](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:11, 04:59](1173 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:11, 05:00](1162 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:10, 04:58](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:12](1246 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 05:04](1173 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:06](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:27, 05:13](1171 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:55](1180 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:00, 04:47](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:07, 04:55](1175 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:53](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1169 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:07, 05:52](1161 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:54](1171 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1170 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:37]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](506 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:38, 02:10](509 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:50, 03:49]
-PASS -- TEST 'control_wam_debug_intel' [05:13, 04:59](486 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:01, 10:00]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 03:54](1147 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:22](1033 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:52, 03:24](971 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 06:08](1079 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 03:10](956 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:06, 03:38](916 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:22, 04:49](1025 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:17, 01:51](925 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:23, 12:22]
-PASS -- TEST 'conus13km_control_intel' [03:02, 02:08](1193 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:54](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1090 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 10:25]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:10](967 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:39, 03:37]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:10, 04:55](1055 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:03, 04:50](1026 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:11, 14:30](1214 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 14:44](904 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:51, 08:15](1124 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 15:03](1210 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:24, 03:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:14, 04:55](1093 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:41, 11:40]
-PASS -- TEST 'hafs_regional_atm_intel' [05:57, 04:58](731 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:55](1100 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:07, 06:51](823 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:38, 13:34](841 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:14](870 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:23, 05:30](487 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:54, 06:39](506 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:14, 02:41](362 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:00, 07:19](483 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:43](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:31](504 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:04](562 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:31, 01:13](408 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:34, 04:02](785 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:11, 04:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:20, 12:34](543 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:51, 11:51]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:33, 08:46](614 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:43, 08:47](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:33, 11:33]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:15, 06:26](683 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:19, 11:18]
-PASS -- TEST 'hafs_regional_docn_intel' [07:36, 06:30](817 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:43, 06:33](800 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:10](1206 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [05:59, 05:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:40](1142 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:46, 01:37](1094 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:43, 02:33](1010 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:49, 02:37](1014 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:41](1009 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:41](1132 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:50, 02:43](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:43, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1053 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:32, 06:31](1034 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:47, 02:41](1155 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:01, 03:52](2433 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2430 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:06]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1067 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:15, 06:14]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:51, 02:42](1134 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:22, 01:20]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:11, 00:52](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:46](317 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:32](325 MB)
-
-PASS -- COMPILE 'atml_intel' [11:43, 11:42]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:19](1589 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:17](1587 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:47, 02:14](884 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:56, 10:56]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:21, 01:43](1655 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:39, 10:39]
-PASS -- TEST 'control_atmwav_intel' [02:04, 01:40](652 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:44, 10:44]
-PASS -- TEST 'atmaero_control_p8_intel' [04:48, 04:04](2995 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:44, 04:58](3071 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:35, 06:04](3090 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:14, 10:13]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:36]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:41, 20:57](4449 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:44, 03:43]
-PASS -- TEST 'control_c48_gnu' [10:58, 10:46](751 MB)
-PASS -- TEST 'control_stochy_gnu' [03:35, 03:24](494 MB)
-PASS -- TEST 'control_ras_gnu' [04:49, 04:38](503 MB)
-PASS -- TEST 'control_p8_gnu' [05:20, 04:36](1254 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:14, 04:32](1252 MB)
-PASS -- TEST 'control_flake_gnu' [10:41, 10:30](536 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:43, 03:42]
-PASS -- TEST 'rap_control_gnu' [11:13, 10:52](842 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:16, 10:54](843 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:10, 09:44](923 MB)
-PASS -- TEST 'rap_restart_gnu' [05:58, 05:30](573 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:56, 10:33](842 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:28, 11:03](843 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:25, 07:58](576 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:51, 05:34](843 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:51, 05:33](832 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:02](914 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:56, 05:35](843 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](558 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:09, 02:47](649 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:43, 10:16](838 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37]
-PASS -- TEST 'control_diag_debug_gnu' [01:59, 01:38](527 MB)
-PASS -- TEST 'regional_debug_gnu' [11:58, 11:30](541 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:51, 02:37](844 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:40, 02:31](847 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:42, 02:33](853 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:51, 02:40](852 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:19, 02:51](929 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:02](846 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:46, 02:35](847 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:35](840 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:32](483 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:40](479 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:40](1233 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:47, 02:35](846 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:04, 02:53](850 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:36, 04:14](853 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:47, 01:47]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:37, 03:36]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:41, 09:16](697 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:55](703 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:03, 08:38](745 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:57, 04:36](741 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:23, 05:01](699 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:26, 06:57](547 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:45, 02:30](535 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:50, 03:12](872 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:10, 05:40](870 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:56](552 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:18, 05:18]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:46](727 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:37, 03:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 02:29](702 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:39, 02:27](701 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:56](875 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:59](562 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:04, 07:35](880 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 06:58](942 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:38, 03:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:52, 02:39](730 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:46, 14:46]
-
-PASS -- COMPILE 's2s_gnu' [14:27, 14:27]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:27, 06:34](1344 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:41, 02:40]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:42, 23:53](1306 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:25, 02:24]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:42, 16:58](1307 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:00, 14:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:07, 03:00](694 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:00, 13:00]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:25, 05:35](3163 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:13, 16:13]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 17:00](1737 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 17:42](1994 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:00](1092 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:55, 19:10](1637 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:41, 04:41]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:37, 22:53](1664 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:59, 12:59]
+PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:51](3185 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:51](3191 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:24, 03:23](3229 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:40, 05:52](3213 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:24](3254 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:31](3533 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:41, 05:50](3192 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:38, 04:48](3045 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 06:01](3203 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:05, 11:27](3267 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:17, 07:04](3541 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:32, 10:10](4046 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:02](4348 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:57, 05:56](3151 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:17, 12:17]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:50, 04:58](1716 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:11, 04:21](1758 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39]
+PASS -- TEST 'cpld_debug_p8_intel' [09:23, 08:27](3192 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:21, 04:20]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:57, 10:08](1722 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:27, 11:27]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:19, 04:26](1771 MB)
+
+PASS -- COMPILE 's2s_intel' [11:44, 11:44]
+PASS -- TEST 'cpld_control_c48_intel' [10:06, 09:35](2786 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:11]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:17, 05:25](3189 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:35, 15:35]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:24, 17:38](1767 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:03, 08:05](1143 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:26, 19:38](1657 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:22, 04:21]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 25:12](1677 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:21, 11:21]
+PASS -- TEST 'control_flake_intel' [03:31, 03:20](686 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](631 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:51, 02:34](642 MB)
+PASS -- TEST 'control_latlon_intel' [02:46, 02:33](642 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:50, 02:32](641 MB)
+PASS -- TEST 'control_c48_intel' [06:40, 06:26](862 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 06:24](859 MB)
+PASS -- TEST 'control_c192_intel' [09:41, 09:14](837 MB)
+PASS -- TEST 'control_c384_intel' [10:18, 09:11](1278 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:17, 08:00](1375 MB)
+PASS -- TEST 'control_stochy_intel' [01:52, 01:39](642 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](481 MB)
+PASS -- TEST 'control_lndp_intel' [01:45, 01:33](648 MB)
+PASS -- TEST 'control_iovr4_intel' [02:43, 02:28](632 MB)
+PASS -- TEST 'control_iovr5_intel' [02:42, 02:28](633 MB)
+PASS -- TEST 'control_p8_intel' [03:48, 03:01](1604 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:57](1618 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:40, 02:53](1616 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:12, 01:36](873 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:56](1597 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:13, 01:35](910 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:40, 03:03](1598 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:26, 02:49](1702 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:55, 05:20](1583 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1678 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:59](1622 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1627 MB)
+PASS -- TEST 'regional_control_intel' [05:37, 05:12](835 MB)
+PASS -- TEST 'regional_restart_intel' [03:13, 02:44](1011 MB)
+PASS -- TEST 'regional_decomp_intel' [05:59, 05:32](826 MB)
+PASS -- TEST 'regional_2threads_intel' [03:44, 03:16](831 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:37, 05:10](1338 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:39, 05:12](833 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:41, 05:13](833 MB)
+PASS -- TEST 'regional_wofs_intel' [07:14, 06:47](1898 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:50, 10:50]
+PASS -- TEST 'rap_control_intel' [08:19, 07:45](1091 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:07](1276 MB)
+PASS -- TEST 'rap_decomp_intel' [08:37, 08:13](1020 MB)
+PASS -- TEST 'rap_2threads_intel' [07:53, 07:18](1166 MB)
+PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1086 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:14, 07:44](1081 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 08:09](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 05:49](1115 MB)
+PASS -- TEST 'hrrr_control_intel' [04:26, 04:00](999 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 04:14](990 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:39](1089 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:42, 02:22](960 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:11, 07:41](1078 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:30, 09:12](1966 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:03](2054 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:28, 10:28]
+PASS -- TEST 'control_csawmg_intel' [06:28, 06:02](734 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:22, 05:56](748 MB)
+PASS -- TEST 'control_ras_intel' [03:30, 03:18](700 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:56, 03:55]
+PASS -- TEST 'control_csawmg_gnu' [08:36, 08:06](535 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:42, 08:15](532 MB)
+
+PASS -- COMPILE 'wam_intel' [10:24, 10:23]
+PASS -- TEST 'control_wam_intel' [02:28, 02:17](618 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:43, 10:42]
+PASS -- TEST 'control_p8_faster_intel' [04:00, 03:17](1621 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:19, 04:48](830 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:04, 05:03]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:08, 02:52](758 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:39](780 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:15, 03:03](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:59, 02:45](784 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:40, 04:10](835 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:58, 04:27](805 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:06, 02:54](770 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:10, 02:50](839 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:32, 03:01](1622 MB)
+PASS -- TEST 'regional_debug_intel' [18:18, 17:45](794 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:11, 04:56](1165 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:54, 04:42](1170 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:02, 04:52](1176 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 05:01](1172 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:56](1176 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:14](1255 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:12, 05:01](1172 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:07](1176 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:13, 04:54](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:58](1174 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:56](1174 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:13, 04:58](1179 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1172 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 04:55](1167 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:05, 05:48](1180 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:52](1174 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1180 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:49, 02:48]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:09](508 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:43, 02:08](509 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:43, 03:42]
+PASS -- TEST 'control_wam_debug_intel' [05:15, 05:03](465 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:56](1151 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 06:25](1036 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 03:41](954 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:30, 06:06](1077 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:29, 03:08](952 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:03, 03:36](921 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:23, 04:51](1018 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:17, 12:16]
+PASS -- TEST 'conus13km_control_intel' [02:57, 02:03](1183 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:32, 00:52](1101 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1093 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 10:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:09](964 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:31, 03:30]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:06, 04:53](1051 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:54, 04:42](1049 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:05, 14:28](1180 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 14:22](899 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:35, 07:58](1098 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:32, 14:52](1223 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:37, 03:37]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:54](1094 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:52, 11:51]
+PASS -- TEST 'hafs_regional_atm_intel' [06:02, 05:05](730 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:08, 05:49](1063 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:55, 06:48](819 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:28](853 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 15:15](875 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:11, 05:26](483 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:45](499 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 03:30](358 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:47, 07:06](462 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:12, 03:39](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 03:29](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 04:00](571 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:34, 01:11](384 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:39, 04:03](784 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:51, 03:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:24, 12:38](536 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:45, 08:57](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:37](692 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:19, 12:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 06:35](715 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16]
+PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:12](823 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:25](799 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:17](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:07, 06:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:50, 02:42](1137 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:40](1091 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:37, 02:30](1002 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:39](1022 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1002 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:44](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:48, 02:41](1131 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:34](1009 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 05:48](1053 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:14](1035 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:49, 02:42](1128 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:02, 03:53](2436 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:02, 03:53](2435 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:05, 03:05]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:25, 06:16](1068 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 06:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:50, 02:42](1150 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:09, 01:08]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:01, 00:43](263 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:45](322 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:31](322 MB)
+
+PASS -- COMPILE 'atml_intel' [11:54, 11:53]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:17, 04:23](1581 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:09, 04:17](1615 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:51, 02:15](877 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:05, 11:04]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:45](1669 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:01, 11:00]
+PASS -- TEST 'control_atmwav_intel' [02:03, 01:41](669 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:18, 11:18]
+PASS -- TEST 'atmaero_control_p8_intel' [04:51, 04:02](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:43, 04:53](3064 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:44, 05:12](3101 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:21, 10:20]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:46, 03:46]
+PASS -- TEST 'regional_atmaq_debug_intel' [27:51, 26:14](4435 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:49, 03:48]
+PASS -- TEST 'control_c48_gnu' [10:56, 10:41](751 MB)
+PASS -- TEST 'control_stochy_gnu' [03:33, 03:22](493 MB)
+PASS -- TEST 'control_ras_gnu' [05:00, 04:48](505 MB)
+PASS -- TEST 'control_p8_gnu' [05:21, 04:37](1255 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:12, 04:31](1255 MB)
+PASS -- TEST 'control_flake_gnu' [10:43, 10:31](537 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:47, 03:46]
+PASS -- TEST 'rap_control_gnu' [11:18, 10:50](847 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:06, 10:43](848 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:10, 09:41](924 MB)
+PASS -- TEST 'rap_restart_gnu' [05:50, 05:23](577 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:15, 10:43](842 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:03](851 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:24, 08:00](573 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:50, 05:26](845 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:53, 05:32](827 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:01](925 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:57, 05:34](833 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:49](561 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:52](653 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 10:22](853 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:38, 03:37]
+PASS -- TEST 'control_diag_debug_gnu' [01:58, 01:36](534 MB)
+PASS -- TEST 'regional_debug_gnu' [11:37, 11:00](547 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:34](852 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:33](851 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:35](852 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](854 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:16, 02:52](933 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 04:00](851 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:36](849 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:45, 02:32](846 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](480 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:39](475 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:11, 01:39](1235 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:49, 02:36](855 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:01, 02:48](848 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:41, 04:17](839 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:47, 03:46]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:47, 09:22](698 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:18, 04:58](706 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:59, 08:39](748 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:56, 04:35](743 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:24, 05:05](707 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:22, 06:57](550 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:31](526 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:56, 03:11](869 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:21, 05:53](873 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:17, 01:49](565 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:21, 05:20]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:44](738 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:52, 03:51]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:45, 02:33](701 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:40, 02:28](706 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:36, 07:06](875 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 06:57](568 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:01, 07:35](873 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 06:57](941 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:47, 03:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:42, 02:30](721 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:51, 14:51]
+
+PASS -- COMPILE 's2s_gnu' [14:28, 14:27]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:30, 07:36](1343 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:37, 02:36]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:25, 14:24]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:57, 22:07](1310 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:21, 02:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:51](1305 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [13:59, 13:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:04](691 MB)
SYNOPSIS:
-Starting Date/Time: 20240321 17:22:54
-Ending Date/Time: 20240321 19:31:46
-Total Time: 02h:10m:00s
+Starting Date/Time: 20240326 15:42:19
+Ending Date/Time: 20240326 17:59:30
+Total Time: 02h:17m:58s
Compiles Completed: 55/55
Tests Completed: 244/244
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 7b84273d14..76e32fe4f4 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
+0a6b9489ca89719f3fab9fa759a07c60c4c91f78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,17 +11,17 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
@@ -32,10 +32,10 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,446 +48,368 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_737084
+COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_3737953
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:07, 10:46]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:28, 07:42](1887 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:07, 17:36]
-PASS -- TEST 'cpld_control_gfsv17_intel' [25:16, 13:40](1775 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:01, 14:25](2165 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:31](1168 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:51, 15:14](1699 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:07, 06:03]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:25](1719 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:07, 11:33]
-PASS -- TEST 'cpld_control_p8_intel' [09:53, 07:34](2077 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:08, 07:39](2135 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [13:09, 04:21](1963 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 07:46](1997 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:20](1734 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:46, 09:15](2497 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 07:49](2070 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:17, 06:28](1896 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:37](2086 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 15:15](2806 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:09, 06:00](2926 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:05, 09:07](3620 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:20, 06:33](3618 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:51, 05:02](2020 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:07, 11:13]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:54, 07:03](1776 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:05](1827 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [12:07, 06:16]
-PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:00](2071 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:07, 06:02]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:55, 04:49](1791 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:07, 08:20]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:51, 03:58](1809 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 08:20]
-PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:12](2836 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:07, 11:59]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:05, 07:23](2087 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:25]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:51, 14:05](1811 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:04, 06:51](1295 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:29](1722 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:30]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:48, 21:30](1781 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:21]
-PASS -- TEST 'control_flake_intel' [15:21, 02:55](721 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [14:24, 02:06](668 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:28, 02:26](667 MB)
-PASS -- TEST 'control_latlon_intel' [14:21, 02:08](661 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:27, 02:58](654 MB)
-PASS -- TEST 'control_c48_intel' [10:27, 05:48](862 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [18:26, 05:54](851 MB)
-PASS -- TEST 'control_c192_intel' [15:32, 07:59](989 MB)
-PASS -- TEST 'control_c384_intel' [16:08, 08:31](1432 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:02, 07:24](1532 MB)
-PASS -- TEST 'control_stochy_intel' [14:21, 01:28](674 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:33, 00:53](548 MB)
-PASS -- TEST 'control_lndp_intel' [14:21, 01:27](671 MB)
-PASS -- TEST 'control_iovr4_intel' [15:24, 02:15](661 MB)
-PASS -- TEST 'control_iovr5_intel' [12:19, 02:15](664 MB)
-PASS -- TEST 'control_p8_intel' [11:53, 02:36](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [11:56, 02:42](1645 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [11:52, 02:34](1653 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:50, 01:28](918 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:43, 02:36](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:01, 01:27](977 MB)
-PASS -- TEST 'control_decomp_p8_intel' [11:36, 02:44](1638 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:40, 02:31](1740 MB)
-PASS -- TEST 'control_p8_lndp_intel' [12:37, 04:36](1636 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 03:36](1716 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:41](1640 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:00, 03:05](1662 MB)
-PASS -- TEST 'regional_control_intel' [07:25, 04:50](956 MB)
-PASS -- TEST 'regional_restart_intel' [07:26, 02:44](1110 MB)
-PASS -- TEST 'regional_decomp_intel' [07:24, 04:51](948 MB)
-PASS -- TEST 'regional_2threads_intel' [05:30, 03:05](913 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:30, 04:29](1490 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:28, 04:40](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:24, 04:35](959 MB)
-PASS -- TEST 'regional_wofs_intel' [08:26, 05:51](2068 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:47]
-PASS -- TEST 'rap_control_intel' [09:44, 06:37](1198 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:30](1408 MB)
-PASS -- TEST 'rap_decomp_intel' [09:32, 06:57](1133 MB)
-PASS -- TEST 'rap_2threads_intel' [08:37, 06:23](1380 MB)
-PASS -- TEST 'rap_restart_intel' [09:57, 03:35](1158 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:46, 06:37](1188 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 07:04](1142 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:50, 05:03](1185 MB)
-PASS -- TEST 'hrrr_control_intel' [05:45, 03:33](1095 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:30](1059 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:29, 03:15](1120 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:17, 02:06](1034 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:58, 06:26](1208 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 08:00](2007 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:20, 07:33](2178 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:07]
-PASS -- TEST 'control_csawmg_intel' [07:27, 05:27](836 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:26, 05:25](837 MB)
-PASS -- TEST 'control_ras_intel' [08:16, 02:59](847 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:05, 04:21]
-PASS -- TEST 'control_csawmg_gnu' [12:36, 06:39](808 MB)
-PASS -- TEST 'control_csawmgt_gnu' [12:33, 06:36](810 MB)
-
-PASS -- COMPILE 'wam_intel' [08:05, 06:39]
-PASS -- TEST 'control_wam_intel' [06:18, 01:52](784 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:52]
-PASS -- TEST 'control_p8_faster_intel' [06:54, 02:26](1642 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:24, 04:15](961 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:15]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:16, 02:19](825 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:20, 02:17](821 MB)
-PASS -- TEST 'control_stochy_debug_intel' [07:16, 02:37](834 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:14, 02:16](832 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [09:25, 03:24](868 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [09:24, 03:29](894 MB)
-PASS -- TEST 'control_ras_debug_intel' [08:16, 02:23](835 MB)
-PASS -- TEST 'control_diag_debug_intel' [08:20, 02:22](884 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:32, 02:26](1660 MB)
-PASS -- TEST 'regional_debug_intel' [18:54, 14:08](892 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:19, 04:05](1216 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:17, 03:59](1210 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:16, 04:04](1219 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:15, 04:02](1223 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:23, 04:08](1228 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:32, 04:16](1302 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:15, 04:07](1215 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:14, 04:09](1222 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:16, 04:06](1222 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:14, 04:07](1236 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:19, 03:57](1216 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:16, 04:06](1218 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:39](1219 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:16, 03:57](1213 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:55](1224 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:03](1221 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:54](1218 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 04:01]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:47](789 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:22, 01:48](789 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:06, 03:30]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:06, 07:25]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:22](1271 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:47, 05:27](1142 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:55](1039 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:29](1289 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:57, 02:48](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:09](1006 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:10](1098 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 01:36](957 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:06, 09:35]
-PASS -- TEST 'conus13km_control_intel' [03:42, 01:47](1305 MB)
-PASS -- TEST 'conus13km_2threads_intel' [08:43, 00:55](1205 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [09:29, 01:09](1159 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:06, 07:31]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:50](1088 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:05, 03:29]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:16, 04:01](1094 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:51](1100 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:32, 11:39](1338 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:31, 11:45](996 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:12, 06:34](1239 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:28, 11:33](1402 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:29]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:15, 04:06](1151 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:06, 09:44]
-PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:29](879 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:15, 05:13](1272 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:12, 06:34](943 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:15](979 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:15, 15:00](1010 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:57, 05:46](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:15, 07:16](613 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:59](436 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:09, 08:35](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:44, 04:08](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:46, 03:59](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:51, 05:00](680 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:23, 01:32](452 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:06, 03:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:53, 11:32](638 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:05, 11:03]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:01, 17:11](725 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:02, 16:36](810 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 09:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:57, 09:44](795 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:05, 08:57]
-PASS -- TEST 'hafs_regional_docn_intel' [13:02, 06:32](939 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 05:46](937 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:30](1341 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:05, 06:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:13, 02:10](1148 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:19](1090 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:02](1015 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:12, 02:06](1017 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:11, 02:10](1017 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1150 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:09, 02:09](1149 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:09, 02:04](1017 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:47, 05:00](1141 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:44, 04:53](1148 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:10](1140 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:01](2383 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 03:03](2382 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:05, 03:47]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:07](1073 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:05, 06:12]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1145 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:06]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:21, 01:16](335 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 01:00](558 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:33](566 MB)
-
-PASS -- COMPILE 'atml_intel' [11:05, 08:45]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 06:22](1645 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:11](1655 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 03:16](939 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:39]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:37](1693 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:41]
-PASS -- TEST 'control_atmwav_intel' [03:43, 01:29](700 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:24]
-PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1781 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:15](1800 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 04:30](1831 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:06, 07:00]
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:06, 02:44]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 16:44](4594 MB)
-
-PASS -- COMPILE 'atm_gnu' [08:05, 03:57]
-PASS -- TEST 'control_c48_gnu' [11:27, 09:25](863 MB)
-PASS -- TEST 'control_stochy_gnu' [04:18, 02:20](727 MB)
-PASS -- TEST 'control_ras_gnu' [05:13, 03:53](730 MB)
-PASS -- TEST 'control_p8_gnu' [05:50, 03:43](1511 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:41, 03:36](1516 MB)
-PASS -- TEST 'control_flake_gnu' [06:16, 04:35](806 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [08:05, 03:57]
-PASS -- TEST 'rap_control_gnu' [11:55, 09:07](1082 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:48, 07:51](1086 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:39, 07:12](1128 MB)
-PASS -- TEST 'rap_restart_gnu' [05:58, 03:57](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:49, 07:47](1084 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:53, 07:58](1087 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:58, 06:00](886 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:42, 04:13](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 04:05](1134 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [06:29, 03:46](1030 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:07](1080 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:15, 02:11](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:15, 02:06](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:55, 07:40](1085 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 04:38]
-PASS -- TEST 'control_diag_debug_gnu' [04:21, 01:19](774 MB)
-PASS -- TEST 'regional_debug_gnu' [09:28, 06:25](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:16, 02:03](1094 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 02:00](1085 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:02](1090 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:59](1092 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:06](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:09](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:03](1097 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 02:00](1090 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:14, 01:12](724 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:17](1500 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:58](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:11](1096 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:17](1097 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [07:05, 02:50]
-FAIL TO COMPARE -- TEST 'control_wam_debug_gnu' [, ]( MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:05, 04:32]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:22](961 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:51](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 06:51](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:33](888 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:57](954 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:58, 05:34](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:06](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:40, 02:38](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:11](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:26, 01:31](938 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:06, 09:11]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:35, 04:26](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:06, 06:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:14, 01:56](974 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:15, 01:53](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:32](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:28, 05:31](972 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:18](1192 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:31](1351 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 06:34]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:02](1002 MB)
-
-PASS -- COMPILE 's2swa_gnu' [20:05, 14:33]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 14:31]
-
-PASS -- COMPILE 's2swa_debug_gnu' [09:06, 05:03]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [19:06, 14:56]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:05, 05:16]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20]
+PASS -- COMPILE 's2swa_32bit_intel' [13:07, 11:09]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:31](1897 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:54]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:26, 13:51](1772 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 14:32](2160 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1177 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:06, 16:09](1690 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:40]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:25, 20:22](1726 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:07, 10:02]
+PASS -- TEST 'cpld_control_p8_intel' [10:10, 07:41](2061 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 07:47](2074 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:17](1974 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:54](1985 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:29, 04:19](1744 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:20, 09:05](2502 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:01, 07:35](2069 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:06, 06:28](1894 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:21, 07:46](2077 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:53, 15:43](2805 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 05:54](2923 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [16:25, 08:59](3631 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 06:02](3619 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 04:58](2028 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:07, 10:38]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 07:03](1772 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:01](1820 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:33]
+PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:53](2040 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:30]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:07, 04:46](1797 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:06, 07:59]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 03:58](1821 MB)
+
+PASS -- COMPILE 's2s_intel' [09:06, 07:52]
+PASS -- TEST 'cpld_control_c48_intel' [09:48, 07:11](2843 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:06, 11:40]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:24](2095 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:07, 16:42]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:08](1811 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 06:45](1288 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:07, 15:48](1737 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:08, 22:02](1778 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:06, 09:19]
+PASS -- TEST 'control_flake_intel' [04:18, 02:57](713 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:05](660 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:22](665 MB)
+PASS -- TEST 'control_latlon_intel' [04:18, 02:10](672 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:23, 02:09](660 MB)
+PASS -- TEST 'control_c48_intel' [07:27, 05:50](858 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:46](861 MB)
+PASS -- TEST 'control_c192_intel' [09:32, 07:54](956 MB)
+PASS -- TEST 'control_c384_intel' [11:08, 08:25](1444 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:17, 07:18](1509 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:29](681 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:59](545 MB)
+PASS -- TEST 'control_lndp_intel' [03:18, 01:25](666 MB)
+PASS -- TEST 'control_iovr4_intel' [04:19, 02:12](661 MB)
+PASS -- TEST 'control_iovr5_intel' [04:18, 02:08](663 MB)
+PASS -- TEST 'control_p8_intel' [05:03, 02:36](1644 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:07, 02:36](1633 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:28](1649 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:59, 01:29](919 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:54, 02:32](1634 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:27](971 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:39](1623 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:30](1728 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:45, 04:34](1646 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:13, 03:33](1721 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:05, 02:39](1658 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:12, 03:02](1657 MB)
+PASS -- TEST 'regional_control_intel' [06:37, 04:45](956 MB)
+PASS -- TEST 'regional_restart_intel' [04:37, 02:34](1108 MB)
+PASS -- TEST 'regional_decomp_intel' [06:29, 05:00](947 MB)
+PASS -- TEST 'regional_2threads_intel' [05:32, 03:06](914 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:32, 04:29](1489 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:33](961 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 04:36](966 MB)
+PASS -- TEST 'regional_wofs_intel' [07:30, 05:38](2075 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:31]
+PASS -- TEST 'rap_control_intel' [09:11, 06:39](1182 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 03:32](1409 MB)
+PASS -- TEST 'rap_decomp_intel' [08:39, 06:55](1136 MB)
+PASS -- TEST 'rap_2threads_intel' [08:40, 06:26](1373 MB)
+PASS -- TEST 'rap_restart_intel' [06:12, 03:23](1152 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:58, 06:34](1192 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:58](1142 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 05:02](1187 MB)
+PASS -- TEST 'hrrr_control_intel' [05:48, 03:26](1093 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:24](1044 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:39, 03:11](1120 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:50](1027 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:28](1178 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:44](2014 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 07:35](2171 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:06, 07:21]
+PASS -- TEST 'control_csawmg_intel' [07:29, 05:19](799 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](825 MB)
+PASS -- TEST 'control_ras_intel' [04:17, 02:50](821 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:06, 04:12]
+PASS -- TEST 'control_csawmg_gnu' [08:33, 06:31](812 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:27, 06:25](812 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:50]
+PASS -- TEST 'control_wam_intel' [03:22, 01:51](793 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:05]
+PASS -- TEST 'control_p8_faster_intel' [05:11, 02:16](1629 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:31, 04:32](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:52]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 02:13](821 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:14](827 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](831 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:17](832 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:29](882 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:30, 03:26](875 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:18, 02:20](840 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:18](894 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:36, 02:22](1659 MB)
+PASS -- TEST 'regional_debug_intel' [16:32, 14:07](897 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:17, 03:58](1228 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:56](1225 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:59](1219 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:02](1230 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:01](1213 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:13](1302 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:07](1223 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:06](1218 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:00](1222 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:58](1220 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:57](1218 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:57](1222 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:30](1219 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 03:53](1213 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:13](1221 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:04](1214 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:05, 06:51](1220 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:21]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 01:45](790 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:31, 01:44](789 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:55]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:26](1274 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:24](1134 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:54](1025 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 05:04](1283 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:47, 02:39](1037 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:01](994 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 04:02](1105 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](958 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:31]
+PASS -- TEST 'conus13km_control_intel' [03:46, 01:45](1311 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:43](1199 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:36, 01:10](1145 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:41](1068 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:59]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:51](1091 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:58](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:37, 11:30](1332 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:37, 12:16](977 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:34, 06:38](1238 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 11:31](1413 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:00]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:03](1153 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:07, 10:43]
+PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:27](870 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:03](1272 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:19](938 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:32](996 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:13, 14:46](1000 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 05:39](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 07:18](620 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:00](435 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 07:55](543 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 04:00](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:58](675 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:30](449 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:05, 03:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:33](634 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:02, 16:45](729 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:00, 16:48](811 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:02, 09:47](789 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:06, 09:52]
+PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:22](969 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 05:30](937 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:26](1342 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:06, 06:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:11](1127 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:17](1099 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 02:06](1012 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:08](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:09](1014 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:08](1155 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:10](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:11, 02:03](1018 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:00, 04:57](1153 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:54, 04:50](1146 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1144 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:00](2381 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:01](2433 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:40]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:11, 05:11](1079 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1141 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:51]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:51](327 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:53](559 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](559 MB)
+
+PASS -- COMPILE 'atml_intel' [10:06, 08:17]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:04](1627 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:20, 06:05](1631 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:07](956 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:06]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 01:34](1692 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:44]
+PASS -- TEST 'control_atmwav_intel' [03:52, 01:33](697 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:28]
+PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:40](1789 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:25](1795 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 04:31](1834 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:06, 07:00]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:42]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:37, 16:56](4584 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:07, 04:43]
+PASS -- TEST 'control_c48_gnu' [11:28, 09:52](882 MB)
+PASS -- TEST 'control_stochy_gnu' [04:18, 02:18](731 MB)
+PASS -- TEST 'control_ras_gnu' [05:15, 03:47](730 MB)
+PASS -- TEST 'control_p8_gnu' [05:58, 03:39](1519 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 03:35](1514 MB)
+PASS -- TEST 'control_flake_gnu' [06:19, 04:24](811 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:06, 04:39]
+PASS -- TEST 'rap_control_gnu' [09:50, 07:49](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:38, 07:52](1084 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:35, 07:19](1138 MB)
+PASS -- TEST 'rap_restart_gnu' [05:46, 03:59](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:06, 07:46](1089 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:48](1087 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:00, 05:47](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:49, 04:04](1069 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 04:06](1140 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:45](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 04:04](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:07](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:08](935 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:44](1079 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:06, 06:04]
+PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:14](774 MB)
+PASS -- TEST 'regional_debug_gnu' [08:31, 06:20](926 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:20, 01:59](1099 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:57](1091 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:00](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 01:59](1097 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:11](1269 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:12](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:27, 02:02](1100 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:26, 02:01](1096 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:14](726 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:17](1501 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:59](1103 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:10](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:51, 03:18](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:06, 03:23]
+PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:55](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:14]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:14](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:57, 03:49](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:40, 03:32](895 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:44, 03:52](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 05:37](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:01](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:48, 02:32](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:04](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:29](928 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:07, 12:12]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 04:23](988 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:06, 11:22]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:56](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](972 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:37, 05:31](1278 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:49](972 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:33, 03:17](1190 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:34, 05:31](1354 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:00](1000 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:07, 16:16]
+
+PASS -- COMPILE 's2s_gnu' [19:09, 17:18]
+
+PASS -- COMPILE 's2swa_debug_gnu' [14:07, 12:08]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [19:07, 17:36]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:06, 12:06]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [19:07, 17:24]
SYNOPSIS:
-Starting Date/Time: 20240321 11:53:01
-Ending Date/Time: 20240321 13:35:26
-Total Time: 01h:43m:01s
+Starting Date/Time: 20240326 10:44:23
+Ending Date/Time: 20240326 12:06:35
+Total Time: 01h:23m:31s
Compiles Completed: 55/55
-Tests Completed: 238/239
-Failed Tests:
-* TEST control_wam_debug_gnu: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2194/tests/logs/log_hercules/rt_control_wam_debug_gnu.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERCULES REGRESSION TESTING LOG====
-====START OF HERCULES REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1958825
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'wam_debug_gnu' [07:06, 02:10]
-PASS -- TEST 'control_wam_debug_gnu' [04:26, 02:05](499 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240321 14:09:35
-Ending Date/Time: 20240321 14:22:27
-Total Time: 00h:13m:10s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 239/239
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 81587c04bd..ad7c0590ad 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7908de2724b95cab917b6b6c3d059c66cb8bdaa7
+0a6b9489ca89719f3fab9fa759a07c60c4c91f78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,34 +11,34 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (remotes/origin/no_arg_mismatch)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3728126
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1851415
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:25, 38:16]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:44, 06:50](1787 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:42, 48:32]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 20:52](1659 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:10, 22:23](1876 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:20, 10:18](988 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 24:06](1634 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:25, 38:27]
-PASS -- TEST 'cpld_control_p8_intel' [10:33, 07:40](1828 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:56, 07:39](1834 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:45, 04:18](1716 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:33, 07:48](1849 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:23](1732 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:28, 07:20](2270 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:27, 07:51](1828 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:14, 07:05](1782 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:56, 07:48](1833 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:14](1784 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:23, 35:37]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:22, 05:48](1664 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:38](1708 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:17]
-PASS -- TEST 'cpld_debug_p8_intel' [13:52, 10:26](1855 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:42]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:12](1679 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:17]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:42](1715 MB)
-
-PASS -- COMPILE 's2s_intel' [34:25, 32:36]
-PASS -- TEST 'cpld_control_c48_intel' [15:29, 12:44](2793 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:57, 33:16]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 06:59](1833 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:33, 45:34]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:41](1687 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:40, 10:18](1037 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 23:55](1656 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:09, 04:56]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 31:53](1695 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:30, 35:06]
-PASS -- TEST 'control_flake_intel' [06:27, 04:30](648 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:29, 03:17](596 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:51](596 MB)
-PASS -- TEST 'control_latlon_intel' [05:27, 03:19](602 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:28](599 MB)
-PASS -- TEST 'control_c48_intel' [11:41, 10:07](841 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 10:05](837 MB)
-PASS -- TEST 'control_c192_intel' [14:53, 12:24](726 MB)
-PASS -- TEST 'control_c384_intel' [19:17, 15:36](897 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:52, 13:21](1020 MB)
-PASS -- TEST 'control_stochy_intel' [04:28, 02:14](601 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:27, 01:17](434 MB)
-PASS -- TEST 'control_lndp_intel' [04:28, 02:08](605 MB)
-PASS -- TEST 'control_iovr4_intel' [05:31, 03:17](597 MB)
-PASS -- TEST 'control_iovr5_intel' [05:31, 03:18](595 MB)
-PASS -- TEST 'control_p8_intel' [06:29, 04:02](1571 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 04:01](1574 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:52](1580 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:11, 02:06](818 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:34, 03:52](1559 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](833 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:34, 04:00](1558 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:34, 03:37](1664 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:16, 06:56](1572 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 05:12](1643 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:46, 04:03](1590 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:07, 04:39](1592 MB)
-PASS -- TEST 'regional_control_intel' [10:04, 07:05](765 MB)
-PASS -- TEST 'regional_restart_intel' [05:43, 03:43](938 MB)
-PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](760 MB)
-PASS -- TEST 'regional_2threads_intel' [06:56, 04:19](748 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:49, 06:56](759 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:39, 06:54](761 MB)
-
-PASS -- COMPILE 'rrfs_intel' [35:24, 33:31]
-PASS -- TEST 'rap_control_intel' [12:10, 10:01](990 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:29](1214 MB)
-PASS -- TEST 'rap_decomp_intel' [13:14, 10:26](991 MB)
-PASS -- TEST 'rap_2threads_intel' [12:06, 09:29](1077 MB)
-PASS -- TEST 'rap_restart_intel' [08:20, 05:16](989 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:28, 10:00](990 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:10, 10:39](989 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:49](1001 MB)
-PASS -- TEST 'hrrr_control_intel' [07:51, 05:07](988 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:19](982 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 04:43](1055 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:45](917 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:36, 09:48](993 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:13](1951 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 11:59](1940 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:19, 30:58]
-PASS -- TEST 'control_csawmg_intel' [09:50, 07:59](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:47, 07:54](695 MB)
-PASS -- TEST 'control_ras_intel' [06:24, 04:20](665 MB)
-
-PASS -- COMPILE 'wam_intel' [31:17, 29:47]
-PASS -- TEST 'control_wam_intel' [04:21, 02:44](507 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:18, 31:13]
-PASS -- TEST 'control_p8_faster_intel' [06:38, 03:35](1581 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:49, 06:27](769 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:23, 38:04]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:53, 06:52](1795 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:28, 47:48]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 20:53](1666 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 21:21](1885 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:26, 10:15](991 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:46](1632 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:23, 38:36]
+PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:27](1824 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:58, 07:25](1826 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:49, 04:26](1714 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:32, 07:29](1847 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:49, 04:32](1727 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:24, 07:16](2267 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 07:31](1825 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:50, 06:16](1784 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 07:30](1823 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:12](1793 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:22, 35:51]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 05:53](1660 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:40, 05:44](1718 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:07]
+PASS -- TEST 'cpld_debug_p8_intel' [13:42, 10:29](1847 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:38]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:26, 07:08](1673 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:32]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:37](1711 MB)
+
+PASS -- COMPILE 's2s_intel' [34:22, 32:18]
+PASS -- TEST 'cpld_control_c48_intel' [15:13, 12:42](2803 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:53, 32:47]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:07](1832 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [39:23, 38:06]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:35, 19:03](1686 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:26](1034 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 24:00](1656 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 05:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:43, 31:50](1689 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:23, 35:01]
+PASS -- TEST 'control_flake_intel' [06:28, 04:26](647 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:16](597 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:36, 03:42](600 MB)
+PASS -- TEST 'control_latlon_intel' [05:28, 03:21](602 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:22](596 MB)
+PASS -- TEST 'control_c48_intel' [11:38, 10:04](844 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:04](847 MB)
+PASS -- TEST 'control_c192_intel' [14:48, 12:21](724 MB)
+PASS -- TEST 'control_c384_intel' [18:54, 15:44](899 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:35, 13:29](1020 MB)
+PASS -- TEST 'control_stochy_intel' [04:29, 02:11](603 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:18](438 MB)
+PASS -- TEST 'control_lndp_intel' [04:29, 02:06](600 MB)
+PASS -- TEST 'control_iovr4_intel' [05:30, 03:17](602 MB)
+PASS -- TEST 'control_iovr5_intel' [05:31, 03:20](595 MB)
+PASS -- TEST 'control_p8_intel' [06:32, 03:57](1575 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:56](1576 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:50, 03:48](1574 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:05, 02:07](819 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:38, 03:52](1568 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 02:03](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:33, 04:03](1565 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:41](1661 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:17, 07:00](1574 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:03](1644 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:49, 03:56](1578 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:11, 04:30](1592 MB)
+PASS -- TEST 'regional_control_intel' [09:06, 07:00](757 MB)
+PASS -- TEST 'regional_restart_intel' [05:44, 03:47](931 MB)
+PASS -- TEST 'regional_decomp_intel' [09:58, 07:25](755 MB)
+PASS -- TEST 'regional_2threads_intel' [06:42, 04:14](759 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:48, 06:55](760 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:52](761 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:23, 33:07]
+PASS -- TEST 'rap_control_intel' [12:10, 10:05](996 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:28](1214 MB)
+PASS -- TEST 'rap_decomp_intel' [12:56, 10:29](979 MB)
+PASS -- TEST 'rap_2threads_intel' [12:08, 09:28](1092 MB)
+PASS -- TEST 'rap_restart_intel' [08:28, 05:11](990 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:26, 10:01](989 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:57, 10:35](980 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:32](997 MB)
+PASS -- TEST 'hrrr_control_intel' [07:54, 05:13](995 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:21](985 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:45](1049 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:47](917 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:31, 09:54](994 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:16](1947 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:33, 11:59](1936 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:20, 31:26]
+PASS -- TEST 'control_csawmg_intel' [09:49, 08:00](697 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:49, 07:53](692 MB)
+PASS -- TEST 'control_ras_intel' [06:24, 04:23](660 MB)
+
+PASS -- COMPILE 'wam_intel' [31:17, 29:37]
+PASS -- TEST 'control_wam_intel' [04:22, 02:46](500 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:20, 31:46]
+PASS -- TEST 'control_p8_faster_intel' [06:50, 03:35](1582 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:54, 06:24](762 MB)
PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:59]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:27, 03:19](764 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](765 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:42](768 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:24](765 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:44, 05:21](812 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:44, 05:14](812 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:25, 03:22](771 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:30, 03:26](818 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:30](1592 MB)
-PASS -- TEST 'regional_debug_intel' [23:54, 21:40](779 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:26, 05:57](1154 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:52](1142 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:58](1152 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:23, 06:02](1152 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:24, 06:01](1146 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:17](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:13](1153 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:10](1150 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1152 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:59](1152 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:55](1148 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:59](1149 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 10:00](1151 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:03](1152 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:16](1157 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:02](1150 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:53, 10:24](1161 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:44]
-PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](438 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:33]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1070 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](903 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:59, 04:23](867 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:24, 07:52](943 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:01](908 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 04:39](853 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:08, 06:12](899 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:21](847 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:25, 42:33]
-PASS -- TEST 'conus13km_control_intel' [05:09, 03:02](1109 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:22](1059 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:33](1018 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:24, 30:26]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:59, 05:27](900 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:53]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:59](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 05:52](1029 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:03, 18:20](1146 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](857 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:38](1088 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:19](1207 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:47]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:04](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:20, 34:58]
-PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:54](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:16](1088 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:09](773 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:16](806 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:47, 17:58](824 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:25, 05:33](775 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:20, 31:19]
-PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:27](768 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:30](753 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:31, 03:35](1059 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:19, 02:13](1030 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:31, 03:25](926 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:32, 03:32](936 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:32, 03:34](923 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 03:37](1054 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:32, 03:32](1076 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:30, 03:29](928 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 07:49](898 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:13, 07:44](847 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:34](1069 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:04](2396 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:21, 05:04](2394 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:24, 08:01](1028 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 07:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:49](1079 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:51]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:31](228 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:18](254 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:47](248 MB)
-
-PASS -- COMPILE 'atml_intel' [35:20, 33:46]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:48, 07:54](1612 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 07:50](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:01](865 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:18, 31:59]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:23, 02:15](1597 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:19, 30:28]
-PASS -- TEST 'control_atmwav_intel' [05:16, 02:11](612 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:19, 30:16]
-PASS -- TEST 'atmaero_control_p8_intel' [08:30, 05:08](1693 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:16](1719 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:42](1732 MB)
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:18](755 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:22](761 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:43](763 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:23, 03:20](768 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](806 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 05:09](808 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](770 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:34, 03:27](819 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:46, 03:33](1595 MB)
+PASS -- TEST 'regional_debug_intel' [23:51, 21:38](780 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:24, 06:07](1156 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:53](1145 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1150 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:01](1150 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:59](1148 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:19](1234 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:08](1152 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:08](1149 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1147 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 06:01](1150 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:54](1148 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:00](1147 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:29, 09:48](1152 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:56](1146 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:17](1149 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:24](1158 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:56]
+PASS -- TEST 'control_wam_debug_intel' [08:22, 06:08](438 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:16, 30:00]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:09](1077 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](899 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:22](868 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 07:49](943 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:03](913 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:36](854 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 06:09](896 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:20](856 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:37]
+PASS -- TEST 'conus13km_control_intel' [06:02, 02:54](1103 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:27](1058 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:39](1028 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:17, 30:37]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 05:26](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 05:55](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:53](1030 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:04, 18:26](1138 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](881 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:40](1082 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:25](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:03](1073 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:22, 34:45]
+PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:56](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:17](1089 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:14](767 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:27, 16:50](799 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:54, 18:32](821 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](773 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:22, 31:33]
+PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:33](763 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:38](755 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:09, 08:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 03:36](1048 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:12](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:17, 03:31](922 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:18, 03:34](927 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 03:33](921 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:36](1044 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 03:48](1063 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 03:31](941 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:08, 07:37](889 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:08, 07:45](839 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:14, 03:36](1060 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 05:08](2393 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 05:02](2396 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 03:00]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 07:58](1013 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 08:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:39](1077 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:46]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:33](225 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB)
+
+PASS -- COMPILE 'atml_intel' [36:21, 34:06]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 08:05](1596 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:39, 08:03](1596 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 04:17](866 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:18, 32:05]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 02:16](1611 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:21, 30:57]
+PASS -- TEST 'control_atmwav_intel' [05:08, 02:12](609 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 30:18]
+PASS -- TEST 'atmaero_control_p8_intel' [08:33, 05:10](1703 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:20](1735 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:41](1736 MB)
SYNOPSIS:
-Starting Date/Time: 20240319 13:16:22
-Ending Date/Time: 20240319 16:46:11
-Total Time: 03h:30m:34s
+Starting Date/Time: 20240326 15:42:51
+Ending Date/Time: 20240326 19:11:37
+Total Time: 03h:29m:25s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index f9aeedb7b4..b4183dfa8b 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
+0a6b9489ca89719f3fab9fa759a07c60c4c91f78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,17 +11,17 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
@@ -32,10 +32,10 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,357 +48,279 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_281704
+COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_34792
RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
+* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:49]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 05:08](3180 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:56, 16:31](1743 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 17:09](2057 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:03](1113 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:01, 18:25](1648 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:08]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:22, 23:21](1696 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:07, 14:19]
-PASS -- TEST 'cpld_control_p8_intel' [17:45, 05:38](3212 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:00, 05:41](3208 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:21](3249 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:46, 05:38](3237 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:46, 03:19](3278 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [19:00, 06:08](3556 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [17:45, 05:42](3202 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:42, 04:44](3061 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:01, 05:41](3212 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 09:52](3341 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:20](3546 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:02, 10:57](4120 MB)
-FAIL TO COMPARE -- TEST 'cpld_restart_bmark_p8_intel' [, ]( MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [17:46, 05:27](3176 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:07, 13:50]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [11:19, 04:24](1734 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:27](1787 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:17]
-PASS -- TEST 'cpld_debug_p8_intel' [11:36, 08:47](3252 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 06:02](1755 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:06]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:34, 04:18](1785 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 13:06]
-PASS -- TEST 'cpld_control_c48_intel' [14:58, 08:04](2826 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:45, 05:22](3213 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [21:07, 19:06]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:16, 16:35](1771 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:05](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 18:30](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:16]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:06, 24:47](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:16]
-PASS -- TEST 'control_flake_intel' [05:19, 03:28](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:19, 02:21](654 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:31](652 MB)
-PASS -- TEST 'control_latlon_intel' [11:19, 02:30](647 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:28, 02:34](648 MB)
-PASS -- TEST 'control_c48_intel' [12:26, 05:56](877 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [14:28, 05:55](877 MB)
-PASS -- TEST 'control_c192_intel' [11:33, 09:00](860 MB)
-PASS -- TEST 'control_c384_intel' [20:31, 10:03](1251 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:01, 08:48](1362 MB)
-PASS -- TEST 'control_stochy_intel' [03:23, 01:43](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:58](503 MB)
-PASS -- TEST 'control_lndp_intel' [05:17, 01:35](656 MB)
-PASS -- TEST 'control_iovr4_intel' [05:22, 02:31](646 MB)
-PASS -- TEST 'control_iovr5_intel' [04:21, 02:33](649 MB)
-PASS -- TEST 'control_p8_intel' [05:10, 03:00](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 02:56](1639 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:37, 02:49](1639 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:16, 01:42](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:16, 02:53](1617 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 01:37](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:02](1618 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:00](1722 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:01, 07:31](1625 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:45, 05:36](1689 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:49, 04:24](1632 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:09, 03:27](1635 MB)
-PASS -- TEST 'regional_control_intel' [07:57, 05:04](857 MB)
-PASS -- TEST 'regional_restart_intel' [04:37, 02:44](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [07:33, 05:29](845 MB)
-PASS -- TEST 'regional_2threads_intel' [05:50, 03:39](845 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:41, 05:01](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:01](861 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 05:08](860 MB)
-PASS -- TEST 'regional_wofs_intel' [09:39, 06:33](1921 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:07, 12:18]
-PASS -- TEST 'rap_control_intel' [11:36, 07:47](1100 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 04:41](1300 MB)
-PASS -- TEST 'rap_decomp_intel' [12:26, 08:49](1024 MB)
-PASS -- TEST 'rap_2threads_intel' [10:37, 07:51](1179 MB)
-PASS -- TEST 'rap_restart_intel' [06:26, 04:02](1105 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:33, 11:29](1110 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:42, 08:01](1039 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:30, 05:50](1128 MB)
-PASS -- TEST 'hrrr_control_intel' [07:28, 03:58](1036 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 04:09](1022 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:10, 03:25](1116 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:29, 07:35](1095 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:28, 12:19](1992 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 08:51](2069 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:06, 11:08]
-PASS -- TEST 'control_csawmg_intel' [08:34, 06:03](740 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:36, 05:56](748 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:19](739 MB)
-
-PASS -- COMPILE 'wam_intel' [15:07, 11:08]
-PASS -- TEST 'control_wam_intel' [04:17, 02:07](656 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:06, 11:44]
-PASS -- TEST 'control_p8_faster_intel' [05:34, 02:36](1630 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:33]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:42](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](814 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:03](813 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:45](819 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:16](869 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:43, 04:00](858 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:44](824 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 02:51](871 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:46, 02:54](1636 MB)
-PASS -- TEST 'regional_debug_intel' [19:42, 17:18](845 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:19, 04:51](1201 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:47](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:47](1197 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:53](1202 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:51](1206 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:15](1285 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:19, 05:05](1200 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:04](1200 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:19, 05:03](1208 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 05:07](1204 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:54](1206 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:57](1205 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:55](1198 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:45](1193 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:05](1208 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:22, 04:57](1199 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:24, 08:28](1208 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:06, 03:02]
-PASS -- TEST 'control_wam_debug_intel' [06:18, 05:00](502 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 11:40]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:00, 04:22](1167 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:21](1044 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 03:25](980 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:50, 06:44](1086 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 02:57](963 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:40, 03:39](921 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:17, 04:49](1036 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:52](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:06, 13:43]
-PASS -- TEST 'conus13km_control_intel' [04:56, 02:07](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:48, 01:04](1126 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:21](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 11:10]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:17](998 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1077 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:47](1079 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:50, 14:27](1229 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:50, 14:40](929 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:44, 08:19](1155 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:36](1290 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:21]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:56](1123 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:07, 12:11]
-PASS -- TEST 'hafs_regional_atm_intel' [08:13, 05:33](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:22, 05:47](1112 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 06:57](832 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:58](865 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:43](834 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:55, 06:05](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:22, 07:17](520 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 03:09](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 07:58](465 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:47, 05:42](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:55, 03:57](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:23](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:24, 01:30](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:52, 04:31](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:06, 03:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 13:01](574 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:55, 09:27](674 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:15, 10:06](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 14:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:57, 09:21](727 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:06, 13:56]
-PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:20](831 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:08, 06:26](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 15:57](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:14]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:35](1130 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:45](1091 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1021 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1000 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:51](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:41](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:31](1009 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:13, 06:11](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:59](1038 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:41](1125 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:31](2491 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:35](2489 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:48]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:11](1060 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1122 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:13]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:46](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:48](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:35](320 MB)
-
-PASS -- COMPILE 'atml_intel' [15:07, 12:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:40, 04:15](1600 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:38, 04:15](1601 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:24](899 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:08, 12:21]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 01:46](1667 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:07, 11:42]
-PASS -- TEST 'control_atmwav_intel' [04:11, 01:39](676 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:07, 11:47]
-PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:05](2969 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:53](3089 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:59, 05:05](3107 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 10:11]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:06, 03:19]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:42, 20:56](4568 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [19:07, 15:34]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:38, 05:11](3171 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:08, 20:52]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 16:27](1743 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 17:23](2027 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 08:10](1112 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 18:29](1651 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 05:16]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:09, 23:06](1676 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:07, 15:09]
+PASS -- TEST 'cpld_control_p8_intel' [12:39, 05:49](3150 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:54, 05:46](3211 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:22](3207 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:39, 05:49](3233 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:29](3271 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:39, 06:13](3548 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:39, 05:54](3205 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 04:47](3071 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:54, 05:42](3210 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 09:55](3342 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:22, 06:12](3625 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:09, 10:59](4111 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:21, 06:56](4373 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 05:25](3172 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:07, 14:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 04:27](1744 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:35, 04:19](1776 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [11:07, 07:29]
+PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:41](3244 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:07, 05:50]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:06, 06:01](1747 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [17:07, 13:40]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:38, 04:26](1780 MB)
+
+PASS -- COMPILE 's2s_intel' [17:07, 14:04]
+PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:02](2829 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:13, 19:40]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:47, 05:22](3211 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 20:31]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:22, 16:37](1769 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 08:07](1173 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 18:27](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:29]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:17, 24:28](1710 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:07, 14:25]
+PASS -- TEST 'control_flake_intel' [05:18, 03:31](695 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:27](655 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:31](655 MB)
+PASS -- TEST 'control_latlon_intel' [04:17, 02:30](649 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:27](648 MB)
+PASS -- TEST 'control_c48_intel' [07:27, 05:55](877 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:52](872 MB)
+PASS -- TEST 'control_c192_intel' [11:35, 09:09](857 MB)
+PASS -- TEST 'control_c384_intel' [13:38, 10:09](1246 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:54, 08:55](1357 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:40](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:22, 00:59](503 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:36](653 MB)
+PASS -- TEST 'control_iovr4_intel' [04:20, 02:29](616 MB)
+PASS -- TEST 'control_iovr5_intel' [04:22, 02:27](655 MB)
+PASS -- TEST 'control_p8_intel' [05:14, 03:01](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:58](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:51](1629 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:18, 01:39](896 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:08, 02:54](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:38](928 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:18, 03:04](1623 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:05](1722 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1629 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:54](1699 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:37, 02:54](1632 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:48, 03:28](1610 MB)
+PASS -- TEST 'regional_control_intel' [07:45, 05:07](858 MB)
+PASS -- TEST 'regional_restart_intel' [04:40, 02:51](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB)
+PASS -- TEST 'regional_2threads_intel' [05:40, 03:41](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:40, 05:02](1368 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:03](853 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:03](858 MB)
+PASS -- TEST 'regional_wofs_intel' [11:34, 06:38](1919 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 12:01]
+PASS -- TEST 'rap_control_intel' [10:39, 07:44](1102 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 04:39](1272 MB)
+PASS -- TEST 'rap_decomp_intel' [11:00, 08:05](1031 MB)
+PASS -- TEST 'rap_2threads_intel' [11:24, 07:51](1185 MB)
+PASS -- TEST 'rap_restart_intel' [07:20, 04:05](1104 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:44](1108 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:09, 08:08](1025 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:19, 05:48](1134 MB)
+PASS -- TEST 'hrrr_control_intel' [07:00, 04:01](1044 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:10](1024 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:24, 03:20](1105 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:11](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:40](1101 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:10](2001 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:03](2075 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:08, 11:34]
+PASS -- TEST 'control_csawmg_intel' [07:41, 06:01](747 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:40, 05:58](749 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:21](742 MB)
+
+PASS -- COMPILE 'wam_intel' [12:08, 10:59]
+PASS -- TEST 'control_wam_intel' [04:19, 02:07](657 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:09, 17:36]
+PASS -- TEST 'control_p8_faster_intel' [05:34, 02:45](1601 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:44, 04:39](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:03]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:41](812 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:29, 02:42](808 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:07](807 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:46](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:47, 04:10](831 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [08:46, 04:06](853 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:29, 02:51](870 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:51, 02:54](1648 MB)
+PASS -- TEST 'regional_debug_intel' [23:51, 18:45](845 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:25, 04:48](1202 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:23, 04:44](1192 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:24, 05:02](1199 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 04:51](1203 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:04](1164 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:21](1281 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:00](1201 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 04:52](1198 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:27, 05:05](1186 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:57](1196 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:49](1207 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:51](1196 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1207 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1200 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 05:47](1200 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:22, 04:52](1193 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:25](1203 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:08, 03:30]
+PASS -- TEST 'control_wam_debug_intel' [07:18, 05:02](516 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:27]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:27](1138 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:28](1046 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:22](986 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1088 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:05, 02:56](963 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 03:38](925 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:12, 05:00](1038 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:52](932 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:08]
+PASS -- TEST 'conus13km_control_intel' [04:53, 02:08](1200 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:00](1123 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 11:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:14](1010 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:30]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:55](1076 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:43](1074 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:52, 14:34](1232 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:08](925 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 08:29](1151 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:39](1289 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1129 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:07, 13:26]
+PASS -- TEST 'hafs_regional_atm_intel' [09:08, 05:41](744 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:23, 06:03](1122 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:09](835 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:54](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 14:37](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:08](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:34](518 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:45, 03:07](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:26, 08:02](477 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:15](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:49, 04:02](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:22](583 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:24, 01:30](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:56, 04:40](801 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:13](574 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:28](673 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:01, 09:43](708 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 07:12](724 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:06, 12:26]
+PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:19](825 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:29](811 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:07](1215 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:32]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:15, 02:37](1133 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1083 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:34](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:40](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:39](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:36](1136 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:39](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:36](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 05:55](1057 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 06:03](1034 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:39](1134 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:32](2439 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:40](2438 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:08]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:22](1059 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:34](1136 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:15]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:50](251 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](322 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:32](320 MB)
+
+PASS -- COMPILE 'atml_intel' [14:08, 12:55]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:33, 04:21](1595 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:18](1599 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:23](896 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:08, 12:44]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:48](1672 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:06, 11:48]
+PASS -- TEST 'control_atmwav_intel' [04:03, 01:42](673 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:07, 11:52]
+PASS -- TEST 'atmaero_control_p8_intel' [06:18, 03:57](3033 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:47](3100 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:03](3106 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:08, 11:44]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:47, 20:47](4585 MB)
SYNOPSIS:
-Starting Date/Time: 20240321 11:53:32
-Ending Date/Time: 20240321 13:32:01
-Total Time: 01h:39m:27s
+Starting Date/Time: 20240326 10:43:43
+Ending Date/Time: 20240326 12:20:21
+Total Time: 01h:37m:23s
Compiles Completed: 39/39
-Tests Completed: 181/182
-Failed Tests:
-* TEST cpld_restart_bmark_p8_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2194/tests/logs/log_orion/rt_cpld_restart_bmark_p8_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ORION REGRESSION TESTING LOG====
-====START OF ORION REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_284715
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nems
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 's2swa_intel' [16:06, 14:23]
-PASS -- TEST 'cpld_bmark_p8_intel' [19:05, 11:20](4122 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 07:17](4364 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240321 13:50:38
-Ending Date/Time: 20240321 14:43:04
-Total Time: 00h:52m:41s
-Compiles Completed: 1/1
-Tests Completed: 2/2
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 5346ff3eb9..b05a8b7d07 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7908de2724b95cab917b6b6c3d059c66cb8bdaa7
+0a6b9489ca89719f3fab9fa759a07c60c4c91f78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,34 +11,34 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 7384d92b6c2897be4f29ad4a3747f66762631574 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-703-g7384d92)
- 94596b3823c40ea33255121220dac4463e8ccef5 FV3/ccpp/physics (EP4-737-g94596b38)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5186-g7fa55935)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 51d107b15a68445179bd3114d88b3c1fd20469ee FV3 (remotes/origin/no_arg_mismatch)
+ bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- 520f70584a37d706859be49d8b86fc01e816b6ea stochastic_physics (ufs-v2.0.0-209-g520f705)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_10549
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_147708
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:35, 11:04]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:51, 01:19](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [39:46, 38:52]
-PASS -- TEST 'cpld_control_gfsv17_intel' [13:39, 02:31](1586 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:55, 01:56](1708 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [54:55, 02:10](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:40, 02:17](1577 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:34, 10:22]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [41:53, 01:15](1604 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:55, 18:56]
-PASS -- TEST 'cpld_control_p8_intel' [33:30, 01:29](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:30, 01:34](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [24:57, 02:02](3059 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [33:30, 01:26](3028 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [24:57, 01:55](3082 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [33:30, 00:59](3317 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [33:30, 01:32](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [33:31, 01:24](2925 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:30, 01:38](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [33:39, 05:02](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:50, 04:24](4254 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [33:30, 01:50](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:32, 10:05]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [42:53, 00:59](1584 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:53, 01:08](1635 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [24:04, 23:22]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:21, 02:01](1634 MB)
-
-PASS -- COMPILE 's2s_intel' [27:10, 26:15]
-PASS -- TEST 'cpld_control_c48_intel' [26:00, 00:50](2657 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [28:13, 27:56]
-PASS -- TEST 'cpld_control_p8_faster_intel' [24:57, 01:47](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [11:35, 10:52]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 01:30](1602 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:01, 01:43](901 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:37, 01:04](1568 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:20, 04:18]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:06, 01:08](1623 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:50, 18:04]
-PASS -- TEST 'control_flake_intel' [29:13, 00:25](570 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [29:13, 00:48](518 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:13, 00:43](531 MB)
-PASS -- TEST 'control_latlon_intel' [29:13, 00:40](525 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [29:13, 00:49](521 MB)
-PASS -- TEST 'control_c48_intel' [29:12, 00:57](716 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [29:12, 00:57](714 MB)
-PASS -- TEST 'control_c192_intel' [29:13, 00:35](639 MB)
-PASS -- TEST 'control_c384_intel' [29:17, 01:53](954 MB)
-PASS -- TEST 'control_c384gdas_intel' [29:17, 02:36](1093 MB)
-PASS -- TEST 'control_stochy_intel' [29:13, 00:24](535 MB)
-PASS -- TEST 'control_stochy_restart_intel' [26:45, 01:01](332 MB)
-PASS -- TEST 'control_lndp_intel' [29:13, 00:26](527 MB)
-PASS -- TEST 'control_iovr4_intel' [29:13, 00:43](524 MB)
-PASS -- TEST 'control_iovr5_intel' [29:13, 00:39](524 MB)
-PASS -- TEST 'control_p8_intel' [29:13, 01:57](1501 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [29:13, 01:58](1499 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [29:13, 01:59](1510 MB)
-PASS -- TEST 'control_restart_p8_intel' [23:37, 00:54](689 MB)
-PASS -- TEST 'control_noqr_p8_intel' [26:45, 01:29](1488 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [21:33, 00:58](695 MB)
-PASS -- TEST 'control_decomp_p8_intel' [26:01, 01:35](1497 MB)
-PASS -- TEST 'control_2threads_p8_intel' [25:43, 00:52](1593 MB)
-PASS -- TEST 'control_p8_lndp_intel' [25:41, 01:20](1510 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [25:40, 01:06](1566 MB)
-PASS -- TEST 'control_p8_mynn_intel' [25:40, 01:53](1513 MB)
-PASS -- TEST 'merra2_thompson_intel' [25:36, 01:36](1510 MB)
-PASS -- TEST 'regional_control_intel' [25:32, 00:20](609 MB)
-PASS -- TEST 'regional_restart_intel' [19:37, 00:29](776 MB)
-PASS -- TEST 'regional_decomp_intel' [24:54, 01:04](606 MB)
-PASS -- TEST 'regional_2threads_intel' [24:45, 01:02](666 MB)
-PASS -- TEST 'regional_noquilt_intel' [24:44, 00:33](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [24:38, 00:28](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [24:11, 00:15](610 MB)
-PASS -- TEST 'regional_wofs_intel' [23:33, 01:01](1584 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:42, 12:32]
-PASS -- TEST 'rap_control_intel' [22:24, 01:22](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:24, 01:16](1092 MB)
-PASS -- TEST 'rap_decomp_intel' [21:36, 02:08](917 MB)
-PASS -- TEST 'rap_2threads_intel' [21:33, 01:34](1010 MB)
-PASS -- TEST 'rap_restart_intel' [13:41, 01:19](785 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [20:52, 01:17](913 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:51, 01:59](912 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [12:18, 01:58](788 MB)
-PASS -- TEST 'hrrr_control_intel' [20:16, 01:16](913 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [20:11, 01:09](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [20:06, 01:24](987 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [15:00, 01:08](741 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [19:52, 01:22](914 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [19:48, 01:09](1876 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:07, 00:28](1860 MB)
-
-PASS -- COMPILE 'csawmg_intel' [23:01, 22:26]
-PASS -- TEST 'control_csawmg_intel' [18:49, 00:32](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [18:43, 00:40](599 MB)
-PASS -- TEST 'control_ras_intel' [18:39, 00:49](561 MB)
-
-PASS -- COMPILE 'wam_intel' [22:02, 21:34]
-PASS -- TEST 'control_wam_intel' [18:18, 00:57](273 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [30:26, 29:18]
-PASS -- TEST 'control_p8_faster_intel' [11:25, 02:03](1510 MB)
-PASS -- TEST 'regional_control_faster_intel' [11:19, 00:29](611 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [21:02, 20:46]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:49, 01:18](687 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:27, 01:25](690 MB)
-PASS -- TEST 'control_stochy_debug_intel' [12:23, 00:54](694 MB)
-PASS -- TEST 'control_lndp_debug_intel' [11:56, 01:12](695 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [11:31, 00:43](736 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [11:20, 00:47](735 MB)
-PASS -- TEST 'control_ras_debug_intel' [10:55, 01:10](700 MB)
-PASS -- TEST 'control_diag_debug_intel' [10:52, 01:15](746 MB)
-PASS -- TEST 'control_debug_p8_intel' [10:15, 01:07](1519 MB)
-PASS -- TEST 'regional_debug_intel' [10:01, 01:08](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:14, 01:01](1079 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:14, 01:04](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:14, 00:59](1073 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [09:02, 01:01](1074 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:21, 00:58](1074 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:09, 00:55](1163 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:54, 00:53](1072 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 00:50](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:37, 00:55](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 01:06](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:56, 01:08](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:55, 01:04](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:46, 00:49](1071 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 01:10](1066 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:15, 01:14](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:55, 01:03](1073 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [05:39, 01:35](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:43, 13:23]
-PASS -- TEST 'control_wam_debug_intel' [15:37, 00:59](301 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 14:08]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:31, 01:20](955 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:30, 01:18](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:30, 01:43](785 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:30, 01:50](856 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:31, 02:01](843 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:30, 01:35](788 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:45](687 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:31, 00:15](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:58, 20:25]
-PASS -- TEST 'conus13km_control_intel' [05:30, 01:05](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:54](1006 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:25, 00:42](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:56, 16:17]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 01:30](809 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:22, 03:57]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [18:16, 01:17](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [18:02, 00:17](952 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:02, 00:43](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:57, 00:35](713 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [17:40, 00:48](1038 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:35, 00:34](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:27, 07:01]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:22, 01:07](979 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:48, 13:37]
-PASS -- TEST 'hafs_regional_atm_intel' [03:40, 02:08](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [03:19, 01:20](968 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [03:05, 02:01](662 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [02:37, 01:37](690 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [02:38, 01:27](707 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [02:37, 01:16](388 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:28, 02:12](408 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [01:50, 01:19](289 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [01:38, 02:20](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [01:34, 01:35](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [01:20, 00:50](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [01:14, 01:54](491 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:05, 01:08](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:33, 09:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [00:46, 01:05](502 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [00:21, 00:52](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [00:21, 00:49](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:42, 12:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:16, 00:59](712 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:42, 14:18]
-PASS -- TEST 'hafs_regional_docn_intel' [58:57, 01:14](660 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [58:57, 02:11](649 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [58:55, 00:38](880 MB)
-
-PASS -- COMPILE 'atml_intel' [21:59, 21:38]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:24, 02:29](1539 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [51:24, 02:34](1553 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:16, 01:16](744 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:46, 13:35]
-PASS -- TEST 'atmaero_control_p8_intel' [57:41, 01:37](2849 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [57:41, 01:02](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [57:41, 01:51](2926 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:48, 14:48]
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:39, 10:56]
-PASS -- TEST 'regional_atmaq_debug_intel' [57:42, 01:13](4434 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:47, 15:28]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:02, 01:24](2972 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 23:12]
+PASS -- TEST 'cpld_control_gfsv17_intel' [02:44, 02:26](1590 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:18, 02:06](1711 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [44:06, 01:29](845 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:45, 01:34](1569 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:52, 16:53]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [08:58, 01:23](1602 MB)
+
+PASS -- COMPILE 's2swa_intel' [26:11, 25:50]
+PASS -- TEST 'cpld_control_p8_intel' [00:24, 01:38](3003 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:24, 01:36](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [51:26, 01:43](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [00:24, 01:30](3030 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [51:26, 01:42](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [59:28, 01:46](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [57:57, 02:04](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [57:53, 01:43](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:49, 02:23](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [57:55, 04:05](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:52, 03:37](4252 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [57:44, 02:25](2969 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:37, 11:58]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [14:12, 00:59](1582 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:12, 01:04](1637 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:36, 10:07]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:13, 01:04](1636 MB)
+
+PASS -- COMPILE 's2s_intel' [44:48, 43:53]
+PASS -- TEST 'cpld_control_c48_intel' [41:37, 00:48](2657 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:51, 16:25]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 01:47](3004 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:47, 15:03]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:02, 01:27](1603 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [53:24, 00:52](901 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [53:15, 01:07](1572 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:26, 04:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:24, 01:28](1620 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [19:53, 19:30]
+PASS -- TEST 'control_flake_intel' [01:29, 00:31](571 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [01:29, 00:54](523 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:29, 00:55](527 MB)
+PASS -- TEST 'control_latlon_intel' [01:29, 00:50](523 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:29, 00:55](525 MB)
+PASS -- TEST 'control_c48_intel' [01:28, 01:00](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [01:28, 00:58](718 MB)
+PASS -- TEST 'control_c192_intel' [01:29, 01:39](638 MB)
+PASS -- TEST 'control_c384_intel' [01:33, 03:25](953 MB)
+PASS -- TEST 'control_c384gdas_intel' [01:24, 04:28](1092 MB)
+PASS -- TEST 'control_stochy_intel' [57:00, 00:34](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [54:20, 00:54](334 MB)
+PASS -- TEST 'control_lndp_intel' [56:58, 00:39](526 MB)
+PASS -- TEST 'control_iovr4_intel' [56:57, 00:54](526 MB)
+PASS -- TEST 'control_iovr5_intel' [56:56, 00:56](523 MB)
+PASS -- TEST 'control_p8_intel' [56:52, 01:53](1499 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [56:51, 01:58](1508 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [56:01, 02:02](1500 MB)
+PASS -- TEST 'control_restart_p8_intel' [51:15, 02:08](688 MB)
+PASS -- TEST 'control_noqr_p8_intel' [55:59, 01:45](1494 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [50:34, 01:02](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [55:50, 01:39](1503 MB)
+PASS -- TEST 'control_2threads_p8_intel' [54:35, 01:07](1587 MB)
+PASS -- TEST 'control_p8_lndp_intel' [54:34, 01:39](1509 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [54:33, 02:21](1559 MB)
+PASS -- TEST 'control_p8_mynn_intel' [54:32, 02:18](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [54:19, 01:45](1512 MB)
+PASS -- TEST 'regional_control_intel' [54:08, 00:27](610 MB)
+PASS -- TEST 'regional_restart_intel' [48:11, 00:25](776 MB)
+PASS -- TEST 'regional_decomp_intel' [53:13, 01:05](606 MB)
+PASS -- TEST 'regional_2threads_intel' [51:46, 01:01](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [51:22, 00:23](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 00:26](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [51:11, 00:23](608 MB)
+PASS -- TEST 'regional_wofs_intel' [50:33, 01:03](1576 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:31, 10:05]
+PASS -- TEST 'rap_control_intel' [05:41, 01:24](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:42, 01:23](1089 MB)
+PASS -- TEST 'rap_decomp_intel' [05:41, 02:06](919 MB)
+PASS -- TEST 'rap_2threads_intel' [05:41, 02:02](1009 MB)
+PASS -- TEST 'rap_restart_intel' [50:19, 01:15](788 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [05:41, 01:25](914 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:41, 02:07](912 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [50:13, 01:43](789 MB)
+PASS -- TEST 'hrrr_control_intel' [05:41, 01:17](913 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:41, 01:12](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:42, 01:42](993 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [50:08, 01:00](744 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [05:41, 01:29](907 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [05:41, 01:12](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [05:41, 00:31](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:39, 10:50]
+PASS -- TEST 'control_csawmg_intel' [02:33, 00:42](598 MB)
+PASS -- TEST 'control_csawmgt_intel' [02:33, 00:43](598 MB)
+PASS -- TEST 'control_ras_intel' [02:33, 01:02](563 MB)
+
+PASS -- COMPILE 'wam_intel' [17:50, 17:29]
+PASS -- TEST 'control_wam_intel' [50:07, 00:50](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:41, 13:14]
+PASS -- TEST 'control_p8_faster_intel' [48:51, 02:09](1505 MB)
+PASS -- TEST 'regional_control_faster_intel' [48:35, 00:28](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [17:54, 16:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [48:31, 01:11](689 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:21, 01:21](692 MB)
+PASS -- TEST 'control_stochy_debug_intel' [48:05, 00:56](691 MB)
+PASS -- TEST 'control_lndp_debug_intel' [47:32, 01:07](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [47:12, 00:37](733 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [47:06, 00:42](733 MB)
+PASS -- TEST 'control_ras_debug_intel' [46:55, 01:09](706 MB)
+PASS -- TEST 'control_diag_debug_intel' [46:51, 01:22](745 MB)
+PASS -- TEST 'control_debug_p8_intel' [46:35, 01:02](1517 MB)
+PASS -- TEST 'regional_debug_intel' [46:34, 00:09](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [46:29, 00:58](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [46:27, 01:02](1069 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [46:13, 00:59](1077 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [45:35, 00:56](1073 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [45:19, 00:56](1079 MB)
+PASS -- TEST 'rap_diag_debug_intel' [45:19, 00:44](1156 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:41, 00:48](1075 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:41, 00:48](1074 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [44:26, 00:54](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:43, 00:57](1073 MB)
+PASS -- TEST 'rap_noah_debug_intel' [43:36, 01:07](1073 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [43:34, 01:02](1069 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:28, 00:56](1075 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [43:23, 01:05](1065 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [42:39, 01:07](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [42:29, 01:05](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:17, 01:27](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [16:49, 15:55]
+PASS -- TEST 'control_wam_debug_intel' [42:17, 01:12](299 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:38, 11:11]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:18, 01:29](953 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:10, 01:38](795 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [42:06, 02:34](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [42:05, 02:02](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [41:13, 01:56](842 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:11, 02:07](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [34:29, 01:38](689 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [36:08, 00:15](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:33, 11:11]
+PASS -- TEST 'conus13km_control_intel' [39:53, 01:05](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [36:00, 00:56](1009 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [35:54, 00:45](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 12:05]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:50, 01:38](808 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:28, 06:34]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:32, 01:12](953 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:01, 00:21](949 MB)
+PASS -- TEST 'conus13km_debug_intel' [38:45, 00:58](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [38:37, 00:43](712 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [38:05, 00:56](1041 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [38:04, 00:57](1105 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:43, 14:31]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:50, 01:14](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:50, 13:39]
+PASS -- TEST 'hafs_regional_atm_intel' [37:05, 01:27](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:00, 01:00](967 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:58, 02:06](663 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:51](699 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:10, 01:54](706 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:06, 01:07](383 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:32, 01:23](401 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [35:31, 01:36](282 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:07, 02:41](374 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:30, 01:37](413 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:57, 00:59](419 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:57, 00:53](495 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:47, 00:25](313 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:21, 03:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:42, 01:05](503 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:40, 12:26]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:28, 01:14](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:24, 01:11](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:01, 20:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:33, 01:11](718 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:50, 14:56]
+PASS -- TEST 'hafs_regional_docn_intel' [33:21, 01:35](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:08, 01:30](649 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:03, 00:45](883 MB)
+
+PASS -- COMPILE 'atml_intel' [15:49, 14:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:00, 01:15](1542 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [31:13, 01:12](1549 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:42, 00:22](744 MB)
+
+PASS -- COMPILE 'atmaero_intel' [18:59, 18:09]
+PASS -- TEST 'atmaero_control_p8_intel' [31:05, 01:33](2849 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 01:01](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:14, 02:01](2922 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:34, 08:55]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:41, 11:58]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:20, 01:06](4435 MB)
SYNOPSIS:
-Starting Date/Time: 20240319 13:06:16
-Ending Date/Time: 20240319 14:29:03
-Total Time: 01h:23m:32s
+Starting Date/Time: 20240326 17:32:52
+Ending Date/Time: 20240326 18:56:26
+Total Time: 01h:24m:15s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/rt.sh b/tests/rt.sh
index fd6464c60f..a1d72d4b81 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -87,7 +87,7 @@ update_rtconf() {
RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
if [[ ${MACHINES} == '' ]]; then
compile_line=$line
- COMPILE_LINE_USED=false
+ COMPILE_LINE_USED=false
elif [[ ${MACHINES} == -* ]]; then
[[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false
elif [[ ${MACHINES} == +* ]]; then
@@ -112,7 +112,7 @@ update_rtconf() {
if [[ $TEST_IDX != -1 ]]; then
if [[ $COMPILE_LINE_USED == false ]]; then
- echo -en '\n' >> $RT_TEMP_CONF
+ echo -en '\n' >> $RT_TEMP_CONF
echo "$compile_line" >> $RT_TEMP_CONF
COMPILE_LINE_USED=true
fi
@@ -135,7 +135,7 @@ update_rtconf() {
fi
fi
echo "$line" >> $RT_TEMP_CONF
- fi
+ fi
fi
fi
done < "$TESTS_FILE"
@@ -610,20 +610,26 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR
if [[ $MACHINE_ID = wcoss2 ]]; then
- module load ecflow/5.6.0.13
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.6.0.13
+ fi
module load intel/19.1.3.304 python/3.8.6
- ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
- export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
- export ECF_COMDIR=${PATHRT}/ecf_comdir
- rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
- mkdir -p ${ECF_OUTPUTDIR}
- mkdir -p ${ECF_COMDIR}
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
+ export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
+ export ECF_COMDIR=${PATHRT}/ecf_comdir
+ rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
+ mkdir -p ${ECF_OUTPUTDIR}
+ mkdir -p ${ECF_COMDIR}
+ fi
export colonifnco=":output" # hack
DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT
QUEUE=dev
COMPILE_QUEUE=dev
- ROCOTO_SCHEDULER=pbs
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ ROCOTO_SCHEDULER=pbs
+ fi
PARTITION=
STMP=/lfs/h2/emc/ptmp
PTMP=/lfs/h2/emc/ptmp
@@ -631,20 +637,26 @@ if [[ $MACHINE_ID = wcoss2 ]]; then
elif [[ $MACHINE_ID = acorn ]]; then
- module load ecflow/5.6.0.13
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.6.0.13
+ fi
module load intel/19.1.3.304 python/3.8.6
- ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
- export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
- export ECF_COMDIR=${PATHRT}/ecf_comdir
- rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
- mkdir -p ${ECF_OUTPUTDIR}
- mkdir -p ${ECF_COMDIR}
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
+ export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
+ export ECF_COMDIR=${PATHRT}/ecf_comdir
+ rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
+ mkdir -p ${ECF_OUTPUTDIR}
+ mkdir -p ${ECF_COMDIR}
+ fi
export colonifnco=":output" # hack
DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT
QUEUE=dev
COMPILE_QUEUE=dev
- ROCOTO_SCHEDULER=pbs
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ ROCOTO_SCHEDULER=pbs
+ fi
PARTITION=
STMP=/lfs/h2/emc/ptmp
PTMP=/lfs/h2/emc/ptmp
@@ -652,13 +664,14 @@ elif [[ $MACHINE_ID = acorn ]]; then
elif [[ $MACHINE_ID = gaea ]]; then
- module use /ncrc/proj/epic/rocoto/modulefiles
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
-
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module use /ncrc/proj/epic/rocoto/modulefiles
+ module load rocoto
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
module load PrgEnv-intel/8.3.3
module load intel-classic/2023.1.0
@@ -666,9 +679,11 @@ elif [[ $MACHINE_ID = gaea ]]; then
module load python/3.9.12
module use /ncrc/proj/epic/spack-stack/modulefiles
module load gcc/12.2.0
- module load ecflow/5.8.4
- ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ fi
DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT
QUEUE=normal
@@ -681,14 +696,18 @@ elif [[ $MACHINE_ID = gaea ]]; then
elif [[ $MACHINE_ID = hera ]]; then
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
- module load ecflow/5.5.3
- ECFLOW_START=ecflow_start.sh
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.11.4
+ ECFLOW_START=ecflow_start.sh
+ fi
QUEUE=batch
COMPILE_QUEUE=batch
@@ -707,16 +726,20 @@ elif [[ $MACHINE_ID = orion ]]; then
module load gcc/10.2.0
module load python/3.9.2
- module load contrib rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load contrib rocoto
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles
- module load ecflow/5.8.4
- ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ fi
QUEUE=batch
COMPILE_QUEUE=batch
@@ -730,16 +753,20 @@ elif [[ $MACHINE_ID = orion ]]; then
elif [[ $MACHINE_ID = hercules ]]; then
- module load contrib rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load contrib rocoto
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles
- module load ecflow/5.8.4
- ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ fi
QUEUE=batch
COMPILE_QUEUE=batch
@@ -762,14 +789,18 @@ elif [[ $MACHINE_ID = jet ]]; then
exit 1
fi
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
- module load ecflow/5.11.4
- ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.11.4
+ ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
+ fi
module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core
module load stack-intel/2021.5.0
@@ -787,18 +818,24 @@ elif [[ $MACHINE_ID = jet ]]; then
elif [[ $MACHINE_ID = s4 ]]; then
- module load rocoto/1.3.2
- module load ecflow/5.6.0
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto/1.3.2
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.6.0
+ fi
module load miniconda/3.8-s4
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
module use /data/prod/jedi/spack-stack/modulefiles
- module load ecflow/5.8.4
- ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ fi
QUEUE=s4
COMPILE_QUEUE=s4
@@ -813,17 +850,23 @@ elif [[ $MACHINE_ID = s4 ]]; then
elif [[ $MACHINE_ID = derecho ]]; then
- module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles
- module load rocoto
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles
+ module load rocoto
+ fi
module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles
- module load ecflow/5.8.4
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ fi
module unload ncarcompilers
module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core
module load stack-intel/2021.10.0
module load stack-python/3.10.8
# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
- ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ fi
QUEUE=main
COMPILE_QUEUE=main
@@ -836,15 +879,19 @@ elif [[ $MACHINE_ID = derecho ]]; then
cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN
cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=pbspro
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=pbspro
+ fi
elif [[ $MACHINE_ID = stampede ]]; then
export PYTHONPATH=
- ECFLOW_START=
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=
+ fi
QUEUE=skx-normal
COMPILE_QUEUE=skx-dev
PARTITION=
@@ -859,7 +906,9 @@ elif [[ $MACHINE_ID = stampede ]]; then
elif [[ $MACHINE_ID = expanse ]]; then
export PYTHONPATH=
- ECFLOW_START=
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=
+ fi
QUEUE=compute
COMPILE_QUEUE=shared
PARTITION=
@@ -873,12 +922,14 @@ elif [[ $MACHINE_ID = expanse ]]; then
export PATH=/contrib/EPIC/bin:$PATH
module use /apps/modules/modulefiles
- module load rocoto/1.3.3
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto/1.3.3
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
+ ROCOTORUN=$(which rocotorun)
+ ROCOTOSTAT=$(which rocotostat)
+ ROCOTOCOMPLETE=$(which rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
QUEUE=batch
COMPILE_QUEUE=batch
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index 238f8ed695..a8fb423529 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -438,7 +438,7 @@ rocoto_create_compile_task() {
cat << EOF >> $ROCOTO_XML
- &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} > &LOG;/compile_${COMPILE_ID}.log
+ &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log
compile_${COMPILE_ID}
${ACCNR}
${COMPILE_QUEUE}
@@ -449,7 +449,7 @@ EOF
--clusters=es
eslogin_c5
EOF
- else
+ elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then
cat << EOF >> $ROCOTO_XML
${PARTITION}
EOF
@@ -482,7 +482,7 @@ rocoto_create_run_task() {
cat << EOF >> $ROCOTO_XML
$DEP_STRING
- &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > &LOG;/run_${TEST_ID}${RT_SUFFIX}.log
+ &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log
${TEST_ID}${RT_SUFFIX}
${ACCNR}
${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE}
@@ -493,7 +493,7 @@ EOF
--clusters=${PARTITION}
--partition=batch
EOF
- else
+ elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then
cat << EOF >> $ROCOTO_XML
${QUEUE}
${PARTITION}
@@ -503,8 +503,7 @@ EOF
cat << EOF >> $ROCOTO_XML
${NODES}:ppn=${TPN}
00:${WLCLK}:00
- &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.out
- &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.err
+ &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log
${NATIVE}
EOF
From 87c27b920914daa90d7adbdef3ed3e0713d9f33a Mon Sep 17 00:00:00 2001
From: Matthew Masarik <86749872+MatthewMasarik-NOAA@users.noreply.github.com>
Date: Fri, 29 Mar 2024 15:23:42 -0400
Subject: [PATCH 15/33] WW3 feature: Langmuir turbulence parameterization
(#2195)
* WW3 - Langmuir turbulence parameterization
---
WW3 | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 146 ++--
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 528 ++++++-------
tests/logs/RegressionTests_gaea.log | 542 ++++++-------
tests/logs/RegressionTests_hera.log | 717 +++++++++---------
tests/logs/RegressionTests_hercules.log | 717 +++++++++---------
tests/logs/RegressionTests_jet.log | 476 ++++++------
tests/logs/RegressionTests_orion.log | 542 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 460 +++++------
tests/rt.sh | 7 +-
12 files changed, 2104 insertions(+), 2105 deletions(-)
diff --git a/WW3 b/WW3
index 4ffc47e10e..d9b3172f41 160000
--- a/WW3
+++ b/WW3
@@ -1 +1 @@
-Subproject commit 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92
+Subproject commit d9b3172f4197c65d471662c6952a668152d71230
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index ad867c6e92..d8bfc5e08c 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Tue Mar 26 16:22:58 UTC 2024
+Thu Mar 28 15:57:29 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 273.805616
- 0: The maximum resident set size (KB) = 1258976
+ 0: The total amount of wall time = 272.712165
+ 0: The maximum resident set size (KB) = 1267880
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 952.201032
- 0: The maximum resident set size (KB) = 1237956
+ 0: The total amount of wall time = 976.383245
+ 0: The maximum resident set size (KB) = 1259420
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.017304
- 0: The maximum resident set size (KB) = 1230120
+ 0: The total amount of wall time = 244.611359
+ 0: The maximum resident set size (KB) = 1246672
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 236.990247
- 0: The maximum resident set size (KB) = 1230212
+ 0: The total amount of wall time = 240.307501
+ 0: The maximum resident set size (KB) = 1240192
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 236.183608
- 0: The maximum resident set size (KB) = 1242204
+ 0: The total amount of wall time = 244.559360
+ 0: The maximum resident set size (KB) = 1249316
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 239.119350
- 0: The maximum resident set size (KB) = 1231424
+ 0: The total amount of wall time = 241.325911
+ 0: The maximum resident set size (KB) = 1245732
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3765727/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.894578
- 0: The maximum resident set size (KB) = 1240384
+ 0: The total amount of wall time = 243.431160
+ 0: The maximum resident set size (KB) = 1246648
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Mar 26 17:56:35 UTC 2024
-Elapsed time: 01h:33m:38s. Have a nice day!
+Thu Mar 28 17:55:09 UTC 2024
+Elapsed time: 01h:57m:40s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 09ce2852a0..1b7f6539f6 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,77 +1,79 @@
-Tue Mar 26 22:12:47 UTC 2024
+Fri Mar 29 15:59:03 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
- Moving sfcf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile1.nc
- Moving sfcf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile2.nc
- Moving sfcf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile3.nc
- Moving sfcf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile4.nc
- Moving sfcf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile5.nc
- Moving sfcf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf021.tile6.nc
- Moving atmf021.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile1.nc
- Moving atmf021.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile2.nc
- Moving atmf021.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile3.nc
- Moving atmf021.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile4.nc
- Moving atmf021.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile5.nc
- Moving atmf021.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf021.tile6.nc
- Moving sfcf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile1.nc
- Moving sfcf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile2.nc
- Moving sfcf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile3.nc
- Moving sfcf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile4.nc
- Moving sfcf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile5.nc
- Moving sfcf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/sfcf024.tile6.nc
- Moving atmf024.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile1.nc
- Moving atmf024.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile2.nc
- Moving atmf024.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile3.nc
- Moving atmf024.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile4.nc
- Moving atmf024.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile5.nc
- Moving atmf024.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/atmf024.tile6.nc
- Moving RESTART/20210323.060000.coupler.res .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.coupler.res
- Moving RESTART/20210323.060000.fv_core.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.nc
- Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile1.nc
- Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile2.nc
- Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile3.nc
- Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile4.nc
- Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile5.nc
- Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_core.res.tile6.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile1.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile2.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile3.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile4.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile5.nc
- Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.fv_tracer.res.tile6.nc
- Moving RESTART/20210323.060000.phy_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile1.nc
- Moving RESTART/20210323.060000.phy_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile2.nc
- Moving RESTART/20210323.060000.phy_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile3.nc
- Moving RESTART/20210323.060000.phy_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile4.nc
- Moving RESTART/20210323.060000.phy_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile5.nc
- Moving RESTART/20210323.060000.phy_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.phy_data.tile6.nc
- Moving RESTART/20210323.060000.sfc_data.tile1.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile1.nc
- Moving RESTART/20210323.060000.sfc_data.tile2.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile2.nc
- Moving RESTART/20210323.060000.sfc_data.tile3.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile3.nc
- Moving RESTART/20210323.060000.sfc_data.tile4.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile4.nc
- Moving RESTART/20210323.060000.sfc_data.tile5.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile5.nc
- Moving RESTART/20210323.060000.sfc_data.tile6.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.sfc_data.tile6.nc
- Moving RESTART/20210323.060000.MOM.res.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/20210323.060000.MOM.res.nc
- Moving RESTART/iced.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/iced.2021-03-23-21600.nc
- Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/dbg_base_dbg_base/RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc
+ Moving sfcf021.tile1.nc .........OK
+ Moving sfcf021.tile2.nc .........OK
+ Moving sfcf021.tile3.nc .........OK
+ Moving sfcf021.tile4.nc .........OK
+ Moving sfcf021.tile5.nc .........OK
+ Moving sfcf021.tile6.nc .........OK
+ Moving atmf021.tile1.nc .........OK
+ Moving atmf021.tile2.nc .........OK
+ Moving atmf021.tile3.nc .........OK
+ Moving atmf021.tile4.nc .........OK
+ Moving atmf021.tile5.nc .........OK
+ Moving atmf021.tile6.nc .........OK
+ Moving sfcf024.tile1.nc .........OK
+ Moving sfcf024.tile2.nc .........OK
+ Moving sfcf024.tile3.nc .........OK
+ Moving sfcf024.tile4.nc .........OK
+ Moving sfcf024.tile5.nc .........OK
+ Moving sfcf024.tile6.nc .........OK
+ Moving atmf024.tile1.nc .........OK
+ Moving atmf024.tile2.nc .........OK
+ Moving atmf024.tile3.nc .........OK
+ Moving atmf024.tile4.nc .........OK
+ Moving atmf024.tile5.nc .........OK
+ Moving atmf024.tile6.nc .........OK
+ Moving RESTART/20210323.060000.coupler.res .........OK
+ Moving RESTART/20210323.060000.fv_core.res.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+ Moving RESTART/20210323.060000.MOM.res.nc .........OK
+ Moving RESTART/iced.2021-03-23-21600.nc .........OK
+ Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+ 0: The total amount of wall time = 1521.977133
+ 0: The maximum resident set size (KB) = 1364132
-Test dbg_base FAIL
+Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -133,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 388.843974
- 0: The maximum resident set size (KB) = 1344020
+ 0: The total amount of wall time = 377.430537
+ 0: The maximum resident set size (KB) = 1358388
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1241976/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -203,13 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 628.835447
- 0: The maximum resident set size (KB) = 1344928
+ 0: The total amount of wall time = 672.561875
+ 0: The maximum resident set size (KB) = 1359300
Test std_base PASS
-FAILED TESTS:
-Test dbg_base failed in check_result failed
-OPERATION REQUIREMENT TEST FAILED
-Wed Mar 27 00:59:11 UTC 2024
-Elapsed time: 02h:46m:25s. Have a nice day!
+OPERATION REQUIREMENT TEST WAS SUCCESSFUL
+Fri Mar 29 17:09:20 UTC 2024
+Elapsed time: 01h:10m:18s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index c850e901e5..0b84461381 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Tue Mar 26 20:13:13 UTC 2024
+Thu Mar 28 20:48:12 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2158.268024
- 0: The maximum resident set size (KB) = 543636
+ 0: The total amount of wall time = 2226.184948
+ 0: The maximum resident set size (KB) = 556332
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2133.860924
- 0: The maximum resident set size (KB) = 549544
+ 0: The total amount of wall time = 2159.090793
+ 0: The maximum resident set size (KB) = 555116
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_887520/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2127.082224
- 0: The maximum resident set size (KB) = 542244
+ 0: The total amount of wall time = 2233.120288
+ 0: The maximum resident set size (KB) = 555128
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Mar 26 22:12:01 UTC 2024
-Elapsed time: 01h:58m:49s. Have a nice day!
+Thu Mar 28 22:58:00 UTC 2024
+Elapsed time: 02h:09m:48s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index a399e2d764..817ec138b6 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2df0c04528dab7f66acaaba949e607a1f3951915
+3747664d1511e058657743b4b84f7e51566ac419
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2712
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117712
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:46, 19:22]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 04:57](3076 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:46, 20:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:15, 13:51](1686 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:56, 15:07](1823 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:38, 07:10](956 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:24, 15:50](1652 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:40, 09:15]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:16, 21:38](1694 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:40, 19:16]
-PASS -- TEST 'cpld_control_p8_intel' [10:15, 05:37](3089 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:15, 05:37](3088 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:01, 03:18](3147 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:15, 05:35](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:01, 03:21](3172 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:07, 05:31](3089 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:44, 04:35](3395 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:23, 05:34](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:52, 08:51](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:40, 05:57](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [34:35, 09:43](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:43, 06:57](4652 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:46, 05:20](3059 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:46, 18:38]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 04:11](1678 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:33, 04:15](1721 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:41, 09:13]
-PASS -- TEST 'cpld_debug_p8_intel' [10:45, 07:47](3150 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:36, 08:39]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 05:17](1704 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:42, 14:14]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:16](1716 MB)
-
-PASS -- COMPILE 's2s_intel' [14:43, 14:18]
-PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:38](2671 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:46, 22:45]
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:26, 05:28](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:31, 19:37]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:02](1698 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:19](1015 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:20, 15:59](1667 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:20, 08:38]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:08, 22:37](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:23, 12:26]
-PASS -- TEST 'control_flake_intel' [08:46, 03:27](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [07:52, 02:04](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 02:11](625 MB)
-PASS -- TEST 'control_latlon_intel' [08:48, 02:05](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:58, 02:07](618 MB)
-PASS -- TEST 'control_c48_intel' [10:52, 05:13](734 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:44, 05:13](739 MB)
-PASS -- TEST 'control_c192_intel' [14:45, 07:52](740 MB)
-PASS -- TEST 'control_c384_intel' [17:17, 08:06](1059 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:42, 07:14](1203 MB)
-PASS -- TEST 'control_stochy_intel' [06:45, 01:27](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:52](904 MB)
-PASS -- TEST 'control_lndp_intel' [06:47, 01:22](625 MB)
-PASS -- TEST 'control_iovr4_intel' [07:55, 02:06](618 MB)
-PASS -- TEST 'control_iovr5_intel' [03:37, 02:05](617 MB)
-PASS -- TEST 'control_p8_intel' [04:57, 02:27](1599 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:29](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 02:27](1605 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:45, 01:23](803 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:31](1591 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 01:23](801 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:13, 02:33](1593 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:59, 04:21](1592 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:05, 03:17](1658 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:01, 02:32](1602 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:57, 02:58](1599 MB)
-PASS -- TEST 'regional_control_intel' [06:24, 04:29](632 MB)
-PASS -- TEST 'regional_restart_intel' [04:22, 02:28](798 MB)
-PASS -- TEST 'regional_decomp_intel' [06:23, 04:41](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [11:10, 04:24](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:11, 04:28](631 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:07, 04:29](631 MB)
-PASS -- TEST 'regional_wofs_intel' [12:09, 05:36](1601 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:20, 11:06]
-PASS -- TEST 'rap_control_intel' [11:27, 06:03](1003 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:40, 03:42](1192 MB)
-PASS -- TEST 'rap_decomp_intel' [12:24, 06:21](1003 MB)
-PASS -- TEST 'rap_restart_intel' [05:21, 03:13](878 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:20, 06:04](1002 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:33, 06:22](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:21, 04:33](877 MB)
-PASS -- TEST 'hrrr_control_intel' [07:14, 03:13](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 03:18](996 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:14, 02:48](1090 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:46](829 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:24, 05:58](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:45, 07:20](1954 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:57, 07:08](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:15, 10:12]
-PASS -- TEST 'control_csawmg_intel' [08:41, 05:52](693 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:40, 05:47](696 MB)
-PASS -- TEST 'control_ras_intel' [04:38, 02:52](656 MB)
-
-PASS -- COMPILE 'wam_intel' [13:21, 09:28]
-PASS -- TEST 'control_wam_intel' [03:31, 01:55](385 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [15:21, 12:31]
-PASS -- TEST 'control_p8_faster_intel' [05:06, 02:22](1600 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:28, 04:17](630 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:26, 08:22]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:34](790 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:40, 02:32](795 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:57](797 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:39, 02:32](797 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:36, 03:57](835 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:05](837 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:43, 02:38](1249 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:38, 02:40](852 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:25, 02:42](1623 MB)
-PASS -- TEST 'regional_debug_intel' [17:36, 15:53](662 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:35, 04:37](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:42, 04:31](1177 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:44, 04:41](1181 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:49, 04:38](1178 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:52, 04:38](1249 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:34, 04:50](1259 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 04:45](1180 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:49, 04:53](1180 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:47](1181 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:42, 04:37](1180 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:40, 04:34](1177 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:39](1178 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:29](1180 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:33](1172 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:49](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:35, 04:47](1178 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:11, 07:54](1180 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:24, 05:14]
-PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](420 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:33]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:39, 03:30](1058 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:08, 05:08](882 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:03, 02:46](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:09, 02:54](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:53](793 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:32](774 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:24, 11:45]
-PASS -- TEST 'conus13km_control_intel' [04:37, 01:53](1082 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:34, 00:58](1086 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:34, 01:08](970 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:25, 09:44]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](912 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:30]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:31, 04:34](1053 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:26](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:13, 13:17](1131 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:38](814 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 13:22](1199 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 05:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:37, 04:36](1086 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:22, 15:40]
-PASS -- TEST 'hafs_regional_atm_intel' [06:48, 04:33](720 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:21, 05:07](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:27](775 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:56, 10:59](790 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:51, 12:03](814 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:42, 04:44](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 05:41](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:21](388 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 06:16](457 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:18](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:31, 03:05](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:24, 03:52](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:17](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:18, 03:23](781 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:24, 06:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:17, 11:57](607 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:32, 19:27]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:08](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:09](687 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:29, 16:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:50, 05:22](673 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:27, 13:53]
-PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:35](750 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:40, 05:37](736 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:34, 16:11](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:22, 07:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:47, 01:33](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](641 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:45, 02:24](644 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:31](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 02:30](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:41, 02:22](640 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 05:40](1369 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:35, 03:54](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:27, 03:56](2016 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 05:02]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:37, 05:03](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:26, 07:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:28](749 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:22]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:09](308 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 01:06](449 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:41, 00:44](450 MB)
-
-PASS -- COMPILE 'atml_intel' [13:16, 12:55]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 06:39](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:08, 06:21](1626 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:29, 03:20](853 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:21, 12:29]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 01:37](1627 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:21, 12:19]
-PASS -- TEST 'control_atmwav_intel' [02:59, 01:30](635 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:21, 11:07]
-PASS -- TEST 'atmaero_control_p8_intel' [06:51, 03:45](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 04:20](2995 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:31](3013 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:27, 10:45]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:09]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:59, 21:55](4533 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:34, 19:20]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:30, 04:51](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:49, 20:39]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 13:46](1690 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 15:01](1820 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 07:08](956 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:01, 15:47](1654 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:43, 09:22]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:51, 21:18](1693 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:33, 19:34]
+PASS -- TEST 'cpld_control_p8_intel' [11:44, 05:36](3095 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:41, 05:36](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [12:32, 03:14](3148 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 05:37](3127 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 03:17](3178 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 05:30](3089 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:28, 04:33](3384 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:42, 05:32](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [27:52, 08:40](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [17:15, 06:08](3613 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [25:19, 09:36](4341 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:14, 06:40](4645 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:18, 05:14](3062 MB)
+
+PASS -- COMPILE 's2sw_intel' [39:53, 18:39]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:56, 04:12](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:02, 04:12](1734 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [20:47, 09:12]
+PASS -- TEST 'cpld_debug_p8_intel' [13:19, 07:45](3149 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [21:43, 08:41]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:41, 05:17](1702 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [32:44, 14:18]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:14](1724 MB)
+
+PASS -- COMPILE 's2s_intel' [23:36, 14:16]
+PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:33](2672 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:48, 22:50]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:21, 05:26](3097 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:31]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 14:02](1696 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:30, 07:14](1014 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 15:59](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:22, 08:59]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:49, 22:50](1713 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:29, 12:26]
+PASS -- TEST 'control_flake_intel' [13:55, 03:23](666 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [13:59, 02:02](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:03, 02:07](624 MB)
+PASS -- TEST 'control_latlon_intel' [09:52, 02:05](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:04, 02:06](618 MB)
+PASS -- TEST 'control_c48_intel' [08:57, 05:16](738 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:58, 05:13](740 MB)
+PASS -- TEST 'control_c192_intel' [20:36, 08:11](741 MB)
+PASS -- TEST 'control_c384_intel' [16:31, 08:03](1059 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:06, 07:11](1198 MB)
+PASS -- TEST 'control_stochy_intel' [09:55, 01:25](623 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:42, 00:52](436 MB)
+PASS -- TEST 'control_lndp_intel' [08:52, 01:21](622 MB)
+PASS -- TEST 'control_iovr4_intel' [14:02, 02:06](622 MB)
+PASS -- TEST 'control_iovr5_intel' [10:02, 02:06](621 MB)
+PASS -- TEST 'control_p8_intel' [17:17, 02:28](1601 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [16:16, 02:29](1599 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [17:25, 02:28](1605 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:52, 01:24](797 MB)
+PASS -- TEST 'control_noqr_p8_intel' [16:15, 02:29](1581 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:54, 01:23](801 MB)
+PASS -- TEST 'control_decomp_p8_intel' [17:18, 02:33](1591 MB)
+PASS -- TEST 'control_p8_lndp_intel' [17:08, 04:21](1602 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [16:18, 03:16](1650 MB)
+PASS -- TEST 'control_p8_mynn_intel' [15:41, 02:34](1604 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:46, 02:57](1605 MB)
+PASS -- TEST 'regional_control_intel' [10:20, 04:26](631 MB)
+PASS -- TEST 'regional_restart_intel' [05:14, 02:30](801 MB)
+PASS -- TEST 'regional_decomp_intel' [07:17, 04:41](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [10:18, 04:23](1160 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:28, 04:26](626 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:12, 04:28](629 MB)
+PASS -- TEST 'regional_wofs_intel' [10:17, 05:35](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:29, 11:12]
+PASS -- TEST 'rap_control_intel' [08:09, 06:08](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 03:38](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [08:02, 06:20](1005 MB)
+PASS -- TEST 'rap_restart_intel' [05:13, 03:13](877 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:16, 06:04](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:13, 06:24](1007 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:32](878 MB)
+PASS -- TEST 'hrrr_control_intel' [08:03, 03:11](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 03:17](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [09:11, 02:48](1082 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:46](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:14, 05:56](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:57, 07:21](1955 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:50, 07:06](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:20, 10:17]
+PASS -- TEST 'control_csawmg_intel' [10:19, 05:47](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:30, 05:46](693 MB)
+PASS -- TEST 'control_ras_intel' [06:40, 02:52](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:20, 09:36]
+PASS -- TEST 'control_wam_intel' [05:36, 01:54](473 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:29, 12:32]
+PASS -- TEST 'control_p8_faster_intel' [06:39, 02:22](1600 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:12, 04:15](630 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:19, 08:29]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:35](794 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:32](793 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:49](796 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:40](794 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:16, 03:53](836 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:22, 03:58](834 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:38, 02:35](808 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:40, 02:44](854 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1623 MB)
+PASS -- TEST 'regional_debug_intel' [19:12, 16:20](665 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:44, 04:37](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:33](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:40](1180 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:40, 04:37](1179 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 04:48](1179 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:01, 04:53](1263 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 04:44](1183 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:43](1181 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1181 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 04:48](1179 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:39, 04:40](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:51](1179 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1177 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:36](1173 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 05:55](1177 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:41](1178 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:08, 07:52](1182 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:18, 05:19]
+PASS -- TEST 'control_wam_debug_intel' [06:34, 04:43](420 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 09:47]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 03:38](1059 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:10](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 02:47](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:12, 02:57](882 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:56](792 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 01:39](776 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:25, 11:36]
+PASS -- TEST 'conus13km_control_intel' [05:06, 01:50](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:59](1084 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:08](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 09:41]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 03:37](905 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:27, 05:32]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:44, 04:40](1056 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:33](1053 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:58, 13:30](1133 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:23](819 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:28](1199 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:32]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:37, 04:46](1082 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:30, 15:38]
+PASS -- TEST 'hafs_regional_atm_intel' [07:53, 04:34](712 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:13](1066 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:37](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 10:51](798 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:56, 11:58](810 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:34, 04:43](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 05:51](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:30](388 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:22](459 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:15, 03:22](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:07](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:23, 03:55](582 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:47, 01:22](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:16, 03:35](788 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:19, 06:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:02](606 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [04:50, 19:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:31, 07:02](635 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:08](687 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [00:39, 17:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:39, 05:18](670 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [55:35, 14:09]
+PASS -- TEST 'hafs_regional_docn_intel' [10:32, 05:31](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 05:37](735 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:09](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [47:30, 07:47]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:48, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:32](994 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:48, 02:21](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:48, 02:23](645 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:44, 02:29](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:29](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:20](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:24, 05:43](688 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:39, 05:39](671 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:33, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:41, 03:51](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:38, 03:52](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [44:30, 05:04]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:03](733 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [47:34, 07:50]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:30](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [40:30, 02:23]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:12](309 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 01:04](449 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](451 MB)
+
+PASS -- COMPILE 'atml_intel' [50:39, 12:57]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:05, 06:45](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:05, 06:38](1626 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:08, 03:27](848 MB)
+
+PASS -- COMPILE 'atmw_intel' [48:40, 12:52]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 01:33](1633 MB)
+
+PASS -- COMPILE 'atmwm_intel' [41:35, 12:34]
+PASS -- TEST 'control_atmwav_intel' [05:07, 01:29](634 MB)
+
+PASS -- COMPILE 'atmaero_intel' [30:27, 11:09]
+PASS -- TEST 'atmaero_control_p8_intel' [08:44, 03:38](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:21](2998 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 04:34](3009 MB)
+
+PASS -- COMPILE 'atmaq_intel' [28:25, 10:48]
+
+PASS -- COMPILE 'atmaq_debug_intel' [20:34, 06:14]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:54](4530 MB)
SYNOPSIS:
-Starting Date/Time: 20240325 17:32:13
-Ending Date/Time: 20240325 19:04:27
-Total Time: 01h:32m:59s
+Starting Date/Time: 20240328 08:57:30
+Ending Date/Time: 20240328 11:19:15
+Total Time: 02h:22m:32s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 1df33ad512..cbc929976c 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-55da2dd260008d4a1196c77c941d5b3300bcae45
+055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9839680885141338fb14ff09bab6fe87a051b820 FV3/ccpp/physics (EP4-738-g98396808)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 694227094198b8c1fe101af22dc506e9aeff9ebe FV3 (heads/develop)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 10521a921d2f442de19a0cda240d912fd918c40c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10030-g10521a921)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_211500
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_44233
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [00:58, 59:35]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:17, 08:25](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:44, 23:26]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 13:41](1700 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:48](1813 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 06:51](952 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:53, 14:54](1666 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:46, 14:59]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [30:49, 24:34](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [24:44, 23:38]
-PASS -- TEST 'cpld_control_p8_intel' [14:06, 08:30](3099 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:17, 08:44](3099 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:35, 05:59](3158 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:05, 08:21](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:35, 05:30](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:56, 07:08](3415 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:54, 08:21](3100 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:56, 07:14](3023 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:17, 08:40](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 10:35](3270 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:41, 08:47](3599 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:42, 13:18](4037 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:24, 09:23](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:04, 08:29](3069 MB)
-
-PASS -- COMPILE 's2sw_intel' [58:53, 57:22]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:07, 05:34](1683 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:04, 05:26](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [16:46, 14:51]
-PASS -- TEST 'cpld_debug_p8_intel' [15:20, 10:54](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [18:46, 16:42]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 06:16](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:46, 17:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:41, 05:43](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [20:43, 19:31]
-PASS -- TEST 'cpld_control_c48_intel' [09:39, 06:57](2661 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [36:47, 35:23]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:53, 08:41](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 23:25]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:35, 14:58](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:15, 07:42](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:50, 17:08](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:09, 14:33]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:11, 26:39](1708 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:59]
-PASS -- TEST 'control_flake_intel' [05:57, 03:51](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:10, 02:23](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:10, 02:44](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:50, 02:42](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:39](623 MB)
-PASS -- TEST 'control_c48_intel' [08:55, 05:39](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:45, 05:39](721 MB)
-PASS -- TEST 'control_c192_intel' [12:00, 09:08](739 MB)
-PASS -- TEST 'control_c384_intel' [19:49, 16:32](1041 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:37, 14:17](1188 MB)
-PASS -- TEST 'control_stochy_intel' [03:39, 01:55](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:37, 02:01](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:39, 01:52](628 MB)
-PASS -- TEST 'control_iovr4_intel' [05:01, 02:40](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:52, 02:35](623 MB)
-PASS -- TEST 'control_p8_intel' [07:06, 03:31](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:30, 04:09](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 03:57](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:50, 02:18](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:18, 04:38](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:19, 02:00](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [08:12, 04:24](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:00, 03:31](1689 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:55, 06:03](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:18, 04:20](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:33, 03:34](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:15, 04:15](1615 MB)
-PASS -- TEST 'regional_control_intel' [08:01, 04:46](615 MB)
-PASS -- TEST 'regional_restart_intel' [06:49, 02:57](789 MB)
-PASS -- TEST 'regional_decomp_intel' [09:37, 05:13](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:48, 02:51](755 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:44, 04:56](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 04:44](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 04:51](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:56, 06:03](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:11, 15:41]
-PASS -- TEST 'rap_control_intel' [11:21, 06:56](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:56](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [11:55, 07:11](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:42, 05:53](1099 MB)
-PASS -- TEST 'rap_restart_intel' [07:35, 03:39](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:22, 06:55](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:56, 07:14](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:09, 05:18](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:41, 03:50](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:41, 04:00](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:41, 03:02](1080 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:00](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:21, 06:41](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 08:08](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:56](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [19:14, 17:38]
-PASS -- TEST 'control_csawmg_intel' [09:29, 06:58](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:14, 06:45](691 MB)
-PASS -- TEST 'control_ras_intel' [06:02, 03:49](658 MB)
-
-PASS -- COMPILE 'wam_intel' [15:13, 14:02]
-PASS -- TEST 'control_wam_intel' [05:03, 02:12](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:12]
-PASS -- TEST 'control_p8_faster_intel' [06:58, 03:48](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:13, 04:32](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:38]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:07, 03:09](777 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:57, 03:25](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:35, 04:02](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:52, 02:49](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:31, 04:24](824 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:12](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:49, 02:57](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:00, 03:02](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:35, 03:24](1618 MB)
-PASS -- TEST 'regional_debug_intel' [19:20, 16:01](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:03, 05:09](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:02, 05:02](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:04](1167 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:40, 05:05](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:57, 05:00](1169 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:30, 05:16](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:36, 05:10](1165 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:10](1166 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:43, 05:05](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:01, 05:13](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:08, 04:57](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:06](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:40, 07:55](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:18](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:46, 05:04](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:32](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:12, 08:44]
-PASS -- TEST 'control_wam_debug_intel' [06:42, 05:08](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:13, 14:48]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:17, 04:01](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:24, 05:59](889 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:13, 03:54](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:12, 05:26](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:05, 03:05](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 03:19](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:10](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:08](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:14, 15:44]
-PASS -- TEST 'conus13km_control_intel' [06:22, 03:17](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:04](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:57](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:10, 13:26]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:41](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:10, 11:29]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:03, 05:08](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:54, 05:09](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:40, 13:54](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:38, 14:19](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 08:33](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:19, 13:51](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:08, 10:08]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:04](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [24:15, 22:19]
-PASS -- TEST 'hafs_regional_atm_intel' [08:51, 05:19](706 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:30](1059 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:03, 07:42](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:55, 11:42](783 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:08, 12:50](794 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:18, 05:16](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:43, 06:50](499 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:19, 03:13](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:50, 08:23](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 03:41](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:43](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:17, 04:59](566 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:57, 01:59](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:52, 04:13](764 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [15:15, 13:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 12:56](581 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [26:19, 24:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:31, 07:48](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:39, 07:56](785 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:16, 19:51]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:09](785 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:10, 18:12]
-PASS -- TEST 'hafs_regional_docn_intel' [09:33, 06:09](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:29, 06:34](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:12](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [20:12, 18:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:41](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:36](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 02:31](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 02:37](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:29, 02:30](635 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:40](745 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:39, 06:14](690 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:09](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:38](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 04:39](2011 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:37](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:08, 09:59]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:30](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [17:09, 15:12]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 02:46](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [12:12, 10:44]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:17, 04:13](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:56, 02:40](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:58, 02:01](456 MB)
-
-PASS -- COMPILE 'atml_intel' [18:10, 16:41]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:37, 10:04](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [13:56, 09:17](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:58, 04:01](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:14, 15:44]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:07, 02:58](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [18:09, 16:40]
-PASS -- TEST 'control_atmwav_intel' [05:19, 02:31](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:10, 15:00]
-PASS -- TEST 'atmaero_control_p8_intel' [10:12, 07:05](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:02, 07:43](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:48, 07:44](3018 MB)
-
-PASS -- COMPILE 'atmaq_intel' [37:18, 35:47]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:12, 11:56]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 21:00](4449 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [25:18, 23:19]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:48, 08:04](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 14:02](1697 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 14:39](1811 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:48, 06:36](949 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:42, 15:25](1666 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 13:54]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:04, 24:27](1702 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:12, 20:16]
+PASS -- TEST 'cpld_control_p8_intel' [15:49, 08:43](3100 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:01, 08:47](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:02, 05:11](3158 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:49, 08:54](3126 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:02, 05:20](3179 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:32, 07:20](3414 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 08:35](3101 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:29](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:01, 08:33](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:51, 10:54](3275 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:47, 07:14](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:23, 13:35](4036 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:37, 09:27](4339 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:45, 08:03](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:12, 18:23]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [14:08, 05:42](1684 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:53, 05:47](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [13:10, 11:49]
+PASS -- TEST 'cpld_debug_p8_intel' [13:46, 11:00](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [19:15, 17:18]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:42, 06:09](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:38]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:35](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [18:11, 16:51]
+PASS -- TEST 'cpld_control_c48_intel' [09:18, 06:58](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:21, 22:55]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:00, 09:00](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:17, 23:11]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:20](1704 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:46, 07:25](1001 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:59, 17:47](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:15, 13:59]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:16, 25:55](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:14, 15:56]
+PASS -- TEST 'control_flake_intel' [05:30, 03:44](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:39, 02:38](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:37, 02:55](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:27, 02:44](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:40, 03:00](623 MB)
+PASS -- TEST 'control_c48_intel' [07:58, 05:39](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:59, 05:37](728 MB)
+PASS -- TEST 'control_c192_intel' [10:52, 09:07](739 MB)
+PASS -- TEST 'control_c384_intel' [19:02, 17:07](1043 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:49, 14:13](1184 MB)
+PASS -- TEST 'control_stochy_intel' [04:28, 02:16](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:18](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:27, 02:10](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:31, 02:40](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:34, 02:39](623 MB)
+PASS -- TEST 'control_p8_intel' [06:19, 03:47](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 03:47](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:21](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:07, 02:04](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:20, 03:39](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:28, 02:07](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:28, 03:24](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:30, 02:40](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:21](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:18](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:16](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:17, 04:04](1616 MB)
+PASS -- TEST 'regional_control_intel' [06:43, 04:38](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:49, 02:37](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:42, 04:54](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:42, 02:57](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:44, 04:54](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:15, 04:45](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:50, 04:45](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:52, 06:17](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:10, 13:44]
+PASS -- TEST 'rap_control_intel' [09:20, 06:51](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 03:55](1189 MB)
+PASS -- TEST 'rap_decomp_intel' [09:20, 07:02](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:25, 05:56](1095 MB)
+PASS -- TEST 'rap_restart_intel' [06:05, 03:41](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:56](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:01](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:14, 05:11](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:31, 03:51](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 03:48](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 03:02](1085 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:01](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:37](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:14](1962 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:58, 08:24](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:15, 12:51]
+PASS -- TEST 'control_csawmg_intel' [08:45, 06:35](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:43, 06:44](691 MB)
+PASS -- TEST 'control_ras_intel' [05:41, 03:35](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:10, 12:47]
+PASS -- TEST 'control_wam_intel' [04:39, 02:09](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:48]
+PASS -- TEST 'control_p8_faster_intel' [06:35, 03:14](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:58, 04:39](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:01]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:59](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](783 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:30](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:54](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:36](826 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:18](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:32, 02:54](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:50, 02:55](845 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:52, 03:16](1622 MB)
+PASS -- TEST 'regional_debug_intel' [17:55, 16:04](637 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:32, 05:38](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:08](1166 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:34](1169 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:43, 05:15](1169 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:19](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:29](1255 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:22](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:27](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:47, 05:14](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:16](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:23](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 05:33](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:34, 08:28](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:12](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:39](1170 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:33, 05:16](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:11, 08:55](1171 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:10, 09:31]
+PASS -- TEST 'control_wam_debug_intel' [06:31, 04:57](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 12:06]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:01](1044 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:10, 06:09](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:03](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 05:15](949 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:17, 02:49](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 03:57](887 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:04](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:33, 02:10](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:43]
+PASS -- TEST 'conus13km_control_intel' [05:02, 02:37](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:46, 01:33](1072 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:22](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:09, 12:12]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:23, 04:26](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:55]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:58](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:56](1046 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:01, 13:59](1128 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:54, 14:28](803 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:14](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:05](1193 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 08:56]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:10](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:16, 16:07]
+PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:21](708 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:40](1062 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 07:42](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:57](791 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:52, 13:06](793 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:32, 05:22](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:41, 06:47](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:26, 02:55](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:13, 08:10](444 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:08, 03:58](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:48](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:46](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:45](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:31, 03:58](763 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [12:08, 10:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:20, 13:17](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:20, 19:41]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:52](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:16, 07:52](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 17:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:11, 06:02](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:11, 15:25]
+PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:12](746 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:11](729 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:10](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:09, 11:59]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:33](734 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:27](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](635 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:35](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:16](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:34](2011 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 04:35](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:24]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:27](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:37](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:32]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:58, 02:00](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:43](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:59, 01:50](456 MB)
+
+PASS -- COMPILE 'atml_intel' [16:13, 14:39]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:31, 08:04](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:23, 07:44](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:12, 04:39](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:14, 14:34]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:31](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:13, 14:57]
+PASS -- TEST 'control_atmwav_intel' [05:06, 02:04](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:16, 14:06]
+PASS -- TEST 'atmaero_control_p8_intel' [09:44, 06:21](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:47](3010 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 07:03](3017 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:12, 14:16]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:20, 10:41]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:45](4479 MB)
SYNOPSIS:
-Starting Date/Time: 20240321 12:44:25
-Ending Date/Time: 20240321 14:36:49
-Total Time: 01h:53m:27s
+Starting Date/Time: 20240328 12:15:36
+Ending Date/Time: 20240328 13:55:56
+Total Time: 01h:41m:01s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index cbc4be40d7..99f060fe8c 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0a6b9489ca89719f3fab9fa759a07c60c4c91f78
+055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -25,371 +25,370 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2507836
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2144886
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [13:00, 13:00]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:25, 05:35](3163 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:52]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:26, 05:34](3194 MB)
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:13, 16:13]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 17:00](1737 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 17:42](1994 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:00](1092 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:55, 19:10](1637 MB)
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:09, 17:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:03, 17:13](1761 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 17:52](2025 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:08, 08:06](1125 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:04, 19:25](1658 MB)
PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:41, 04:41]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:37, 22:53](1664 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:59, 12:59]
-PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:51](3185 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:51](3191 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:24, 03:23](3229 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:40, 05:52](3213 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:22, 03:24](3254 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:31](3533 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:41, 05:50](3192 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:38, 04:48](3045 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 06:01](3203 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:05, 11:27](3267 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:17, 07:04](3541 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:32, 10:10](4046 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:02](4348 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:57, 05:56](3151 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:17, 12:17]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:50, 04:58](1716 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:11, 04:21](1758 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39]
-PASS -- TEST 'cpld_debug_p8_intel' [09:23, 08:27](3192 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:21, 04:20]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:57, 10:08](1722 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:27, 11:27]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:19, 04:26](1771 MB)
-
-PASS -- COMPILE 's2s_intel' [11:44, 11:44]
-PASS -- TEST 'cpld_control_c48_intel' [10:06, 09:35](2786 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:11]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:17, 05:25](3189 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:35, 15:35]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:24, 17:38](1767 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:03, 08:05](1143 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:26, 19:38](1657 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:22, 04:21]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 25:12](1677 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:21, 11:21]
-PASS -- TEST 'control_flake_intel' [03:31, 03:20](686 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](631 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:51, 02:34](642 MB)
-PASS -- TEST 'control_latlon_intel' [02:46, 02:33](642 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:50, 02:32](641 MB)
-PASS -- TEST 'control_c48_intel' [06:40, 06:26](862 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 06:24](859 MB)
-PASS -- TEST 'control_c192_intel' [09:41, 09:14](837 MB)
-PASS -- TEST 'control_c384_intel' [10:18, 09:11](1278 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:17, 08:00](1375 MB)
-PASS -- TEST 'control_stochy_intel' [01:52, 01:39](642 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](481 MB)
-PASS -- TEST 'control_lndp_intel' [01:45, 01:33](648 MB)
-PASS -- TEST 'control_iovr4_intel' [02:43, 02:28](632 MB)
-PASS -- TEST 'control_iovr5_intel' [02:42, 02:28](633 MB)
-PASS -- TEST 'control_p8_intel' [03:48, 03:01](1604 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:57](1618 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:40, 02:53](1616 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:12, 01:36](873 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:56](1597 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:13, 01:35](910 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:40, 03:03](1598 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:26, 02:49](1702 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:55, 05:20](1583 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:37, 03:56](1678 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:59](1622 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1627 MB)
-PASS -- TEST 'regional_control_intel' [05:37, 05:12](835 MB)
-PASS -- TEST 'regional_restart_intel' [03:13, 02:44](1011 MB)
-PASS -- TEST 'regional_decomp_intel' [05:59, 05:32](826 MB)
-PASS -- TEST 'regional_2threads_intel' [03:44, 03:16](831 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:37, 05:10](1338 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:39, 05:12](833 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:41, 05:13](833 MB)
-PASS -- TEST 'regional_wofs_intel' [07:14, 06:47](1898 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:50, 10:50]
-PASS -- TEST 'rap_control_intel' [08:19, 07:45](1091 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:07](1276 MB)
-PASS -- TEST 'rap_decomp_intel' [08:37, 08:13](1020 MB)
-PASS -- TEST 'rap_2threads_intel' [07:53, 07:18](1166 MB)
-PASS -- TEST 'rap_restart_intel' [04:35, 04:03](1086 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:14, 07:44](1081 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:34, 08:09](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 05:49](1115 MB)
-PASS -- TEST 'hrrr_control_intel' [04:26, 04:00](999 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 04:14](990 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:39](1089 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:42, 02:22](960 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:11, 07:41](1078 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:30, 09:12](1966 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:03](2054 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:28, 10:28]
-PASS -- TEST 'control_csawmg_intel' [06:28, 06:02](734 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:22, 05:56](748 MB)
-PASS -- TEST 'control_ras_intel' [03:30, 03:18](700 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:56, 03:55]
-PASS -- TEST 'control_csawmg_gnu' [08:36, 08:06](535 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:42, 08:15](532 MB)
-
-PASS -- COMPILE 'wam_intel' [10:24, 10:23]
-PASS -- TEST 'control_wam_intel' [02:28, 02:17](618 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:43, 10:42]
-PASS -- TEST 'control_p8_faster_intel' [04:00, 03:17](1621 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:19, 04:48](830 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:04, 05:03]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:08, 02:52](758 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:39](780 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:15, 03:03](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:59, 02:45](784 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:40, 04:10](835 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:58, 04:27](805 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:06, 02:54](770 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:10, 02:50](839 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:32, 03:01](1622 MB)
-PASS -- TEST 'regional_debug_intel' [18:18, 17:45](794 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:11, 04:56](1165 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:54, 04:42](1170 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:02, 04:52](1176 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 05:01](1172 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:56](1176 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:14](1255 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:12, 05:01](1172 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:07](1176 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:13, 04:54](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 04:58](1174 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:56](1174 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:13, 04:58](1179 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1172 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 04:55](1167 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:05, 05:48](1180 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:52](1174 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:19](1180 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:49, 02:48]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:09](508 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:43, 02:08](509 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:43, 03:42]
-PASS -- TEST 'control_wam_debug_intel' [05:15, 05:03](465 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:56](1151 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 06:25](1036 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 03:41](954 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:30, 06:06](1077 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:29, 03:08](952 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:03, 03:36](921 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:23, 04:51](1018 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:17, 12:16]
-PASS -- TEST 'conus13km_control_intel' [02:57, 02:03](1183 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:32, 00:52](1101 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:45, 01:14](1093 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 10:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:40, 04:09](964 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:31, 03:30]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:06, 04:53](1051 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:54, 04:42](1049 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:05, 14:28](1180 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 14:22](899 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:35, 07:58](1098 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:32, 14:52](1223 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:37, 03:37]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:54](1094 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:52, 11:51]
-PASS -- TEST 'hafs_regional_atm_intel' [06:02, 05:05](730 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:08, 05:49](1063 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:55, 06:48](819 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:28](853 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 15:15](875 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:11, 05:26](483 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:45](499 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 03:30](358 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:47, 07:06](462 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:12, 03:39](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:13, 03:29](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:35, 04:00](571 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:34, 01:11](384 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:39, 04:03](784 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:51, 03:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:24, 12:38](536 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:45, 08:57](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:37](692 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:19, 12:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 06:35](715 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:17, 11:16]
-PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:12](823 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:25](799 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:17](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:07, 06:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:50, 02:42](1137 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:50, 01:40](1091 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:37, 02:30](1002 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:48, 02:39](1022 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1002 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:52, 02:44](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:48, 02:41](1131 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:34](1009 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 05:48](1053 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:14](1035 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:49, 02:42](1128 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:02, 03:53](2436 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:02, 03:53](2435 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:05, 03:05]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:25, 06:16](1068 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 06:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:50, 02:42](1150 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:09, 01:08]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:01, 00:43](263 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:45](322 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:31](322 MB)
-
-PASS -- COMPILE 'atml_intel' [11:54, 11:53]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:17, 04:23](1581 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:09, 04:17](1615 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:51, 02:15](877 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:05, 11:04]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:45](1669 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:01, 11:00]
-PASS -- TEST 'control_atmwav_intel' [02:03, 01:41](669 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:18, 11:18]
-PASS -- TEST 'atmaero_control_p8_intel' [04:51, 04:02](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:43, 04:53](3064 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:44, 05:12](3101 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:21, 10:20]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:46, 03:46]
-PASS -- TEST 'regional_atmaq_debug_intel' [27:51, 26:14](4435 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:49, 03:48]
-PASS -- TEST 'control_c48_gnu' [10:56, 10:41](751 MB)
-PASS -- TEST 'control_stochy_gnu' [03:33, 03:22](493 MB)
-PASS -- TEST 'control_ras_gnu' [05:00, 04:48](505 MB)
-PASS -- TEST 'control_p8_gnu' [05:21, 04:37](1255 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:12, 04:31](1255 MB)
-PASS -- TEST 'control_flake_gnu' [10:43, 10:31](537 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:47, 03:46]
-PASS -- TEST 'rap_control_gnu' [11:18, 10:50](847 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:06, 10:43](848 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:10, 09:41](924 MB)
-PASS -- TEST 'rap_restart_gnu' [05:50, 05:23](577 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:15, 10:43](842 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:03](851 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:24, 08:00](573 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:50, 05:26](845 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:53, 05:32](827 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:01](925 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:57, 05:34](833 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:49](561 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:52](653 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:51, 10:22](853 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:38, 03:37]
-PASS -- TEST 'control_diag_debug_gnu' [01:58, 01:36](534 MB)
-PASS -- TEST 'regional_debug_gnu' [11:37, 11:00](547 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:34](852 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:33](851 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:35](852 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](854 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:16, 02:52](933 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 04:00](851 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:36](849 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:45, 02:32](846 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](480 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [01:49, 01:39](475 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:11, 01:39](1235 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:49, 02:36](855 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:01, 02:48](848 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:41, 04:17](839 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:47, 03:46]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:47, 09:22](698 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:18, 04:58](706 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:59, 08:39](748 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:56, 04:35](743 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:24, 05:05](707 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:22, 06:57](550 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:31](526 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:56, 03:11](869 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:21, 05:53](873 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:17, 01:49](565 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:21, 05:20]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:44](738 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:52, 03:51]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:45, 02:33](701 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:40, 02:28](706 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:36, 07:06](875 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 06:57](568 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:01, 07:35](873 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 06:57](941 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:47, 03:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:42, 02:30](721 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:51, 14:51]
-
-PASS -- COMPILE 's2s_gnu' [14:28, 14:27]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:30, 07:36](1343 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:37, 02:36]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:25, 14:24]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:57, 22:07](1310 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:21, 02:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:51](1305 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [13:59, 13:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:04](691 MB)
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:49](1703 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:57, 12:56]
+PASS -- TEST 'cpld_control_p8_intel' [06:38, 05:47](3227 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:45, 05:47](3226 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:23, 04:05](3260 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:45, 05:47](3251 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:53, 03:41](3281 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:29, 05:31](3556 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:44, 05:48](3221 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:35, 04:46](3067 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 05:51](3202 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:55, 10:18](3353 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:30, 06:15](3620 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 10:04](4117 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:06](4352 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:25](3197 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:17, 12:16]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:34, 04:45](1727 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:19, 04:18](1786 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:34, 04:33]
+PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:20](3262 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:13, 04:13]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:30, 05:44](1768 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:49, 11:48]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:47, 05:46](1789 MB)
+
+PASS -- COMPILE 's2s_intel' [11:23, 11:22]
+PASS -- TEST 'cpld_control_c48_intel' [10:02, 09:27](2818 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:47, 16:46]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:36](3202 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:37, 15:36]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 17:24](1745 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 08:04](1181 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:43, 19:49](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 04:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 25:52](1671 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:10]
+PASS -- TEST 'control_flake_intel' [03:43, 03:31](709 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:54, 02:33](660 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:49, 02:31](661 MB)
+PASS -- TEST 'control_latlon_intel' [02:42, 02:30](661 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:05, 02:46](661 MB)
+PASS -- TEST 'control_c48_intel' [06:51, 06:36](876 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 06:24](875 MB)
+PASS -- TEST 'control_c192_intel' [09:35, 09:10](858 MB)
+PASS -- TEST 'control_c384_intel' [10:09, 09:03](1301 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:18, 08:05](1376 MB)
+PASS -- TEST 'control_stochy_intel' [01:52, 01:40](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](500 MB)
+PASS -- TEST 'control_lndp_intel' [01:47, 01:34](663 MB)
+PASS -- TEST 'control_iovr4_intel' [02:39, 02:27](656 MB)
+PASS -- TEST 'control_iovr5_intel' [02:45, 02:27](663 MB)
+PASS -- TEST 'control_p8_intel' [03:43, 03:01](1603 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:56](1636 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:38, 02:56](1608 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:12, 01:38](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:36, 02:59](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:17, 01:37](937 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:34, 03:00](1624 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:42](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:48, 05:14](1624 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:40, 04:01](1693 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:59](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1648 MB)
+PASS -- TEST 'regional_control_intel' [05:36, 05:10](847 MB)
+PASS -- TEST 'regional_restart_intel' [03:16, 02:45](1019 MB)
+PASS -- TEST 'regional_decomp_intel' [05:54, 05:27](853 MB)
+PASS -- TEST 'regional_2threads_intel' [03:39, 03:13](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:34, 05:10](1358 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:11](853 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:06](852 MB)
+PASS -- TEST 'regional_wofs_intel' [07:09, 06:40](1913 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:52, 10:51]
+PASS -- TEST 'rap_control_intel' [08:12, 07:43](1104 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:10](1281 MB)
+PASS -- TEST 'rap_decomp_intel' [08:40, 08:12](1041 MB)
+PASS -- TEST 'rap_2threads_intel' [07:50, 07:22](1181 MB)
+PASS -- TEST 'rap_restart_intel' [04:54, 04:11](1118 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:22, 07:49](1112 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 09:28](1040 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:16, 05:48](1135 MB)
+PASS -- TEST 'hrrr_control_intel' [04:38, 04:00](1045 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 04:11](1036 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:38](1112 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:52, 02:28](1005 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:16, 07:43](1101 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:41, 09:25](1987 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:58](2076 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:18, 10:17]
+PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](756 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:44, 06:12](758 MB)
+PASS -- TEST 'control_ras_intel' [03:37, 03:20](742 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:35, 03:35]
+PASS -- TEST 'control_csawmg_gnu' [08:56, 08:27](548 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:50, 08:23](542 MB)
+
+PASS -- COMPILE 'wam_intel' [09:54, 09:53]
+PASS -- TEST 'control_wam_intel' [02:26, 02:08](660 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:45, 10:44]
+PASS -- TEST 'control_p8_faster_intel' [03:39, 02:47](1634 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:50, 05:16](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:45, 04:44]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:56](815 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:01, 02:44](820 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:05](820 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:53, 03:39](820 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:31, 04:06](861 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:51, 04:20](842 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:54, 02:45](828 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:10, 02:51](875 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:23, 02:54](1633 MB)
+PASS -- TEST 'regional_debug_intel' [17:25, 16:58](843 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:03, 04:48](1208 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1205 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:06, 08:56](1206 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:55](1211 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 04:59](1208 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:46, 05:21](1265 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:08](1203 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:08](1180 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:14, 04:57](1204 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:07, 04:53](1205 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:50](1204 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:11, 04:55](1204 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:52](1204 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1201 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:49](1213 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:56](1209 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:52, 08:27](1214 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:36, 02:36]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:39, 02:14](534 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:40, 02:14](530 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:16, 03:16]
+PASS -- TEST 'control_wam_debug_intel' [05:11, 05:01](511 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 10:20]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1166 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:49, 06:24](1052 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 03:23](990 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 06:05](1110 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:07](971 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:53, 03:34](929 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 04:56](1007 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](940 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:37, 12:37]
+PASS -- TEST 'conus13km_control_intel' [02:42, 02:04](1203 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:25, 00:53](1120 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:52, 01:20](1110 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:08, 10:07]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:42, 04:12](987 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:40, 03:39]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:44](1090 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:43](1082 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:20, 14:49](1238 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:02, 14:27](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:38, 08:03](1156 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:06, 14:34](1298 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:45, 03:45]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 05:08](1128 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:30, 11:30]
+PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](730 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:10, 05:55](1123 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:54, 06:52](834 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:29](867 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:19](880 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:09, 05:27](505 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:50, 06:47](538 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:39](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:39, 07:04](473 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:11, 03:41](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:00, 03:26](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:39, 04:01](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:13](407 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:37, 04:07](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:57, 03:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](626 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:44](744 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:01, 12:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:12, 06:25](701 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:24, 11:24]
+PASS -- TEST 'hafs_regional_docn_intel' [07:10, 06:16](832 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:21, 06:24](811 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:37, 16:00](1214 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:09, 06:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:48, 02:40](1147 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:45, 01:38](1104 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:39, 02:33](1032 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:39](1021 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:40, 02:34](1019 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:42](1147 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:47, 02:42](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:38, 02:33](1018 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:08, 06:08](1056 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 07:57](1041 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 03:11](1149 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 04:10](2482 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2436 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:20, 03:19]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 06:16](1083 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:00, 06:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:56, 02:44](1154 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:27, 01:27]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:46](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](323 MB)
+
+PASS -- COMPILE 'atml_intel' [11:48, 11:48]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:20](1594 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:08, 04:21](1610 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:55, 02:19](907 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:50, 10:50]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:26, 01:46](1677 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:01, 11:01]
+PASS -- TEST 'control_atmwav_intel' [02:05, 01:44](671 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:35, 10:34]
+PASS -- TEST 'atmaero_control_p8_intel' [04:49, 04:05](3026 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 05:06](3093 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:47, 05:11](3131 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:29, 10:29]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:37]
+PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 26:45](4445 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:39, 03:38]
+PASS -- TEST 'control_c48_gnu' [11:00, 10:48](763 MB)
+PASS -- TEST 'control_stochy_gnu' [03:37, 03:25](506 MB)
+PASS -- TEST 'control_ras_gnu' [04:59, 04:48](517 MB)
+PASS -- TEST 'control_p8_gnu' [05:34, 04:41](1267 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:40](1269 MB)
+PASS -- TEST 'control_flake_gnu' [11:36, 11:25](549 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:42, 03:41]
+PASS -- TEST 'rap_control_gnu' [14:03, 13:37](859 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:08, 10:44](860 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:32, 09:58](940 MB)
+PASS -- TEST 'rap_restart_gnu' [06:13, 05:38](584 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:28, 10:59](857 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:21, 10:51](859 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:23, 07:53](592 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:02, 05:35](858 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:06, 05:41](844 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:12](930 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:39](861 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:52](571 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:49](664 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:21, 10:48](851 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:35, 03:35]
+PASS -- TEST 'control_diag_debug_gnu' [02:10, 01:46](550 MB)
+PASS -- TEST 'regional_debug_gnu' [11:57, 11:28](562 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:01, 02:45](875 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:36](866 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:51, 02:40](873 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](872 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:53](951 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 04:05](870 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:51, 02:38](868 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:49, 02:35](865 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:50, 01:39](509 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:54, 02:45](498 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:09, 01:40](1254 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:56, 02:43](866 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:08, 02:54](874 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:31, 07:05](871 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:55, 01:54]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:05, 09:35](710 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:30, 05:03](715 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:03, 11:39](762 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:06, 04:44](755 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:06](713 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:31, 07:04](562 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:34](547 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:00, 03:20](886 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:43](884 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:24, 01:52](565 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:34, 05:34]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:19, 05:47](740 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:45, 03:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:56, 02:41](728 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:51, 02:38](722 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:55](904 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:32, 06:58](591 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:20, 07:45](908 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:51, 07:15](970 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:52, 03:52]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:53, 02:39](745 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:41, 14:41]
+
+PASS -- COMPILE 's2s_gnu' [14:25, 14:25]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:01, 11:05](1356 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:43, 02:42]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:29, 14:29]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:38, 21:49](1328 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:28, 02:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:46](1318 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:10]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:02](705 MB)
SYNOPSIS:
-Starting Date/Time: 20240326 15:42:19
-Ending Date/Time: 20240326 17:59:30
-Total Time: 02h:17m:58s
+Starting Date/Time: 20240328 17:37:37
+Ending Date/Time: 20240328 22:10:57
+Total Time: 04h:33m:53s
Compiles Completed: 55/55
Tests Completed: 244/244
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 76e32fe4f4..5fff55f8d9 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0a6b9489ca89719f3fab9fa759a07c60c4c91f78
+e2f840b74edbc6ea1ad9a0f293d9c023ef9b62e7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,366 +48,365 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_3737953
+COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_243673
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:07, 11:09]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:31](1897 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:54]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:26, 13:51](1772 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:48, 14:32](2160 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1177 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:06, 16:09](1690 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:40]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:25, 20:22](1726 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:07, 10:02]
-PASS -- TEST 'cpld_control_p8_intel' [10:10, 07:41](2061 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:23, 07:47](2074 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:27, 04:17](1974 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:54](1985 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:29, 04:19](1744 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:20, 09:05](2502 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:01, 07:35](2069 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:06, 06:28](1894 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:21, 07:46](2077 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:53, 15:43](2805 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 05:54](2923 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [16:25, 08:59](3631 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 06:02](3619 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 04:58](2028 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:07, 10:38]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 07:03](1772 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:01](1820 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:33]
-PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:53](2040 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:30]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:07, 04:46](1797 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:06, 07:59]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:09, 03:58](1821 MB)
-
-PASS -- COMPILE 's2s_intel' [09:06, 07:52]
-PASS -- TEST 'cpld_control_c48_intel' [09:48, 07:11](2843 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:06, 11:40]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:24](2095 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:07, 16:42]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:08](1811 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 06:45](1288 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:07, 15:48](1737 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:08, 22:02](1778 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:06, 09:19]
-PASS -- TEST 'control_flake_intel' [04:18, 02:57](713 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:05](660 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:22](665 MB)
-PASS -- TEST 'control_latlon_intel' [04:18, 02:10](672 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:23, 02:09](660 MB)
-PASS -- TEST 'control_c48_intel' [07:27, 05:50](858 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:46](861 MB)
-PASS -- TEST 'control_c192_intel' [09:32, 07:54](956 MB)
-PASS -- TEST 'control_c384_intel' [11:08, 08:25](1444 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:17, 07:18](1509 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:29](681 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:59](545 MB)
-PASS -- TEST 'control_lndp_intel' [03:18, 01:25](666 MB)
-PASS -- TEST 'control_iovr4_intel' [04:19, 02:12](661 MB)
-PASS -- TEST 'control_iovr5_intel' [04:18, 02:08](663 MB)
-PASS -- TEST 'control_p8_intel' [05:03, 02:36](1644 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:07, 02:36](1633 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:10, 02:28](1649 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:59, 01:29](919 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:54, 02:32](1634 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:27](971 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:39](1623 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:30](1728 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:45, 04:34](1646 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:13, 03:33](1721 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:05, 02:39](1658 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:12, 03:02](1657 MB)
-PASS -- TEST 'regional_control_intel' [06:37, 04:45](956 MB)
-PASS -- TEST 'regional_restart_intel' [04:37, 02:34](1108 MB)
-PASS -- TEST 'regional_decomp_intel' [06:29, 05:00](947 MB)
-PASS -- TEST 'regional_2threads_intel' [05:32, 03:06](914 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:32, 04:29](1489 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:33](961 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:32, 04:36](966 MB)
-PASS -- TEST 'regional_wofs_intel' [07:30, 05:38](2075 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:31]
-PASS -- TEST 'rap_control_intel' [09:11, 06:39](1182 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 03:32](1409 MB)
-PASS -- TEST 'rap_decomp_intel' [08:39, 06:55](1136 MB)
-PASS -- TEST 'rap_2threads_intel' [08:40, 06:26](1373 MB)
-PASS -- TEST 'rap_restart_intel' [06:12, 03:23](1152 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:58, 06:34](1192 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:58](1142 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 05:02](1187 MB)
-PASS -- TEST 'hrrr_control_intel' [05:48, 03:26](1093 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:24](1044 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:39, 03:11](1120 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:50](1027 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:28](1178 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:44](2014 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 07:35](2171 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:06, 07:21]
-PASS -- TEST 'control_csawmg_intel' [07:29, 05:19](799 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:29, 05:16](825 MB)
-PASS -- TEST 'control_ras_intel' [04:17, 02:50](821 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:06, 04:12]
-PASS -- TEST 'control_csawmg_gnu' [08:33, 06:31](812 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:27, 06:25](812 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:50]
-PASS -- TEST 'control_wam_intel' [03:22, 01:51](793 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:05]
-PASS -- TEST 'control_p8_faster_intel' [05:11, 02:16](1629 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:31, 04:32](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:52]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 02:13](821 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:14](827 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](831 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:17](832 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:29](882 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:30, 03:26](875 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:18, 02:20](840 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:18](894 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:36, 02:22](1659 MB)
-PASS -- TEST 'regional_debug_intel' [16:32, 14:07](897 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:17, 03:58](1228 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:56](1225 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:59](1219 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:02](1230 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:01](1213 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:13](1302 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:07](1223 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:06](1218 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:00](1222 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:58](1220 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:57](1218 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:57](1222 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:18, 06:30](1219 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 03:53](1213 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 05:13](1221 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:04](1214 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:05, 06:51](1220 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:21]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:32, 01:45](790 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:31, 01:44](789 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:38]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:55]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 03:26](1274 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:24](1134 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:54](1025 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:48, 05:04](1283 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:47, 02:39](1037 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:01](994 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 04:02](1105 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](958 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:07, 09:31]
-PASS -- TEST 'conus13km_control_intel' [03:46, 01:45](1311 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:43](1199 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:36, 01:10](1145 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:06, 07:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:41](1068 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:59]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:51](1091 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 03:58](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:37, 11:30](1332 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:37, 12:16](977 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:34, 06:38](1238 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 11:31](1413 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 07:27](1894 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:09]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:31, 13:44](1770 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:47, 14:32](2153 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1185 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:09, 15:33](1697 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:46]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 20:28](1722 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:07, 12:04]
+PASS -- TEST 'cpld_control_p8_intel' [10:02, 07:32](2072 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 07:29](2078 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:33, 04:14](1954 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:47](1972 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 04:20](1735 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:57, 08:55](2487 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:56, 07:42](2072 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:10, 06:31](1895 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 07:46](2079 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:57, 15:17](2818 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:33, 05:45](2929 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [16:10, 08:55](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:54, 05:51](3614 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:06, 04:55](2055 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:06, 11:47]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:02, 07:19](1761 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:12, 04:05](1822 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:46]
+PASS -- TEST 'cpld_debug_p8_intel' [09:21, 06:48](2050 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:28]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 04:40](1788 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:52]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 03:58](1821 MB)
+
+PASS -- COMPILE 's2s_intel' [12:06, 10:43]
+PASS -- TEST 'cpld_control_c48_intel' [09:51, 07:13](2839 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:06, 14:19]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:20](2060 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:23]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:06, 13:45](1798 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:19, 06:40](1280 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:05, 15:18](1733 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:05, 21:29](1771 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:02]
+PASS -- TEST 'control_flake_intel' [04:19, 02:50](713 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:22, 02:02](663 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:12](668 MB)
+PASS -- TEST 'control_latlon_intel' [04:19, 02:08](666 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:24, 02:05](674 MB)
+PASS -- TEST 'control_c48_intel' [07:26, 05:44](855 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB)
+PASS -- TEST 'control_c192_intel' [09:30, 07:52](959 MB)
+PASS -- TEST 'control_c384_intel' [10:08, 07:57](1447 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:02, 07:11](1527 MB)
+PASS -- TEST 'control_stochy_intel' [03:19, 01:25](673 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:50](537 MB)
+PASS -- TEST 'control_lndp_intel' [03:16, 01:20](664 MB)
+PASS -- TEST 'control_iovr4_intel' [03:21, 02:03](665 MB)
+PASS -- TEST 'control_iovr5_intel' [04:20, 02:06](659 MB)
+PASS -- TEST 'control_p8_intel' [05:04, 02:32](1630 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1651 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 02:25](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:00, 01:24](918 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:49, 02:31](1623 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 01:21](991 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:36](1631 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:23](1721 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:43, 04:25](1645 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:01, 03:28](1719 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:31](1664 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:08, 03:02](1662 MB)
+PASS -- TEST 'regional_control_intel' [06:33, 04:29](955 MB)
+PASS -- TEST 'regional_restart_intel' [04:32, 02:31](1104 MB)
+PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](947 MB)
+PASS -- TEST 'regional_2threads_intel' [04:31, 02:54](915 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:33, 04:21](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:31](958 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:26](957 MB)
+PASS -- TEST 'regional_wofs_intel' [07:30, 05:34](2070 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:13]
+PASS -- TEST 'rap_control_intel' [08:54, 06:28](1200 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:26](1409 MB)
+PASS -- TEST 'rap_decomp_intel' [08:42, 06:45](1126 MB)
+PASS -- TEST 'rap_2threads_intel' [08:42, 06:10](1366 MB)
+PASS -- TEST 'rap_restart_intel' [05:51, 03:27](1133 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:30](1187 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:45, 06:49](1140 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 04:56](1194 MB)
+PASS -- TEST 'hrrr_control_intel' [05:55, 03:21](1073 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1051 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:05](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:53](1027 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:16](1210 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:37](2008 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:21](2161 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:06, 06:54]
+PASS -- TEST 'control_csawmg_intel' [07:33, 05:18](832 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:34, 05:13](825 MB)
+PASS -- TEST 'control_ras_intel' [04:17, 02:50](833 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:06, 03:52]
+PASS -- TEST 'control_csawmg_gnu' [08:40, 06:31](809 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:31, 06:23](810 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:28]
+PASS -- TEST 'control_wam_intel' [03:23, 01:52](791 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:43]
+PASS -- TEST 'control_p8_faster_intel' [05:09, 02:16](1629 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:30, 04:10](956 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:39]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:12](817 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:11](824 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](842 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:16](833 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:24](878 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:28, 03:21](872 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:16, 02:15](840 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:20](881 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:39, 02:21](1657 MB)
+PASS -- TEST 'regional_debug_intel' [15:33, 13:55](900 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:20, 04:04](1217 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:52](1216 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:59](1226 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:59](1226 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:59](1229 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:08](1311 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:01](1213 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:04](1213 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:59](1210 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:02](1220 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:02](1215 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:54](1229 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 06:26](1227 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 03:56](1209 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 05:05](1224 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:55](1227 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:45](1226 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:48]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 01:41](795 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:29, 01:37](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:37]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:29]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:21](1270 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:20](1136 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:50](1018 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 05:13](1239 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:45, 02:37](1031 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:58](1010 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:01](1094 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:34](969 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:23]
+PASS -- TEST 'conus13km_control_intel' [03:44, 01:39](1292 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:44](1205 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:05](1153 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:02]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:39](1061 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:52]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:52](1096 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:49](1100 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:41, 11:31](1340 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:34, 11:44](983 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1238 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:32](1400 MB)
PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:00]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:03](1153 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:07, 10:43]
-PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:27](870 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:03](1272 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:19](938 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:04, 14:32](996 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:13, 14:46](1000 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 05:39](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 07:18](620 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:00](435 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 07:55](543 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 04:00](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:58](675 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:30](449 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:05, 03:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:46, 11:33](634 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:02, 16:45](729 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:00, 16:48](811 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:02, 09:47](789 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:06, 09:52]
-PASS -- TEST 'hafs_regional_docn_intel' [08:03, 05:22](969 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 05:30](937 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:26](1342 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:06, 06:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:11](1127 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:17](1099 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 02:06](1012 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:08](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:09](1014 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:08](1155 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:10](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:11, 02:03](1018 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:00, 04:57](1153 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:54, 04:50](1146 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:09](1144 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:00](2381 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:01](2433 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:40]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:11, 05:11](1079 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1141 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:51]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:51](327 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:53](559 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](559 MB)
-
-PASS -- COMPILE 'atml_intel' [10:06, 08:17]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:04](1627 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:20, 06:05](1631 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:47, 03:07](956 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:06]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 01:34](1692 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:44]
-PASS -- TEST 'control_atmwav_intel' [03:52, 01:33](697 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:28]
-PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:40](1789 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:25](1795 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 04:31](1834 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:06, 07:00]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:42]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:37, 16:56](4584 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:07, 04:43]
-PASS -- TEST 'control_c48_gnu' [11:28, 09:52](882 MB)
-PASS -- TEST 'control_stochy_gnu' [04:18, 02:18](731 MB)
-PASS -- TEST 'control_ras_gnu' [05:15, 03:47](730 MB)
-PASS -- TEST 'control_p8_gnu' [05:58, 03:39](1519 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 03:35](1514 MB)
-PASS -- TEST 'control_flake_gnu' [06:19, 04:24](811 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:06, 04:39]
-PASS -- TEST 'rap_control_gnu' [09:50, 07:49](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:38, 07:52](1084 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:35, 07:19](1138 MB)
-PASS -- TEST 'rap_restart_gnu' [05:46, 03:59](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:06, 07:46](1089 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:48](1087 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:00, 05:47](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:49, 04:04](1069 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 04:06](1140 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:45](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 04:04](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:07](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:08](935 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:44](1079 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:06, 06:04]
-PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:14](774 MB)
-PASS -- TEST 'regional_debug_gnu' [08:31, 06:20](926 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:20, 01:59](1099 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:57](1091 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:00](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 01:59](1097 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:29, 02:11](1269 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:12](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:27, 02:02](1100 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:26, 02:01](1096 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:23, 01:14](726 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:17](1501 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:59](1103 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:10](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:51, 03:18](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:06, 03:23]
-PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:55](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:14]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:34, 07:14](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:57, 03:49](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:51, 06:44](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:40, 03:32](895 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:44, 03:52](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:41, 05:37](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:01](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:48, 02:32](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:30, 01:04](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:29](928 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:07, 12:12]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 04:23](988 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:06, 11:22]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:56](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](972 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:37, 05:31](1278 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:49](972 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:33, 03:17](1190 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:34, 05:31](1354 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:00](1000 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:07, 16:16]
-
-PASS -- COMPILE 's2s_gnu' [19:09, 17:18]
-
-PASS -- COMPILE 's2swa_debug_gnu' [14:07, 12:08]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [19:07, 17:36]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:06, 12:06]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [19:07, 17:24]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 03:59](1150 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:07, 10:37]
+PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:25](878 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 04:59](1281 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:20](958 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 13:58](995 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:14, 15:00](1015 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:28](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:00](617 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](435 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 07:56](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:51](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:41](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:51](679 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:28](457 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:14](630 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:35](724 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:58, 15:56](814 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:40]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:05, 10:43](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:15]
+PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:28](955 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 05:25](928 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:45, 16:23](1341 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:05, 05:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:08](1153 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:19](1068 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:12, 02:04](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:07](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:06](1011 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:09](1157 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:10](1144 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:03](1016 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:59](1169 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:52, 04:55](1137 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1146 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:01](2435 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:03](2435 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:30]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:10](1070 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:34]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1148 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:56](327 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:53](560 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](560 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:24]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:18, 06:06](1632 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:22, 06:20](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:49, 03:07](943 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 10:01]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:36](1684 MB)
+
+PASS -- COMPILE 'atmwm_intel' [12:05, 10:24]
+PASS -- TEST 'control_atmwav_intel' [03:44, 01:31](703 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:33]
+PASS -- TEST 'atmaero_control_p8_intel' [05:59, 03:37](1779 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:59, 04:18](1806 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 04:30](1823 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:07, 07:51]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:05, 04:14]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:35, 16:32](4597 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:07, 05:53]
+PASS -- TEST 'control_c48_gnu' [11:31, 09:27](881 MB)
+PASS -- TEST 'control_stochy_gnu' [04:17, 02:21](728 MB)
+PASS -- TEST 'control_ras_gnu' [05:16, 03:44](735 MB)
+PASS -- TEST 'control_p8_gnu' [06:02, 03:34](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 03:30](1514 MB)
+PASS -- TEST 'control_flake_gnu' [06:17, 04:23](812 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [07:06, 05:53]
+PASS -- TEST 'rap_control_gnu' [09:58, 07:40](1092 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:42, 07:46](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:40, 07:07](1122 MB)
+PASS -- TEST 'rap_restart_gnu' [05:51, 03:53](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:04, 07:39](1083 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:42, 07:46](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:43](883 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:46, 03:58](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:46, 04:00](1135 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:44, 03:42](1029 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:40, 04:00](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:21, 02:04](882 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 02:02](935 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [10:04, 07:35](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:07, 07:05]
+PASS -- TEST 'control_diag_debug_gnu' [03:25, 01:14](774 MB)
+PASS -- TEST 'regional_debug_gnu' [08:35, 06:19](924 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:58](1098 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:56](1094 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:56](1091 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:57](1091 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:04](1266 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:02](1094 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:00](1095 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 01:56](1088 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](724 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](724 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:14](1506 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:12](1100 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:18](1102 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:27]
+PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:52](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:54]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:39, 07:18](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:01, 03:48](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:56, 06:42](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 03:25](891 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:51, 03:54](951 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:52, 05:22](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:36, 01:59](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:47, 02:35](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:29, 01:02](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:27](949 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:06, 11:48]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:23](991 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 01:55](979 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:57](966 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:28](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 05:32](970 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 03:17](1192 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:23](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:06, 09:57]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1002 MB)
+
+PASS -- COMPILE 's2swa_gnu' [21:07, 19:11]
+
+PASS -- COMPILE 's2s_gnu' [19:07, 17:33]
+
+PASS -- COMPILE 's2swa_debug_gnu' [09:06, 07:48]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:07, 15:10]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:06, 03:51]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:54]
SYNOPSIS:
-Starting Date/Time: 20240326 10:44:23
-Ending Date/Time: 20240326 12:06:35
-Total Time: 01h:23m:31s
+Starting Date/Time: 20240328 07:25:07
+Ending Date/Time: 20240328 08:48:24
+Total Time: 01h:23m:59s
Compiles Completed: 55/55
Tests Completed: 239/239
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index ad7c0590ad..c8a07b419a 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0a6b9489ca89719f3fab9fa759a07c60c4c91f78
+055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1851415
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_637067
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:23, 38:04]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:53, 06:52](1795 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:28, 47:48]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 20:53](1666 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 21:21](1885 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:26, 10:15](991 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:46](1632 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:23, 38:36]
-PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:27](1824 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:58, 07:25](1826 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:49, 04:26](1714 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:32, 07:29](1847 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:49, 04:32](1727 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:24, 07:16](2267 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:26, 07:31](1825 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:50, 06:16](1784 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 07:30](1823 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:12](1793 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:22, 35:51]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:26, 05:53](1660 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:40, 05:44](1718 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:07]
-PASS -- TEST 'cpld_debug_p8_intel' [13:42, 10:29](1847 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:38]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:26, 07:08](1673 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:20, 32:32]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:37](1711 MB)
-
-PASS -- COMPILE 's2s_intel' [34:22, 32:18]
-PASS -- TEST 'cpld_control_c48_intel' [15:13, 12:42](2803 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:53, 32:47]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:07](1832 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [39:23, 38:06]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:35, 19:03](1686 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:26](1034 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 24:00](1656 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 05:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:43, 31:50](1689 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:23, 35:01]
-PASS -- TEST 'control_flake_intel' [06:28, 04:26](647 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:16](597 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:36, 03:42](600 MB)
-PASS -- TEST 'control_latlon_intel' [05:28, 03:21](602 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:22](596 MB)
-PASS -- TEST 'control_c48_intel' [11:38, 10:04](844 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:04](847 MB)
-PASS -- TEST 'control_c192_intel' [14:48, 12:21](724 MB)
-PASS -- TEST 'control_c384_intel' [18:54, 15:44](899 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:35, 13:29](1020 MB)
-PASS -- TEST 'control_stochy_intel' [04:29, 02:11](603 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:18](438 MB)
-PASS -- TEST 'control_lndp_intel' [04:29, 02:06](600 MB)
-PASS -- TEST 'control_iovr4_intel' [05:30, 03:17](602 MB)
-PASS -- TEST 'control_iovr5_intel' [05:31, 03:20](595 MB)
-PASS -- TEST 'control_p8_intel' [06:32, 03:57](1575 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:42, 03:56](1576 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:50, 03:48](1574 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:05, 02:07](819 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:38, 03:52](1568 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 02:03](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:33, 04:03](1565 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:38, 03:41](1661 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:17, 07:00](1574 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:03](1644 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:49, 03:56](1578 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:11, 04:30](1592 MB)
-PASS -- TEST 'regional_control_intel' [09:06, 07:00](757 MB)
-PASS -- TEST 'regional_restart_intel' [05:44, 03:47](931 MB)
-PASS -- TEST 'regional_decomp_intel' [09:58, 07:25](755 MB)
-PASS -- TEST 'regional_2threads_intel' [06:42, 04:14](759 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:48, 06:55](760 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 06:52](761 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:23, 33:07]
-PASS -- TEST 'rap_control_intel' [12:10, 10:05](996 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:28](1214 MB)
-PASS -- TEST 'rap_decomp_intel' [12:56, 10:29](979 MB)
-PASS -- TEST 'rap_2threads_intel' [12:08, 09:28](1092 MB)
-PASS -- TEST 'rap_restart_intel' [08:28, 05:11](990 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:26, 10:01](989 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:57, 10:35](980 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:32](997 MB)
-PASS -- TEST 'hrrr_control_intel' [07:54, 05:13](995 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:21](985 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:45](1049 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:26, 02:47](917 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:31, 09:54](994 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:16](1947 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:33, 11:59](1936 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:20, 31:26]
-PASS -- TEST 'control_csawmg_intel' [09:49, 08:00](697 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:49, 07:53](692 MB)
-PASS -- TEST 'control_ras_intel' [06:24, 04:23](660 MB)
-
-PASS -- COMPILE 'wam_intel' [31:17, 29:37]
-PASS -- TEST 'control_wam_intel' [04:22, 02:46](500 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:20, 31:46]
-PASS -- TEST 'control_p8_faster_intel' [06:50, 03:35](1582 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:54, 06:24](762 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:59]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:18](755 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:22](761 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:43](763 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:23, 03:20](768 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](806 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 05:09](808 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](770 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:34, 03:27](819 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:46, 03:33](1595 MB)
-PASS -- TEST 'regional_debug_intel' [23:51, 21:38](780 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:24, 06:07](1156 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:30, 05:53](1145 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:57](1150 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:01](1150 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:59](1148 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:39, 06:19](1234 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:28, 06:08](1152 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:08](1149 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:04](1147 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:25, 06:01](1150 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:54](1148 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:00](1147 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:29, 09:48](1152 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:56](1146 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:26, 07:17](1149 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:24](1158 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:56]
-PASS -- TEST 'control_wam_debug_intel' [08:22, 06:08](438 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:16, 30:00]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:09](1077 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 08:15](899 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:04, 04:22](868 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 07:49](943 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:34, 04:03](913 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:36](854 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:09, 06:09](896 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 02:20](856 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:37]
-PASS -- TEST 'conus13km_control_intel' [06:02, 02:54](1103 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:27](1058 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:39](1028 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:17, 30:37]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:54, 05:26](907 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:29, 05:55](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:53](1030 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:04, 18:26](1138 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](881 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:40](1082 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:25](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:03](1073 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:22, 34:45]
-PASS -- TEST 'hafs_regional_atm_intel' [09:19, 06:56](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:17](1089 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:14](767 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:27, 16:50](799 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:54, 18:32](821 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](773 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:22, 31:33]
-PASS -- TEST 'hafs_regional_docn_intel' [11:24, 08:33](763 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:29, 08:38](755 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:09, 08:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:17, 03:36](1048 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:12](1032 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:17, 03:31](922 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:18, 03:34](927 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:17, 03:33](921 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:36](1044 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 03:48](1063 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 03:31](941 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:08, 07:37](889 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:08, 07:45](839 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:14, 03:36](1060 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:18, 05:08](2393 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 05:02](2396 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:07, 03:00]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 07:58](1013 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 08:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:39](1077 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 01:46]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:30, 01:33](225 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB)
-
-PASS -- COMPILE 'atml_intel' [36:21, 34:06]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:42, 08:05](1596 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:39, 08:03](1596 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 04:17](866 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:18, 32:05]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 02:16](1611 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:21, 30:57]
-PASS -- TEST 'control_atmwav_intel' [05:08, 02:12](609 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 30:18]
-PASS -- TEST 'atmaero_control_p8_intel' [08:33, 05:10](1703 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:20](1735 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:41](1736 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [48:28, 38:59]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:55, 06:48](1801 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:32, 48:37]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 20:35](1665 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:21, 22:11](1877 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 10:20](990 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 23:49](1634 MB)
+
+PASS -- COMPILE 's2swa_intel' [48:28, 38:59]
+PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:33](1829 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:57, 07:28](1829 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:44, 04:18](1710 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:32, 07:28](1840 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:40, 04:30](1731 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:19, 07:13](2263 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:38](1824 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:41, 06:22](1776 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:51, 07:27](1831 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [16:47, 07:00](1791 MB)
+
+PASS -- COMPILE 's2sw_intel' [44:25, 35:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1663 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:46, 05:47](1706 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [14:12, 05:18]
+PASS -- TEST 'cpld_debug_p8_intel' [15:04, 10:34](1853 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:00]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:40, 07:14](1675 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [40:22, 32:19]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 05:40](1717 MB)
+
+PASS -- COMPILE 's2s_intel' [35:20, 33:11]
+PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:38](2794 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:46, 33:17]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 08:02](1828 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [54:30, 52:38]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:36, 20:48](1688 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:53, 10:30](1031 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:22, 24:18](1659 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:02]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:58, 32:05](1681 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:22, 34:46]
+PASS -- TEST 'control_flake_intel' [06:27, 04:26](645 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:20](597 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 03:50](599 MB)
+PASS -- TEST 'control_latlon_intel' [05:28, 03:24](599 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:26](596 MB)
+PASS -- TEST 'control_c48_intel' [12:42, 10:09](838 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:44, 10:08](844 MB)
+PASS -- TEST 'control_c192_intel' [15:00, 12:22](732 MB)
+PASS -- TEST 'control_c384_intel' [18:56, 15:44](900 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:42, 13:47](1009 MB)
+PASS -- TEST 'control_stochy_intel' [04:29, 02:18](600 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](434 MB)
+PASS -- TEST 'control_lndp_intel' [04:30, 02:10](602 MB)
+PASS -- TEST 'control_iovr4_intel' [05:32, 03:22](598 MB)
+PASS -- TEST 'control_iovr5_intel' [05:32, 03:24](598 MB)
+PASS -- TEST 'control_p8_intel' [06:39, 04:00](1574 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:58](1578 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:56, 03:53](1572 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:12, 02:14](809 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:53](1575 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:07](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:45, 04:07](1560 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:45, 03:43](1669 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:01](1578 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [09:04, 05:11](1629 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:55, 04:04](1580 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:18, 04:40](1587 MB)
+PASS -- TEST 'regional_control_intel' [10:08, 07:09](759 MB)
+PASS -- TEST 'regional_restart_intel' [05:38, 03:46](934 MB)
+PASS -- TEST 'regional_decomp_intel' [10:08, 07:27](755 MB)
+PASS -- TEST 'regional_2threads_intel' [07:09, 04:23](756 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:05](762 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 07:00](762 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:20, 32:50]
+PASS -- TEST 'rap_control_intel' [12:09, 10:00](990 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:31](1215 MB)
+PASS -- TEST 'rap_decomp_intel' [12:54, 10:35](980 MB)
+PASS -- TEST 'rap_2threads_intel' [12:04, 09:32](1087 MB)
+PASS -- TEST 'rap_restart_intel' [08:19, 05:10](990 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:23, 09:58](988 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:22, 10:32](985 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:03, 07:33](999 MB)
+PASS -- TEST 'hrrr_control_intel' [07:58, 05:06](989 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:19](981 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 04:47](1058 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:47](917 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:50](984 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:15](1945 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:32, 11:59](1935 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:18, 30:54]
+PASS -- TEST 'control_csawmg_intel' [09:39, 08:04](689 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:39, 07:55](693 MB)
+PASS -- TEST 'control_ras_intel' [06:27, 04:21](665 MB)
+
+PASS -- COMPILE 'wam_intel' [31:19, 29:42]
+PASS -- TEST 'control_wam_intel' [04:21, 02:43](499 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:26]
+PASS -- TEST 'control_p8_faster_intel' [06:36, 03:31](1577 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:47, 06:37](762 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:33]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:22](758 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:33, 03:20](753 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:45](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:20](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:17](812 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:46, 05:08](804 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:24, 03:26](767 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:32, 03:26](819 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:53, 03:34](1588 MB)
+PASS -- TEST 'regional_debug_intel' [23:57, 21:37](778 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:27, 06:07](1153 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:26, 05:52](1150 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:58](1152 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:25, 06:00](1147 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:59](1154 MB)
+PASS -- TEST 'rap_diag_debug_intel' [11:38, 09:54](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:06](1147 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 06:06](1152 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:02](1150 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:59](1150 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:54](1146 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:59](1151 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 09:48](1142 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:56](1146 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:29, 07:17](1150 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:27, 06:01](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:29, 10:22](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:59]
+PASS -- TEST 'control_wam_debug_intel' [08:20, 06:07](470 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:42]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:51, 05:23](1082 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 08:32](902 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:45, 04:42](864 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:49, 08:18](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:17](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:45, 05:01](850 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:17, 06:11](896 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:45](845 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:50]
+PASS -- TEST 'conus13km_control_intel' [05:06, 02:56](1100 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:25](1049 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:34](1025 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:20, 30:58]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:25](906 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:15]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:36, 05:56](1028 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:54](1030 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:03, 18:35](1138 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:38](848 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:34, 10:48](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:56, 18:32](1225 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 04:08]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:53, 06:23](1076 MB)
+
+PASS -- COMPILE 'hafsw_intel' [37:20, 35:30]
+PASS -- TEST 'hafs_regional_atm_intel' [09:18, 07:01](715 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:30](1092 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:21](772 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:19](802 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:46, 18:04](824 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:15, 05:43](772 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:22, 32:03]
+PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:31](763 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:36](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:22]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:38](1066 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:11](1033 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:32](921 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:33](924 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:37](920 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1058 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:39](1057 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 03:28](922 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:12, 07:49](887 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:46](844 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 03:37](1051 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 05:02](2398 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 05:02](2405 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:10]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 07:56](1012 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:32](1080 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:39]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:34](229 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](250 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:55](250 MB)
+
+PASS -- COMPILE 'atml_intel' [39:21, 37:37]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:57](1599 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:43, 08:45](1608 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:49, 04:09](870 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:19, 32:15]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:20](1620 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:19, 31:17]
+PASS -- TEST 'control_atmwav_intel' [05:15, 02:11](608 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 30:42]
+PASS -- TEST 'atmaero_control_p8_intel' [08:32, 05:09](1692 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:30, 06:21](1727 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:15, 06:43](1733 MB)
SYNOPSIS:
-Starting Date/Time: 20240326 15:42:51
-Ending Date/Time: 20240326 19:11:37
-Total Time: 03h:29m:25s
+Starting Date/Time: 20240328 16:20:50
+Ending Date/Time: 20240328 20:03:36
+Total Time: 03h:43m:20s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index b4183dfa8b..247559746c 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0a6b9489ca89719f3fab9fa759a07c60c4c91f78
+3747664d1511e058657743b4b84f7e51566ac419
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4225-g7fa55935)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/cloudPR)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (ulm-10005-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_34792
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4406
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:07, 15:34]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:38, 05:11](3171 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:08, 20:52]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:05, 16:27](1743 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 17:23](2027 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 08:10](1112 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:57, 18:29](1651 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 05:16]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:09, 23:06](1676 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:07, 15:09]
-PASS -- TEST 'cpld_control_p8_intel' [12:39, 05:49](3150 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:54, 05:46](3211 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:22](3207 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:39, 05:49](3233 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:29](3271 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:39, 06:13](3548 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:39, 05:54](3205 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 04:47](3071 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:54, 05:42](3210 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 09:55](3342 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:22, 06:12](3625 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:09, 10:59](4111 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:21, 06:56](4373 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 05:25](3172 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:07, 14:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:12, 04:27](1744 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:35, 04:19](1776 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [11:07, 07:29]
-PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:41](3244 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:07, 05:50]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:06, 06:01](1747 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:07, 13:40]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:38, 04:26](1780 MB)
-
-PASS -- COMPILE 's2s_intel' [17:07, 14:04]
-PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:02](2829 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:13, 19:40]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:47, 05:22](3211 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 20:31]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:22, 16:37](1769 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:18, 08:07](1173 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 18:27](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:29]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:17, 24:28](1710 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:07, 14:25]
-PASS -- TEST 'control_flake_intel' [05:18, 03:31](695 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:27](655 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:31](655 MB)
-PASS -- TEST 'control_latlon_intel' [04:17, 02:30](649 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:27](648 MB)
-PASS -- TEST 'control_c48_intel' [07:27, 05:55](877 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:52](872 MB)
-PASS -- TEST 'control_c192_intel' [11:35, 09:09](857 MB)
-PASS -- TEST 'control_c384_intel' [13:38, 10:09](1246 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:54, 08:55](1357 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:40](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:22, 00:59](503 MB)
-PASS -- TEST 'control_lndp_intel' [03:19, 01:36](653 MB)
-PASS -- TEST 'control_iovr4_intel' [04:20, 02:29](616 MB)
-PASS -- TEST 'control_iovr5_intel' [04:22, 02:27](655 MB)
-PASS -- TEST 'control_p8_intel' [05:14, 03:01](1625 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:16, 02:58](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:51](1629 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:18, 01:39](896 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:08, 02:54](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:38](928 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:18, 03:04](1623 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:05](1722 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1629 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:54](1699 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:37, 02:54](1632 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:48, 03:28](1610 MB)
-PASS -- TEST 'regional_control_intel' [07:45, 05:07](858 MB)
-PASS -- TEST 'regional_restart_intel' [04:40, 02:51](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB)
-PASS -- TEST 'regional_2threads_intel' [05:40, 03:41](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:40, 05:02](1368 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:03](853 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:03](858 MB)
-PASS -- TEST 'regional_wofs_intel' [11:34, 06:38](1919 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 12:01]
-PASS -- TEST 'rap_control_intel' [10:39, 07:44](1102 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:55, 04:39](1272 MB)
-PASS -- TEST 'rap_decomp_intel' [11:00, 08:05](1031 MB)
-PASS -- TEST 'rap_2threads_intel' [11:24, 07:51](1185 MB)
-PASS -- TEST 'rap_restart_intel' [07:20, 04:05](1104 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:44](1108 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:09, 08:08](1025 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:19, 05:48](1134 MB)
-PASS -- TEST 'hrrr_control_intel' [07:00, 04:01](1044 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:10](1024 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:24, 03:20](1105 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:20, 02:11](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:40](1101 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:10](2001 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:03](2075 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:08, 11:34]
-PASS -- TEST 'control_csawmg_intel' [07:41, 06:01](747 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:40, 05:58](749 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:21](742 MB)
-
-PASS -- COMPILE 'wam_intel' [12:08, 10:59]
-PASS -- TEST 'control_wam_intel' [04:19, 02:07](657 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:09, 17:36]
-PASS -- TEST 'control_p8_faster_intel' [05:34, 02:45](1601 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:44, 04:39](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:03]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:41](812 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:29, 02:42](808 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:07](807 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:46](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:47, 04:10](831 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [08:46, 04:06](853 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:22, 02:52](823 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:29, 02:51](870 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:51, 02:54](1648 MB)
-PASS -- TEST 'regional_debug_intel' [23:51, 18:45](845 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:25, 04:48](1202 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:23, 04:44](1192 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:24, 05:02](1199 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 04:51](1203 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 05:04](1164 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:21](1281 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:00](1201 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 04:52](1198 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:27, 05:05](1186 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:57](1196 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:49](1207 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:51](1196 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1207 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1200 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 05:47](1200 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:22, 04:52](1193 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:25](1203 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:08, 03:30]
-PASS -- TEST 'control_wam_debug_intel' [07:18, 05:02](516 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:27]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:56, 04:27](1138 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:23, 06:28](1046 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:47, 03:22](986 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:52, 06:42](1088 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:05, 02:56](963 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:59, 03:38](925 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:12, 05:00](1038 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:52](932 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:08]
-PASS -- TEST 'conus13km_control_intel' [04:53, 02:08](1200 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:00](1123 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 11:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:45, 04:14](1010 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:30]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:55](1076 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:43](1074 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:52, 14:34](1232 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:08](925 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:40, 08:29](1151 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 14:39](1289 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:06, 03:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1129 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:07, 13:26]
-PASS -- TEST 'hafs_regional_atm_intel' [09:08, 05:41](744 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:23, 06:03](1122 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 07:09](835 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:12, 12:54](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 14:37](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:08](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:34](518 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:45, 03:07](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:26, 08:02](477 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:15](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:49, 04:02](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:22](583 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:24, 01:30](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:56, 04:40](801 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:13](574 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:28](673 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:01, 09:43](708 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 07:12](724 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:06, 12:26]
-PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:19](825 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:29](811 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:07](1215 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:06, 07:32]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:15, 02:37](1133 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1083 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:34](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:40](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:39](1022 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:36](1136 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:39](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:36](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 05:55](1057 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 06:03](1034 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:39](1134 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:32](2439 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:40](2438 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:08]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:22](1059 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:34](1136 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:15]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:50](251 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:49](322 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:32](320 MB)
-
-PASS -- COMPILE 'atml_intel' [14:08, 12:55]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:33, 04:21](1595 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:18](1599 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:23](896 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:08, 12:44]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:48](1672 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:06, 11:48]
-PASS -- TEST 'control_atmwav_intel' [04:03, 01:42](673 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:07, 11:52]
-PASS -- TEST 'atmaero_control_p8_intel' [06:18, 03:57](3033 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 04:47](3100 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:03](3106 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:08, 11:44]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:47, 20:47](4585 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:50]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 05:10](3181 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:51]
+PASS -- TEST 'cpld_control_gfsv17_intel' [27:12, 16:33](1738 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:03, 17:23](2020 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:08](1113 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:02, 18:35](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:39]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:00, 22:57](1694 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:09, 14:04]
+PASS -- TEST 'cpld_control_p8_intel' [14:18, 05:38](3213 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:43, 05:31](3210 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:20](3255 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:19, 05:36](3235 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:25](3273 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:05](3548 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [14:13, 05:37](3205 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:12, 04:41](3057 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:42, 05:35](3209 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:58, 10:15](3341 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 06:33](3623 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 11:57](4134 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:30, 07:22](4375 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:21](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 14:14]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [16:24, 04:27](1734 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:46, 04:22](1777 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:15]
+PASS -- TEST 'cpld_debug_p8_intel' [13:34, 08:41](3246 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 05:52](1748 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:27]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:19](1778 MB)
+
+PASS -- COMPILE 's2s_intel' [15:06, 13:37]
+PASS -- TEST 'cpld_control_c48_intel' [17:08, 07:59](2827 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:46]
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:38, 05:14](3210 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:09, 17:25]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:14, 16:31](1773 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 08:07](1170 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 18:46](1675 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:16](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:57]
+PASS -- TEST 'control_flake_intel' [11:21, 03:29](702 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:24, 02:27](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:29, 02:33](659 MB)
+PASS -- TEST 'control_latlon_intel' [09:20, 02:28](653 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:28, 02:37](650 MB)
+PASS -- TEST 'control_c48_intel' [11:26, 05:55](859 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:25, 05:55](876 MB)
+PASS -- TEST 'control_c192_intel' [16:34, 09:11](852 MB)
+PASS -- TEST 'control_c384_intel' [18:45, 10:06](1244 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:52, 09:04](1357 MB)
+PASS -- TEST 'control_stochy_intel' [10:20, 01:43](654 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:02](505 MB)
+PASS -- TEST 'control_lndp_intel' [08:19, 01:36](657 MB)
+PASS -- TEST 'control_iovr4_intel' [09:23, 02:30](654 MB)
+PASS -- TEST 'control_iovr5_intel' [08:21, 02:31](649 MB)
+PASS -- TEST 'control_p8_intel' [06:11, 03:03](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:23, 03:04](1630 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 02:58](1626 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:16, 01:39](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:13, 02:51](1617 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:37](931 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:12, 03:00](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:09](1709 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:21](1618 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:59](1690 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:30, 02:58](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:55, 03:26](1649 MB)
+PASS -- TEST 'regional_control_intel' [08:38, 05:15](857 MB)
+PASS -- TEST 'regional_restart_intel' [04:35, 02:44](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [08:39, 05:27](855 MB)
+PASS -- TEST 'regional_2threads_intel' [05:40, 03:39](845 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:42, 05:07](1369 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:48, 05:10](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](858 MB)
+PASS -- TEST 'regional_wofs_intel' [08:39, 06:38](1927 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:10, 11:47]
+PASS -- TEST 'rap_control_intel' [10:31, 07:44](1112 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:41](1304 MB)
+PASS -- TEST 'rap_decomp_intel' [10:58, 08:11](1026 MB)
+PASS -- TEST 'rap_2threads_intel' [09:53, 07:56](1172 MB)
+PASS -- TEST 'rap_restart_intel' [06:29, 04:02](1102 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:41](1105 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:07](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:38, 05:47](1131 MB)
+PASS -- TEST 'hrrr_control_intel' [06:22, 03:59](1034 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:50, 04:08](1023 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:23](1113 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:16](994 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:33, 07:35](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:13](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:55](2077 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:08, 10:29]
+PASS -- TEST 'control_csawmg_intel' [08:45, 06:12](751 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:40, 05:55](747 MB)
+PASS -- TEST 'control_ras_intel' [05:23, 03:20](741 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 10:48]
+PASS -- TEST 'control_wam_intel' [04:16, 02:12](664 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:27]
+PASS -- TEST 'control_p8_faster_intel' [05:28, 02:47](1617 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:40, 04:39](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 05:00]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:47](820 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:38](811 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:11](822 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:51](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:14](863 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 04:09](861 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](826 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:33, 03:03](871 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:42, 02:51](1639 MB)
+PASS -- TEST 'regional_debug_intel' [19:39, 17:41](841 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:23, 05:02](1203 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:56](1200 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 05:05](1203 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:05](1204 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:04](1198 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:19](1292 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:58](1199 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:58](1205 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:19](1194 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:51](1206 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:59](1203 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:02](1211 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:49](1200 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:45](1209 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:03](1203 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:34](1202 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:06, 03:56]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:14](506 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:07, 13:45]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:36](1166 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:26, 06:30](1055 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 03:26](984 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:38](1091 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 03:04](962 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:48, 03:34](934 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:33, 04:50](1034 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:21, 01:52](933 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:07, 14:54]
+PASS -- TEST 'conus13km_control_intel' [04:00, 02:04](1206 MB)
+PASS -- TEST 'conus13km_2threads_intel' [09:46, 01:03](1119 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [09:39, 01:18](1107 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:07, 11:33]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:12](1001 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:06, 03:12]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:51](1086 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:52](1081 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:51, 14:49](1226 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 14:50](925 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:08](1154 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:47, 14:22](1295 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:04]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:25, 05:36](1126 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:07, 12:40]
+PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:32](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:25, 05:49](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:27, 06:59](825 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [20:20, 12:50](857 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:28, 14:27](881 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:59, 06:06](503 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:26, 07:20](524 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [11:49, 03:09](375 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:27, 07:57](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:45, 04:02](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:48, 03:51](535 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:52, 05:15](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:24, 01:28](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [14:53, 04:34](747 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:06, 04:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:51, 13:01](576 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:06, 13:26]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:55, 09:40](668 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:02, 09:37](711 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:58, 07:00](730 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:07, 12:02]
+PASS -- TEST 'hafs_regional_docn_intel' [16:15, 06:17](834 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:11, 06:20](814 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:00, 15:53](1210 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:36](1126 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1093 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:15, 02:31](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:16, 02:36](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:14, 02:37](1021 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:39](1126 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:14, 02:39](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:13, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 05:54](1052 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 05:51](1045 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:12, 02:44](1136 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:30](2488 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:32](2434 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:01]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:14](1064 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:43](1134 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:14]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:46](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:53](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:31](326 MB)
+
+PASS -- COMPILE 'atml_intel' [14:09, 12:35]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:13](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:18](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 03:08](899 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:08, 14:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 01:44](1662 MB)
+
+PASS -- COMPILE 'atmwm_intel' [15:07, 13:19]
+PASS -- TEST 'control_atmwav_intel' [04:12, 01:39](677 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:06, 11:30]
+PASS -- TEST 'atmaero_control_p8_intel' [06:23, 03:57](3026 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:46](3096 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:05](3107 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:07, 10:35]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:31]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:19](4580 MB)
SYNOPSIS:
-Starting Date/Time: 20240326 10:43:43
-Ending Date/Time: 20240326 12:20:21
-Total Time: 01h:37m:23s
+Starting Date/Time: 20240328 09:57:41
+Ending Date/Time: 20240328 11:36:48
+Total Time: 01h:39m:52s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index b05a8b7d07..3fd64072f3 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-0a6b9489ca89719f3fab9fa759a07c60c4c91f78
+66d797dfd3f55ff071d70c9992a76d42a2c99f50
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,33 +11,33 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 7fa559355056e533fe6ae86ed291006b75a11aca FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5186-g7fa55935)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bc6e0e36e6ee4f53238547fe08f2a1da2ac4a515 FV3 (remotes/origin/develop-74-gbc6e0e3)
+ 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- dc248836f0cadf3120ea35210f4d3434beb77f0e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10031-gdc248836f)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
+ 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_147708
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182077
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:47, 15:28]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:02, 01:24](2972 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 23:12]
-PASS -- TEST 'cpld_control_gfsv17_intel' [02:44, 02:26](1590 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:18, 02:06](1711 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [44:06, 01:29](845 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [02:45, 01:34](1569 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:52, 16:53]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [08:58, 01:23](1602 MB)
-
-PASS -- COMPILE 's2swa_intel' [26:11, 25:50]
-PASS -- TEST 'cpld_control_p8_intel' [00:24, 01:38](3003 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:24, 01:36](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [51:26, 01:43](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [00:24, 01:30](3030 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [51:26, 01:42](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [59:28, 01:46](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [57:57, 02:04](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [57:53, 01:43](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:49, 02:23](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [57:55, 04:05](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:52, 03:37](4252 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [57:44, 02:25](2969 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:37, 11:58]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [14:12, 00:59](1582 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:12, 01:04](1637 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:36, 10:07]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:13, 01:04](1636 MB)
-
-PASS -- COMPILE 's2s_intel' [44:48, 43:53]
-PASS -- TEST 'cpld_control_c48_intel' [41:37, 00:48](2657 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:51, 16:25]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 01:47](3004 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:47, 15:03]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:02, 01:27](1603 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [53:24, 00:52](901 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [53:15, 01:07](1572 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:26, 04:13]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:24, 01:28](1620 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [19:53, 19:30]
-PASS -- TEST 'control_flake_intel' [01:29, 00:31](571 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [01:29, 00:54](523 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:29, 00:55](527 MB)
-PASS -- TEST 'control_latlon_intel' [01:29, 00:50](523 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:29, 00:55](525 MB)
-PASS -- TEST 'control_c48_intel' [01:28, 01:00](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [01:28, 00:58](718 MB)
-PASS -- TEST 'control_c192_intel' [01:29, 01:39](638 MB)
-PASS -- TEST 'control_c384_intel' [01:33, 03:25](953 MB)
-PASS -- TEST 'control_c384gdas_intel' [01:24, 04:28](1092 MB)
-PASS -- TEST 'control_stochy_intel' [57:00, 00:34](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [54:20, 00:54](334 MB)
-PASS -- TEST 'control_lndp_intel' [56:58, 00:39](526 MB)
-PASS -- TEST 'control_iovr4_intel' [56:57, 00:54](526 MB)
-PASS -- TEST 'control_iovr5_intel' [56:56, 00:56](523 MB)
-PASS -- TEST 'control_p8_intel' [56:52, 01:53](1499 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [56:51, 01:58](1508 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [56:01, 02:02](1500 MB)
-PASS -- TEST 'control_restart_p8_intel' [51:15, 02:08](688 MB)
-PASS -- TEST 'control_noqr_p8_intel' [55:59, 01:45](1494 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [50:34, 01:02](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [55:50, 01:39](1503 MB)
-PASS -- TEST 'control_2threads_p8_intel' [54:35, 01:07](1587 MB)
-PASS -- TEST 'control_p8_lndp_intel' [54:34, 01:39](1509 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [54:33, 02:21](1559 MB)
-PASS -- TEST 'control_p8_mynn_intel' [54:32, 02:18](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [54:19, 01:45](1512 MB)
-PASS -- TEST 'regional_control_intel' [54:08, 00:27](610 MB)
-PASS -- TEST 'regional_restart_intel' [48:11, 00:25](776 MB)
-PASS -- TEST 'regional_decomp_intel' [53:13, 01:05](606 MB)
-PASS -- TEST 'regional_2threads_intel' [51:46, 01:01](665 MB)
-PASS -- TEST 'regional_noquilt_intel' [51:22, 00:23](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 00:26](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [51:11, 00:23](608 MB)
-PASS -- TEST 'regional_wofs_intel' [50:33, 01:03](1576 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:31, 10:05]
-PASS -- TEST 'rap_control_intel' [05:41, 01:24](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:42, 01:23](1089 MB)
-PASS -- TEST 'rap_decomp_intel' [05:41, 02:06](919 MB)
-PASS -- TEST 'rap_2threads_intel' [05:41, 02:02](1009 MB)
-PASS -- TEST 'rap_restart_intel' [50:19, 01:15](788 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [05:41, 01:25](914 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:41, 02:07](912 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [50:13, 01:43](789 MB)
-PASS -- TEST 'hrrr_control_intel' [05:41, 01:17](913 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:41, 01:12](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:42, 01:42](993 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [50:08, 01:00](744 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [05:41, 01:29](907 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [05:41, 01:12](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [05:41, 00:31](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:39, 10:50]
-PASS -- TEST 'control_csawmg_intel' [02:33, 00:42](598 MB)
-PASS -- TEST 'control_csawmgt_intel' [02:33, 00:43](598 MB)
-PASS -- TEST 'control_ras_intel' [02:33, 01:02](563 MB)
-
-PASS -- COMPILE 'wam_intel' [17:50, 17:29]
-PASS -- TEST 'control_wam_intel' [50:07, 00:50](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:41, 13:14]
-PASS -- TEST 'control_p8_faster_intel' [48:51, 02:09](1505 MB)
-PASS -- TEST 'regional_control_faster_intel' [48:35, 00:28](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [17:54, 16:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [48:31, 01:11](689 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [48:21, 01:21](692 MB)
-PASS -- TEST 'control_stochy_debug_intel' [48:05, 00:56](691 MB)
-PASS -- TEST 'control_lndp_debug_intel' [47:32, 01:07](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [47:12, 00:37](733 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [47:06, 00:42](733 MB)
-PASS -- TEST 'control_ras_debug_intel' [46:55, 01:09](706 MB)
-PASS -- TEST 'control_diag_debug_intel' [46:51, 01:22](745 MB)
-PASS -- TEST 'control_debug_p8_intel' [46:35, 01:02](1517 MB)
-PASS -- TEST 'regional_debug_intel' [46:34, 00:09](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [46:29, 00:58](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [46:27, 01:02](1069 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [46:13, 00:59](1077 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [45:35, 00:56](1073 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [45:19, 00:56](1079 MB)
-PASS -- TEST 'rap_diag_debug_intel' [45:19, 00:44](1156 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:41, 00:48](1075 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:41, 00:48](1074 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [44:26, 00:54](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:43, 00:57](1073 MB)
-PASS -- TEST 'rap_noah_debug_intel' [43:36, 01:07](1073 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [43:34, 01:02](1069 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [43:28, 00:56](1075 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [43:23, 01:05](1065 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [42:39, 01:07](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [42:29, 01:05](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [42:17, 01:27](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [16:49, 15:55]
-PASS -- TEST 'control_wam_debug_intel' [42:17, 01:12](299 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:38, 11:11]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [42:18, 01:29](953 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:10, 01:38](795 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [42:06, 02:34](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [42:05, 02:02](849 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [41:13, 01:56](842 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:11, 02:07](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [34:29, 01:38](689 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [36:08, 00:15](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:33, 11:11]
-PASS -- TEST 'conus13km_control_intel' [39:53, 01:05](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [36:00, 00:56](1009 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [35:54, 00:45](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 12:05]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:50, 01:38](808 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:28, 06:34]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:32, 01:12](953 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:01, 00:21](949 MB)
-PASS -- TEST 'conus13km_debug_intel' [38:45, 00:58](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [38:37, 00:43](712 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [38:05, 00:56](1041 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [38:04, 00:57](1105 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:43, 14:31]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [37:50, 01:14](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:50, 13:39]
-PASS -- TEST 'hafs_regional_atm_intel' [37:05, 01:27](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:00, 01:00](967 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:58, 02:06](663 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:51](699 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:10, 01:54](706 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:06, 01:07](383 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:32, 01:23](401 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [35:31, 01:36](282 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [35:07, 02:41](374 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:30, 01:37](413 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:57, 00:59](419 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:57, 00:53](495 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:47, 00:25](313 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:21, 03:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:42, 01:05](503 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:40, 12:26]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:28, 01:14](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:24, 01:11](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:01, 20:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [31:33, 01:11](718 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:50, 14:56]
-PASS -- TEST 'hafs_regional_docn_intel' [33:21, 01:35](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [33:08, 01:30](649 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:03, 00:45](883 MB)
-
-PASS -- COMPILE 'atml_intel' [15:49, 14:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [33:00, 01:15](1542 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [31:13, 01:12](1549 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [24:42, 00:22](744 MB)
-
-PASS -- COMPILE 'atmaero_intel' [18:59, 18:09]
-PASS -- TEST 'atmaero_control_p8_intel' [31:05, 01:33](2849 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 01:01](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:14, 02:01](2922 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:34, 08:55]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:41, 11:58]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:20, 01:06](4435 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [25:07, 24:37]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:22, 04:29](2970 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:38, 11:48]
+PASS -- TEST 'cpld_control_gfsv17_intel' [48:50, 02:41](1592 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:49, 01:49](1710 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [28:26, 01:22](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:51, 03:08](1573 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:03, 21:54]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [38:27, 02:19](1603 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:35, 11:06]
+PASS -- TEST 'cpld_control_p8_intel' [49:52, 01:14](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:52, 01:31](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [41:29, 02:00](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [49:52, 01:17](3028 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [41:29, 01:55](3078 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [49:52, 01:02](3316 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [49:52, 01:20](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [49:53, 01:14](2928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [49:52, 01:31](3001 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [50:01, 08:57](3955 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:16, 04:08](4248 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [49:52, 01:50](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:44, 14:55]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [45:43, 00:45](1588 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:43, 01:02](1638 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [26:09, 25:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:20, 03:20](1639 MB)
+
+PASS -- COMPILE 's2s_intel' [22:01, 21:30]
+PASS -- TEST 'cpld_control_c48_intel' [39:27, 00:58](2649 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:07]
+PASS -- TEST 'cpld_control_p8_faster_intel' [44:38, 01:29](3001 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:24]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:50, 01:57](1601 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:24, 01:40](901 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:08, 00:54](1576 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:23, 32:00]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:54, 01:15](1619 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:53, 15:06]
+PASS -- TEST 'control_flake_intel' [34:00, 00:34](572 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [34:00, 00:49](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:00, 00:42](529 MB)
+PASS -- TEST 'control_latlon_intel' [34:00, 00:40](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:00, 00:49](523 MB)
+PASS -- TEST 'control_c48_intel' [33:59, 01:58](715 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [33:59, 02:07](714 MB)
+PASS -- TEST 'control_c192_intel' [34:00, 01:38](637 MB)
+PASS -- TEST 'control_c384_intel' [34:04, 01:58](954 MB)
+PASS -- TEST 'control_c384gdas_intel' [34:04, 03:06](1090 MB)
+PASS -- TEST 'control_stochy_intel' [34:00, 00:28](532 MB)
+PASS -- TEST 'control_stochy_restart_intel' [31:12, 01:04](333 MB)
+PASS -- TEST 'control_lndp_intel' [34:00, 01:37](528 MB)
+PASS -- TEST 'control_iovr4_intel' [34:00, 00:54](522 MB)
+PASS -- TEST 'control_iovr5_intel' [34:00, 00:47](523 MB)
+PASS -- TEST 'control_p8_intel' [34:00, 01:59](1508 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [34:00, 02:40](1503 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [34:00, 02:43](1510 MB)
+PASS -- TEST 'control_restart_p8_intel' [27:53, 01:06](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [34:00, 01:51](1498 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [27:53, 01:01](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [34:00, 01:49](1499 MB)
+PASS -- TEST 'control_2threads_p8_intel' [34:00, 02:06](1588 MB)
+PASS -- TEST 'control_p8_lndp_intel' [34:00, 02:22](1511 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [34:00, 03:36](1563 MB)
+PASS -- TEST 'control_p8_mynn_intel' [30:58, 02:16](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [30:05, 02:20](1513 MB)
+PASS -- TEST 'regional_control_intel' [30:03, 00:35](610 MB)
+PASS -- TEST 'regional_restart_intel' [21:51, 00:29](776 MB)
+PASS -- TEST 'regional_decomp_intel' [30:03, 00:22](606 MB)
+PASS -- TEST 'regional_2threads_intel' [29:59, 01:16](667 MB)
+PASS -- TEST 'regional_noquilt_intel' [29:56, 01:01](1146 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [29:55, 00:54](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [29:51, 01:01](610 MB)
+PASS -- TEST 'regional_wofs_intel' [27:49, 00:56](1580 MB)
+
+PASS -- COMPILE 'rrfs_intel' [23:14, 20:40]
+PASS -- TEST 'rap_control_intel' [25:31, 01:08](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:24, 01:19](1093 MB)
+PASS -- TEST 'rap_decomp_intel' [25:16, 01:33](918 MB)
+PASS -- TEST 'rap_2threads_intel' [25:13, 01:35](1007 MB)
+PASS -- TEST 'rap_restart_intel' [16:44, 01:13](789 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [24:40, 02:07](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:59, 01:08](914 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [15:01, 01:47](785 MB)
+PASS -- TEST 'hrrr_control_intel' [22:49, 01:42](912 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [22:36, 01:12](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [21:53, 01:21](991 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [16:42, 01:08](739 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [21:52, 01:25](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [21:52, 01:09](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:44, 01:20](1865 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:52, 14:11]
+PASS -- TEST 'control_csawmg_intel' [27:03, 00:43](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [26:51, 00:47](599 MB)
+PASS -- TEST 'control_ras_intel' [26:21, 00:57](561 MB)
+
+PASS -- COMPILE 'wam_intel' [15:52, 15:03]
+PASS -- TEST 'control_wam_intel' [25:54, 00:55](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [15:59, 13:50]
+PASS -- TEST 'control_p8_faster_intel' [25:38, 02:23](1507 MB)
+PASS -- TEST 'regional_control_faster_intel' [21:36, 00:31](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:41, 11:57]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:32, 01:21](687 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:31, 01:30](691 MB)
+PASS -- TEST 'control_stochy_debug_intel' [21:00, 00:54](691 MB)
+PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:13](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [20:17, 00:45](736 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [18:59, 00:46](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [18:42, 01:13](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [18:03, 00:26](742 MB)
+PASS -- TEST 'control_debug_p8_intel' [17:53, 01:04](1519 MB)
+PASS -- TEST 'regional_debug_intel' [17:42, 01:02](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [17:41, 01:00](1077 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [17:11, 01:05](1070 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [16:49, 01:05](1069 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [16:47, 01:00](1074 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:44, 01:01](1073 MB)
+PASS -- TEST 'rap_diag_debug_intel' [16:41, 00:55](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:19, 00:55](1073 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:01, 01:01](1072 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [16:01, 00:56](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:59, 01:18](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [15:57, 01:17](1076 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [15:43, 01:06](1073 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:18, 01:13](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [14:14, 01:01](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [14:07, 01:10](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [13:44, 01:03](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:15, 01:35](1081 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:41, 10:07]
+PASS -- TEST 'control_wam_debug_intel' [13:13, 00:58](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:54, 16:59]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:11, 01:26](956 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:01, 01:21](791 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:05, 02:14](785 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:56, 01:42](851 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:53, 02:19](843 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:28, 01:29](786 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:28](686 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 00:21](669 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [29:19, 28:43]
+PASS -- TEST 'conus13km_control_intel' [06:01, 01:04](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:58, 00:37](1009 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:57, 00:27](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:50, 13:58]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:08, 01:29](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:44, 11:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:32, 01:18](953 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:13, 01:22](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [10:13, 00:58](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [10:09, 00:50](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:00, 00:41](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:41, 00:56](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:30, 05:37]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:28, 01:08](978 MB)
+
+PASS -- COMPILE 'hafsw_intel' [23:11, 20:50]
+PASS -- TEST 'hafs_regional_atm_intel' [05:57, 02:00](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 00:25](968 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:55, 01:54](662 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [05:55, 01:48](693 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:56, 01:33](707 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:55, 01:10](389 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:56, 02:18](404 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 01:32](528 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:59, 02:17](369 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 01:27](423 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 00:53](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 00:43](487 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:23](317 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [11:39, 09:22]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:23, 01:02](504 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:58, 16:40]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:13, 00:57](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:13, 00:53](713 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:02, 17:05]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:45, 01:03](715 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [24:12, 23:14]
+PASS -- TEST 'hafs_regional_docn_intel' [01:24, 01:29](663 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:24, 01:35](646 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:22, 00:41](881 MB)
+
+PASS -- COMPILE 'atml_intel' [29:22, 28:03]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:58, 01:37](1549 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [53:58, 01:09](1548 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [46:19, 00:32](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [28:20, 27:05]
+PASS -- TEST 'atmaero_control_p8_intel' [51:53, 01:36](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [51:53, 00:58](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [51:53, 01:36](2926 MB)
+
+PASS -- COMPILE 'atmaq_intel' [17:55, 17:27]
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:42, 12:31]
+PASS -- TEST 'regional_atmaq_debug_intel' [03:56, 01:50](4433 MB)
SYNOPSIS:
-Starting Date/Time: 20240326 17:32:52
-Ending Date/Time: 20240326 18:56:26
-Total Time: 01h:24m:15s
+Starting Date/Time: 20240328 15:58:14
+Ending Date/Time: 20240328 17:22:49
+Total Time: 01h:25m:11s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/rt.sh b/tests/rt.sh
index a1d72d4b81..e05e8d4636 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -689,8 +689,9 @@ elif [[ $MACHINE_ID = gaea ]]; then
QUEUE=normal
COMPILE_QUEUE=normal
PARTITION=c5
- STMP=/gpfs/f5/epic/scratch
- PTMP=/gpfs/f5/epic/scratch
+ dprefix=${dprefix:-/gpfs/f5/$ACCNR/scratch/$USER}
+ STMP=${STMP:-$dprefix/RT_BASELINE}
+ PTMP=${PTMP:-$dprefix/RT_RUNDIRS}
SCHEDULER=slurm
@@ -986,7 +987,7 @@ if [[ "$CREATE_BASELINE" == false ]] ; then
fi
INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101}
-INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624
+INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214
INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207}
shift $((OPTIND-1))
From 1411b90ac9f4961e5395e256af14287a41a03ef4 Mon Sep 17 00:00:00 2001
From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com>
Date: Mon, 1 Apr 2024 18:04:44 -0400
Subject: [PATCH 16/33] Update module_write_netcdf to avoid hangs in RRFS runs
(#2193)
* UFSWM - Update module_write_netcdf to avoid hangs in RRFS runs
* FV3 - Update module_write_netcdf to avoid hangs in RRFS runs
---
FV3 | 2 +-
tests/ci/repo_check.sh | 169 ++--
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 522 ++++++-------
tests/logs/RegressionTests_gaea.log | 536 ++++++-------
tests/logs/RegressionTests_hera.log | 721 +++++++++---------
tests/logs/RegressionTests_hercules.log | 713 ++++++++---------
tests/logs/RegressionTests_jet.log | 470 ++++++------
tests/logs/RegressionTests_orion.log | 536 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 454 +++++------
12 files changed, 2111 insertions(+), 2108 deletions(-)
diff --git a/FV3 b/FV3
index 1ba84102cb..1b75fe2c90 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 1ba84102cb814ec377efae92264fceb317c24398
+Subproject commit 1b75fe2c90f2a0abf03844d867bd2afa00e86de9
diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh
index 04a44585ed..871021f54a 100755
--- a/tests/ci/repo_check.sh
+++ b/tests/ci/repo_check.sh
@@ -1,111 +1,112 @@
#!/bin/bash
set -eu
-# This script checks if head repo of PR is up to date with ufs-weather-model develop
-# Checks for top level (ufs-weather-model) and next level components (submodules)
-result() {
- if [[ -n $comment ]]; then
- logID=$1
- comment="@$logID please bring these up to date with respective authoritative repositories\n"$comment
- printf %s "$comment"
- #exit 1
- fi
+get_shas () {
+ cwd=$(pwd)
+ # Get sha-1's of the top of develop and feature branches
+ app="Accept: application/vnd.github.v3+json"
+ url=$1
+ gitapi=$2
+ branch=$3
+ base_sha=$(curl -sS -H "$app" $gitapi | jq -r '.commit.sha')
+ workspace=$4
+ cd $workspace
+ git remote add upstream $url
+ git fetch -q upstream $branch
+ common=$(git merge-base $base_sha @)
+ echo $common $base_sha $workspace
+ if [[ $common != $base_sha ]]; then
+ printf "%s\n\n" "** $workspace **NOT** up to date"
+ flag_sync=false
+ fi
+ cd $cwd
}
-# Declare variables
-declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere
-submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp-framework ccpp-physics atmos_cubed_sphere"
-comment=''
+flag_sync=true
+
ownerID=$1
-# Base branch: this is the top of develop of ufs-weather-model
-base[repo]='https://github.com/ufs-community/ufs-weather-model'
-base[branch]='develop'
+declare -A urls branches pathes
+submodules="base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp_physics ccpp_framework aqm noahmp"
-# Submodules to check
-fv3[repo]='https://github.com/NOAA-EMC/fv3atm'
-fv3[branch]='develop'
-fv3[dir]='FV3'
+urls[base]='https://github.com/ufs-community/ufs-weather-model'
+branches[base]='develop'
+pathes[base]=''
-mom6[repo]='https://github.com/NOAA-EMC/MOM6'
-mom6[branch]='dev/emc'
-mom6[dir]='MOM6-interface/MOM6'
+urls[fv3]='https://github.com/NOAA-EMC/fv3atm'
+branches[fv3]='develop'
+pathes[fv3]='FV3'
-cice[repo]='https://github.com/NOAA-EMC/CICE'
-cice[branch]='emc/develop'
-cice[dir]='CICE-interface/CICE'
+urls[mom6]='https://github.com/NOAA-EMC/MOM6'
+branches[mom6]='dev/emc'
+pathes[mom6]='MOM6-interface/MOM6'
-ww3[repo]='https://github.com/NOAA-EMC/WW3'
-ww3[branch]='dev/ufs-weather-model'
-ww3[dir]='WW3'
+urls[cice]='https://github.com/NOAA-EMC/CICE'
+branches[cice]='emc/develop'
+pathes[cice]='CICE-interface/CICE'
-stoch[repo]='https://github.com/noaa-psl/stochastic_physics'
-stoch[branch]='master'
-stoch[dir]='stochastic_physics'
+urls[ww3]='https://github.com/NOAA-EMC/WW3'
+branches[ww3]='dev/ufs-weather-model'
+pathes[ww3]='WW3'
-gocart[repo]='https://github.com/GEOS-ESM/GOCART'
-gocart[branch]='develop'
-gocart[dir]='GOCART'
+urls[stoch]='https://github.com/noaa-psl/stochastic_physics'
+branches[stoch]='master'
+pathes[stoch]='stochastic_physics'
-cmeps[repo]='https://github.com/NOAA-EMC/CMEPS'
-cmeps[branch]='emc/develop'
-cmeps[dir]='CMEPS-interface/CMEPS'
+urls[gocart]='https://github.com/GEOS-ESM/GOCART'
+branches[gocart]='develop'
+pathes[gocart]='GOCART'
-cdeps[repo]='https://github.com/NOAA-EMC/CDEPS'
-cdeps[branch]='develop'
-cdeps[dir]='CDEPS-interface/CDEPS'
+urls[cmeps]='https://github.com/NOAA-EMC/CMEPS'
+branches[cmeps]='emc/develop'
+pathes[cmeps]='CMEPS-interface/CMEPS'
-hycom[repo]='https://github.com/NOAA-EMC/HYCOM-src'
-hycom[branch]='emc/develop'
-hycom[dir]='HYCOM-interface/HYCOM'
+urls[cdeps]='https://github.com/NOAA-EMC/CDEPS'
+branches[cdeps]='develop'
+pathes[cdeps]='CDEPS-interface/CDEPS'
-cmake[repo]='https://github.com/NOAA-EMC/CMakeModules'
-cmake[branch]='develop'
-cmake[dir]='CMakeModules'
+urls[hycom]='https://github.com/NOAA-EMC/HYCOM-src'
+branches[hycom]='emc/develop'
+pathes[hycom]='HYCOM-interface/HYCOM'
-ccpp-framework[repo]='https://github.com/NCAR/ccpp-framework'
-ccpp-framework[branch]='main'
-ccpp-framework[dir]='FV3/ccpp/framework'
+urls[cmake]='https://github.com/NOAA-EMC/CMakeModules'
+branches[cmake]='develop'
+pathes[cmake]='CMakeModules'
-ccpp-physics[repo]='https://github.com/ufs-community/ccpp-physics'
-ccpp-physics[branch]='ufs/dev'
-ccpp-physics[dir]='FV3/ccpp/physics'
+urls[ccpp_physics]='https://github.com/ufs-community/ccpp-physics'
+branches[ccpp_physics]='ufs/dev'
+pathes[ccpp_physics]='FV3/ccpp/physics'
-#upp[repo]='https://github.com/NOAA-EMC/UPP'
-#upp[branch]='develop'
-#upp[dir]='upp'
+urls[ccpp_framework]='https://github.com/NCAR/ccpp-framework'
+branches[ccpp_framework]='main'
+pathes[ccpp_framework]='FV3/ccpp/framework'
-atmos_cubed_sphere[repo]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
-atmos_cubed_sphere[branch]='dev/emc'
-atmos_cubed_sphere[dir]='FV3/atmos_cubed_sphere'
+urls[aqm]='https://github.com/NOAA-EMC/AQM'
+branches[aqm]='develop'
+pathes[aqm]='AQM'
-# Get sha-1's of the top of develop of ufs-weather-model
-app="Accept: application/vnd.github.v3+json"
-url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop"
-base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha')
-for submodule in $submodules; do
- eval url=https://api.github.com/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}'
- eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')'
-done
+urls[noahmp]='https://github.com/NOAA-EMC/noahmp'
+branches[noahmp]='develop'
+pathes[noahmp]='NOAHMP-interface/noahmp'
-# Check if the head branch is up to date with the base branch
-cd ${GITHUB_WORKSPACE}
-git remote add upstream ${base[repo]}
-git fetch -q upstream ${base[branch]}
-common=$(git merge-base ${base[sha]} @)
-if [[ $common != ${base[sha]} ]]; then
- comment="* ufs-weather-model **NOT** up to date\n"
-fi
+#urls[upp]='https://github.com/NOAA-EMC/UPP'
+#branches[upp]='develop'
+#pathes[upp]='upp'
+
+#urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
+#branches[cubed_sphere]='dev/emc'
+#pathes[cubed_sphere]='FV3/atmos_cubed_sphere'
for submodule in $submodules; do
- eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}'
- eval git remote add upstream '${'$submodule'[repo]}'
- eval git fetch -q upstream '${'$submodule'[branch]}'
- common=$(eval git merge-base '${'$submodule'[sha]}' @)
- if (eval test $common != '${'$submodule'[sha]}'); then
- comment+="* $submodule **NOT** up to date\n"
- fi
+ url=${urls[$submodule]}
+ branch=${branches[$submodule]}
+ workspace=${GITHUB_WORKSPACE}'/'${pathes[$submodule]}
+ gitapi=$(echo "$url" | sed 's/github.com/api.github.com\/repos/g')'/branches/'$branch
+ get_shas $url $gitapi $branch $workspace
done
-result $ownerID
-exit 0
+if [[ $flag_sync=='true' ]]; then
+ exit 0
+else
+ exit 0
+fi
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index d8bfc5e08c..b7445431fe 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Mar 28 15:57:29 UTC 2024
+Mon Apr 1 12:58:41 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 272.712165
- 0: The maximum resident set size (KB) = 1267880
+ 0: The total amount of wall time = 268.251032
+ 0: The maximum resident set size (KB) = 1265156
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 976.383245
- 0: The maximum resident set size (KB) = 1259420
+ 0: The total amount of wall time = 965.834768
+ 0: The maximum resident set size (KB) = 1256504
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 244.611359
- 0: The maximum resident set size (KB) = 1246672
+ 0: The total amount of wall time = 246.586805
+ 0: The maximum resident set size (KB) = 1233548
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 240.307501
- 0: The maximum resident set size (KB) = 1240192
+ 0: The total amount of wall time = 235.970450
+ 0: The maximum resident set size (KB) = 1247740
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 244.559360
- 0: The maximum resident set size (KB) = 1249316
+ 0: The total amount of wall time = 242.245564
+ 0: The maximum resident set size (KB) = 1242900
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 241.325911
- 0: The maximum resident set size (KB) = 1245732
+ 0: The total amount of wall time = 237.390294
+ 0: The maximum resident set size (KB) = 1248812
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1301478/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.431160
- 0: The maximum resident set size (KB) = 1246648
+ 0: The total amount of wall time = 242.382720
+ 0: The maximum resident set size (KB) = 1242900
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Mar 28 17:55:09 UTC 2024
-Elapsed time: 01h:57m:40s. Have a nice day!
+Mon Apr 1 14:07:52 UTC 2024
+Elapsed time: 01h:09m:14s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 1b7f6539f6..2b21c64d86 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Mar 29 15:59:03 UTC 2024
+Mon Apr 1 18:08:14 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1521.977133
- 0: The maximum resident set size (KB) = 1364132
+ 0: The total amount of wall time = 1299.447405
+ 0: The maximum resident set size (KB) = 1367532
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 377.430537
- 0: The maximum resident set size (KB) = 1358388
+ 0: The total amount of wall time = 604.635134
+ 0: The maximum resident set size (KB) = 1359688
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1890279/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 672.561875
- 0: The maximum resident set size (KB) = 1359300
+ 0: The total amount of wall time = 385.824022
+ 0: The maximum resident set size (KB) = 1360152
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Mar 29 17:09:20 UTC 2024
-Elapsed time: 01h:10m:18s. Have a nice day!
+Mon Apr 1 19:12:24 UTC 2024
+Elapsed time: 01h:04m:10s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 0b84461381..2c2b774530 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Thu Mar 28 20:48:12 UTC 2024
+Mon Apr 1 16:00:46 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2226.184948
- 0: The maximum resident set size (KB) = 556332
+ 0: The total amount of wall time = 2150.095224
+ 0: The maximum resident set size (KB) = 553404
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2159.090793
- 0: The maximum resident set size (KB) = 555116
+ 0: The total amount of wall time = 2151.572064
+ 0: The maximum resident set size (KB) = 563124
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3525418/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2233.120288
- 0: The maximum resident set size (KB) = 555128
+ 0: The total amount of wall time = 2129.213652
+ 0: The maximum resident set size (KB) = 560932
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Mar 28 22:58:00 UTC 2024
-Elapsed time: 02h:09m:48s. Have a nice day!
+Mon Apr 1 17:59:32 UTC 2024
+Elapsed time: 01h:58m:47s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 817ec138b6..f05e309630 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-3747664d1511e058657743b4b84f7e51566ac419
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,270 +48,270 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117712
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6817
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:34, 19:20]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:30, 04:51](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [37:49, 20:39]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 13:46](1690 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 15:01](1820 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 07:08](956 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:01, 15:47](1654 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:43, 09:22]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:51, 21:18](1693 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:33, 19:34]
-PASS -- TEST 'cpld_control_p8_intel' [11:44, 05:36](3095 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:41, 05:36](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [12:32, 03:14](3148 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:47, 05:37](3127 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:19, 03:17](3178 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:23, 05:30](3089 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:28, 04:33](3384 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:42, 05:32](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [27:52, 08:40](3633 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [17:15, 06:08](3613 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [25:19, 09:36](4341 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:14, 06:40](4645 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:18, 05:14](3062 MB)
-
-PASS -- COMPILE 's2sw_intel' [39:53, 18:39]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:56, 04:12](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:02, 04:12](1734 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [20:47, 09:12]
-PASS -- TEST 'cpld_debug_p8_intel' [13:19, 07:45](3149 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [21:43, 08:41]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:41, 05:17](1702 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [32:44, 14:18]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:14](1724 MB)
-
-PASS -- COMPILE 's2s_intel' [23:36, 14:16]
-PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:33](2672 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:48, 22:50]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:21, 05:26](3097 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:31]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 14:02](1696 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:30, 07:14](1014 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 15:59](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:22, 08:59]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:49, 22:50](1713 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:29, 12:26]
-PASS -- TEST 'control_flake_intel' [13:55, 03:23](666 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [13:59, 02:02](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:03, 02:07](624 MB)
-PASS -- TEST 'control_latlon_intel' [09:52, 02:05](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:04, 02:06](618 MB)
-PASS -- TEST 'control_c48_intel' [08:57, 05:16](738 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:58, 05:13](740 MB)
-PASS -- TEST 'control_c192_intel' [20:36, 08:11](741 MB)
-PASS -- TEST 'control_c384_intel' [16:31, 08:03](1059 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:06, 07:11](1198 MB)
-PASS -- TEST 'control_stochy_intel' [09:55, 01:25](623 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:42, 00:52](436 MB)
-PASS -- TEST 'control_lndp_intel' [08:52, 01:21](622 MB)
-PASS -- TEST 'control_iovr4_intel' [14:02, 02:06](622 MB)
-PASS -- TEST 'control_iovr5_intel' [10:02, 02:06](621 MB)
-PASS -- TEST 'control_p8_intel' [17:17, 02:28](1601 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [16:16, 02:29](1599 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [17:25, 02:28](1605 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:52, 01:24](797 MB)
-PASS -- TEST 'control_noqr_p8_intel' [16:15, 02:29](1581 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:54, 01:23](801 MB)
-PASS -- TEST 'control_decomp_p8_intel' [17:18, 02:33](1591 MB)
-PASS -- TEST 'control_p8_lndp_intel' [17:08, 04:21](1602 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [16:18, 03:16](1650 MB)
-PASS -- TEST 'control_p8_mynn_intel' [15:41, 02:34](1604 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:46, 02:57](1605 MB)
-PASS -- TEST 'regional_control_intel' [10:20, 04:26](631 MB)
-PASS -- TEST 'regional_restart_intel' [05:14, 02:30](801 MB)
-PASS -- TEST 'regional_decomp_intel' [07:17, 04:41](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [10:18, 04:23](1160 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:28, 04:26](626 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:12, 04:28](629 MB)
-PASS -- TEST 'regional_wofs_intel' [10:17, 05:35](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:29, 11:12]
-PASS -- TEST 'rap_control_intel' [08:09, 06:08](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 03:38](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [08:02, 06:20](1005 MB)
-PASS -- TEST 'rap_restart_intel' [05:13, 03:13](877 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:16, 06:04](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:13, 06:24](1007 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:32](878 MB)
-PASS -- TEST 'hrrr_control_intel' [08:03, 03:11](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:03, 03:17](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [09:11, 02:48](1082 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:46](832 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:14, 05:56](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:57, 07:21](1955 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:50, 07:06](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:20, 10:17]
-PASS -- TEST 'control_csawmg_intel' [10:19, 05:47](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:30, 05:46](693 MB)
-PASS -- TEST 'control_ras_intel' [06:40, 02:52](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:20, 09:36]
-PASS -- TEST 'control_wam_intel' [05:36, 01:54](473 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:29, 12:32]
-PASS -- TEST 'control_p8_faster_intel' [06:39, 02:22](1600 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:12, 04:15](630 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:19, 08:29]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:35](794 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:49, 02:32](793 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:49](796 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:40](794 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:16, 03:53](836 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:22, 03:58](834 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:38, 02:35](808 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:40, 02:44](854 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1623 MB)
-PASS -- TEST 'regional_debug_intel' [19:12, 16:20](665 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:44, 04:37](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:33](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:40](1180 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:40, 04:37](1179 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 04:48](1179 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:01, 04:53](1263 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 04:44](1183 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:43](1181 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1181 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 04:48](1179 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:39, 04:40](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:51](1179 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1177 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:36](1173 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 05:55](1177 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:41](1178 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:08, 07:52](1182 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:18, 05:19]
-PASS -- TEST 'control_wam_debug_intel' [06:34, 04:43](420 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 09:47]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:04, 03:38](1059 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 05:10](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 02:47](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:12, 02:57](882 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:56](792 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:52, 01:39](776 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:25, 11:36]
-PASS -- TEST 'conus13km_control_intel' [05:06, 01:50](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:59](1084 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:08](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 09:41]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 03:37](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:27, 05:32]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:44, 04:40](1056 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:33](1053 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:58, 13:30](1133 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:23](819 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 13:28](1199 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:32]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:37, 04:46](1082 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:30, 15:38]
-PASS -- TEST 'hafs_regional_atm_intel' [07:53, 04:34](712 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:13](1066 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:37](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 10:51](798 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:56, 11:58](810 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:34, 04:43](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 05:51](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:30](388 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:22](459 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:15, 03:22](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:07](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:23, 03:55](582 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:47, 01:22](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:16, 03:35](788 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:19, 06:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:02](606 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [04:50, 19:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:31, 07:02](635 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:08](687 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [00:39, 17:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:39, 05:18](670 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [55:35, 14:09]
-PASS -- TEST 'hafs_regional_docn_intel' [10:32, 05:31](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 05:37](735 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:09](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [47:30, 07:47]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:48, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:32](994 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:48, 02:21](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:48, 02:23](645 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:44, 02:29](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:29](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:20](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:24, 05:43](688 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:39, 05:39](671 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:33, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:41, 03:51](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:38, 03:52](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [44:30, 05:04]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:03](733 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [47:34, 07:50]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:30](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [40:30, 02:23]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:40, 01:12](309 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 01:04](449 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](451 MB)
-
-PASS -- COMPILE 'atml_intel' [50:39, 12:57]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:05, 06:45](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [13:05, 06:38](1626 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:08, 03:27](848 MB)
-
-PASS -- COMPILE 'atmw_intel' [48:40, 12:52]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 01:33](1633 MB)
-
-PASS -- COMPILE 'atmwm_intel' [41:35, 12:34]
-PASS -- TEST 'control_atmwav_intel' [05:07, 01:29](634 MB)
-
-PASS -- COMPILE 'atmaero_intel' [30:27, 11:09]
-PASS -- TEST 'atmaero_control_p8_intel' [08:44, 03:38](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:21](2998 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 04:34](3009 MB)
-
-PASS -- COMPILE 'atmaq_intel' [28:25, 10:48]
-
-PASS -- COMPILE 'atmaq_debug_intel' [20:34, 06:14]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:54](4530 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:26, 19:23]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:04, 04:54](3073 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:52]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:45](1683 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:34, 15:02](1826 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 07:10](955 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:46](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:26, 09:14]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:52, 21:19](1699 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:28, 19:17]
+PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:37](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:20, 05:36](3091 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:35, 03:16](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:37](3128 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 03:17](3176 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 05:28](3088 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:36](3382 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:33](3094 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:41, 08:42](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:31, 05:44](3616 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [26:23, 09:45](4345 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:22, 06:51](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:50, 05:16](3063 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:26, 18:52]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:42, 04:13](1679 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:13](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:13]
+PASS -- TEST 'cpld_debug_p8_intel' [11:41, 07:46](3147 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:26, 08:42]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:27, 05:19](1706 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:26, 14:20]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:15](1720 MB)
+
+PASS -- COMPILE 's2s_intel' [15:26, 14:15]
+PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:32](2666 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:30, 22:56]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:20, 05:28](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:35]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:04](1693 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:55, 07:13](1011 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:02](1666 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:26, 08:37]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:49](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:42]
+PASS -- TEST 'control_flake_intel' [04:58, 03:26](666 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:05](617 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:11](623 MB)
+PASS -- TEST 'control_latlon_intel' [03:49, 02:05](618 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:07](622 MB)
+PASS -- TEST 'control_c48_intel' [06:44, 05:13](733 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 05:13](739 MB)
+PASS -- TEST 'control_c192_intel' [10:35, 07:50](738 MB)
+PASS -- TEST 'control_c384_intel' [13:56, 08:08](1061 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:36, 07:17](1194 MB)
+PASS -- TEST 'control_stochy_intel' [02:50, 01:25](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:50](439 MB)
+PASS -- TEST 'control_lndp_intel' [02:50, 01:23](621 MB)
+PASS -- TEST 'control_iovr4_intel' [03:56, 02:07](617 MB)
+PASS -- TEST 'control_iovr5_intel' [03:41, 02:05](621 MB)
+PASS -- TEST 'control_p8_intel' [04:32, 02:29](1595 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:39, 02:27](1592 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:27](1597 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:23, 01:26](803 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:30](1589 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:23](804 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1583 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:22](1595 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:41, 03:14](1653 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:46, 02:31](1611 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:39, 02:58](1607 MB)
+PASS -- TEST 'regional_control_intel' [06:09, 04:30](630 MB)
+PASS -- TEST 'regional_restart_intel' [04:09, 02:29](800 MB)
+PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:10, 04:24](1215 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:27](627 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:28](629 MB)
+PASS -- TEST 'regional_wofs_intel' [07:06, 05:34](1601 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:29, 10:57]
+PASS -- TEST 'rap_control_intel' [08:24, 06:05](1000 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:40, 03:40](1188 MB)
+PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1004 MB)
+PASS -- TEST 'rap_restart_intel' [05:20, 03:11](876 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:05](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:20](1002 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](880 MB)
+PASS -- TEST 'hrrr_control_intel' [05:05, 03:12](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:16, 03:18](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:24, 02:48](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:46](829 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:58](997 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:21](1954 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1946 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:29, 10:07]
+PASS -- TEST 'control_csawmg_intel' [08:07, 05:46](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:06, 05:44](693 MB)
+PASS -- TEST 'control_ras_intel' [04:39, 02:53](657 MB)
+
+PASS -- COMPILE 'wam_intel' [10:25, 09:18]
+PASS -- TEST 'control_wam_intel' [03:33, 01:53](378 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:27]
+PASS -- TEST 'control_p8_faster_intel' [04:44, 02:20](1598 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:15, 04:16](626 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:17]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:35](794 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:36](795 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:49](794 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:40](799 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:10, 04:01](841 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:51](837 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:37, 02:37](805 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:13, 02:42](849 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:15, 02:44](1620 MB)
+PASS -- TEST 'regional_debug_intel' [17:12, 16:02](666 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:41, 04:41](1181 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1175 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:34](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:35, 04:38](1182 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:40](1180 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:13, 04:50](1266 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:43](1180 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:46, 04:51](1177 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:44, 04:48](1181 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:39](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:38, 04:31](1181 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 04:39](1176 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:30](1180 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 04:37](1174 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1177 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:44](1177 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:53](1182 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:25, 05:12]
+PASS -- TEST 'control_wam_debug_intel' [05:29, 04:37](423 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:37]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 03:27](1055 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:16, 02:44](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:10, 02:54](879 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](794 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:31](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:33]
+PASS -- TEST 'conus13km_control_intel' [04:13, 01:51](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:54](1084 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:08](971 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 09:45]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:37](906 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:24, 05:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:31](1054 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1053 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:01, 13:21](1130 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:58, 13:34](813 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 13:44](1197 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:33](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:23, 15:43]
+PASS -- TEST 'hafs_regional_atm_intel' [06:49, 04:30](713 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:03](1069 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 06:20](774 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [12:59, 10:49](897 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:16, 11:53](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:39](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:40, 05:44](493 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:20](386 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:21, 06:15](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:16](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:03](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:28, 03:49](579 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 01:14](428 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:07, 03:23](786 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:21, 11:54](608 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:02](631 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:06](685 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:26, 16:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:19](671 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:27, 13:59]
+PASS -- TEST 'hafs_regional_docn_intel' [07:42, 05:36](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:46, 05:32](734 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:31, 16:15](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:29](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:30](1215 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:22](642 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:26](1215 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:25](641 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:20](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:39, 05:42](688 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 05:41](669 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:29](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:52, 03:51](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 03:53](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 04:58]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:03](735 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:27](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:16]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:06](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:02](451 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:40, 00:42](507 MB)
+
+PASS -- COMPILE 'atml_intel' [14:15, 12:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:02, 06:12](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:23](1632 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:24, 03:23](850 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:21, 12:35]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1629 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:26, 12:34]
+PASS -- TEST 'control_atmwav_intel' [02:57, 01:28](637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:20, 11:01]
+PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:36](2948 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:03, 04:16](2996 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:27](3014 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:21, 10:45]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:05]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 21:51](4532 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 08:57:30
-Ending Date/Time: 20240328 11:19:15
-Total Time: 02h:22m:32s
+Starting Date/Time: 20240331 11:02:38
+Ending Date/Time: 20240331 12:30:03
+Total Time: 01h:28m:12s
Compiles Completed: 39/39
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index cbc929976c..4b2e1b676d 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_44233
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_230915
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [25:18, 23:19]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:48, 08:04](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:22, 24:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:07, 14:02](1697 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 14:39](1811 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:48, 06:36](949 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:42, 15:25](1666 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 13:54]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:04, 24:27](1702 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:12, 20:16]
-PASS -- TEST 'cpld_control_p8_intel' [15:49, 08:43](3100 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:01, 08:47](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:02, 05:11](3158 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:49, 08:54](3126 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:02, 05:20](3179 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [13:32, 07:20](3414 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 08:35](3101 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:29](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:01, 08:33](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:51, 10:54](3275 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:47, 07:14](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:23, 13:35](4036 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:37, 09:27](4339 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:45, 08:03](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:12, 18:23]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [14:08, 05:42](1684 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:53, 05:47](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [13:10, 11:49]
-PASS -- TEST 'cpld_debug_p8_intel' [13:46, 11:00](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [19:15, 17:18]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:42, 06:09](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:38]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 05:35](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [18:11, 16:51]
-PASS -- TEST 'cpld_control_c48_intel' [09:18, 06:58](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:21, 22:55]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:00, 09:00](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:17, 23:11]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:20](1704 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:46, 07:25](1001 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:59, 17:47](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:15, 13:59]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:16, 25:55](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:14, 15:56]
-PASS -- TEST 'control_flake_intel' [05:30, 03:44](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:39, 02:38](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:37, 02:55](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:27, 02:44](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:40, 03:00](623 MB)
-PASS -- TEST 'control_c48_intel' [07:58, 05:39](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:59, 05:37](728 MB)
-PASS -- TEST 'control_c192_intel' [10:52, 09:07](739 MB)
-PASS -- TEST 'control_c384_intel' [19:02, 17:07](1043 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:49, 14:13](1184 MB)
-PASS -- TEST 'control_stochy_intel' [04:28, 02:16](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:18](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:27, 02:10](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:31, 02:40](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:34, 02:39](623 MB)
-PASS -- TEST 'control_p8_intel' [06:19, 03:47](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:36, 03:47](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:30, 03:21](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:07, 02:04](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:20, 03:39](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:28, 02:07](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:28, 03:24](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:30, 02:40](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:21](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:18](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:16](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:17, 04:04](1616 MB)
-PASS -- TEST 'regional_control_intel' [06:43, 04:38](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:49, 02:37](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:42, 04:54](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:42, 02:57](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:44, 04:54](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:15, 04:45](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:50, 04:45](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:52, 06:17](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:10, 13:44]
-PASS -- TEST 'rap_control_intel' [09:20, 06:51](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 03:55](1189 MB)
-PASS -- TEST 'rap_decomp_intel' [09:20, 07:02](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:25, 05:56](1095 MB)
-PASS -- TEST 'rap_restart_intel' [06:05, 03:41](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:56](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:01](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:14, 05:11](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:31, 03:51](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 03:48](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 03:02](1085 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:01](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:37](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:14](1962 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:58, 08:24](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:15, 12:51]
-PASS -- TEST 'control_csawmg_intel' [08:45, 06:35](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:43, 06:44](691 MB)
-PASS -- TEST 'control_ras_intel' [05:41, 03:35](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:10, 12:47]
-PASS -- TEST 'control_wam_intel' [04:39, 02:09](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:48]
-PASS -- TEST 'control_p8_faster_intel' [06:35, 03:14](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:58, 04:39](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:01]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:48, 02:59](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](783 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:30](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:54](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:36](826 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:54, 04:18](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:32, 02:54](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:50, 02:55](845 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:52, 03:16](1622 MB)
-PASS -- TEST 'regional_debug_intel' [17:55, 16:04](637 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:32, 05:38](1168 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:08](1166 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 05:34](1169 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:43, 05:15](1169 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:19](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:29](1255 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:22](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 05:27](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:47, 05:14](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 05:16](1168 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:23](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 05:33](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:34, 08:28](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:12](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 06:39](1170 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:33, 05:16](1169 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:11, 08:55](1171 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:10, 09:31]
-PASS -- TEST 'control_wam_debug_intel' [06:31, 04:57](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 12:06]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:01](1044 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:10, 06:09](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:03](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 05:15](949 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:17, 02:49](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:06, 03:57](887 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:04](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:33, 02:10](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 15:43]
-PASS -- TEST 'conus13km_control_intel' [05:02, 02:37](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:46, 01:33](1072 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:22](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:09, 12:12]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:23, 04:26](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:55]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:58](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:36, 04:56](1046 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:01, 13:59](1128 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:54, 14:28](803 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:14](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:05](1193 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 08:56]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 05:10](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:16, 16:07]
-PASS -- TEST 'hafs_regional_atm_intel' [08:19, 05:21](708 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 04:40](1062 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 07:42](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:57](791 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:52, 13:06](793 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:32, 05:22](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:41, 06:47](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:26, 02:55](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:13, 08:10](444 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:08, 03:58](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:48](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:46](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:40, 01:45](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:31, 03:58](763 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [12:08, 10:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:20, 13:17](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:20, 19:41]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:52](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:16, 07:52](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:13, 17:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:11, 06:02](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:11, 15:25]
-PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:12](746 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:11](729 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:16, 20:10](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:09, 11:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:33](734 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:27](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](635 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:35](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:15, 06:16](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 04:34](2011 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 04:35](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:08, 07:24]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:27](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 12:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 02:37](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 03:32]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:58, 02:00](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:54, 01:43](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:59, 01:50](456 MB)
-
-PASS -- COMPILE 'atml_intel' [16:13, 14:39]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:31, 08:04](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:23, 07:44](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:12, 04:39](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:14, 14:34]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:22, 02:31](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:13, 14:57]
-PASS -- TEST 'control_atmwav_intel' [05:06, 02:04](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:16, 14:06]
-PASS -- TEST 'atmaero_control_p8_intel' [09:44, 06:21](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:47](3010 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 07:03](3017 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:12, 14:16]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:20, 10:41]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:45](4479 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [17:10, 15:34]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:32, 07:09](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:50]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:35, 13:57](1700 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:46, 14:25](1813 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 06:43](951 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:55, 15:17](1666 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:11, 23:03]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:29, 25:04](1697 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:09, 16:36]
+PASS -- TEST 'cpld_control_p8_intel' [11:54, 08:05](3100 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:01, 07:55](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:31](3158 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 08:05](3127 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 05:02](3179 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:53, 06:29](3412 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 07:54](3100 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 06:56](3023 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:01, 07:48](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:01, 10:28](3273 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 07:48](3607 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:30, 13:22](4039 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 09:48](4346 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:35](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:10, 15:27]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:48, 04:56](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 05:18](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [12:08, 10:10]
+PASS -- TEST 'cpld_debug_p8_intel' [13:00, 09:51](3130 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:13]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1697 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:26]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:47, 05:13](1731 MB)
+
+PASS -- COMPILE 's2s_intel' [16:10, 14:08]
+PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:54](2662 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:36]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:23](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:53]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 14:52](1703 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:37, 07:14](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 17:38](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:09, 10:32]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:51, 26:49](1710 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:09, 13:42]
+PASS -- TEST 'control_flake_intel' [05:30, 04:02](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:48](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 02:58](626 MB)
+PASS -- TEST 'control_latlon_intel' [04:38, 02:54](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 02:55](623 MB)
+PASS -- TEST 'control_c48_intel' [07:55, 05:35](727 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:36](722 MB)
+PASS -- TEST 'control_c192_intel' [12:23, 09:27](738 MB)
+PASS -- TEST 'control_c384_intel' [19:32, 16:26](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:18, 14:13](1183 MB)
+PASS -- TEST 'control_stochy_intel' [03:36, 01:55](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:02, 01:06](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:33, 01:59](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:41, 02:34](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:30, 02:36](623 MB)
+PASS -- TEST 'control_p8_intel' [07:53, 03:37](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:55, 03:17](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:53, 03:14](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:40, 01:45](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:15](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:40, 01:57](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:22](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:57, 02:46](1678 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:12, 05:15](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 04:15](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:49](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:53, 04:16](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:09, 04:45](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:56, 02:33](789 MB)
+PASS -- TEST 'regional_decomp_intel' [07:09, 04:58](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:22, 03:00](757 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:51, 04:45](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 04:56](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:44](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:42, 06:08](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:09, 12:24]
+PASS -- TEST 'rap_control_intel' [09:29, 06:47](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:12, 03:56](1186 MB)
+PASS -- TEST 'rap_decomp_intel' [10:37, 07:04](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:29, 06:12](1096 MB)
+PASS -- TEST 'rap_restart_intel' [06:08, 03:39](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:29, 06:44](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:02](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:48](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:21, 03:46](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 03:47](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:21, 03:08](1084 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:57](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:31, 06:39](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:53](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:53](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:09, 12:11]
+PASS -- TEST 'control_csawmg_intel' [09:35, 06:42](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:14, 06:43](691 MB)
+PASS -- TEST 'control_ras_intel' [05:44, 03:51](657 MB)
+
+PASS -- COMPILE 'wam_intel' [13:09, 11:34]
+PASS -- TEST 'control_wam_intel' [04:34, 02:09](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:14]
+PASS -- TEST 'control_p8_faster_intel' [06:39, 03:51](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:09, 04:43](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:09, 10:50]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:53](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:14, 03:12](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:11, 03:04](789 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:23](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:25](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:04, 03:11](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:20, 03:00](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:00, 03:16](1622 MB)
+PASS -- TEST 'regional_debug_intel' [19:03, 16:29](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:42, 05:07](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:39, 04:58](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:06](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:15](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:08](1167 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:18](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:26](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:50](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:57](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:30, 05:18](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:50, 05:17](1165 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:13](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:03](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:11](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:12, 08:36](1172 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:11, 08:25]
+PASS -- TEST 'control_wam_debug_intel' [06:34, 04:59](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 12:18]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:44](1051 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:44](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 05:23](947 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:03, 02:40](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 03:30](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:12](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:40](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:15]
+PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:03](1072 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:30](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 13:46]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 04:12](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:08](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:58](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:07, 13:59](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:14](803 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:57, 08:09](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:01](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:09, 08:18]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 05:19](1065 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:09, 16:32]
+PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:17](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1057 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:31](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 11:35](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 12:52](797 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:25](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:45](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:54](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:46, 08:00](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:52](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:34](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:05, 04:40](571 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:16, 04:05](768 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:05](588 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:10, 18:37]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:17, 07:41](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:45](785 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:10, 18:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:14, 05:59](785 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [27:12, 25:36]
+PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:04](745 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:12](728 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:17, 20:13](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:35](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:33](746 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:29](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:33](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:33](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:33](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:02](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:06](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:34](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:38](2014 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:45]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](740 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [16:12, 14:32]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:39](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:29]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:06, 03:43](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:40, 01:56](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 01:26](456 MB)
+
+PASS -- COMPILE 'atml_intel' [24:19, 22:31]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:58, 08:51](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:30, 08:14](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 04:01](835 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:11, 14:03]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:31, 02:15](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [15:09, 13:54]
+PASS -- TEST 'control_atmwav_intel' [05:18, 02:02](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:14, 13:52]
+PASS -- TEST 'atmaero_control_p8_intel' [10:21, 07:14](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:22, 07:29](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:51](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:12, 14:04]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:09, 10:26]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 19:00](4476 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 12:15:36
-Ending Date/Time: 20240328 13:55:56
-Total Time: 01h:41m:01s
+Starting Date/Time: 20240401 08:38:19
+Ending Date/Time: 20240401 10:13:48
+Total Time: 01h:36m:31s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 99f060fe8c..0fddf8b493 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -25,370 +25,371 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2144886
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_4129005
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [12:53, 12:52]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:26, 05:34](3194 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:09, 17:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:03, 17:13](1761 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 17:52](2025 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:08, 08:06](1125 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:04, 19:25](1658 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:41, 04:41]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:49](1703 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:57, 12:56]
-PASS -- TEST 'cpld_control_p8_intel' [06:38, 05:47](3227 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:45, 05:47](3226 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:23, 04:05](3260 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:45, 05:47](3251 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:53, 03:41](3281 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:29, 05:31](3556 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:44, 05:48](3221 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:35, 04:46](3067 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:56, 05:51](3202 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:55, 10:18](3353 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:30, 06:15](3620 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 10:04](4117 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 06:06](4352 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:15, 05:25](3197 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:17, 12:16]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:34, 04:45](1727 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:19, 04:18](1786 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:34, 04:33]
-PASS -- TEST 'cpld_debug_p8_intel' [09:16, 08:20](3262 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:13, 04:13]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:30, 05:44](1768 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:49, 11:48]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:47, 05:46](1789 MB)
-
-PASS -- COMPILE 's2s_intel' [11:23, 11:22]
-PASS -- TEST 'cpld_control_c48_intel' [10:02, 09:27](2818 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:47, 16:46]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:36](3202 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:37, 15:36]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 17:24](1745 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 08:04](1181 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:43, 19:49](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 04:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 25:52](1671 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:10]
-PASS -- TEST 'control_flake_intel' [03:43, 03:31](709 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:54, 02:33](660 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:49, 02:31](661 MB)
-PASS -- TEST 'control_latlon_intel' [02:42, 02:30](661 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:05, 02:46](661 MB)
-PASS -- TEST 'control_c48_intel' [06:51, 06:36](876 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 06:24](875 MB)
-PASS -- TEST 'control_c192_intel' [09:35, 09:10](858 MB)
-PASS -- TEST 'control_c384_intel' [10:09, 09:03](1301 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:18, 08:05](1376 MB)
-PASS -- TEST 'control_stochy_intel' [01:52, 01:40](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:15, 00:59](500 MB)
-PASS -- TEST 'control_lndp_intel' [01:47, 01:34](663 MB)
-PASS -- TEST 'control_iovr4_intel' [02:39, 02:27](656 MB)
-PASS -- TEST 'control_iovr5_intel' [02:45, 02:27](663 MB)
-PASS -- TEST 'control_p8_intel' [03:43, 03:01](1603 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:56](1636 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:38, 02:56](1608 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:12, 01:38](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:36, 02:59](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:17, 01:37](937 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:34, 03:00](1624 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:42](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:48, 05:14](1624 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:40, 04:01](1693 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:59](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:07, 03:28](1648 MB)
-PASS -- TEST 'regional_control_intel' [05:36, 05:10](847 MB)
-PASS -- TEST 'regional_restart_intel' [03:16, 02:45](1019 MB)
-PASS -- TEST 'regional_decomp_intel' [05:54, 05:27](853 MB)
-PASS -- TEST 'regional_2threads_intel' [03:39, 03:13](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:34, 05:10](1358 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:11](853 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 05:06](852 MB)
-PASS -- TEST 'regional_wofs_intel' [07:09, 06:40](1913 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:52, 10:51]
-PASS -- TEST 'rap_control_intel' [08:12, 07:43](1104 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 04:10](1281 MB)
-PASS -- TEST 'rap_decomp_intel' [08:40, 08:12](1041 MB)
-PASS -- TEST 'rap_2threads_intel' [07:50, 07:22](1181 MB)
-PASS -- TEST 'rap_restart_intel' [04:54, 04:11](1118 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:22, 07:49](1112 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 09:28](1040 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:16, 05:48](1135 MB)
-PASS -- TEST 'hrrr_control_intel' [04:38, 04:00](1045 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 04:11](1036 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:38](1112 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:52, 02:28](1005 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:16, 07:43](1101 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:41, 09:25](1987 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 08:58](2076 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:18, 10:17]
-PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](756 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:44, 06:12](758 MB)
-PASS -- TEST 'control_ras_intel' [03:37, 03:20](742 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:35, 03:35]
-PASS -- TEST 'control_csawmg_gnu' [08:56, 08:27](548 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:50, 08:23](542 MB)
-
-PASS -- COMPILE 'wam_intel' [09:54, 09:53]
-PASS -- TEST 'control_wam_intel' [02:26, 02:08](660 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:45, 10:44]
-PASS -- TEST 'control_p8_faster_intel' [03:39, 02:47](1634 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:50, 05:16](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:45, 04:44]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:56](815 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:01, 02:44](820 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:16, 03:05](820 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:53, 03:39](820 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:31, 04:06](861 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:51, 04:20](842 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:54, 02:45](828 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:10, 02:51](875 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:23, 02:54](1633 MB)
-PASS -- TEST 'regional_debug_intel' [17:25, 16:58](843 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:03, 04:48](1208 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1205 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:06, 08:56](1206 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:05, 04:55](1211 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 04:59](1208 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:46, 05:21](1265 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:08](1203 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:08](1180 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:14, 04:57](1204 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:07, 04:53](1205 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:50](1204 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:11, 04:55](1204 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:07, 07:52](1204 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:02, 04:49](1201 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:04, 05:49](1213 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:56](1209 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:52, 08:27](1214 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:36, 02:36]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:39, 02:14](534 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:40, 02:14](530 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:16, 03:16]
-PASS -- TEST 'control_wam_debug_intel' [05:11, 05:01](511 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:21, 10:20]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1166 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:49, 06:24](1052 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:43, 03:23](990 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 06:05](1110 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:07](971 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:53, 03:34](929 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:30, 04:56](1007 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:08, 01:50](940 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:37, 12:37]
-PASS -- TEST 'conus13km_control_intel' [02:42, 02:04](1203 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:25, 00:53](1120 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:52, 01:20](1110 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:08, 10:07]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:42, 04:12](987 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:40, 03:39]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:56, 04:44](1090 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:43](1082 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:20, 14:49](1238 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:02, 14:27](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:38, 08:03](1156 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:06, 14:34](1298 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:45, 03:45]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 05:08](1128 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:30, 11:30]
-PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](730 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:10, 05:55](1123 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:54, 06:52](834 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:28, 13:29](867 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:23, 15:19](880 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:09, 05:27](505 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:50, 06:47](538 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:39](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:39, 07:04](473 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:11, 03:41](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:00, 03:26](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:39, 04:01](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:13](407 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:37, 04:07](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:57, 03:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](626 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:28, 08:44](744 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:01, 12:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:12, 06:25](701 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:24, 11:24]
-PASS -- TEST 'hafs_regional_docn_intel' [07:10, 06:16](832 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:21, 06:24](811 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:37, 16:00](1214 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:09, 06:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:48, 02:40](1147 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:45, 01:38](1104 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:39, 02:33](1032 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:39](1021 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:40, 02:34](1019 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:48, 02:42](1147 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:47, 02:42](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:38, 02:33](1018 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:08, 06:08](1056 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 07:57](1041 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 03:11](1149 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 04:10](2482 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2436 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:20, 03:19]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 06:16](1083 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:00, 06:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:56, 02:44](1154 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:27, 01:27]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:46](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](323 MB)
-
-PASS -- COMPILE 'atml_intel' [11:48, 11:48]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:02, 04:20](1594 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:08, 04:21](1610 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:55, 02:19](907 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:50, 10:50]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:26, 01:46](1677 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:01, 11:01]
-PASS -- TEST 'control_atmwav_intel' [02:05, 01:44](671 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:35, 10:34]
-PASS -- TEST 'atmaero_control_p8_intel' [04:49, 04:05](3026 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 05:06](3093 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:47, 05:11](3131 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:29, 10:29]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:38, 03:37]
-PASS -- TEST 'regional_atmaq_debug_intel' [28:27, 26:45](4445 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:39, 03:38]
-PASS -- TEST 'control_c48_gnu' [11:00, 10:48](763 MB)
-PASS -- TEST 'control_stochy_gnu' [03:37, 03:25](506 MB)
-PASS -- TEST 'control_ras_gnu' [04:59, 04:48](517 MB)
-PASS -- TEST 'control_p8_gnu' [05:34, 04:41](1267 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:40](1269 MB)
-PASS -- TEST 'control_flake_gnu' [11:36, 11:25](549 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:42, 03:41]
-PASS -- TEST 'rap_control_gnu' [14:03, 13:37](859 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:08, 10:44](860 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:32, 09:58](940 MB)
-PASS -- TEST 'rap_restart_gnu' [06:13, 05:38](584 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:28, 10:59](857 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:21, 10:51](859 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:23, 07:53](592 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:02, 05:35](858 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:06, 05:41](844 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:12](930 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:39](861 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:52](571 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:49](664 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:21, 10:48](851 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:35, 03:35]
-PASS -- TEST 'control_diag_debug_gnu' [02:10, 01:46](550 MB)
-PASS -- TEST 'regional_debug_gnu' [11:57, 11:28](562 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:01, 02:45](875 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:36](866 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:51, 02:40](873 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](872 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:53](951 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 04:05](870 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:51, 02:38](868 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:49, 02:35](865 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:50, 01:39](509 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:54, 02:45](498 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:09, 01:40](1254 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:56, 02:43](866 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:08, 02:54](874 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:31, 07:05](871 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:55, 01:54]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:05, 09:35](710 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:30, 05:03](715 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:03, 11:39](762 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:06, 04:44](755 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:06](713 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:31, 07:04](562 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:34](547 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:00, 03:20](886 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:43](884 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:24, 01:52](565 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:34, 05:34]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:19, 05:47](740 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:45, 03:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:56, 02:41](728 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:51, 02:38](722 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:55](904 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:32, 06:58](591 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:20, 07:45](908 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:51, 07:15](970 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:52, 03:52]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:53, 02:39](745 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:41, 14:41]
-
-PASS -- COMPILE 's2s_gnu' [14:25, 14:25]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:01, 11:05](1356 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:43, 02:42]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:29, 14:29]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:38, 21:49](1328 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:28, 02:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:32, 12:46](1318 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:10]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:02](705 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:49, 12:49]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:27, 05:36](3164 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:24, 16:23]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:45, 17:02](1739 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:36, 17:46](2013 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 08:10](1105 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 19:15](1649 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:51, 04:50]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 22:29](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:54, 12:52]
+PASS -- TEST 'cpld_control_p8_intel' [06:41, 05:51](3216 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:01, 06:08](3191 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:26, 03:29](3250 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:47](3244 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:25, 03:26](3277 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:17, 05:30](3552 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3204 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:29, 04:43](3063 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:40, 05:48](3203 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:36, 10:06](3354 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:06](3627 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [14:45, 09:38](4065 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:31, 06:04](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:42, 05:53](3186 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:22, 12:22]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:32, 04:46](1728 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:04, 04:17](1786 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:35, 04:34]
+PASS -- TEST 'cpld_debug_p8_intel' [09:13, 08:22](3221 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:17, 04:16]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:33, 05:46](1769 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:35]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:07, 04:19](1773 MB)
+
+PASS -- COMPILE 's2s_intel' [11:33, 11:32]
+PASS -- TEST 'cpld_control_c48_intel' [10:00, 09:30](2821 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:39, 16:38]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:29, 05:39](3209 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:29]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 17:14](1742 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:56, 08:03](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 19:48](1676 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:15, 04:14]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1711 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:11]
+PASS -- TEST 'control_flake_intel' [03:33, 03:20](708 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](656 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:41, 02:29](663 MB)
+PASS -- TEST 'control_latlon_intel' [02:37, 02:26](633 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:27](651 MB)
+PASS -- TEST 'control_c48_intel' [06:37, 06:25](882 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 06:23](879 MB)
+PASS -- TEST 'control_c192_intel' [09:28, 09:05](852 MB)
+PASS -- TEST 'control_c384_intel' [10:01, 09:03](1294 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:25, 08:26](1405 MB)
+PASS -- TEST 'control_stochy_intel' [01:49, 01:38](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](506 MB)
+PASS -- TEST 'control_lndp_intel' [01:43, 01:33](657 MB)
+PASS -- TEST 'control_iovr4_intel' [02:38, 02:28](661 MB)
+PASS -- TEST 'control_iovr5_intel' [02:37, 02:26](654 MB)
+PASS -- TEST 'control_p8_intel' [03:39, 03:00](1631 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1636 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:30, 02:52](1633 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:14, 01:40](866 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:27, 02:54](1611 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:08, 01:34](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:35, 03:04](1618 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:15, 02:44](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:45, 05:15](1608 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:32, 03:55](1685 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:57](1623 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:04, 03:28](1632 MB)
+PASS -- TEST 'regional_control_intel' [05:35, 05:09](853 MB)
+PASS -- TEST 'regional_restart_intel' [03:05, 02:42](1018 MB)
+PASS -- TEST 'regional_decomp_intel' [05:55, 05:28](853 MB)
+PASS -- TEST 'regional_2threads_intel' [03:38, 03:13](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:31, 05:06](1367 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:08](842 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 05:13](853 MB)
+PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1903 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:24, 10:23]
+PASS -- TEST 'rap_control_intel' [08:05, 07:43](1112 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 04:10](1306 MB)
+PASS -- TEST 'rap_decomp_intel' [08:31, 08:09](1043 MB)
+PASS -- TEST 'rap_2threads_intel' [07:40, 07:14](1184 MB)
+PASS -- TEST 'rap_restart_intel' [04:27, 04:02](1108 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:02, 07:37](1106 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1047 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 05:47](1134 MB)
+PASS -- TEST 'hrrr_control_intel' [04:14, 03:56](1047 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:14](1008 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:37](1117 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:08](1007 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:34](1103 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:16](1986 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 09:05](2063 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:13, 10:12]
+PASS -- TEST 'control_csawmg_intel' [06:25, 06:00](729 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:18, 05:54](755 MB)
+PASS -- TEST 'control_ras_intel' [03:23, 03:15](748 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:35, 03:34]
+PASS -- TEST 'control_csawmg_gnu' [08:39, 08:11](548 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:38, 08:10](550 MB)
+
+PASS -- COMPILE 'wam_intel' [10:04, 10:04]
+PASS -- TEST 'control_wam_intel' [02:12, 02:04](658 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:42, 10:41]
+PASS -- TEST 'control_p8_faster_intel' [03:16, 02:39](1619 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:04, 04:41](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:51, 04:50]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:41](820 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:40](819 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:58](823 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:02, 02:54](799 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:06](871 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:27, 04:03](865 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:55, 02:47](830 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:02, 02:47](876 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:22, 02:54](1625 MB)
+PASS -- TEST 'regional_debug_intel' [17:39, 17:10](843 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:10, 04:58](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:50](1204 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:45](1211 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:06, 04:56](1192 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:54](1218 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:01](1295 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:07, 04:56](1206 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 05:00](1211 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:04, 04:54](1211 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:05, 04:54](1214 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:51](1205 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:54](1210 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:03](1205 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:04, 04:53](1197 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 06:08](1208 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:53](1206 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:02, 08:39](1215 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:35]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:43, 02:12](531 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:34, 02:12](532 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15]
+PASS -- TEST 'control_wam_debug_intel' [05:07, 04:58](521 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1166 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 06:25](1056 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:40, 03:20](991 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 06:05](1096 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:23, 03:05](967 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:32](944 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 04:49](1038 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:04, 01:50](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 12:22]
+PASS -- TEST 'conus13km_control_intel' [02:41, 02:08](1183 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:16, 00:51](1126 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:25](1092 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 10:05]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 04:08](992 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:54, 04:42](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:51, 04:42](1086 MB)
+PASS -- TEST 'conus13km_debug_intel' [14:36, 14:02](1220 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:30](933 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 08:02](1158 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:50, 14:23](1296 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:12, 03:12]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:03, 04:52](1127 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:41, 11:41]
+PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:51](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:50, 05:34](1105 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:59](830 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 13:20](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:02, 15:01](885 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 05:22](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:32, 06:33](518 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:37](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:32, 07:03](462 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 03:35](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:01, 03:29](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:37, 04:00](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](403 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:25, 03:59](796 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:46, 03:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](587 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:02, 12:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:17, 08:38](635 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 08:37](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:55, 11:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:59, 06:16](736 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:05, 11:05]
+PASS -- TEST 'hafs_regional_docn_intel' [07:08, 06:16](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:12, 06:20](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:45, 16:11](1211 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:23, 06:23]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:46](1132 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:41, 01:35](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1004 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:50, 02:44](1005 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:38](1010 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:39](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1152 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:54, 02:49](992 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 06:11](1065 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 06:07](1045 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:45, 02:41](1146 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:58, 03:52](2440 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2497 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:11, 06:05](1059 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:41, 02:35](1151 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [00:59, 00:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:57, 00:41](260 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:44](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:38, 00:28](326 MB)
+
+PASS -- COMPILE 'atml_intel' [11:36, 11:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:52, 04:11](1595 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [04:51, 04:11](1610 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](905 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:55, 10:55]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:45](1654 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:32, 10:32]
+PASS -- TEST 'control_atmwav_intel' [01:57, 01:39](682 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:24, 10:23]
+PASS -- TEST 'atmaero_control_p8_intel' [04:40, 04:00](3036 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:56](3101 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 05:02](3110 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:10, 10:10]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:24, 03:24]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:54, 23:29](4434 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:35, 03:35]
+PASS -- TEST 'control_c48_gnu' [10:54, 10:43](765 MB)
+PASS -- TEST 'control_stochy_gnu' [03:26, 03:16](509 MB)
+PASS -- TEST 'control_ras_gnu' [04:49, 04:41](521 MB)
+PASS -- TEST 'control_p8_gnu' [05:14, 04:33](1263 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:29](1270 MB)
+PASS -- TEST 'control_flake_gnu' [10:35, 10:26](554 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:35, 03:35]
+PASS -- TEST 'rap_control_gnu' [11:09, 10:49](854 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:09, 10:49](856 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:20, 09:56](952 MB)
+PASS -- TEST 'rap_restart_gnu' [05:52, 05:29](584 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:10, 10:46](857 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:24, 11:05](863 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:16, 07:53](590 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:47, 05:29](858 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:47, 05:29](848 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:58](931 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:55, 05:36](858 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:50](572 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:05, 02:49](665 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:43](856 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:32, 03:32]
+PASS -- TEST 'control_diag_debug_gnu' [01:50, 01:34](554 MB)
+PASS -- TEST 'regional_debug_gnu' [10:43, 10:17](568 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:44, 02:32](870 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:29](872 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:34](874 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](876 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:48](954 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 04:04](874 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:43, 02:33](872 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:44, 02:33](873 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:36](504 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:51](499 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:05, 01:39](1264 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:44, 02:34](873 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:03, 02:53](876 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:38, 04:16](878 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:33, 03:33]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:43, 09:25](714 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:10, 04:54](715 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 08:28](764 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:28](756 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:11, 04:55](709 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:16, 06:55](561 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:30](547 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:41, 03:05](888 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [05:47, 05:21](894 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:14, 01:48](560 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:17, 05:16]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:07, 05:41](741 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:32, 03:32]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:30](724 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:36, 02:27](721 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:20, 06:49](894 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:39, 07:10](583 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:08, 07:43](899 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 07:01](965 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:32, 03:32]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:34](748 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:36, 14:36]
+
+PASS -- COMPILE 's2s_gnu' [14:27, 14:26]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:33, 06:46](1356 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:28, 02:28]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:22, 14:22]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:21, 26:38](1310 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:24, 13:45](1333 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:11]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:11, 03:05](699 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 17:37:37
-Ending Date/Time: 20240328 22:10:57
-Total Time: 04h:33m:53s
+Starting Date/Time: 20240331 17:03:20
+Ending Date/Time: 20240331 19:10:50
+Total Time: 02h:07m:57s
Compiles Completed: 55/55
Tests Completed: 244/244
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 5fff55f8d9..fa70ca9657 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-e2f840b74edbc6ea1ad9a0f293d9c023ef9b62e7
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,365 +48,366 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_243673
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2259286
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:19, 07:27](1894 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:09]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:31, 13:44](1770 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:47, 14:32](2153 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:40, 06:38](1185 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:09, 15:33](1697 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:46]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 20:28](1722 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:07, 12:04]
-PASS -- TEST 'cpld_control_p8_intel' [10:02, 07:32](2072 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:16, 07:29](2078 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:33, 04:14](1954 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:02, 07:47](1972 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 04:20](1735 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:57, 08:55](2487 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:56, 07:42](2072 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:10, 06:31](1895 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 07:46](2079 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:57, 15:17](2818 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:33, 05:45](2929 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [16:10, 08:55](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:54, 05:51](3614 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:06, 04:55](2055 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:06, 11:47]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:02, 07:19](1761 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:12, 04:05](1822 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:06, 06:46]
-PASS -- TEST 'cpld_debug_p8_intel' [09:21, 06:48](2050 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:28]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 04:40](1788 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:06, 10:52]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 03:58](1821 MB)
-
-PASS -- COMPILE 's2s_intel' [12:06, 10:43]
-PASS -- TEST 'cpld_control_c48_intel' [09:51, 07:13](2839 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:06, 14:19]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:13, 07:20](2060 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:23]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:06, 13:45](1798 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:19, 06:40](1280 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:05, 15:18](1733 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:05, 21:29](1771 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:02]
-PASS -- TEST 'control_flake_intel' [04:19, 02:50](713 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:22, 02:02](663 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:12](668 MB)
-PASS -- TEST 'control_latlon_intel' [04:19, 02:08](666 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:24, 02:05](674 MB)
-PASS -- TEST 'control_c48_intel' [07:26, 05:44](855 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 05:45](856 MB)
-PASS -- TEST 'control_c192_intel' [09:30, 07:52](959 MB)
-PASS -- TEST 'control_c384_intel' [10:08, 07:57](1447 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:02, 07:11](1527 MB)
-PASS -- TEST 'control_stochy_intel' [03:19, 01:25](673 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:50](537 MB)
-PASS -- TEST 'control_lndp_intel' [03:16, 01:20](664 MB)
-PASS -- TEST 'control_iovr4_intel' [03:21, 02:03](665 MB)
-PASS -- TEST 'control_iovr5_intel' [04:20, 02:06](659 MB)
-PASS -- TEST 'control_p8_intel' [05:04, 02:32](1630 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:03, 02:32](1651 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:04, 02:25](1637 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:00, 01:24](918 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:49, 02:31](1623 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 01:21](991 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:36](1631 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:47, 02:23](1721 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:43, 04:25](1645 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:01, 03:28](1719 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:31](1664 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:08, 03:02](1662 MB)
-PASS -- TEST 'regional_control_intel' [06:33, 04:29](955 MB)
-PASS -- TEST 'regional_restart_intel' [04:32, 02:31](1104 MB)
-PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](947 MB)
-PASS -- TEST 'regional_2threads_intel' [04:31, 02:54](915 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:33, 04:21](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:31](958 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:26](957 MB)
-PASS -- TEST 'regional_wofs_intel' [07:30, 05:34](2070 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:13]
-PASS -- TEST 'rap_control_intel' [08:54, 06:28](1200 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:26](1409 MB)
-PASS -- TEST 'rap_decomp_intel' [08:42, 06:45](1126 MB)
-PASS -- TEST 'rap_2threads_intel' [08:42, 06:10](1366 MB)
-PASS -- TEST 'rap_restart_intel' [05:51, 03:27](1133 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:30](1187 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:45, 06:49](1140 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:02, 04:56](1194 MB)
-PASS -- TEST 'hrrr_control_intel' [05:55, 03:21](1073 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1051 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:34, 03:05](1121 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:53](1027 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:16](1210 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:37](2008 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 07:21](2161 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:06, 06:54]
-PASS -- TEST 'control_csawmg_intel' [07:33, 05:18](832 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:34, 05:13](825 MB)
-PASS -- TEST 'control_ras_intel' [04:17, 02:50](833 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:06, 03:52]
-PASS -- TEST 'control_csawmg_gnu' [08:40, 06:31](809 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:31, 06:23](810 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:28]
-PASS -- TEST 'control_wam_intel' [03:23, 01:52](791 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:43]
-PASS -- TEST 'control_p8_faster_intel' [05:09, 02:16](1629 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:30, 04:10](956 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:39]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:12](817 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:11](824 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:27](842 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:16](833 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:30, 03:24](878 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:28, 03:21](872 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:16, 02:15](840 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:20](881 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:39, 02:21](1657 MB)
-PASS -- TEST 'regional_debug_intel' [15:33, 13:55](900 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:05, 12:48]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:32](1892 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:24]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:55, 13:17](1775 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 13:57](2177 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:15, 06:23](1174 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:14, 15:07](1679 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:12]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:48](1735 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:05, 12:56]
+PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:51](2090 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:03, 07:28](2071 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:07](1966 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 07:38](1973 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:13, 04:19](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:02](2497 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:47, 07:52](2063 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:53, 06:26](1887 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:03, 07:32](2091 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:37, 15:36](2816 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 05:42](2920 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:47, 08:34](3635 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 05:15](3614 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:43, 04:59](2057 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:05, 11:44]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:10](1781 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 04:00](1816 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:44]
+PASS -- TEST 'cpld_debug_p8_intel' [08:58, 06:55](2127 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:22]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:51](1789 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:16]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:43, 04:00](1814 MB)
+
+PASS -- COMPILE 's2s_intel' [10:05, 08:04]
+PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:16](2824 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:05, 11:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 07:21](2072 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:06, 17:16]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:33, 13:39](1799 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:34](1274 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:12](1737 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 21:28](1775 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:53]
+PASS -- TEST 'control_flake_intel' [04:15, 02:54](714 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:06](663 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:09](670 MB)
+PASS -- TEST 'control_latlon_intel' [04:14, 02:06](670 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:09](662 MB)
+PASS -- TEST 'control_c48_intel' [07:20, 05:45](848 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:50](860 MB)
+PASS -- TEST 'control_c192_intel' [09:27, 07:51](963 MB)
+PASS -- TEST 'control_c384_intel' [09:58, 08:03](1438 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:39, 07:08](1519 MB)
+PASS -- TEST 'control_stochy_intel' [03:14, 01:34](671 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:50](533 MB)
+PASS -- TEST 'control_lndp_intel' [03:15, 01:22](663 MB)
+PASS -- TEST 'control_iovr4_intel' [04:17, 02:06](660 MB)
+PASS -- TEST 'control_iovr5_intel' [03:20, 02:04](664 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:30](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:45, 02:32](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 02:26](1651 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:20, 01:26](919 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:29](1634 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:25](988 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1632 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:40, 02:17](1730 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:08, 04:25](1629 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:23](1703 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:47, 02:30](1645 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:53, 02:55](1652 MB)
+PASS -- TEST 'regional_control_intel' [06:43, 04:29](959 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:33](1099 MB)
+PASS -- TEST 'regional_decomp_intel' [06:42, 04:41](947 MB)
+PASS -- TEST 'regional_2threads_intel' [04:47, 02:55](915 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:37, 04:21](1486 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:24](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:33, 04:27](960 MB)
+PASS -- TEST 'regional_wofs_intel' [07:29, 05:36](2074 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:13]
+PASS -- TEST 'rap_control_intel' [08:51, 06:47](1191 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:29](1409 MB)
+PASS -- TEST 'rap_decomp_intel' [08:56, 06:56](1139 MB)
+PASS -- TEST 'rap_2threads_intel' [08:34, 06:10](1359 MB)
+PASS -- TEST 'rap_restart_intel' [06:34, 03:24](1145 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:52, 06:35](1194 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:51](1163 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:54](1192 MB)
+PASS -- TEST 'hrrr_control_intel' [05:36, 03:22](1072 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:25](1038 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:07](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:14, 01:54](1016 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:46, 06:23](1208 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:17, 07:41](2007 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:59, 07:25](2173 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:05, 06:47]
+PASS -- TEST 'control_csawmg_intel' [07:28, 05:20](831 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:21, 05:16](834 MB)
+PASS -- TEST 'control_ras_intel' [04:16, 02:50](805 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:05, 03:47]
+PASS -- TEST 'control_csawmg_gnu' [08:31, 06:25](810 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:50, 06:24](814 MB)
+
+PASS -- COMPILE 'wam_intel' [08:05, 06:59]
+PASS -- TEST 'control_wam_intel' [03:23, 01:50](779 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:43]
+PASS -- TEST 'control_p8_faster_intel' [04:52, 02:17](1638 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:26, 04:06](955 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:44]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:17](820 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:11](829 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:34](836 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:15](834 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:23](874 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 03:20](879 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:36, 02:15](832 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:30, 02:15](889 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:31, 02:20](1655 MB)
+PASS -- TEST 'regional_debug_intel' [15:25, 14:02](895 MB)
PASS -- TEST 'rap_control_debug_intel' [05:20, 04:04](1217 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:52](1216 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:59](1226 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:59](1226 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:59](1229 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:27, 04:08](1311 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:01](1213 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:04](1213 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:59](1210 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:02](1220 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:19, 04:02](1215 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:19, 03:54](1229 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 06:26](1227 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 03:56](1209 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 05:05](1224 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:55](1227 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:45](1226 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:48]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 01:41](795 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:29, 01:37](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:37]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:29]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 03:21](1270 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:57, 05:20](1136 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:50](1018 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 05:13](1239 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:45, 02:37](1031 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:58](1010 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:01](1094 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:34](969 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:23]
-PASS -- TEST 'conus13km_control_intel' [03:44, 01:39](1292 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:44](1205 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:05](1153 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:02]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:39](1061 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:52]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:52](1096 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:49](1100 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:41, 11:31](1340 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:34, 11:44](983 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:32, 06:36](1238 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:33, 11:32](1400 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:00]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 03:59](1150 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:07, 10:37]
-PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:25](878 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 04:59](1281 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:20](958 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:06, 13:58](995 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:14, 15:00](1015 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:28](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:00](617 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](435 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 07:56](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 03:51](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:45, 03:41](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:51](679 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:28](457 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:14](630 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:35](724 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:58, 15:56](814 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:40]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:05, 10:43](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:15]
-PASS -- TEST 'hafs_regional_docn_intel' [08:04, 05:28](955 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 05:25](928 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:45, 16:23](1341 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:05, 05:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:08](1153 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:19](1068 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:12, 02:04](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:07](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:06](1011 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:09](1157 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:10](1144 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:03](1016 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:59](1169 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:52, 04:55](1137 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1146 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:01](2435 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:12, 03:03](2435 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 02:30]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:12, 05:10](1070 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:05, 05:34]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:08](1148 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:56](327 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:53](560 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:33](560 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:24]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:18, 06:06](1632 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:22, 06:20](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:49, 03:07](943 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 10:01]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:36](1684 MB)
-
-PASS -- COMPILE 'atmwm_intel' [12:05, 10:24]
-PASS -- TEST 'control_atmwav_intel' [03:44, 01:31](703 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:33]
-PASS -- TEST 'atmaero_control_p8_intel' [05:59, 03:37](1779 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:59, 04:18](1806 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 04:30](1823 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:07, 07:51]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:05, 04:14]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:35, 16:32](4597 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:07, 05:53]
-PASS -- TEST 'control_c48_gnu' [11:31, 09:27](881 MB)
-PASS -- TEST 'control_stochy_gnu' [04:17, 02:21](728 MB)
-PASS -- TEST 'control_ras_gnu' [05:16, 03:44](735 MB)
-PASS -- TEST 'control_p8_gnu' [06:02, 03:34](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 03:30](1514 MB)
-PASS -- TEST 'control_flake_gnu' [06:17, 04:23](812 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [07:06, 05:53]
-PASS -- TEST 'rap_control_gnu' [09:58, 07:40](1092 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:42, 07:46](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:40, 07:07](1122 MB)
-PASS -- TEST 'rap_restart_gnu' [05:51, 03:53](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:04, 07:39](1083 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:42, 07:46](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:54, 05:43](883 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:46, 03:58](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:46, 04:00](1135 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:44, 03:42](1029 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:40, 04:00](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:21, 02:04](882 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 02:02](935 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [10:04, 07:35](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:07, 07:05]
-PASS -- TEST 'control_diag_debug_gnu' [03:25, 01:14](774 MB)
-PASS -- TEST 'regional_debug_gnu' [08:35, 06:19](924 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:18, 01:58](1098 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:56](1094 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:56](1091 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 01:57](1091 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:04](1266 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:02](1094 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:00](1095 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 01:56](1088 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:11](724 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:18](724 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:39, 01:14](1506 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:12](1100 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:18](1102 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:27]
-PASS -- TEST 'control_wam_debug_gnu' [03:23, 01:52](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:54]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:39, 07:18](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:01, 03:48](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:56, 06:42](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 03:25](891 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:51, 03:54](951 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:52, 05:22](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:36, 01:59](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:47, 02:35](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:29, 01:02](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:33, 01:27](949 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:06, 11:48]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:42, 04:23](991 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 01:55](979 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:57](966 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:28](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 05:32](970 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 03:17](1192 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:23](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [11:06, 09:57]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1002 MB)
-
-PASS -- COMPILE 's2swa_gnu' [21:07, 19:11]
-
-PASS -- COMPILE 's2s_gnu' [19:07, 17:33]
-
-PASS -- COMPILE 's2swa_debug_gnu' [09:06, 07:48]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:07, 15:10]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:06, 03:51]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:54]
+PASS -- TEST 'hrrr_control_debug_intel' [05:29, 03:55](1211 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:57](1229 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:55](1224 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 03:54](1216 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:09](1312 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:53, 04:03](1219 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:01](1220 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:00](1219 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 03:58](1221 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:53](1212 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:59](1228 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 06:27](1225 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:54](1211 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:05, 04:51](1232 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:00](1214 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:50](1215 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:05, 04:05]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:45](791 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:27, 01:45](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 02:41]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:43]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:39, 03:15](1272 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:27](1144 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:51](1016 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:11](1285 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 02:40](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:31, 03:00](995 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:13](1097 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:38](979 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:37]
+PASS -- TEST 'conus13km_control_intel' [03:33, 01:43](1313 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:45](1211 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:03](1168 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:51]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:41](1082 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:52](1094 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:52](1098 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:28, 11:54](1344 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:27, 12:07](999 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:36](1247 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:24, 11:34](1440 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:54](1152 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:18, 10:07]
+PASS -- TEST 'hafs_regional_atm_intel' [07:58, 05:17](885 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:01](1267 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:19](952 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:44, 14:03](985 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 15:07](993 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:46, 05:25](608 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:47](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:51](538 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:35, 03:55](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:38](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:44](677 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:25](451 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:12](626 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:17, 09:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 16:49](735 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:05, 16:23](802 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:04]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:14, 10:13](788 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:18, 10:02]
+PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:25](952 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 05:30](928 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:29](1337 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:18, 07:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:20](1109 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1009 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:09](1008 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:06](1015 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:12](1144 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:04](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:55](1154 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:51](1150 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1148 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2441 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:03](2439 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:54]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:31, 05:09](1079 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 06:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1144 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:44]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:54](335 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:50](558 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](563 MB)
+
+PASS -- COMPILE 'atml_intel' [09:18, 07:27]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:04, 05:41](1628 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 05:43](1628 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:33, 02:56](944 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:34]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:31](1693 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:23]
+PASS -- TEST 'control_atmwav_intel' [03:37, 01:29](691 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:04]
+PASS -- TEST 'atmaero_control_p8_intel' [06:09, 03:37](1783 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:12, 04:14](1807 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:27](1820 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:06, 06:48]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:47]
+PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 16:21](4589 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:05, 04:03]
+PASS -- TEST 'control_c48_gnu' [11:36, 09:47](881 MB)
+PASS -- TEST 'control_stochy_gnu' [04:29, 02:14](730 MB)
+PASS -- TEST 'control_ras_gnu' [05:26, 03:38](734 MB)
+PASS -- TEST 'control_p8_gnu' [05:47, 03:32](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:27](1512 MB)
+PASS -- TEST 'control_flake_gnu' [06:22, 04:18](805 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:05, 04:20]
+PASS -- TEST 'rap_control_gnu' [09:36, 07:38](1088 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:36, 07:52](1095 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:09, 07:10](1146 MB)
+PASS -- TEST 'rap_restart_gnu' [05:51, 03:54](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:44](1092 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:48](1083 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:48, 05:47](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:42, 03:59](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:41, 03:58](1136 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 03:35](1025 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 04:03](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](880 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](936 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:34](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 06:03]
+PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:10](776 MB)
+PASS -- TEST 'regional_debug_gnu' [08:26, 06:24](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:56](1099 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 01:54](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:11, 01:58](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:20, 02:04](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 03:04](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:13, 01:59](1099 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 01:57](1095 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:11](725 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:11, 01:17](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:19](1505 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1103 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:08](1106 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1113 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:36]
+PASS -- TEST 'control_wam_debug_gnu' [03:17, 01:55](500 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:39]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:17](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:47](962 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:55](973 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:31](883 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:47](953 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:50, 05:21](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:57](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:34, 02:35](1264 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:28, 01:03](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:24](933 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:47, 11:46]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:17](989 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:59]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 01:57](979 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:58](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:20](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:35](973 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:16](1189 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:24](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:06, 12:18]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 01:55](1003 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:06, 16:56]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:06]
+
+PASS -- COMPILE 's2swa_debug_gnu' [13:07, 11:51]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:07, 17:02]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:53]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [19:08, 17:15]
SYNOPSIS:
-Starting Date/Time: 20240328 07:25:07
-Ending Date/Time: 20240328 08:48:24
-Total Time: 01h:23m:59s
+Starting Date/Time: 20240331 12:02:15
+Ending Date/Time: 20240331 13:24:55
+Total Time: 01h:23m:15s
Compiles Completed: 55/55
Tests Completed: 239/239
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index c8a07b419a..c647aedf1f 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-055b13ffbe0e49abbcf8d4e503ee617a8e78e5be
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_637067
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_1584801
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [48:28, 38:59]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:55, 06:48](1801 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [58:32, 48:37]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:13, 20:35](1665 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:21, 22:11](1877 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 10:20](990 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:43, 23:49](1634 MB)
-
-PASS -- COMPILE 's2swa_intel' [48:28, 38:59]
-PASS -- TEST 'cpld_control_p8_intel' [10:32, 07:33](1829 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:57, 07:28](1829 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:44, 04:18](1710 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:32, 07:28](1840 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:40, 04:30](1731 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:19, 07:13](2263 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:38](1824 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:41, 06:22](1776 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:51, 07:27](1831 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [16:47, 07:00](1791 MB)
-
-PASS -- COMPILE 's2sw_intel' [44:25, 35:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 05:54](1663 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:46, 05:47](1706 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [14:12, 05:18]
-PASS -- TEST 'cpld_debug_p8_intel' [15:04, 10:34](1853 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:00]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:40, 07:14](1675 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [40:22, 32:19]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 05:40](1717 MB)
-
-PASS -- COMPILE 's2s_intel' [35:20, 33:11]
-PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:38](2794 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:46, 33:17]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:26, 08:02](1828 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [54:30, 52:38]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:36, 20:48](1688 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:53, 10:30](1031 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:22, 24:18](1659 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:07, 05:02]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:58, 32:05](1681 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:22, 34:46]
-PASS -- TEST 'control_flake_intel' [06:27, 04:26](645 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:20](597 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 03:50](599 MB)
-PASS -- TEST 'control_latlon_intel' [05:28, 03:24](599 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:26](596 MB)
-PASS -- TEST 'control_c48_intel' [12:42, 10:09](838 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:44, 10:08](844 MB)
-PASS -- TEST 'control_c192_intel' [15:00, 12:22](732 MB)
-PASS -- TEST 'control_c384_intel' [18:56, 15:44](900 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:42, 13:47](1009 MB)
-PASS -- TEST 'control_stochy_intel' [04:29, 02:18](600 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](434 MB)
-PASS -- TEST 'control_lndp_intel' [04:30, 02:10](602 MB)
-PASS -- TEST 'control_iovr4_intel' [05:32, 03:22](598 MB)
-PASS -- TEST 'control_iovr5_intel' [05:32, 03:24](598 MB)
-PASS -- TEST 'control_p8_intel' [06:39, 04:00](1574 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 03:58](1578 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:56, 03:53](1572 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:12, 02:14](809 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:53](1575 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 02:07](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:45, 04:07](1560 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:45, 03:43](1669 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:21, 07:01](1578 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:04, 05:11](1629 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:55, 04:04](1580 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:18, 04:40](1587 MB)
-PASS -- TEST 'regional_control_intel' [10:08, 07:09](759 MB)
-PASS -- TEST 'regional_restart_intel' [05:38, 03:46](934 MB)
-PASS -- TEST 'regional_decomp_intel' [10:08, 07:27](755 MB)
-PASS -- TEST 'regional_2threads_intel' [07:09, 04:23](756 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:05](762 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:37, 07:00](762 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:20, 32:50]
-PASS -- TEST 'rap_control_intel' [12:09, 10:00](990 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:31](1215 MB)
-PASS -- TEST 'rap_decomp_intel' [12:54, 10:35](980 MB)
-PASS -- TEST 'rap_2threads_intel' [12:04, 09:32](1087 MB)
-PASS -- TEST 'rap_restart_intel' [08:19, 05:10](990 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:23, 09:58](988 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:22, 10:32](985 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:03, 07:33](999 MB)
-PASS -- TEST 'hrrr_control_intel' [07:58, 05:06](989 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:19](981 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 04:47](1058 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:47](917 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:50](984 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:15](1945 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:32, 11:59](1935 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:18, 30:54]
-PASS -- TEST 'control_csawmg_intel' [09:39, 08:04](689 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:39, 07:55](693 MB)
-PASS -- TEST 'control_ras_intel' [06:27, 04:21](665 MB)
-
-PASS -- COMPILE 'wam_intel' [31:19, 29:42]
-PASS -- TEST 'control_wam_intel' [04:21, 02:43](499 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:19, 31:26]
-PASS -- TEST 'control_p8_faster_intel' [06:36, 03:31](1577 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:47, 06:37](762 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:33]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 03:22](758 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:33, 03:20](753 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:25, 03:45](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:24, 03:20](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:17](812 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:46, 05:08](804 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:24, 03:26](767 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:32, 03:26](819 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:53, 03:34](1588 MB)
-PASS -- TEST 'regional_debug_intel' [23:57, 21:37](778 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:27, 06:07](1153 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:26, 05:52](1150 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 05:58](1152 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:25, 06:00](1147 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:59](1154 MB)
-PASS -- TEST 'rap_diag_debug_intel' [11:38, 09:54](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:24, 06:06](1147 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 06:06](1152 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:02](1150 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:59](1150 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:54](1146 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 05:59](1151 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 09:48](1142 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 05:56](1146 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:29, 07:17](1150 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:27, 06:01](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:29, 10:22](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:59]
-PASS -- TEST 'control_wam_debug_intel' [08:20, 06:07](470 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:18, 29:42]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:51, 05:23](1082 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 08:32](902 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:45, 04:42](864 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:49, 08:18](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:17](904 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:45, 05:01](850 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:17, 06:11](896 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:45](845 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:50]
-PASS -- TEST 'conus13km_control_intel' [05:06, 02:56](1100 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:25](1049 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:34](1025 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:20, 30:58]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:25](906 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:09, 04:15]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:36, 05:56](1028 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:54](1030 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:03, 18:35](1138 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:38](848 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [13:34, 10:48](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:56, 18:32](1225 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 04:08]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:53, 06:23](1076 MB)
-
-PASS -- COMPILE 'hafsw_intel' [37:20, 35:30]
-PASS -- TEST 'hafs_regional_atm_intel' [09:18, 07:01](715 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:30](1092 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:38, 09:21](772 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:25, 16:19](802 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:46, 18:04](824 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:15, 05:43](772 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:22, 32:03]
-PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:31](763 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:30, 08:36](749 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:10, 08:22]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:38](1066 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:11](1033 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:32](921 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:19, 03:33](924 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:18, 03:37](920 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:38](1058 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:39](1057 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:18, 03:28](922 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:12, 07:49](887 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:46](844 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:15, 03:37](1051 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 05:02](2398 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 05:02](2405 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:10]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:21, 07:56](1012 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:20, 03:32](1080 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:39]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:34](229 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:16](250 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:55](250 MB)
-
-PASS -- COMPILE 'atml_intel' [39:21, 37:37]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:57](1599 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:43, 08:45](1608 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:49, 04:09](870 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:19, 32:15]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:41, 02:20](1620 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:19, 31:17]
-PASS -- TEST 'control_atmwav_intel' [05:15, 02:11](608 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 30:42]
-PASS -- TEST 'atmaero_control_p8_intel' [08:32, 05:09](1692 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:30, 06:21](1727 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:15, 06:43](1733 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:26, 38:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:58, 07:22](1790 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 49:40]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:23, 21:05](1660 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 22:09](1928 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:24, 10:21](999 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:56, 24:05](1633 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:26, 38:36]
+PASS -- TEST 'cpld_control_p8_intel' [11:52, 08:35](1827 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:26, 08:15](1822 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:38, 04:45](1708 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:32](1857 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 04:49](1730 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:40, 07:53](2263 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 08:43](1827 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:01, 07:05](1778 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:28, 08:17](1824 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:04, 07:59](1783 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:25, 36:51]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:27, 05:58](1658 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 05:58](1717 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:28]
+PASS -- TEST 'cpld_debug_p8_intel' [14:04, 10:40](1840 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:44]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:14](1678 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:22, 32:09]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 06:37](1712 MB)
+
+PASS -- COMPILE 's2s_intel' [33:23, 32:19]
+PASS -- TEST 'cpld_control_c48_intel' [15:12, 12:45](2796 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:55, 33:11]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:05, 08:17](1824 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [50:32, 49:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:45](1681 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:46, 10:32](1034 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:45, 24:35](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:28]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:25, 32:13](1692 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:23, 34:22]
+PASS -- TEST 'control_flake_intel' [06:28, 04:29](645 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:16](597 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:35](601 MB)
+PASS -- TEST 'control_latlon_intel' [05:28, 03:19](600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:24](596 MB)
+PASS -- TEST 'control_c48_intel' [11:43, 10:04](850 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 10:08](838 MB)
+PASS -- TEST 'control_c192_intel' [14:50, 12:38](726 MB)
+PASS -- TEST 'control_c384_intel' [19:56, 16:29](894 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:41, 13:51](1018 MB)
+PASS -- TEST 'control_stochy_intel' [04:28, 02:17](598 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB)
+PASS -- TEST 'control_lndp_intel' [04:29, 02:11](600 MB)
+PASS -- TEST 'control_iovr4_intel' [05:30, 03:20](599 MB)
+PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](603 MB)
+PASS -- TEST 'control_p8_intel' [06:31, 04:01](1572 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:53, 04:07](1571 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:52, 03:54](1577 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:09, 02:06](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:55](1572 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:04](841 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:37, 04:08](1570 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:46](1662 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:18, 07:07](1576 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [09:00, 05:20](1641 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:03](1578 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:11, 04:46](1586 MB)
+PASS -- TEST 'regional_control_intel' [10:06, 07:12](759 MB)
+PASS -- TEST 'regional_restart_intel' [05:37, 03:51](933 MB)
+PASS -- TEST 'regional_decomp_intel' [10:06, 07:33](764 MB)
+PASS -- TEST 'regional_2threads_intel' [07:09, 04:27](760 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:02](759 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:46, 07:05](761 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:25, 33:02]
+PASS -- TEST 'rap_control_intel' [13:02, 10:08](990 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:41](1220 MB)
+PASS -- TEST 'rap_decomp_intel' [12:57, 10:41](984 MB)
+PASS -- TEST 'rap_2threads_intel' [12:27, 09:39](1088 MB)
+PASS -- TEST 'rap_restart_intel' [08:27, 05:19](987 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:25, 10:07](989 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:58, 10:41](980 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:43](996 MB)
+PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](987 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:25](983 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:47](1057 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:49](916 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:59](990 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:21](1944 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:58](1941 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:20, 31:11]
+PASS -- TEST 'control_csawmg_intel' [10:55, 08:09](697 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:48, 07:58](691 MB)
+PASS -- TEST 'control_ras_intel' [06:26, 04:25](666 MB)
+
+PASS -- COMPILE 'wam_intel' [31:20, 29:49]
+PASS -- TEST 'control_wam_intel' [04:27, 02:47](502 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:33]
+PASS -- TEST 'control_p8_faster_intel' [06:38, 03:32](1579 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:44, 06:36](767 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:57]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:21](763 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](761 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:45](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:22](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:24](810 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:13](812 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:21, 03:26](778 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:33, 03:32](816 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:35](1595 MB)
+PASS -- TEST 'regional_debug_intel' [23:52, 21:43](785 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:26, 06:11](1155 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1151 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 06:02](1153 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:03](1155 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 06:04](1152 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:19](1239 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:10](1153 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:12](1156 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:03](1156 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:00](1152 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:56](1157 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:03](1154 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:35, 09:51](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1154 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:21, 07:24](1158 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1153 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:29](1167 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:07, 04:08]
+PASS -- TEST 'control_wam_debug_intel' [08:31, 06:10](441 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 30:01]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:28, 05:15](1082 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:04, 08:53](898 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 04:24](872 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:04, 08:24](947 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:07, 04:04](910 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:07, 04:41](860 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:48, 06:50](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 03:01](841 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:26, 42:16]
+PASS -- TEST 'conus13km_control_intel' [06:03, 03:08](1108 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:34](1049 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:39](1027 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:18, 30:19]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:00, 05:48](905 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:53]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:56](1030 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:48](1030 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:03, 18:24](1143 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:39](852 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:30](1206 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:17]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 06:05](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:23, 34:58]
+PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:57](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:39](1084 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 09:34](775 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:37, 16:26](802 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 18:48](823 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:31, 06:07](774 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:21, 32:01]
+PASS -- TEST 'hafs_regional_docn_intel' [11:39, 08:48](763 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:40, 08:48](745 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:41, 03:50](1059 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:10](1048 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:41, 03:53](929 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:58](926 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:41, 03:53](924 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 03:54](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:42, 04:05](1061 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 04:01](925 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:33, 08:11](887 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 08:03](840 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:54](1056 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:43, 05:34](2345 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:43, 05:23](2407 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:33]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1010 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:43](1053 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:50](229 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:38](252 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:51](251 MB)
+
+PASS -- COMPILE 'atml_intel' [36:22, 34:28]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 09:09](1609 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:49, 09:15](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:40](870 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:21, 31:33]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:24](1610 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:21, 30:41]
+PASS -- TEST 'control_atmwav_intel' [05:12, 02:28](608 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:19, 30:39]
+PASS -- TEST 'atmaero_control_p8_intel' [08:28, 05:21](1699 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:29](1720 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](1735 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 16:20:50
-Ending Date/Time: 20240328 20:03:36
-Total Time: 03h:43m:20s
+Starting Date/Time: 20240331 17:05:36
+Ending Date/Time: 20240331 20:36:53
+Total Time: 03h:31m:58s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 247559746c..7ee8c1f320 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-3747664d1511e058657743b4b84f7e51566ac419
+be233c68ae3c7010234ed89394531449f51ee522
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4406
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_188248
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:50]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 05:10](3181 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:51]
-PASS -- TEST 'cpld_control_gfsv17_intel' [27:12, 16:33](1738 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:03, 17:23](2020 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:08](1113 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:02, 18:35](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:39]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:00, 22:57](1694 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:09, 14:04]
-PASS -- TEST 'cpld_control_p8_intel' [14:18, 05:38](3213 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:43, 05:31](3210 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:20](3255 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:19, 05:36](3235 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:25](3273 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:05](3548 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [14:13, 05:37](3205 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:12, 04:41](3057 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:42, 05:35](3209 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:58, 10:15](3341 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:14, 06:33](3623 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 11:57](4134 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:30, 07:22](4375 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:21](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 14:14]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [16:24, 04:27](1734 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:46, 04:22](1777 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:15]
-PASS -- TEST 'cpld_debug_p8_intel' [13:34, 08:41](3246 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:08]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 05:52](1748 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:27]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:19](1778 MB)
-
-PASS -- COMPILE 's2s_intel' [15:06, 13:37]
-PASS -- TEST 'cpld_control_c48_intel' [17:08, 07:59](2827 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:46]
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:38, 05:14](3210 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:09, 17:25]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:14, 16:31](1773 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:32, 08:07](1170 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:18, 18:46](1675 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:16](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:57]
-PASS -- TEST 'control_flake_intel' [11:21, 03:29](702 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:24, 02:27](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:29, 02:33](659 MB)
-PASS -- TEST 'control_latlon_intel' [09:20, 02:28](653 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:28, 02:37](650 MB)
-PASS -- TEST 'control_c48_intel' [11:26, 05:55](859 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:25, 05:55](876 MB)
-PASS -- TEST 'control_c192_intel' [16:34, 09:11](852 MB)
-PASS -- TEST 'control_c384_intel' [18:45, 10:06](1244 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:52, 09:04](1357 MB)
-PASS -- TEST 'control_stochy_intel' [10:20, 01:43](654 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:02](505 MB)
-PASS -- TEST 'control_lndp_intel' [08:19, 01:36](657 MB)
-PASS -- TEST 'control_iovr4_intel' [09:23, 02:30](654 MB)
-PASS -- TEST 'control_iovr5_intel' [08:21, 02:31](649 MB)
-PASS -- TEST 'control_p8_intel' [06:11, 03:03](1625 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:23, 03:04](1630 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 02:58](1626 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:16, 01:39](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:13, 02:51](1617 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:02, 01:37](931 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:12, 03:00](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:11, 03:09](1709 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:21](1618 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 03:59](1690 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:30, 02:58](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:55, 03:26](1649 MB)
-PASS -- TEST 'regional_control_intel' [08:38, 05:15](857 MB)
-PASS -- TEST 'regional_restart_intel' [04:35, 02:44](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [08:39, 05:27](855 MB)
-PASS -- TEST 'regional_2threads_intel' [05:40, 03:39](845 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:42, 05:07](1369 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:48, 05:10](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:09](858 MB)
-PASS -- TEST 'regional_wofs_intel' [08:39, 06:38](1927 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:10, 11:47]
-PASS -- TEST 'rap_control_intel' [10:31, 07:44](1112 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:41](1304 MB)
-PASS -- TEST 'rap_decomp_intel' [10:58, 08:11](1026 MB)
-PASS -- TEST 'rap_2threads_intel' [09:53, 07:56](1172 MB)
-PASS -- TEST 'rap_restart_intel' [06:29, 04:02](1102 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:41](1105 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:07](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:38, 05:47](1131 MB)
-PASS -- TEST 'hrrr_control_intel' [06:22, 03:59](1034 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:50, 04:08](1023 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:23](1113 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:16](994 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:33, 07:35](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:13](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:55](2077 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:08, 10:29]
-PASS -- TEST 'control_csawmg_intel' [08:45, 06:12](751 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:40, 05:55](747 MB)
-PASS -- TEST 'control_ras_intel' [05:23, 03:20](741 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 10:48]
-PASS -- TEST 'control_wam_intel' [04:16, 02:12](664 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 11:27]
-PASS -- TEST 'control_p8_faster_intel' [05:28, 02:47](1617 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:40, 04:39](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 05:00]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:47](820 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:38](811 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:18, 03:11](822 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:51](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:14](863 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 04:09](861 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:52](826 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:33, 03:03](871 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:42, 02:51](1639 MB)
-PASS -- TEST 'regional_debug_intel' [19:39, 17:41](841 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:23, 05:02](1203 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:56](1200 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 05:05](1203 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:05](1204 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:04](1198 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:19](1292 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 04:58](1199 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:17, 04:58](1205 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:19](1194 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:51](1206 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:21, 05:03](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:59](1203 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:02](1211 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:49](1200 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:45](1209 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:03](1203 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:34](1202 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:06, 03:56]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:14](506 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:07, 13:45]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:58, 04:36](1166 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:26, 06:30](1055 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 03:26](984 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:58, 06:38](1091 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:22, 03:04](962 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:48, 03:34](934 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:33, 04:50](1034 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:21, 01:52](933 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:07, 14:54]
-PASS -- TEST 'conus13km_control_intel' [04:00, 02:04](1206 MB)
-PASS -- TEST 'conus13km_2threads_intel' [09:46, 01:03](1119 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [09:39, 01:18](1107 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:07, 11:33]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:12](1001 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:06, 03:12]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:51](1086 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:52](1081 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:51, 14:49](1226 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 14:50](925 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:08](1154 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:47, 14:22](1295 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:04]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:25, 05:36](1126 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:07, 12:40]
-PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:32](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:25, 05:49](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:27, 06:59](825 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [20:20, 12:50](857 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:28, 14:27](881 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:59, 06:06](503 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:26, 07:20](524 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [11:49, 03:09](375 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [18:27, 07:57](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:45, 04:02](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:48, 03:51](535 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:52, 05:15](589 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:24, 01:28](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [14:53, 04:34](747 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:06, 04:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:51, 13:01](576 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:06, 13:26]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:55, 09:40](668 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:02, 09:37](711 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:07, 13:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:58, 07:00](730 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:07, 12:02]
-PASS -- TEST 'hafs_regional_docn_intel' [16:15, 06:17](834 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:11, 06:20](814 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:00, 15:53](1210 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:16, 02:36](1126 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:41](1093 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:15, 02:31](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:16, 02:36](1011 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:14, 02:37](1021 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:39](1126 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:14, 02:39](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:13, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 05:54](1052 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:17, 05:51](1045 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:12, 02:44](1136 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:30](2488 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:32](2434 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:01]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:14](1064 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:43](1134 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:14]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:46](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:53](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:31](326 MB)
-
-PASS -- COMPILE 'atml_intel' [14:09, 12:35]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:13](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:18](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:48, 03:08](899 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:08, 14:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 01:44](1662 MB)
-
-PASS -- COMPILE 'atmwm_intel' [15:07, 13:19]
-PASS -- TEST 'control_atmwav_intel' [04:12, 01:39](677 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:06, 11:30]
-PASS -- TEST 'atmaero_control_p8_intel' [06:23, 03:57](3026 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:46](3096 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:05](3107 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:07, 10:35]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:31]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:19](4580 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:07, 13:39]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:17](3188 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 16:30](1736 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 18:16](2019 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 08:19](1114 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:57, 18:26](1644 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:24]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:12](1683 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:07, 15:36]
+PASS -- TEST 'cpld_control_p8_intel' [11:32, 05:43](3210 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:44](3206 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:47, 03:20](3257 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:32, 05:44](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 03:31](3199 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:11](3559 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:32, 05:43](3211 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 04:48](3066 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:43, 05:43](3217 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:44, 09:58](3267 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:25, 06:07](3627 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:09, 11:03](4173 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:51](4372 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:23](3166 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:07, 13:03]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:59, 04:35](1679 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:25, 04:25](1780 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:30]
+PASS -- TEST 'cpld_debug_p8_intel' [11:33, 08:30](3246 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:06]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:10, 06:00](1753 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:12, 13:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 04:20](1777 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 13:13]
+PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:09](2826 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:07, 19:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 05:15](3213 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:56]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:39](1768 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:14](1175 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 19:07](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:07]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:42](1721 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:06, 12:41]
+PASS -- TEST 'control_flake_intel' [05:20, 03:31](703 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:32](653 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:38](658 MB)
+PASS -- TEST 'control_latlon_intel' [04:19, 02:31](658 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:33](654 MB)
+PASS -- TEST 'control_c48_intel' [07:25, 06:03](869 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:56](875 MB)
+PASS -- TEST 'control_c192_intel' [11:39, 09:08](836 MB)
+PASS -- TEST 'control_c384_intel' [13:37, 10:04](1245 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:07, 09:08](1359 MB)
+PASS -- TEST 'control_stochy_intel' [03:18, 01:47](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:17, 01:00](503 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:40](653 MB)
+PASS -- TEST 'control_iovr4_intel' [06:24, 02:31](650 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:29](645 MB)
+PASS -- TEST 'control_p8_intel' [05:07, 03:01](1637 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 02:59](1629 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 02:51](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:02, 01:39](894 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:04, 02:53](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:09](1616 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:14, 03:09](1722 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:44, 05:14](1638 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:26, 03:59](1687 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:28, 03:00](1633 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:43, 03:32](1646 MB)
+PASS -- TEST 'regional_control_intel' [07:41, 05:14](820 MB)
+PASS -- TEST 'regional_restart_intel' [06:40, 02:43](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:32, 05:31](854 MB)
+PASS -- TEST 'regional_2threads_intel' [05:40, 03:43](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:39, 05:13](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](858 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:08](859 MB)
+PASS -- TEST 'regional_wofs_intel' [08:40, 06:35](1919 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:06, 12:21]
+PASS -- TEST 'rap_control_intel' [10:22, 07:41](1109 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:48](1296 MB)
+PASS -- TEST 'rap_decomp_intel' [10:51, 08:07](1025 MB)
+PASS -- TEST 'rap_2threads_intel' [10:10, 07:55](1187 MB)
+PASS -- TEST 'rap_restart_intel' [07:21, 04:04](1101 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:09](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 05:50](1128 MB)
+PASS -- TEST 'hrrr_control_intel' [06:55, 04:02](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:07](1019 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:43](1064 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](1004 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:23, 07:35](1099 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:26, 09:15](1996 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 08:58](2075 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:06, 12:35]
+PASS -- TEST 'control_csawmg_intel' [09:38, 06:00](753 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:44, 05:56](750 MB)
+PASS -- TEST 'control_ras_intel' [06:17, 03:18](749 MB)
+
+PASS -- COMPILE 'wam_intel' [12:06, 10:51]
+PASS -- TEST 'control_wam_intel' [05:16, 02:06](655 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:15]
+PASS -- TEST 'control_p8_faster_intel' [06:28, 02:36](1633 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:41, 04:44](803 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:43](813 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:43](810 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](816 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:46](813 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](865 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:05](865 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:19, 02:49](819 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](871 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:40, 03:02](1639 MB)
+PASS -- TEST 'regional_debug_intel' [19:37, 17:13](845 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:18, 05:00](1201 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:54](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:57](1193 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:54](1200 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 04:59](1200 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:12](1282 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:04](1142 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1203 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:47](1198 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:54](1212 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 09:32](1197 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:53](1199 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:58](1200 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:53](1210 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1207 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:05, 03:25]
+PASS -- TEST 'control_wam_debug_intel' [06:17, 04:58](519 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:00]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 04:27](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 06:25](1049 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:17, 03:24](978 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:40](1085 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](912 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 03:34](929 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 04:48](1035 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](923 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 12:44]
+PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:02](1098 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 11:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](996 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:50](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:52, 14:29](1230 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:14](916 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:25](1152 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:05](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:06](1126 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:07, 13:07]
+PASS -- TEST 'hafs_regional_atm_intel' [08:04, 05:35](738 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 05:51](1060 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:23, 06:52](833 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 12:44](861 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:27](843 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:52, 06:06](503 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:18, 07:30](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:41](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 08:08](453 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:04](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:49, 04:19](534 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:51, 05:17](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:23, 01:25](398 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:48, 04:32](807 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:06, 03:41]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 13:25](569 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:07, 14:03]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:54, 09:24](622 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:58, 09:38](706 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](726 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:06, 12:36]
+PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:15](836 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:20](819 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:01](1210 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:05, 07:01]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:41](1130 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:38](1080 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:35](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:39](1008 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:42](1132 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:38](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 05:56](1060 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:00](1036 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1125 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:36](2443 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:36](2495 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:35]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1059 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:51]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1117 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:47](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](320 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](328 MB)
+
+PASS -- COMPILE 'atml_intel' [14:08, 12:58]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:20](1603 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:15](1605 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:20](897 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:07, 11:00]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:50](1667 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:09, 11:42]
+PASS -- TEST 'control_atmwav_intel' [04:02, 01:41](678 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:06, 10:47]
+PASS -- TEST 'atmaero_control_p8_intel' [06:14, 03:55](3028 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 04:47](3045 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:04](3108 MB)
+
+PASS -- COMPILE 'atmaq_intel' [14:08, 10:39]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:38, 20:47](4411 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 09:57:41
-Ending Date/Time: 20240328 11:36:48
-Total Time: 01h:39m:52s
+Starting Date/Time: 20240331 12:01:52
+Ending Date/Time: 20240331 13:32:26
+Total Time: 01h:31m:04s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 3fd64072f3..4f4bce119a 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-66d797dfd3f55ff071d70c9992a76d42a2c99f50
+8be49df39e49439d1c10ad54ab3800070692d809
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -25,19 +25,19 @@ Submodule hashes used in testing:
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1ba84102cb814ec377efae92264fceb317c24398 FV3 (heads/develop)
+ 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 8c7ec7b023ef9fdafc0b9b2394438fdaf983af40 WW3 (dev/unified_0.0.6-84-g8c7ec7b0)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182077
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39097
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [25:07, 24:37]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:22, 04:29](2970 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:38, 11:48]
-PASS -- TEST 'cpld_control_gfsv17_intel' [48:50, 02:41](1592 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:49, 01:49](1710 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [28:26, 01:22](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:51, 03:08](1573 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [23:03, 21:54]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [38:27, 02:19](1603 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:35, 11:06]
-PASS -- TEST 'cpld_control_p8_intel' [49:52, 01:14](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:52, 01:31](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [41:29, 02:00](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [49:52, 01:17](3028 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [41:29, 01:55](3078 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [49:52, 01:02](3316 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [49:52, 01:20](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [49:53, 01:14](2928 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [49:52, 01:31](3001 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [50:01, 08:57](3955 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:16, 04:08](4248 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [49:52, 01:50](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:44, 14:55]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [45:43, 00:45](1588 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:43, 01:02](1638 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [26:09, 25:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [35:20, 03:20](1639 MB)
-
-PASS -- COMPILE 's2s_intel' [22:01, 21:30]
-PASS -- TEST 'cpld_control_c48_intel' [39:27, 00:58](2649 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:07]
-PASS -- TEST 'cpld_control_p8_faster_intel' [44:38, 01:29](3001 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:24]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [48:50, 01:57](1601 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:24, 01:40](901 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:08, 00:54](1576 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:23, 32:00]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:54, 01:15](1619 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:53, 15:06]
-PASS -- TEST 'control_flake_intel' [34:00, 00:34](572 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [34:00, 00:49](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:00, 00:42](529 MB)
-PASS -- TEST 'control_latlon_intel' [34:00, 00:40](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:00, 00:49](523 MB)
-PASS -- TEST 'control_c48_intel' [33:59, 01:58](715 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [33:59, 02:07](714 MB)
-PASS -- TEST 'control_c192_intel' [34:00, 01:38](637 MB)
-PASS -- TEST 'control_c384_intel' [34:04, 01:58](954 MB)
-PASS -- TEST 'control_c384gdas_intel' [34:04, 03:06](1090 MB)
-PASS -- TEST 'control_stochy_intel' [34:00, 00:28](532 MB)
-PASS -- TEST 'control_stochy_restart_intel' [31:12, 01:04](333 MB)
-PASS -- TEST 'control_lndp_intel' [34:00, 01:37](528 MB)
-PASS -- TEST 'control_iovr4_intel' [34:00, 00:54](522 MB)
-PASS -- TEST 'control_iovr5_intel' [34:00, 00:47](523 MB)
-PASS -- TEST 'control_p8_intel' [34:00, 01:59](1508 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [34:00, 02:40](1503 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [34:00, 02:43](1510 MB)
-PASS -- TEST 'control_restart_p8_intel' [27:53, 01:06](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [34:00, 01:51](1498 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [27:53, 01:01](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [34:00, 01:49](1499 MB)
-PASS -- TEST 'control_2threads_p8_intel' [34:00, 02:06](1588 MB)
-PASS -- TEST 'control_p8_lndp_intel' [34:00, 02:22](1511 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [34:00, 03:36](1563 MB)
-PASS -- TEST 'control_p8_mynn_intel' [30:58, 02:16](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [30:05, 02:20](1513 MB)
-PASS -- TEST 'regional_control_intel' [30:03, 00:35](610 MB)
-PASS -- TEST 'regional_restart_intel' [21:51, 00:29](776 MB)
-PASS -- TEST 'regional_decomp_intel' [30:03, 00:22](606 MB)
-PASS -- TEST 'regional_2threads_intel' [29:59, 01:16](667 MB)
-PASS -- TEST 'regional_noquilt_intel' [29:56, 01:01](1146 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [29:55, 00:54](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [29:51, 01:01](610 MB)
-PASS -- TEST 'regional_wofs_intel' [27:49, 00:56](1580 MB)
-
-PASS -- COMPILE 'rrfs_intel' [23:14, 20:40]
-PASS -- TEST 'rap_control_intel' [25:31, 01:08](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:24, 01:19](1093 MB)
-PASS -- TEST 'rap_decomp_intel' [25:16, 01:33](918 MB)
-PASS -- TEST 'rap_2threads_intel' [25:13, 01:35](1007 MB)
-PASS -- TEST 'rap_restart_intel' [16:44, 01:13](789 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [24:40, 02:07](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:59, 01:08](914 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [15:01, 01:47](785 MB)
-PASS -- TEST 'hrrr_control_intel' [22:49, 01:42](912 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [22:36, 01:12](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [21:53, 01:21](991 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [16:42, 01:08](739 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [21:52, 01:25](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [21:52, 01:09](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [21:44, 01:20](1865 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:52, 14:11]
-PASS -- TEST 'control_csawmg_intel' [27:03, 00:43](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [26:51, 00:47](599 MB)
-PASS -- TEST 'control_ras_intel' [26:21, 00:57](561 MB)
-
-PASS -- COMPILE 'wam_intel' [15:52, 15:03]
-PASS -- TEST 'control_wam_intel' [25:54, 00:55](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [15:59, 13:50]
-PASS -- TEST 'control_p8_faster_intel' [25:38, 02:23](1507 MB)
-PASS -- TEST 'regional_control_faster_intel' [21:36, 00:31](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:41, 11:57]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:32, 01:21](687 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:31, 01:30](691 MB)
-PASS -- TEST 'control_stochy_debug_intel' [21:00, 00:54](691 MB)
-PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:13](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [20:17, 00:45](736 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [18:59, 00:46](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [18:42, 01:13](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [18:03, 00:26](742 MB)
-PASS -- TEST 'control_debug_p8_intel' [17:53, 01:04](1519 MB)
-PASS -- TEST 'regional_debug_intel' [17:42, 01:02](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [17:41, 01:00](1077 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [17:11, 01:05](1070 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [16:49, 01:05](1069 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [16:47, 01:00](1074 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:44, 01:01](1073 MB)
-PASS -- TEST 'rap_diag_debug_intel' [16:41, 00:55](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:19, 00:55](1073 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:01, 01:01](1072 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [16:01, 00:56](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:59, 01:18](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [15:57, 01:17](1076 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [15:43, 01:06](1073 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:18, 01:13](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [14:14, 01:01](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [14:07, 01:10](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [13:44, 01:03](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:15, 01:35](1081 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:41, 10:07]
-PASS -- TEST 'control_wam_debug_intel' [13:13, 00:58](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:54, 16:59]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:11, 01:26](956 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:01, 01:21](791 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:05, 02:14](785 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:56, 01:42](851 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:53, 02:19](843 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:28, 01:29](786 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:33, 01:28](686 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 00:21](669 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [29:19, 28:43]
-PASS -- TEST 'conus13km_control_intel' [06:01, 01:04](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:58, 00:37](1009 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:57, 00:27](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:50, 13:58]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:08, 01:29](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:44, 11:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:32, 01:18](953 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:13, 01:22](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [10:13, 00:58](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [10:09, 00:50](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:00, 00:41](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:41, 00:56](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:30, 05:37]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:28, 01:08](978 MB)
-
-PASS -- COMPILE 'hafsw_intel' [23:11, 20:50]
-PASS -- TEST 'hafs_regional_atm_intel' [05:57, 02:00](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 00:25](968 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:55, 01:54](662 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [05:55, 01:48](693 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:56, 01:33](707 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:55, 01:10](389 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:56, 02:18](404 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:56, 01:32](528 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:59, 02:17](369 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 01:27](423 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:45, 00:53](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 00:43](487 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:23](317 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [11:39, 09:22]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [09:23, 01:02](504 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:58, 16:40]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:13, 00:57](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:13, 00:53](713 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:02, 17:05]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:45, 01:03](715 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [24:12, 23:14]
-PASS -- TEST 'hafs_regional_docn_intel' [01:24, 01:29](663 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:24, 01:35](646 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:22, 00:41](881 MB)
-
-PASS -- COMPILE 'atml_intel' [29:22, 28:03]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:58, 01:37](1549 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [53:58, 01:09](1548 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [46:19, 00:32](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [28:20, 27:05]
-PASS -- TEST 'atmaero_control_p8_intel' [51:53, 01:36](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [51:53, 00:58](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [51:53, 01:36](2926 MB)
-
-PASS -- COMPILE 'atmaq_intel' [17:55, 17:27]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:42, 12:31]
-PASS -- TEST 'regional_atmaq_debug_intel' [03:56, 01:50](4433 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:35, 10:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:13, 01:16](2975 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:18, 32:03]
+PASS -- TEST 'cpld_control_gfsv17_intel' [47:42, 02:10](1594 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 01:24](1719 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [28:18, 01:48](849 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:08, 02:01](1566 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:30, 08:51]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [13:18, 01:47](1602 MB)
+
+PASS -- COMPILE 's2swa_intel' [30:14, 29:26]
+PASS -- TEST 'cpld_control_p8_intel' [51:59, 01:10](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:59, 01:15](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [42:16, 01:42](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [51:45, 01:58](3029 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [41:15, 01:15](3082 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [51:31, 01:17](3316 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [50:34, 01:19](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [46:58, 01:45](2928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:46, 02:04](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [46:55, 04:07](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:06, 03:32](4252 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [46:46, 01:27](2968 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:35, 10:40]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [11:12, 00:50](1586 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:12, 01:01](1635 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [43:44, 42:49]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:34, 01:05](1631 MB)
+
+PASS -- COMPILE 's2s_intel' [10:33, 09:43]
+PASS -- TEST 'cpld_control_c48_intel' [12:14, 00:45](2658 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [29:11, 28:56]
+PASS -- TEST 'cpld_control_p8_faster_intel' [53:16, 01:18](3001 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [21:56, 20:40]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 01:53](1600 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:16, 01:10](904 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 01:10](1570 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:31, 08:24]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:17, 01:27](1627 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:35]
+PASS -- TEST 'control_flake_intel' [02:44, 00:46](572 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 00:40](521 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 00:55](531 MB)
+PASS -- TEST 'control_latlon_intel' [02:44, 00:19](524 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:44, 00:43](527 MB)
+PASS -- TEST 'control_c48_intel' [02:43, 00:30](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [02:43, 00:37](713 MB)
+PASS -- TEST 'control_c192_intel' [02:44, 00:51](637 MB)
+PASS -- TEST 'control_c384_intel' [02:48, 01:30](956 MB)
+PASS -- TEST 'control_c384gdas_intel' [02:48, 01:41](1094 MB)
+PASS -- TEST 'control_stochy_intel' [02:44, 00:36](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [56:08, 01:10](328 MB)
+PASS -- TEST 'control_lndp_intel' [02:44, 00:42](530 MB)
+PASS -- TEST 'control_iovr4_intel' [02:44, 00:24](521 MB)
+PASS -- TEST 'control_iovr5_intel' [02:44, 00:21](526 MB)
+PASS -- TEST 'control_p8_intel' [02:44, 00:52](1511 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [02:44, 01:30](1503 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [02:44, 01:28](1511 MB)
+PASS -- TEST 'control_restart_p8_intel' [53:16, 01:52](688 MB)
+PASS -- TEST 'control_noqr_p8_intel' [02:44, 00:58](1490 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [53:16, 01:50](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [02:44, 00:42](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [02:44, 01:25](1593 MB)
+PASS -- TEST 'control_p8_lndp_intel' [02:44, 00:45](1501 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [02:44, 01:38](1558 MB)
+PASS -- TEST 'control_p8_mynn_intel' [02:44, 02:00](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [02:44, 01:45](1516 MB)
+PASS -- TEST 'regional_control_intel' [02:43, 00:14](610 MB)
+PASS -- TEST 'regional_restart_intel' [53:43, 01:05](779 MB)
+PASS -- TEST 'regional_decomp_intel' [02:43, 00:58](607 MB)
+PASS -- TEST 'regional_2threads_intel' [02:44, 00:41](658 MB)
+PASS -- TEST 'regional_noquilt_intel' [02:43, 00:27](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [56:08, 00:47](607 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [55:02, 01:02](610 MB)
+PASS -- TEST 'regional_wofs_intel' [55:02, 00:33](1577 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:49, 16:37]
+PASS -- TEST 'rap_control_intel' [55:03, 01:34](917 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:02, 01:25](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [54:55, 01:17](918 MB)
+PASS -- TEST 'rap_2threads_intel' [53:44, 01:06](1012 MB)
+PASS -- TEST 'rap_restart_intel' [43:32, 01:45](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [53:44, 01:43](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [53:16, 01:21](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [42:06, 01:57](783 MB)
+PASS -- TEST 'hrrr_control_intel' [53:00, 01:00](911 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [53:00, 01:52](906 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [52:58, 01:12](994 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [45:45, 01:00](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [52:55, 01:46](905 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [52:49, 00:27](1876 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:42, 00:56](1863 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:30, 09:00]
+PASS -- TEST 'control_csawmg_intel' [46:06, 00:31](598 MB)
+PASS -- TEST 'control_csawmgt_intel' [45:55, 00:42](601 MB)
+PASS -- TEST 'control_ras_intel' [45:45, 00:48](563 MB)
+
+PASS -- COMPILE 'wam_intel' [28:13, 27:01]
+PASS -- TEST 'control_wam_intel' [42:36, 00:36](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:48, 16:38]
+PASS -- TEST 'control_p8_faster_intel' [45:16, 00:59](1501 MB)
+PASS -- TEST 'regional_control_faster_intel' [45:05, 00:55](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [17:50, 13:14]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:49, 00:44](684 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:45, 00:52](692 MB)
+PASS -- TEST 'control_stochy_debug_intel' [43:54, 01:10](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [43:32, 00:44](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [43:32, 01:13](734 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [42:17, 00:52](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [42:16, 01:06](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [42:15, 01:05](748 MB)
+PASS -- TEST 'control_debug_p8_intel' [42:02, 01:03](1525 MB)
+PASS -- TEST 'regional_debug_intel' [41:21, 00:25](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [41:17, 01:22](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [41:15, 00:21](1067 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [41:03, 00:27](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [40:53, 00:31](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:52, 01:19](1078 MB)
+PASS -- TEST 'rap_diag_debug_intel' [40:15, 01:23](1157 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:06, 00:26](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [38:20, 00:46](1079 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [38:14, 01:03](1075 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:12, 01:05](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [38:12, 01:09](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [38:03, 01:04](1077 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:01, 00:56](1073 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [38:00, 01:05](1070 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [37:11, 01:00](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [36:44, 01:01](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:39, 01:18](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [16:46, 12:09]
+PASS -- TEST 'control_wam_debug_intel' [36:15, 00:54](298 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 11:42]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:07, 01:19](955 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [35:42, 01:11](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:21, 02:30](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:40, 02:10](854 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:40, 02:10](840 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:24, 01:54](786 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:19, 01:45](687 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:36, 01:07](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:54, 16:12]
+PASS -- TEST 'conus13km_control_intel' [34:14, 00:32](1001 MB)
+PASS -- TEST 'conus13km_2threads_intel' [29:21, 00:32](1009 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [27:10, 00:30](879 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:36, 08:17]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:35, 00:45](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:31, 06:31]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:32, 00:29](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:28, 00:30](955 MB)
+PASS -- TEST 'conus13km_debug_intel' [33:16, 00:58](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [32:27, 01:00](714 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [31:58, 00:28](1039 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:43, 00:28](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:00, 17:27]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:29, 01:15](977 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:43, 11:34]
+PASS -- TEST 'hafs_regional_atm_intel' [31:29, 01:32](620 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:28, 00:43](971 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 02:08](659 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 01:26](701 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:11, 01:53](704 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 00:53](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:42, 02:07](407 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [29:38, 00:51](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:04, 02:33](370 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:47, 01:14](411 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 01:19](412 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:59, 01:16](576 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:56, 00:57](323 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:31, 08:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:52, 01:22](500 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:52, 17:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:02, 00:46](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:29, 00:57](709 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [23:03, 22:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 01:18](715 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:33, 09:09]
+PASS -- TEST 'hafs_regional_docn_intel' [23:39, 01:35](665 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 01:35](642 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:58, 00:40](882 MB)
+
+PASS -- COMPILE 'atml_intel' [22:03, 19:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:26, 02:09](1550 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [20:12, 01:26](1547 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:38, 01:12](740 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:42, 11:37]
+PASS -- TEST 'atmaero_control_p8_intel' [22:49, 01:12](2849 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [22:05, 00:59](2909 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:51, 01:02](2922 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:39, 11:22]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:25, 05:38]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:52, 01:36](4448 MB)
SYNOPSIS:
-Starting Date/Time: 20240328 15:58:14
-Ending Date/Time: 20240328 17:22:49
-Total Time: 01h:25m:11s
+Starting Date/Time: 20240401 13:36:53
+Ending Date/Time: 20240401 15:08:45
+Total Time: 01h:32m:35s
Compiles Completed: 31/31
Tests Completed: 157/157
From 26e6db63cd73649681a8884c82b5c0260c6f9b39 Mon Sep 17 00:00:00 2001
From: Denise Worthen
Date: Wed, 3 Apr 2024 19:57:08 -0400
Subject: [PATCH 17/33] Enable cpl_scalars export from ATM and NoahMP for use
by CMEPS (#2175)
* CMEPS - allow additional dimension in cpl_scalars for CSG and regional ATM domains for use in mediator history files
* CMEPS - fix mapping mask for lnd->atm
* FV3 - add export of cpl_scalars
* NOAHMP - add export of cpl_scalars
---
.github/workflows/aux.yml | 8 +-
CMEPS-interface/CMEPS | 2 +-
FV3 | 2 +-
NOAHMP-interface/CMakeLists.txt | 7 +-
NOAHMP-interface/noahmp | 2 +-
tests/bl_date.conf | 2 +-
tests/default_vars.sh | 1 -
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 22 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 547 ++++++------
tests/logs/RegressionTests_gaea.log | 540 ++++++------
tests/logs/RegressionTests_hera.log | 790 +++++++++--------
tests/logs/RegressionTests_hercules.log | 813 ++++++++++--------
tests/logs/RegressionTests_jet.log | 472 +++++-----
tests/logs/RegressionTests_orion.log | 638 ++++++++------
tests/logs/RegressionTests_wcoss2.log | 460 +++++-----
tests/parm/ufs.configure.atm_lnd.IN | 9 +-
tests/parm/ufs.configure.atmw.IN | 4 +-
tests/parm/ufs.configure.hafs_atm_docn.IN | 5 +-
tests/parm/ufs.configure.hafs_atm_ocn.IN | 5 +-
tests/parm/ufs.configure.hafs_atm_ocn_wav.IN | 5 +-
.../ufs.configure.hafs_atm_ocn_wav_inline.IN | 5 +-
.../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 3 +-
tests/parm/ufs.configure.hafs_atm_wav.IN | 5 +-
tests/parm/ufs.configure.s2s.IN | 4 +-
tests/parm/ufs.configure.s2s_aoflux_esmf.IN | 4 +-
tests/parm/ufs.configure.s2s_esmf.IN | 4 +-
tests/parm/ufs.configure.s2sa.IN | 4 +-
tests/parm/ufs.configure.s2sa_esmf.IN | 4 +-
tests/parm/ufs.configure.s2sw.IN | 4 +-
tests/parm/ufs.configure.s2sw_esmf.IN | 4 +-
tests/parm/ufs.configure.s2sw_fast_esmf.IN | 4 +-
tests/parm/ufs.configure.s2swa.IN | 4 +-
tests/parm/ufs.configure.s2swa_esmf.IN | 4 +-
tests/parm/ufs.configure.s2swa_fast_esmf.IN | 4 +-
tests/test_changes.list | 5 +
tests/tests/atmwav_control_noaero_p8 | 1 -
tests/tests/cpld_bmark_p8 | 1 -
tests/tests/cpld_bmark_p8_35d | 1 -
tests/tests/cpld_control_c192_p8 | 2 -
tests/tests/cpld_control_c48 | 1 -
tests/tests/cpld_debug_pdlib_p8 | 2 +-
tests/tests/cpld_restart_bmark_p8 | 1 -
tests/tests/cpld_restart_c192_p8 | 1 -
tests/tests/cpld_restart_c48 | 1 -
tests/tests/cpld_warmstart_c48 | 1 -
tests/tests/regional_atmaq_debug | 1 +
48 files changed, 2378 insertions(+), 2103 deletions(-)
diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml
index 11f4172c18..edb07c400f 100644
--- a/.github/workflows/aux.yml
+++ b/.github/workflows/aux.yml
@@ -30,8 +30,10 @@ jobs:
steps:
- name: Check up-to-dateness and post comment
run: |
- head_sha=${{ github.event.workflow_run.head_sha }}
- git clone -q ${{ github.event.workflow_run.head_repository.html_url }} .
+ head_sha=${{ github.event.pull_request.head.sha }}
+ head_brc=${{ github.event.pull_request.head.ref }}
+ head_url=${{ github.event.pull_request.head.repo.html_url }}
+ git clone -q -b $head_brc $head_url .
git checkout -q $head_sha
git submodule -q update --init --recursive
cd ${{ github.workspace }}/tests/ci
@@ -39,7 +41,7 @@ jobs:
pr_number=$(curl -sS -H $app $url/pulls \
| jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number')
echo "pr_number is $pr_number"
- pr_uid=${{ github.event.workflow_run.head_repository.owner.login }}
+ pr_uid=${{ github.event.pull_request.head.repo.owner.login }}
echo "pr_uid is $pr_uid"
comment="$(./repo_check.sh $pr_uid 2>/dev/null)"
echo "comment is $comment"
diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS
index 758491ed66..4e19850cb0 160000
--- a/CMEPS-interface/CMEPS
+++ b/CMEPS-interface/CMEPS
@@ -1 +1 @@
-Subproject commit 758491ed6681dd6054b1ff877027e6da381e86f8
+Subproject commit 4e19850cb083bc474b7cde5dc2f8506ec74cc442
diff --git a/FV3 b/FV3
index 1b75fe2c90..1cac9d31d1 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 1b75fe2c90f2a0abf03844d867bd2afa00e86de9
+Subproject commit 1cac9d31d139b0069deb31034e2257a2a945a573
diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt
index e27a1e37ec..fa533818fb 100644
--- a/NOAHMP-interface/CMakeLists.txt
+++ b/NOAHMP-interface/CMakeLists.txt
@@ -8,9 +8,10 @@ list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90
noahmp/drivers/nuopc/lnd_comp_domain.F90
noahmp/drivers/nuopc/lnd_comp_import_export.F90
noahmp/drivers/nuopc/lnd_comp_nuopc.F90
- noahmp/drivers/nuopc/lnd_comp_driver.F90)
+ noahmp/drivers/nuopc/lnd_comp_driver.F90
+ noahmp/drivers/nuopc/lnd_comp_cplscalars.F90)
-# CCPP interface
+# CCPP interface
list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90
noahmp/drivers/ccpp/sfc_diff.f
noahmp/drivers/ccpp/machine.F
@@ -25,7 +26,7 @@ list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.F90
noahmp/src/module_sf_noahmp_glacier.F90)
#------------------------------------------------------------------------------
-# Set CCPP flags for C/C++/Fortran preprocessor
+# Set CCPP flags for C/C++/Fortran preprocessor
add_definitions(-DCCPP)
#------------------------------------------------------------------------------
diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp
index 0cd3e23ae5..6a51f0295b 160000
--- a/NOAHMP-interface/noahmp
+++ b/NOAHMP-interface/noahmp
@@ -1 +1 @@
-Subproject commit 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5
+Subproject commit 6a51f0295bc1a877475b527157a33aa86eb532fe
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 636b26b827..046381c5ba 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240315
+export BL_DATE=20240401
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index f46e790668..9bd6d6355e 100755
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -825,7 +825,6 @@ export_ww3
# Set CMEPS component defauls
export_cmeps
-export ATMTILESIZE=`expr $NPX - 1`
# FV3 defaults
export FRAC_GRID=.true.
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index b7445431fe..88dbc1ba12 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 1 12:58:41 UTC 2024
+Wed Apr 3 13:03:42 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 268.251032
- 0: The maximum resident set size (KB) = 1265156
+ 0: The total amount of wall time = 270.499708
+ 0: The maximum resident set size (KB) = 1267976
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 965.834768
- 0: The maximum resident set size (KB) = 1256504
+ 0: The total amount of wall time = 949.421879
+ 0: The maximum resident set size (KB) = 1254204
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 246.586805
- 0: The maximum resident set size (KB) = 1233548
+ 0: The total amount of wall time = 238.203503
+ 0: The maximum resident set size (KB) = 1247000
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 235.970450
- 0: The maximum resident set size (KB) = 1247740
+ 0: The total amount of wall time = 238.209192
+ 0: The maximum resident set size (KB) = 1246248
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.245564
- 0: The maximum resident set size (KB) = 1242900
+ 0: The total amount of wall time = 239.223169
+ 0: The maximum resident set size (KB) = 1247272
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.390294
- 0: The maximum resident set size (KB) = 1248812
+ 0: The total amount of wall time = 242.202633
+ 0: The maximum resident set size (KB) = 1247172
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3809779/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.382720
- 0: The maximum resident set size (KB) = 1242900
+ 0: The total amount of wall time = 242.018158
+ 0: The maximum resident set size (KB) = 1247888
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 1 14:07:52 UTC 2024
-Elapsed time: 01h:09m:14s. Have a nice day!
+Wed Apr 3 14:13:02 UTC 2024
+Elapsed time: 01h:09m:20s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 2b21c64d86..d9a81cb48a 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 1 18:08:14 UTC 2024
+Wed Apr 3 18:01:51 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1299.447405
- 0: The maximum resident set size (KB) = 1367532
+ 0: The total amount of wall time = 1309.881667
+ 0: The maximum resident set size (KB) = 1366736
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 604.635134
- 0: The maximum resident set size (KB) = 1359688
+ 0: The total amount of wall time = 385.164336
+ 0: The maximum resident set size (KB) = 1359652
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4186917/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 385.824022
- 0: The maximum resident set size (KB) = 1360152
+ 0: The total amount of wall time = 386.874326
+ 0: The maximum resident set size (KB) = 1362372
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 1 19:12:24 UTC 2024
+Wed Apr 3 19:06:01 UTC 2024
Elapsed time: 01h:04m:10s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 2c2b774530..458da1602a 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 1 16:00:46 UTC 2024
+Wed Apr 3 15:46:00 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2150.095224
- 0: The maximum resident set size (KB) = 553404
+ 0: The total amount of wall time = 2148.497446
+ 0: The maximum resident set size (KB) = 557116
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2151.572064
- 0: The maximum resident set size (KB) = 563124
+ 0: The total amount of wall time = 2165.195419
+ 0: The maximum resident set size (KB) = 563120
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322710/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2129.213652
- 0: The maximum resident set size (KB) = 560932
+ 0: The total amount of wall time = 2186.776168
+ 0: The maximum resident set size (KB) = 554324
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 1 17:59:32 UTC 2024
-Elapsed time: 01h:58m:47s. Have a nice day!
+Wed Apr 3 17:45:29 UTC 2024
+Elapsed time: 01h:59m:30s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 1949d65587..42fbe6350b 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,21 +1,44 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-681a70733ad51929905514527b6d5a497cd17776
+63a49c307df0bb8a28e7e8ae12200b0284d63022
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f)
- 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
- 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1)
- a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
NOTES:
@@ -24,267 +47,267 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_93964
+BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_34194
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [10:30, 10:13]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:37, 01:21](2973 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:44, 17:13]
-PASS -- TEST 'cpld_control_gfsv17_intel' [45:51, 01:24](1593 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:19, 01:23](1720 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:07, 01:23](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:53, 01:41](1570 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:30]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [58:48, 02:08](1607 MB)
-
-PASS -- COMPILE 's2swa_intel' [10:30, 10:12]
-PASS -- TEST 'cpld_control_p8_intel' [53:37, 00:52](3004 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:37, 01:41](2999 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [38:53, 01:18](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [53:37, 01:46](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [37:44, 00:53](3077 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [53:37, 01:15](3315 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [53:37, 01:43](2997 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [53:38, 01:36](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:37, 01:37](3003 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [53:37, 01:06](2967 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:30, 09:53]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [53:37, 00:53](1588 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:37, 01:01](1637 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:28, 09:11]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:39, 01:00](1635 MB)
-
-PASS -- COMPILE 's2s_intel' [12:34, 11:41]
-PASS -- TEST 'cpld_control_c48_intel' [51:32, 01:12](2650 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:40, 15:01]
-PASS -- TEST 'cpld_control_p8_faster_intel' [48:25, 01:38](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:40, 15:29]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:13, 00:46](1609 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:14, 01:20](912 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 01:24](1589 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 03:37]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:51, 01:07](1617 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:13]
-PASS -- TEST 'control_flake_intel' [50:21, 00:15](576 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [50:21, 01:04](526 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:21, 01:09](531 MB)
-PASS -- TEST 'control_latlon_intel' [50:21, 00:38](526 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:21, 00:40](530 MB)
-PASS -- TEST 'control_c48_intel' [50:20, 01:02](722 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [50:20, 01:14](721 MB)
-PASS -- TEST 'control_c192_intel' [50:21, 01:13](642 MB)
-PASS -- TEST 'control_c384_intel' [50:25, 00:57](956 MB)
-PASS -- TEST 'control_c384gdas_intel' [50:25, 01:43](1099 MB)
-PASS -- TEST 'control_stochy_intel' [50:21, 01:07](537 MB)
-PASS -- TEST 'control_stochy_restart_intel' [31:14, 00:48](337 MB)
-PASS -- TEST 'control_lndp_intel' [50:21, 01:10](532 MB)
-PASS -- TEST 'control_iovr4_intel' [50:21, 00:35](529 MB)
-PASS -- TEST 'control_iovr5_intel' [50:21, 00:40](528 MB)
-PASS -- TEST 'control_p8_intel' [50:21, 01:26](1507 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [47:00, 01:04](1501 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [44:51, 01:03](1513 MB)
-PASS -- TEST 'control_restart_p8_intel' [29:23, 01:04](696 MB)
-PASS -- TEST 'control_noqr_p8_intel' [42:24, 00:58](1495 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [28:06, 00:50](703 MB)
-PASS -- TEST 'control_decomp_p8_intel' [39:45, 01:10](1501 MB)
-PASS -- TEST 'control_2threads_p8_intel' [39:42, 01:33](1590 MB)
-PASS -- TEST 'control_p8_lndp_intel' [38:29, 01:06](1512 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [36:46, 01:48](1559 MB)
-PASS -- TEST 'control_p8_mynn_intel' [34:15, 00:55](1512 MB)
-PASS -- TEST 'merra2_thompson_intel' [34:12, 01:17](1514 MB)
-PASS -- TEST 'regional_control_intel' [33:32, 00:26](609 MB)
-PASS -- TEST 'regional_restart_intel' [27:43, 00:46](783 MB)
-PASS -- TEST 'regional_decomp_intel' [33:19, 00:56](611 MB)
-PASS -- TEST 'regional_2threads_intel' [32:56, 01:01](673 MB)
-PASS -- TEST 'regional_noquilt_intel' [32:47, 00:57](1148 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [32:27, 00:47](610 MB)
-PASS -- TEST 'regional_wofs_intel' [32:14, 00:35](1582 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:27, 07:59]
-PASS -- TEST 'regional_ifi_control_intel' [31:13, 00:48](614 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [31:12, 01:08](609 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [31:10, 00:33](668 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:29, 08:30]
-PASS -- TEST 'rap_control_intel' [31:10, 01:07](912 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:09, 00:39](1091 MB)
-PASS -- TEST 'rap_decomp_intel' [30:24, 00:44](916 MB)
-PASS -- TEST 'rap_2threads_intel' [28:10, 01:11](1005 MB)
-PASS -- TEST 'rap_restart_intel' [18:36, 01:26](788 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [28:04, 01:08](913 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:24, 00:48](912 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [16:30, 01:50](784 MB)
-PASS -- TEST 'hrrr_control_intel' [27:24, 01:30](908 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [26:09, 01:07](907 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [25:25, 01:58](992 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [18:54, 01:13](745 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [24:47, 01:36](910 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [24:29, 00:31](1873 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:22, 00:56](1858 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:29, 08:23]
-PASS -- TEST 'control_csawmg_intel' [24:03, 01:16](603 MB)
-PASS -- TEST 'control_csawmgt_intel' [24:00, 00:57](599 MB)
-
-PASS -- COMPILE 'wam_intel' [08:27, 08:06]
-PASS -- TEST 'control_wam_intel' [23:50, 00:18](273 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:29, 08:39]
-PASS -- TEST 'control_p8_faster_intel' [23:34, 01:46](1513 MB)
-PASS -- TEST 'regional_control_faster_intel' [23:30, 00:12](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:23, 03:51]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:07, 00:59](685 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:01, 01:11](688 MB)
-PASS -- TEST 'control_stochy_debug_intel' [21:58, 01:04](694 MB)
-PASS -- TEST 'control_lndp_debug_intel' [21:58, 00:35](693 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [21:17, 00:25](727 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [19:29, 00:41](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [18:54, 00:15](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [18:19, 00:25](746 MB)
-PASS -- TEST 'control_debug_p8_intel' [17:13, 01:07](1517 MB)
-PASS -- TEST 'regional_debug_intel' [17:02, 00:44](628 MB)
-PASS -- TEST 'rap_control_debug_intel' [16:15, 01:14](1071 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [14:24, 00:16](1067 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 00:50](1068 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [14:16, 00:38](1069 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:06, 00:36](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [13:45, 00:47](1157 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:27, 00:48](1075 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:21, 00:36](1071 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [13:21, 00:38](1075 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:03, 00:57](1075 MB)
-PASS -- TEST 'rap_noah_debug_intel' [12:46, 00:31](1067 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [12:36, 01:07](1074 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:29, 00:24](1071 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [11:39, 00:13](1063 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 00:58](1073 MB)
-PASS -- TEST 'rap_flake_debug_intel' [11:14, 00:27](1074 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:06, 01:36](1079 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:21, 02:47]
-PASS -- TEST 'control_wam_debug_intel' [08:04, 00:19](300 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:12]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 01:04](963 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 02:03](795 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 01:30](794 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 02:02](856 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:43, 02:08](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 01:44](792 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:09, 00:50](692 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:54, 00:45](671 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:53, 10:22]
-PASS -- TEST 'conus13km_control_intel' [06:01, 00:45](1007 MB)
-PASS -- TEST 'conus13km_2threads_intel' [58:02, 00:27](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [58:01, 01:13](882 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:48, 08:19]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:53, 00:41](816 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:59, 03:00]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:23, 01:13](949 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:23, 00:15](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [55:23, 00:32](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [55:23, 00:36](706 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [55:24, 00:44](1036 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:23, 00:35](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:59, 02:54]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:10, 01:09](974 MB)
-
-PASS -- COMPILE 'hafsw_intel' [57:15, 09:28]
-PASS -- TEST 'hafs_regional_atm_intel' [47:56, 01:55](620 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:56, 00:55](968 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:54, 01:32](663 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [47:54, 02:00](704 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:55, 01:43](708 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:54, 00:43](391 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:55, 01:46](409 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [47:55, 01:36](290 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:58, 01:55](374 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:54, 01:16](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:54, 01:28](419 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [47:56, 01:03](493 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [47:55, 00:43](316 MB)
-PASS -- TEST 'gnv1_nested_intel' [47:55, 01:13](680 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [51:02, 03:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:10, 01:03](507 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [58:16, 09:44]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:46, 01:19](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:46, 01:31](712 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [57:16, 09:22]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:54, 01:42](712 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [57:16, 09:03]
-PASS -- TEST 'hafs_regional_docn_intel' [46:52, 01:58](668 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:52, 01:46](652 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:50, 00:31](882 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [50:00, 08:36]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:40, 01:09](750 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [41:11, 01:07](727 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [46:24, 00:10](630 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [45:19, 00:56](632 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [42:26, 00:29](628 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:48, 00:40](747 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:09, 01:01](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:56, 00:47](630 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:08, 00:42](592 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:02, 00:51](576 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:01, 01:08](752 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:49, 00:43](2012 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [36:59, 00:48](1950 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [43:46, 08:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [46:51, 00:15](751 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [34:23, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:10, 00:25](226 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:10, 00:43](368 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [47:35, 00:52](369 MB)
-
-PASS -- COMPILE 'atml_intel' [10:30, 09:42]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:47, 01:16](1552 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [36:25, 01:13](1550 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:28, 00:25](746 MB)
-
-PASS -- COMPILE 'atmw_intel' [09:30, 08:48]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [35:47, 00:53](1542 MB)
-
-PASS -- COMPILE 'atmwm_intel' [09:31, 08:32]
-PASS -- TEST 'control_atmwav_intel' [35:23, 01:22](544 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:31, 08:34]
-PASS -- TEST 'atmaero_control_p8_intel' [34:59, 01:18](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [34:32, 01:12](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:29, 01:45](2922 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:29, 08:23]
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:37, 03:06]
-PASS -- TEST 'regional_atmaq_debug_intel' [33:15, 00:48](4430 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [10:32, 10:09]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:36, 01:17](3041 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:42, 15:31]
+PASS -- TEST 'cpld_control_gfsv17_intel' [06:30, 01:58](1655 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:57, 01:25](1776 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [37:49, 01:33](907 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [06:19, 01:44](1640 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 03:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [18:51, 01:11](1674 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:34, 10:23]
+PASS -- TEST 'cpld_control_p8_intel' [11:34, 01:45](3069 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:34, 01:30](3067 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [53:34, 00:56](3127 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:34, 01:52](3094 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [51:29, 01:05](3145 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:34, 00:46](3381 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 01:39](3064 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:35, 01:26](2990 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 01:10](3069 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 00:48](3034 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:30, 09:38]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [12:37, 00:55](1649 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:37, 01:00](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:32, 09:23]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:36, 00:56](1694 MB)
+
+PASS -- COMPILE 's2s_intel' [09:30, 09:08]
+PASS -- TEST 'cpld_control_c48_intel' [13:37, 00:45](2680 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:40, 14:14]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:18, 01:14](3070 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:47, 16:40]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:09, 01:35](1673 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:15, 00:55](968 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:49, 01:36](1636 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:36]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:50, 00:51](1694 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:31, 09:15]
+PASS -- TEST 'control_flake_intel' [09:19, 00:25](640 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:19, 00:49](589 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:19, 00:42](595 MB)
+PASS -- TEST 'control_latlon_intel' [09:19, 00:41](588 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:19, 00:51](588 MB)
+PASS -- TEST 'control_c48_intel' [09:18, 00:20](737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:18, 01:15](738 MB)
+PASS -- TEST 'control_c192_intel' [09:19, 01:21](703 MB)
+PASS -- TEST 'control_c384_intel' [09:23, 01:35](1015 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:23, 01:49](1148 MB)
+PASS -- TEST 'control_stochy_intel' [09:19, 00:24](596 MB)
+PASS -- TEST 'control_stochy_restart_intel' [53:20, 00:59](398 MB)
+PASS -- TEST 'control_lndp_intel' [09:19, 00:18](590 MB)
+PASS -- TEST 'control_iovr4_intel' [05:36, 01:11](585 MB)
+PASS -- TEST 'control_iovr5_intel' [04:05, 00:47](589 MB)
+PASS -- TEST 'control_p8_intel' [04:03, 01:11](1568 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:30, 01:22](1562 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:04, 01:31](1563 MB)
+PASS -- TEST 'control_restart_p8_intel' [49:16, 01:01](756 MB)
+PASS -- TEST 'control_noqr_p8_intel' [02:30, 00:40](1557 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [49:09, 00:55](758 MB)
+PASS -- TEST 'control_decomp_p8_intel' [01:28, 01:32](1563 MB)
+PASS -- TEST 'control_2threads_p8_intel' [55:52, 01:14](1654 MB)
+PASS -- TEST 'control_p8_lndp_intel' [54:38, 00:44](1567 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [54:35, 01:49](1622 MB)
+PASS -- TEST 'control_p8_mynn_intel' [54:33, 01:17](1570 MB)
+PASS -- TEST 'merra2_thompson_intel' [53:51, 02:05](1577 MB)
+PASS -- TEST 'regional_control_intel' [53:27, 01:01](628 MB)
+PASS -- TEST 'regional_restart_intel' [46:37, 00:13](800 MB)
+PASS -- TEST 'regional_decomp_intel' [53:19, 01:05](629 MB)
+PASS -- TEST 'regional_2threads_intel' [52:18, 01:00](728 MB)
+PASS -- TEST 'regional_noquilt_intel' [52:14, 00:48](1166 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [52:12, 00:49](635 MB)
+PASS -- TEST 'regional_wofs_intel' [52:06, 00:37](1602 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:28, 07:58]
+PASS -- TEST 'regional_ifi_control_intel' [10:20, 00:59](633 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [10:20, 00:49](627 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [10:21, 00:30](721 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:31, 08:39]
+PASS -- TEST 'rap_control_intel' [51:56, 01:01](977 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [51:16, 00:29](1144 MB)
+PASS -- TEST 'rap_decomp_intel' [50:46, 01:35](976 MB)
+PASS -- TEST 'rap_2threads_intel' [50:16, 00:48](1058 MB)
+PASS -- TEST 'rap_restart_intel' [41:26, 01:00](843 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [48:49, 01:46](974 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:46, 01:23](971 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [38:20, 01:26](841 MB)
+PASS -- TEST 'hrrr_control_intel' [48:24, 01:13](968 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [48:11, 01:04](966 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [48:12, 00:50](1040 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [41:12, 00:23](798 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [47:46, 01:29](961 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [47:30, 00:24](1935 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:03, 01:02](1919 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:30, 08:25]
+PASS -- TEST 'control_csawmg_intel' [45:36, 00:29](661 MB)
+PASS -- TEST 'control_csawmgt_intel' [45:30, 01:15](657 MB)
+
+PASS -- COMPILE 'wam_intel' [08:29, 08:00]
+PASS -- TEST 'control_wam_intel' [45:14, 00:16](334 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:44]
+PASS -- TEST 'control_p8_faster_intel' [45:09, 01:37](1559 MB)
+PASS -- TEST 'regional_control_faster_intel' [44:53, 00:59](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:19, 03:57]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:52, 00:49](758 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:52, 00:44](762 MB)
+PASS -- TEST 'control_stochy_debug_intel' [44:52, 01:13](764 MB)
+PASS -- TEST 'control_lndp_debug_intel' [44:10, 00:27](763 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [43:02, 01:06](798 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [41:16, 00:58](806 MB)
+PASS -- TEST 'control_ras_debug_intel' [41:12, 00:27](776 MB)
+PASS -- TEST 'control_diag_debug_intel' [41:12, 00:57](817 MB)
+PASS -- TEST 'control_debug_p8_intel' [39:45, 00:37](1590 MB)
+PASS -- TEST 'regional_debug_intel' [39:42, 00:20](668 MB)
+PASS -- TEST 'rap_control_debug_intel' [38:18, 01:00](1144 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [38:17, 00:59](1137 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [38:10, 00:21](1140 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [37:44, 00:34](1141 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:39, 00:27](1148 MB)
+PASS -- TEST 'rap_diag_debug_intel' [37:36, 00:31](1234 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [37:19, 01:09](1142 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [37:17, 00:44](1143 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [36:41, 01:11](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:39, 01:13](1146 MB)
+PASS -- TEST 'rap_noah_debug_intel' [36:25, 00:16](1140 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [35:41, 00:26](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:41, 00:43](1144 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [35:37, 00:18](1139 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [35:06, 00:31](1147 MB)
+PASS -- TEST 'rap_flake_debug_intel' [35:03, 00:31](1144 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:15, 01:19](1151 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:24, 02:53]
+PASS -- TEST 'control_wam_debug_intel' [33:27, 01:10](378 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [39:38, 08:08]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:42, 00:28](1019 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:41, 01:59](855 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [29:41, 02:11](852 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:41, 01:51](910 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:42, 01:10](905 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:41, 02:03](854 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:04, 01:18](747 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:39, 00:46](732 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:10, 10:22]
+PASS -- TEST 'conus13km_control_intel' [15:17, 01:21](1057 MB)
+PASS -- TEST 'conus13km_2threads_intel' [07:17, 01:13](1042 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:06, 00:40](939 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:57, 08:13]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:28, 00:28](876 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [45:51, 02:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [21:24, 01:14](1021 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:24, 00:59](1021 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:24, 00:31](1115 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:24, 00:31](789 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [21:25, 00:43](1093 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:24, 00:25](1182 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [43:49, 02:55]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:32, 00:36](1044 MB)
+
+PASS -- COMPILE 'hafsw_intel' [48:58, 09:12]
+PASS -- TEST 'hafs_regional_atm_intel' [15:12, 01:25](676 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:12, 00:43](1023 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:10, 01:55](722 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 01:55](752 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 01:20](779 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:10, 01:35](443 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:11, 01:24](466 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [15:11, 00:38](340 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:14, 02:17](407 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:10, 00:55](475 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:10, 01:22](473 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:12, 01:09](537 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:11, 00:48](369 MB)
+PASS -- TEST 'gnv1_nested_intel' [15:11, 01:35](737 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [43:47, 03:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:21, 01:14](577 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [49:56, 09:37]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:04, 01:04](590 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:04, 01:30](755 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [48:53, 09:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:16, 01:12](753 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [48:55, 09:02]
+PASS -- TEST 'hafs_regional_docn_intel' [14:10, 01:58](714 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:10, 01:55](698 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:08, 00:31](897 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:42, 08:44]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:30, 01:08](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:54, 00:35](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:21, 01:08](643 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:47, 00:51](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:41, 00:54](644 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:04, 00:37](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:04, 00:35](764 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 00:32](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [03:30, 00:52](646 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [02:51, 01:41](631 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 00:40](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [02:10, 00:48](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [02:08, 00:49](2020 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:31, 08:33]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [01:41, 00:13](763 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:14, 00:54]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [20:11, 00:55](271 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [20:11, 00:41](412 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [14:38, 00:24](410 MB)
+
+PASS -- COMPILE 'atml_intel' [10:31, 09:39]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:42, 01:55](1602 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [00:42, 01:37](1608 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [46:55, 00:26](810 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:29, 08:42]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [00:35, 01:35](1603 MB)
+
+PASS -- COMPILE 'atmwm_intel' [09:29, 08:42]
+PASS -- TEST 'control_atmwav_intel' [00:00, 01:10](603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:28, 08:32]
+PASS -- TEST 'atmaero_control_p8_intel' [59:41, 01:06](2916 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [58:55, 01:02](2978 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:47, 00:49](2991 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:28, 08:20]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:35, 03:03]
+PASS -- TEST 'regional_atmaq_debug_intel' [58:22, 01:15](4509 MB)
SYNOPSIS:
-Starting Date/Time: 20240220 12:55:39
-Ending Date/Time: 20240220 15:02:33
-Total Time: 02h:07m:09s
+Starting Date/Time: 20240402 16:36:40
+Ending Date/Time: 20240402 18:32:17
+Total Time: 01h:55m:55s
Compiles Completed: 37/37
Tests Completed: 176/176
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 4b2e1b676d..fb330537da 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,9 +9,9 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,278 +47,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_230915
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_62571
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:10, 15:34]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:32, 07:09](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:50]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:35, 13:57](1700 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:46, 14:25](1813 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:05, 06:43](951 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:55, 15:17](1666 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [24:11, 23:03]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:29, 25:04](1697 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:09, 16:36]
-PASS -- TEST 'cpld_control_p8_intel' [11:54, 08:05](3100 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:01, 07:55](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:31](3158 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:47, 08:05](3127 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 05:02](3179 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:53, 06:29](3412 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:38, 07:54](3100 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 06:56](3023 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:01, 07:48](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:01, 10:28](3273 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 07:48](3607 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:30, 13:22](4039 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:00, 09:48](4346 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:46, 07:35](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:10, 15:27]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:48, 04:56](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 05:18](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [12:08, 10:10]
-PASS -- TEST 'cpld_debug_p8_intel' [13:00, 09:51](3130 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:13]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:19, 06:05](1697 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:10, 14:26]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:47, 05:13](1731 MB)
-
-PASS -- COMPILE 's2s_intel' [16:10, 14:08]
-PASS -- TEST 'cpld_control_c48_intel' [09:14, 06:54](2662 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:36]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:36, 08:23](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 21:53]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:15, 14:52](1703 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:37, 07:14](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:14, 17:38](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:09, 10:32]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:51, 26:49](1710 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:09, 13:42]
-PASS -- TEST 'control_flake_intel' [05:30, 04:02](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 02:48](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 02:58](626 MB)
-PASS -- TEST 'control_latlon_intel' [04:38, 02:54](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 02:55](623 MB)
-PASS -- TEST 'control_c48_intel' [07:55, 05:35](727 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:11, 05:36](722 MB)
-PASS -- TEST 'control_c192_intel' [12:23, 09:27](738 MB)
-PASS -- TEST 'control_c384_intel' [19:32, 16:26](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:18, 14:13](1183 MB)
-PASS -- TEST 'control_stochy_intel' [03:36, 01:55](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:02, 01:06](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:33, 01:59](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:41, 02:34](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:30, 02:36](623 MB)
-PASS -- TEST 'control_p8_intel' [07:53, 03:37](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:55, 03:17](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:53, 03:14](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:40, 01:45](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:46, 03:15](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:40, 01:57](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:45, 03:22](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:57, 02:46](1678 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:12, 05:15](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 04:15](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:59, 03:49](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:53, 04:16](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:09, 04:45](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:56, 02:33](789 MB)
-PASS -- TEST 'regional_decomp_intel' [07:09, 04:58](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:22, 03:00](757 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:51, 04:45](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:00, 04:56](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:44](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:42, 06:08](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:09, 12:24]
-PASS -- TEST 'rap_control_intel' [09:29, 06:47](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:12, 03:56](1186 MB)
-PASS -- TEST 'rap_decomp_intel' [10:37, 07:04](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:29, 06:12](1096 MB)
-PASS -- TEST 'rap_restart_intel' [06:08, 03:39](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:29, 06:44](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:02](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:08, 05:48](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:21, 03:46](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 03:47](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:21, 03:08](1084 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:49, 01:57](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:31, 06:39](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:02, 07:53](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:01, 07:53](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:09, 12:11]
-PASS -- TEST 'control_csawmg_intel' [09:35, 06:42](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:14, 06:43](691 MB)
-PASS -- TEST 'control_ras_intel' [05:44, 03:51](657 MB)
-
-PASS -- COMPILE 'wam_intel' [13:09, 11:34]
-PASS -- TEST 'control_wam_intel' [04:34, 02:09](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:09, 15:14]
-PASS -- TEST 'control_p8_faster_intel' [06:39, 03:51](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:09, 04:43](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:09, 10:50]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 02:53](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:41, 02:52](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:14, 03:12](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:11, 03:04](789 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:23](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:25](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:04, 03:11](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:20, 03:00](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:00, 03:16](1622 MB)
-PASS -- TEST 'regional_debug_intel' [19:03, 16:29](635 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:42, 05:07](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:39, 04:58](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 05:06](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:31, 05:15](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:30, 05:08](1167 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:16](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:34, 05:18](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 05:26](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:50](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:57](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:30, 05:18](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:50, 05:17](1165 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 08:13](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:03](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:49, 05:52](1169 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:11](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:12, 08:36](1172 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:11, 08:25]
-PASS -- TEST 'control_wam_debug_intel' [06:34, 04:59](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:14, 12:18]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:44](1051 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:44](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 05:23](947 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:03, 02:40](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:51, 03:30](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:12](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:40](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:18, 21:15]
-PASS -- TEST 'conus13km_control_intel' [04:02, 02:01](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:03](1072 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:30](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:09, 13:46]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 04:12](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:11, 08:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 05:08](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:58](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:07, 13:59](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:13, 14:14](803 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:57, 08:09](1112 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:01](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:09, 08:18]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 05:19](1065 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:09, 16:32]
-PASS -- TEST 'hafs_regional_atm_intel' [08:11, 05:17](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 04:33](1057 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:31](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 11:35](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:52, 12:52](797 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 05:25](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:45](496 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:15, 18:20]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 08:03](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 22:25]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:45, 14:26](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:33, 14:30](1813 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:47](948 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:47, 15:10](1665 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 12:04]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [31:51, 24:26](1703 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:10, 17:07]
+PASS -- TEST 'cpld_control_p8_intel' [18:00, 08:08](3101 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:00, 08:02](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:25, 05:02](3159 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [20:51, 09:03](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 05:09](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 06:36](3413 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [19:14, 08:19](3098 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 07:07](3023 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:51, 08:52](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [22:58, 10:29](3269 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:24, 07:23](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [27:02, 13:08](4039 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:07, 09:16](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [16:58, 07:48](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:10, 17:17]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 05:20](1684 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:36, 05:18](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:43]
+PASS -- TEST 'cpld_debug_p8_intel' [17:06, 10:02](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:17]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:56, 05:59](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [17:10, 15:30]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:39, 05:19](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [17:09, 15:32]
+PASS -- TEST 'cpld_control_c48_intel' [09:16, 06:54](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:11, 21:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:19](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 21:27]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:28, 15:05](1707 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 07:42](1002 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:36, 17:44](1681 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 11:45]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:05, 26:56](1710 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:09, 14:00]
+PASS -- TEST 'control_flake_intel' [08:50, 03:44](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [08:17, 02:32](620 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:58, 02:36](627 MB)
+PASS -- TEST 'control_latlon_intel' [07:48, 02:35](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:05, 02:36](623 MB)
+PASS -- TEST 'control_c48_intel' [11:48, 05:38](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:48, 05:41](728 MB)
+PASS -- TEST 'control_c192_intel' [14:03, 08:54](739 MB)
+PASS -- TEST 'control_c384_intel' [22:25, 16:46](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:04, 14:13](1184 MB)
+PASS -- TEST 'control_stochy_intel' [07:46, 01:50](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:51, 01:20](430 MB)
+PASS -- TEST 'control_lndp_intel' [07:46, 01:48](628 MB)
+PASS -- TEST 'control_iovr4_intel' [07:00, 02:19](623 MB)
+PASS -- TEST 'control_iovr5_intel' [07:42, 03:00](623 MB)
+PASS -- TEST 'control_p8_intel' [06:03, 03:21](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:29, 04:07](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:36, 03:22](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:36, 01:48](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:36, 03:19](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:15](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:26](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:32, 03:02](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:40](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:38, 04:13](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:39, 03:42](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:15, 03:49](1616 MB)
+PASS -- TEST 'regional_control_intel' [06:42, 04:39](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:39, 02:51](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:42, 04:56](614 MB)
+PASS -- TEST 'regional_2threads_intel' [04:36, 03:02](757 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:06, 04:38](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:38](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:37](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:43, 06:14](1590 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:09, 12:38]
+PASS -- TEST 'rap_control_intel' [08:59, 06:52](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:59, 04:03](1183 MB)
+PASS -- TEST 'rap_decomp_intel' [10:02, 07:11](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:52, 06:07](1095 MB)
+PASS -- TEST 'rap_restart_intel' [06:07, 03:25](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:57](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 07:12](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:00, 05:01](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:04, 03:58](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:08](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 03:10](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:16](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:56, 06:44](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 08:14](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:35, 07:50](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:09, 12:36]
+PASS -- TEST 'control_csawmg_intel' [08:43, 06:43](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:36, 06:57](691 MB)
+PASS -- TEST 'control_ras_intel' [05:23, 03:50](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:12, 11:50]
+PASS -- TEST 'control_wam_intel' [04:30, 02:25](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:06]
+PASS -- TEST 'control_p8_faster_intel' [06:05, 03:13](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:47, 04:28](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:08, 10:37]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:38, 02:48](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:51](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:09](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:22, 03:03](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:58, 04:17](826 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:52, 04:17](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:04, 03:08](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:38, 02:53](844 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:47, 03:07](1622 MB)
+PASS -- TEST 'regional_debug_intel' [18:41, 16:15](637 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:21, 04:59](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:50](1166 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 05:05](1169 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:53](1169 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:01](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:26](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 05:16](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:12](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:30, 05:20](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:32](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:11](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:30](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:26](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:29](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:29, 06:23](1170 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:27, 05:15](1168 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:07, 08:34](1171 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:07, 07:42]
+PASS -- TEST 'control_wam_debug_intel' [07:30, 05:10](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 12:57]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:49](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:51, 05:55](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:00, 03:43](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:14](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:45](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 03:31](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:53, 04:25](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:43](763 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 14:35]
+PASS -- TEST 'conus13km_control_intel' [04:59, 02:32](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:07](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:25](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:08]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:54, 04:22](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:09, 09:20]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:49](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:54](1045 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:47, 14:30](1127 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:26](802 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:27](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:03](1193 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:09, 09:17]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:13, 17:29]
+PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:17](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 04:28](1056 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:33, 07:52](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:55, 11:49](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:37, 12:54](805 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:23](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:40](495 MB)
PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:54](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:46, 08:00](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:52](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:08, 03:34](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:05, 04:40](571 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:42](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:16, 04:05](768 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:05](588 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:10, 18:37]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:17, 07:41](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:44, 07:45](785 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:10, 18:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:14, 05:59](785 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [27:12, 25:36]
-PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:04](745 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:12](728 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:17, 20:13](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:13, 11:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:35](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:33](746 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:29](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:33](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:33](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:33](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:02](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:06](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:34](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:38](2014 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:45]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:26, 05:27](740 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [16:12, 14:32]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:39](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 03:29]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:06, 03:43](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:40, 01:56](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 01:26](456 MB)
-
-PASS -- COMPILE 'atml_intel' [24:19, 22:31]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:58, 08:51](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:30, 08:14](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:42, 04:01](835 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:11, 14:03]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:31, 02:15](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [15:09, 13:54]
-PASS -- TEST 'control_atmwav_intel' [05:18, 02:02](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:14, 13:52]
-PASS -- TEST 'atmaero_control_p8_intel' [10:21, 07:14](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:22, 07:29](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:11, 07:51](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:12, 14:04]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:09, 10:26]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 19:00](4476 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:04](433 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:50](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:01, 03:42](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:10, 04:42](571 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:44](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:14, 04:03](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:11, 11:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:06, 12:53](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:29, 07:40](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 07:43](784 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:10, 17:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 06:00](788 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:16, 15:08]
+PASS -- TEST 'hafs_regional_docn_intel' [09:49, 06:10](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:09](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:14, 20:10](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:10, 11:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:38](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 01:37](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:27](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:28](635 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:29](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:35](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:57, 06:16](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:05](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 04:33](2012 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:36](2014 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:09, 07:22]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:26](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:09, 11:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:32, 02:34](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:09, 03:18]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:29, 02:00](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 01:39](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 01:04](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:12, 15:06]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:37, 07:45](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:35, 07:56](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 04:47](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:09, 14:30]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:23](1648 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:10, 14:20]
+PASS -- TEST 'control_atmwav_intel' [04:45, 02:02](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:11, 12:59]
+PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:29](2942 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:08, 07:06](3010 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:59, 07:14](3016 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:11, 13:28]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:09, 09:43]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:35, 18:25](4481 MB)
SYNOPSIS:
-Starting Date/Time: 20240401 08:38:19
-Ending Date/Time: 20240401 10:13:48
-Total Time: 01h:36m:31s
+Starting Date/Time: 20240402 02:13:47
+Ending Date/Time: 20240402 03:53:52
+Total Time: 01h:40m:57s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 0fddf8b493..45d7d38cee 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,19 +1,19 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -24,374 +24,434 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_4129005
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3566098
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [12:49, 12:49]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:27, 05:36](3164 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:24, 16:23]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:45, 17:02](1739 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:36, 17:46](2013 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 08:10](1105 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 19:15](1649 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:51, 04:50]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 22:29](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:54, 12:52]
-PASS -- TEST 'cpld_control_p8_intel' [06:41, 05:51](3216 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:01, 06:08](3191 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:26, 03:29](3250 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:41, 05:47](3244 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:25, 03:26](3277 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:17, 05:30](3552 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3204 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:29, 04:43](3063 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:40, 05:48](3203 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:36, 10:06](3354 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:06](3627 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [14:45, 09:38](4065 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:31, 06:04](4344 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:42, 05:53](3186 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:22, 12:22]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:32, 04:46](1728 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:04, 04:17](1786 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:35, 04:34]
-PASS -- TEST 'cpld_debug_p8_intel' [09:13, 08:22](3221 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:17, 04:16]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:33, 05:46](1769 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:35]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:07, 04:19](1773 MB)
-
-PASS -- COMPILE 's2s_intel' [11:33, 11:32]
-PASS -- TEST 'cpld_control_c48_intel' [10:00, 09:30](2821 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:39, 16:38]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:29, 05:39](3209 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:29]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:58, 17:14](1742 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:56, 08:03](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:24, 19:48](1676 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:15, 04:14]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:07](1711 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:11, 11:11]
-PASS -- TEST 'control_flake_intel' [03:33, 03:20](708 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:25](656 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:41, 02:29](663 MB)
-PASS -- TEST 'control_latlon_intel' [02:37, 02:26](633 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:42, 02:27](651 MB)
-PASS -- TEST 'control_c48_intel' [06:37, 06:25](882 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:35, 06:23](879 MB)
-PASS -- TEST 'control_c192_intel' [09:28, 09:05](852 MB)
-PASS -- TEST 'control_c384_intel' [10:01, 09:03](1294 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:25, 08:26](1405 MB)
-PASS -- TEST 'control_stochy_intel' [01:49, 01:38](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](506 MB)
-PASS -- TEST 'control_lndp_intel' [01:43, 01:33](657 MB)
-PASS -- TEST 'control_iovr4_intel' [02:38, 02:28](661 MB)
-PASS -- TEST 'control_iovr5_intel' [02:37, 02:26](654 MB)
-PASS -- TEST 'control_p8_intel' [03:39, 03:00](1631 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:54](1636 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:30, 02:52](1633 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:14, 01:40](866 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:27, 02:54](1611 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:08, 01:34](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:35, 03:04](1618 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:15, 02:44](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:45, 05:15](1608 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:32, 03:55](1685 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:39, 02:57](1623 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:04, 03:28](1632 MB)
-PASS -- TEST 'regional_control_intel' [05:35, 05:09](853 MB)
-PASS -- TEST 'regional_restart_intel' [03:05, 02:42](1018 MB)
-PASS -- TEST 'regional_decomp_intel' [05:55, 05:28](853 MB)
-PASS -- TEST 'regional_2threads_intel' [03:38, 03:13](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:31, 05:06](1367 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:08](842 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 05:13](853 MB)
-PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1903 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:24, 10:23]
-PASS -- TEST 'rap_control_intel' [08:05, 07:43](1112 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 04:10](1306 MB)
-PASS -- TEST 'rap_decomp_intel' [08:31, 08:09](1043 MB)
-PASS -- TEST 'rap_2threads_intel' [07:40, 07:14](1184 MB)
-PASS -- TEST 'rap_restart_intel' [04:27, 04:02](1108 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:02, 07:37](1106 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1047 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 05:47](1134 MB)
-PASS -- TEST 'hrrr_control_intel' [04:14, 03:56](1047 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 04:14](1008 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:37](1117 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:23, 02:08](1007 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:00, 07:34](1103 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:29, 09:16](1986 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:17, 09:05](2063 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:13, 10:12]
-PASS -- TEST 'control_csawmg_intel' [06:25, 06:00](729 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:18, 05:54](755 MB)
-PASS -- TEST 'control_ras_intel' [03:23, 03:15](748 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:35, 03:34]
-PASS -- TEST 'control_csawmg_gnu' [08:39, 08:11](548 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:38, 08:10](550 MB)
-
-PASS -- COMPILE 'wam_intel' [10:04, 10:04]
-PASS -- TEST 'control_wam_intel' [02:12, 02:04](658 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:42, 10:41]
-PASS -- TEST 'control_p8_faster_intel' [03:16, 02:39](1619 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:04, 04:41](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:51, 04:50]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:54, 02:41](820 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:56, 02:40](819 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:58](823 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:02, 02:54](799 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:29, 04:06](871 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:27, 04:03](865 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:55, 02:47](830 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:02, 02:47](876 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:22, 02:54](1625 MB)
-PASS -- TEST 'regional_debug_intel' [17:39, 17:10](843 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:10, 04:58](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:50](1204 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:45](1211 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:06, 04:56](1192 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:03, 04:54](1218 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:25, 05:01](1295 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:07, 04:56](1206 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:10, 05:00](1211 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:04, 04:54](1211 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:05, 04:54](1214 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:05, 04:51](1205 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:06, 04:54](1210 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:03](1205 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:04, 04:53](1197 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 06:08](1208 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:06, 04:53](1206 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:02, 08:39](1215 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:37, 02:35]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:43, 02:12](531 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:34, 02:12](532 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15]
-PASS -- TEST 'control_wam_debug_intel' [05:07, 04:58](521 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 10:09]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1166 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 06:25](1056 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:40, 03:20](991 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:29, 06:05](1096 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:23, 03:05](967 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:49, 03:32](944 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 04:49](1038 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:04, 01:50](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:22, 12:22]
-PASS -- TEST 'conus13km_control_intel' [02:41, 02:08](1183 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:16, 00:51](1126 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:50, 01:25](1092 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 10:05]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:31, 04:08](992 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:54, 04:42](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:51, 04:42](1086 MB)
-PASS -- TEST 'conus13km_debug_intel' [14:36, 14:02](1220 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:30](933 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 08:02](1158 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:50, 14:23](1296 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:12, 03:12]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:03, 04:52](1127 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:41, 11:41]
-PASS -- TEST 'hafs_regional_atm_intel' [05:44, 04:51](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:50, 05:34](1105 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:59](830 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 13:20](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:02, 15:01](885 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 05:22](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:32, 06:33](518 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:06, 02:37](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:32, 07:03](462 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:01, 03:35](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:01, 03:29](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:37, 04:00](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:29, 01:11](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:25, 03:59](796 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:46, 03:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:18, 12:37](587 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:02, 12:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:17, 08:38](635 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 08:37](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:55, 11:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:59, 06:16](736 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:05, 11:05]
-PASS -- TEST 'hafs_regional_docn_intel' [07:08, 06:16](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:12, 06:20](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:45, 16:11](1211 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:23, 06:23]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:52, 02:46](1132 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:41, 01:35](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:57, 02:51](1004 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:50, 02:44](1005 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:44, 02:38](1010 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:44, 02:39](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1152 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:54, 02:49](992 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 06:11](1065 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 06:07](1045 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:45, 02:41](1146 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:58, 03:52](2440 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2497 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:59]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:11, 06:05](1059 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:41, 02:35](1151 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [00:59, 00:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:57, 00:41](260 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:44](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:38, 00:28](326 MB)
-
-PASS -- COMPILE 'atml_intel' [11:36, 11:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:52, 04:11](1595 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [04:51, 04:11](1610 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:43, 02:12](905 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:55, 10:55]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:45](1654 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:32, 10:32]
-PASS -- TEST 'control_atmwav_intel' [01:57, 01:39](682 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:24, 10:23]
-PASS -- TEST 'atmaero_control_p8_intel' [04:40, 04:00](3036 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:56](3101 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 05:02](3110 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:10, 10:10]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:24, 03:24]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:54, 23:29](4434 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:35, 03:35]
-PASS -- TEST 'control_c48_gnu' [10:54, 10:43](765 MB)
-PASS -- TEST 'control_stochy_gnu' [03:26, 03:16](509 MB)
-PASS -- TEST 'control_ras_gnu' [04:49, 04:41](521 MB)
-PASS -- TEST 'control_p8_gnu' [05:14, 04:33](1263 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:29](1270 MB)
-PASS -- TEST 'control_flake_gnu' [10:35, 10:26](554 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:35, 03:35]
-PASS -- TEST 'rap_control_gnu' [11:09, 10:49](854 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:09, 10:49](856 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:20, 09:56](952 MB)
-PASS -- TEST 'rap_restart_gnu' [05:52, 05:29](584 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:10, 10:46](857 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:24, 11:05](863 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:16, 07:53](590 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:47, 05:29](858 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:47, 05:29](848 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:58](931 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:55, 05:36](858 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:05, 02:50](572 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:05, 02:49](665 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:43](856 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:32, 03:32]
-PASS -- TEST 'control_diag_debug_gnu' [01:50, 01:34](554 MB)
-PASS -- TEST 'regional_debug_gnu' [10:43, 10:17](568 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:44, 02:32](870 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:37, 02:29](872 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:43, 02:34](874 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:37](876 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:08, 02:48](954 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:14, 04:04](874 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:43, 02:33](872 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:44, 02:33](873 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:36](504 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:00, 01:51](499 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:05, 01:39](1264 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:44, 02:34](873 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:03, 02:53](876 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:38, 04:16](878 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:33, 03:33]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:43, 09:25](714 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:10, 04:54](715 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:49, 08:28](764 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:28](756 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:11, 04:55](709 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:16, 06:55](561 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:44, 02:30](547 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:41, 03:05](888 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [05:47, 05:21](894 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:14, 01:48](560 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:17, 05:16]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:07, 05:41](741 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:32, 03:32]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:41, 02:30](724 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:36, 02:27](721 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:20, 06:49](894 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:39, 07:10](583 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:08, 07:43](899 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 07:01](965 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:32, 03:32]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:34](748 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:36, 14:36]
-
-PASS -- COMPILE 's2s_gnu' [14:27, 14:26]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:33, 06:46](1356 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:28, 02:28]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:22, 14:22]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:21, 26:38](1310 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:24, 13:45](1333 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:11]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:11, 03:05](699 MB)
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:59]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:23, 05:27](3192 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:04]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:59, 17:05](1756 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:15, 17:43](2035 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:08](1124 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:12](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:08, 04:34]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:08, 22:31](1703 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:12, 12:58]
+PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:45](3228 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 05:46](3229 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:23, 03:19](3264 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:44](3253 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:20, 03:22](3281 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:15, 05:29](3564 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:14, 05:42](3218 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:17, 04:46](3086 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:42](3229 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:14, 10:07](3350 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:29, 05:59](3627 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [17:32, 09:19](4132 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:31, 05:53](4367 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:22](3191 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:11, 12:07]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 04:42](1747 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:17](1799 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:09, 04:34]
+PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:22](3267 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:09, 04:13]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:37](1753 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 11:26]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:45](1782 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 11:25]
+PASS -- TEST 'cpld_control_c48_intel' [11:44, 09:19](2833 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:13, 16:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:03, 05:17](3224 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 15:35]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:01, 17:12](1780 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:07, 08:01](1183 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:00, 19:38](1687 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:58, 24:39](1733 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:10, 11:09]
+PASS -- TEST 'control_flake_intel' [05:20, 03:18](707 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:23](659 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:29](662 MB)
+PASS -- TEST 'control_latlon_intel' [04:21, 02:25](655 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:30](657 MB)
+PASS -- TEST 'control_c48_intel' [08:23, 06:21](872 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:21](876 MB)
+PASS -- TEST 'control_c192_intel' [11:36, 09:05](855 MB)
+PASS -- TEST 'control_c384_intel' [12:27, 09:02](1296 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:34, 07:48](1396 MB)
+PASS -- TEST 'control_stochy_intel' [04:18, 01:39](659 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:20, 00:58](508 MB)
+PASS -- TEST 'control_lndp_intel' [04:17, 01:30](659 MB)
+PASS -- TEST 'control_iovr4_intel' [05:18, 02:24](653 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:25](653 MB)
+PASS -- TEST 'control_p8_intel' [04:59, 02:53](1623 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 02:53](1628 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:55](1625 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:46, 01:34](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:52, 02:50](1626 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:33](938 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:48, 02:56](1627 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:48, 02:41](1717 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:42, 05:10](1639 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 03:56](1694 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:51, 02:55](1641 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:49, 03:24](1648 MB)
+PASS -- TEST 'regional_control_intel' [07:32, 05:08](853 MB)
+PASS -- TEST 'regional_restart_intel' [04:34, 02:42](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [07:30, 05:26](851 MB)
+PASS -- TEST 'regional_2threads_intel' [05:40, 03:11](841 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:38, 05:11](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:05](856 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:07](852 MB)
+PASS -- TEST 'regional_wofs_intel' [08:39, 06:42](1914 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:10, 10:27]
+PASS -- TEST 'rap_control_intel' [09:41, 07:46](1109 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:00](1298 MB)
+PASS -- TEST 'rap_decomp_intel' [10:30, 08:06](1041 MB)
+PASS -- TEST 'rap_2threads_intel' [09:33, 07:11](1187 MB)
+PASS -- TEST 'rap_restart_intel' [06:37, 04:01](1109 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:39, 07:39](1108 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:06](1043 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 05:48](1139 MB)
+PASS -- TEST 'hrrr_control_intel' [06:28, 03:55](1050 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:04](1039 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:38](1117 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1001 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:34](1108 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:11](1999 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 08:54](2060 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:09, 10:14]
+PASS -- TEST 'control_csawmg_intel' [08:39, 05:57](758 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:37, 05:51](757 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:12](745 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:07, 03:33]
+PASS -- TEST 'control_csawmg_gnu' [10:36, 08:03](549 MB)
+PASS -- TEST 'control_csawmgt_gnu' [10:38, 08:08](547 MB)
+
+PASS -- COMPILE 'wam_intel' [12:09, 09:54]
+PASS -- TEST 'control_wam_intel' [04:17, 02:02](657 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:09, 10:50]
+PASS -- TEST 'control_p8_faster_intel' [05:48, 02:38](1633 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:37, 04:43](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 04:34]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 02:40](818 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:40](820 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:16, 03:06](824 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:40](822 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:04](875 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:33, 04:05](872 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:16, 02:47](836 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:25, 02:47](877 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:39, 02:50](1648 MB)
+PASS -- TEST 'regional_debug_intel' [18:44, 17:02](835 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:21, 04:49](1212 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:21, 04:44](1207 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:08](1208 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 04:53](1212 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 04:56](1217 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:06](1297 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:53](1217 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:56](1217 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:57](1211 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:50](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:20, 04:48](1209 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:56](1213 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 07:50](1213 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:50](1210 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:50](1219 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:21, 04:51](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:27](1217 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:07, 02:34]
+PASS -- TEST 'control_csawmg_debug_gnu' [05:39, 02:13](530 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:36, 02:08](535 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:08]
+PASS -- TEST 'control_wam_debug_intel' [07:18, 04:58](538 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 09:58]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:48](1162 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:23](1060 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 03:23](991 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:03](1092 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:30, 03:06](968 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:43](926 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:33, 04:48](1034 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:54](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19]
+PASS -- TEST 'conus13km_control_intel' [04:51, 02:03](1208 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:51](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:35, 01:12](1108 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 09:55]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:10](990 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:09, 03:14]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:19, 04:48](1089 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:43](1086 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:45, 14:43](1227 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:44, 14:36](939 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 07:56](1156 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:06](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:11]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 04:53](1131 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:10, 11:30]
+PASS -- TEST 'hafs_regional_atm_intel' [07:08, 04:50](746 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:52](1119 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 06:52](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:23](870 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:14](883 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:48, 05:28](505 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 06:34](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:41](375 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:06](481 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 03:38](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:25](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 03:57](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:09](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:35, 04:00](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:09, 03:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:45, 12:47](580 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:10, 12:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:38](671 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:58, 08:40](742 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 11:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:54, 06:29](727 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:09, 11:10]
+PASS -- TEST 'hafs_regional_docn_intel' [09:07, 06:19](833 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:21](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:01](1221 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:40](1169 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:14, 01:38](1100 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:35](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1035 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:35](1023 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:13, 02:38](1145 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:37](1152 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1025 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 06:01](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:01](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:11, 02:37](1148 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 04:23](2424 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:46](2436 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 02:51]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:12](1078 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:41](1136 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:24, 00:42](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:45](330 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:18, 00:29](323 MB)
+
+PASS -- COMPILE 'atml_intel' [13:09, 11:30]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 04:04](1629 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:49, 04:05](1608 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:13](906 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:09, 10:49]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:41](1681 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:09, 10:45]
+PASS -- TEST 'control_atmwav_intel' [04:25, 01:46](678 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:09, 10:30]
+PASS -- TEST 'atmaero_control_p8_intel' [06:50, 03:59](3039 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:50, 04:52](3109 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:37, 05:04](3117 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:09, 10:12]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:08, 03:34]
+FAIL TO COMPARE -- TEST 'regional_atmaq_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'atm_gnu' [06:08, 03:37]
+PASS -- TEST 'control_c48_gnu' [12:20, 10:38](765 MB)
+PASS -- TEST 'control_stochy_gnu' [06:17, 03:26](512 MB)
+PASS -- TEST 'control_ras_gnu' [07:16, 04:46](516 MB)
+PASS -- TEST 'control_p8_gnu' [06:49, 04:37](1266 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [07:46, 04:32](1270 MB)
+PASS -- TEST 'control_flake_gnu' [13:20, 10:39](553 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:07, 03:54]
+PASS -- TEST 'rap_control_gnu' [13:29, 10:47](857 MB)
+PASS -- TEST 'rap_decomp_gnu' [13:30, 10:56](859 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:35, 09:48](948 MB)
+PASS -- TEST 'rap_restart_gnu' [07:33, 05:29](586 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [15:31, 13:33](860 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 10:54](859 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:33, 07:59](588 MB)
+PASS -- TEST 'hrrr_control_gnu' [07:29, 05:29](860 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:29, 05:29](842 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:25, 04:59](931 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [07:24, 05:23](859 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [05:19, 02:49](576 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:22, 02:49](667 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [12:40, 10:22](857 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:44]
+PASS -- TEST 'control_diag_debug_gnu' [03:21, 01:36](551 MB)
+PASS -- TEST 'regional_debug_gnu' [13:37, 11:18](565 MB)
+PASS -- TEST 'rap_control_debug_gnu' [05:18, 02:35](877 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 02:36](873 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:15, 02:32](875 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:15, 02:33](875 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [05:29, 02:45](953 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:01](870 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:16, 02:38](874 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:31](871 MB)
+PASS -- TEST 'control_ras_debug_gnu' [04:15, 01:34](503 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:43](500 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:35, 01:37](1260 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:37](869 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [05:16, 02:51](879 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:29, 04:17](877 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:08, 01:54]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:07, 03:34]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:25, 09:21](714 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:24, 04:52](719 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:31, 08:32](771 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:28, 04:33](757 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:23, 05:12](718 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:30, 06:58](553 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:32](549 MB)
+PASS -- TEST 'conus13km_control_gnu' [05:47, 03:12](887 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [07:39, 05:51](888 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:38, 01:46](565 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:28]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:33, 05:43](747 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:07, 03:53]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:17, 02:33](718 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:15, 02:24](724 MB)
+PASS -- TEST 'conus13km_debug_gnu' [09:43, 06:43](898 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:39, 06:51](590 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [09:35, 07:12](903 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:35, 06:56](967 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:40]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:35](750 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:11, 14:29]
+
+PASS -- COMPILE 's2s_gnu' [16:09, 14:25]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:59, 07:32](1359 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:29]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 14:29]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:54, 21:54](1326 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:32]
+FAIL TO COMPARE -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 14:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:12, 03:00](697 MB)
SYNOPSIS:
-Starting Date/Time: 20240331 17:03:20
-Ending Date/Time: 20240331 19:10:50
-Total Time: 02h:07m:57s
+Starting Date/Time: 20240402 05:54:51
+Ending Date/Time: 20240402 08:38:48
+Total Time: 02h:44m:12s
Compiles Completed: 55/55
-Tests Completed: 244/244
+Tests Completed: 242/244
+Failed Tests:
+* TEST regional_atmaq_debug_intel: FAIL TO COMPARE
+-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2175/ufs-weather-model/tests/logs/log_hera/rt_regional_atmaq_debug_intel.log
+* TEST cpld_debug_pdlib_p8_gnu: FAIL TO COMPARE
+-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2175/ufs-weather-model/tests/logs/log_hera/rt_cpld_debug_pdlib_p8_gnu.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERA REGRESSION TESTING LOG====
+====START OF HERA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+8db4e9acc2aed6e1901730c858d54815cede102c
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2778129
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf.fails
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:07, 03:40]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 20:59](4439 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:57](1333 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240403 15:37:29
+Ending Date/Time: 20240403 16:07:53
+Total Time: 00h:30m:29s
+Compiles Completed: 2/2
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index fa70ca9657..76ec536f18 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,9 +9,9 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,369 +47,462 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2259286
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1160764
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:05, 12:48]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:32](1892 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 20:24]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:55, 13:17](1775 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 13:57](2177 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:15, 06:23](1174 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:14, 15:07](1679 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:12]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:12, 20:48](1735 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:05, 12:56]
-PASS -- TEST 'cpld_control_p8_intel' [09:51, 07:51](2090 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:03, 07:28](2071 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:07](1966 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 07:38](1973 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:13, 04:19](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:47, 09:02](2497 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:47, 07:52](2063 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:53, 06:26](1887 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:03, 07:32](2091 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:37, 15:36](2816 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 05:42](2920 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:47, 08:34](3635 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:39, 05:15](3614 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:43, 04:59](2057 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:05, 11:44]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 07:10](1781 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:47, 04:00](1816 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:44]
-PASS -- TEST 'cpld_debug_p8_intel' [08:58, 06:55](2127 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:22]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:47, 04:51](1789 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:16]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:43, 04:00](1814 MB)
-
-PASS -- COMPILE 's2s_intel' [10:05, 08:04]
-PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:16](2824 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:05, 11:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 07:21](2072 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:06, 17:16]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:33, 13:39](1799 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:34](1274 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:12](1737 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 21:28](1775 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:53]
-PASS -- TEST 'control_flake_intel' [04:15, 02:54](714 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:06](663 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:09](670 MB)
-PASS -- TEST 'control_latlon_intel' [04:14, 02:06](670 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:09](662 MB)
-PASS -- TEST 'control_c48_intel' [07:20, 05:45](848 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:20, 05:50](860 MB)
-PASS -- TEST 'control_c192_intel' [09:27, 07:51](963 MB)
-PASS -- TEST 'control_c384_intel' [09:58, 08:03](1438 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:39, 07:08](1519 MB)
-PASS -- TEST 'control_stochy_intel' [03:14, 01:34](671 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:50](533 MB)
-PASS -- TEST 'control_lndp_intel' [03:15, 01:22](663 MB)
-PASS -- TEST 'control_iovr4_intel' [04:17, 02:06](660 MB)
-PASS -- TEST 'control_iovr5_intel' [03:20, 02:04](664 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:30](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:45, 02:32](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 02:26](1651 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:20, 01:26](919 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:29](1634 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:25](988 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1632 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:40, 02:17](1730 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:08, 04:25](1629 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:50, 03:23](1703 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:47, 02:30](1645 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:53, 02:55](1652 MB)
-PASS -- TEST 'regional_control_intel' [06:43, 04:29](959 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:33](1099 MB)
-PASS -- TEST 'regional_decomp_intel' [06:42, 04:41](947 MB)
-PASS -- TEST 'regional_2threads_intel' [04:47, 02:55](915 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:37, 04:21](1486 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:24](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:33, 04:27](960 MB)
-PASS -- TEST 'regional_wofs_intel' [07:29, 05:36](2074 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:13]
-PASS -- TEST 'rap_control_intel' [08:51, 06:47](1191 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 03:29](1409 MB)
-PASS -- TEST 'rap_decomp_intel' [08:56, 06:56](1139 MB)
-PASS -- TEST 'rap_2threads_intel' [08:34, 06:10](1359 MB)
-PASS -- TEST 'rap_restart_intel' [06:34, 03:24](1145 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:52, 06:35](1194 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:51, 06:51](1163 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:56, 04:54](1192 MB)
-PASS -- TEST 'hrrr_control_intel' [05:36, 03:22](1072 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:25](1038 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:07](1121 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:14, 01:54](1016 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:46, 06:23](1208 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:17, 07:41](2007 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:59, 07:25](2173 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:05, 06:47]
-PASS -- TEST 'control_csawmg_intel' [07:28, 05:20](831 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:21, 05:16](834 MB)
-PASS -- TEST 'control_ras_intel' [04:16, 02:50](805 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:05, 03:47]
-PASS -- TEST 'control_csawmg_gnu' [08:31, 06:25](810 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:50, 06:24](814 MB)
-
-PASS -- COMPILE 'wam_intel' [08:05, 06:59]
-PASS -- TEST 'control_wam_intel' [03:23, 01:50](779 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:05, 09:43]
-PASS -- TEST 'control_p8_faster_intel' [04:52, 02:17](1638 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:26, 04:06](955 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:44]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:17](820 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:11](829 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:34](836 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:15](834 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:23](874 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:36, 03:20](879 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:36, 02:15](832 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:30, 02:15](889 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:31, 02:20](1655 MB)
-PASS -- TEST 'regional_debug_intel' [15:25, 14:02](895 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:20, 04:04](1217 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:29, 03:55](1211 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 03:57](1229 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:14, 03:55](1224 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 03:54](1216 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:09](1312 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:53, 04:03](1219 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 04:01](1220 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:00](1219 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 03:58](1221 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:53](1212 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:59](1228 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 06:27](1225 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:14, 03:54](1211 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:05, 04:51](1232 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:17, 04:00](1214 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:50](1215 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:05, 04:05]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:45](791 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:27, 01:45](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 02:41]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:05, 06:43]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:39, 03:15](1272 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:27](1144 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:51](1016 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:11](1285 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 02:40](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:31, 03:00](995 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:50, 04:13](1097 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:14, 01:38](979 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:37]
-PASS -- TEST 'conus13km_control_intel' [03:33, 01:43](1313 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:26, 00:45](1211 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:03](1168 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:51]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:41](1082 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:52](1094 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:52](1098 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:28, 11:54](1344 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:27, 12:07](999 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:36](1247 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:24, 11:34](1440 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:54](1152 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:18, 10:07]
-PASS -- TEST 'hafs_regional_atm_intel' [07:58, 05:17](885 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:01](1267 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:19](952 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:44, 14:03](985 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:04, 15:07](993 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:46, 05:25](608 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:05, 11:13]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:12, 07:43](1892 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:52]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:12, 13:18](1772 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 13:59](2177 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:25](1165 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 14:55](1691 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:05, 05:24]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:14, 20:07](1736 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:05, 11:20]
+PASS -- TEST 'cpld_control_p8_intel' [10:00, 07:43](2066 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:12, 07:39](2055 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:06, 04:15](1978 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 07:45](1990 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 04:18](1739 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:05, 08:51](2492 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:54, 07:40](2074 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:02, 06:27](1895 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 07:35](2065 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 14:57](2804 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:57, 05:40](2932 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:26, 08:27](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:17, 04:56](3615 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 05:00](2052 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:05, 11:19]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 07:11](1770 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:08](1822 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:22]
+PASS -- TEST 'cpld_debug_p8_intel' [09:06, 06:49](2070 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:14]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:53, 04:42](1786 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:05]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 03:54](1828 MB)
+
+PASS -- COMPILE 's2s_intel' [11:05, 09:10]
+PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:15](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:50]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:20](2069 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:31, 17:44]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:04, 13:49](1813 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:08, 06:32](1294 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:14](1739 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:37]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:50, 22:03](1776 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:48]
+PASS -- TEST 'control_flake_intel' [04:29, 02:49](726 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:03](664 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:34, 02:10](663 MB)
+PASS -- TEST 'control_latlon_intel' [04:29, 02:05](668 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:36, 02:07](659 MB)
+PASS -- TEST 'control_c48_intel' [07:35, 05:42](856 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:44](858 MB)
+PASS -- TEST 'control_c192_intel' [09:37, 07:47](947 MB)
+PASS -- TEST 'control_c384_intel' [11:10, 08:07](1450 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:44, 07:15](1531 MB)
+PASS -- TEST 'control_stochy_intel' [03:24, 01:26](667 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](548 MB)
+PASS -- TEST 'control_lndp_intel' [03:23, 01:22](669 MB)
+PASS -- TEST 'control_iovr4_intel' [03:44, 02:04](671 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:05](665 MB)
+PASS -- TEST 'control_p8_intel' [04:49, 02:30](1632 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:48, 02:32](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:48, 02:26](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:44, 01:23](923 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:31](1629 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:24](988 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1622 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:35, 02:23](1725 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1647 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:24](1720 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:32](1646 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:58, 02:57](1646 MB)
+PASS -- TEST 'regional_control_intel' [06:25, 04:31](962 MB)
+PASS -- TEST 'regional_restart_intel' [04:23, 02:30](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [06:27, 04:47](952 MB)
+PASS -- TEST 'regional_2threads_intel' [04:23, 02:53](923 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:30, 04:23](1487 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:25](957 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:30](962 MB)
+PASS -- TEST 'regional_wofs_intel' [07:25, 05:35](2101 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:31, 07:36]
+PASS -- TEST 'rap_control_intel' [08:49, 06:32](1189 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:40, 03:25](1446 MB)
+PASS -- TEST 'rap_decomp_intel' [08:37, 06:53](1127 MB)
+PASS -- TEST 'rap_2threads_intel' [08:36, 06:12](1376 MB)
+PASS -- TEST 'rap_restart_intel' [06:40, 03:25](1162 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:29](1192 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:56](1133 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:00, 04:56](1194 MB)
+PASS -- TEST 'hrrr_control_intel' [05:46, 03:25](1065 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:28](1054 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:09](1125 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:15, 01:50](1037 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:26](1193 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:37](2021 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:27](2165 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:31, 07:12]
+PASS -- TEST 'control_csawmg_intel' [07:24, 05:21](822 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:28, 05:16](825 MB)
+PASS -- TEST 'control_ras_intel' [04:14, 02:52](828 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [07:30, 06:06]
+PASS -- TEST 'control_csawmg_gnu' [08:26, 06:28](810 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:22, 06:27](812 MB)
+
+PASS -- COMPILE 'wam_intel' [09:30, 07:58]
+PASS -- TEST 'control_wam_intel' [03:17, 01:50](781 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:30, 10:39]
+PASS -- TEST 'control_p8_faster_intel' [04:48, 02:14](1641 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:24, 04:07](958 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 05:25]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:11](822 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:11](827 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:25](836 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:10](830 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:23](880 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:23](867 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:12, 02:18](831 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:19, 02:21](882 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:30, 02:20](1657 MB)
+PASS -- TEST 'regional_debug_intel' [15:41, 14:15](890 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:50, 03:53](1217 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:39, 03:52](1215 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:20, 03:58](1215 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:59](1214 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:57](1222 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:58, 04:08](1295 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:05](1224 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:04](1225 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:02](1225 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:30, 04:00](1222 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:56](1210 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:57](1220 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:23](1222 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 03:53](1221 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 04:46](1214 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1210 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:58, 06:50](1225 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:31, 05:28]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:47, 01:42](791 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:46, 01:39](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:25, 04:09]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:31, 08:25]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:23](1275 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:22](1140 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:52](1023 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:07](1287 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:39](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 03:02](984 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:03](1135 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:36](950 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:55]
+PASS -- TEST 'conus13km_control_intel' [03:36, 01:45](1281 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:42](1200 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 01:01](1153 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:54]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:48](1079 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:55]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:55](1093 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:53](1090 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:33, 11:34](1345 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:32, 11:49](987 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1240 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:29, 11:32](1401 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:50]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:58](1153 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:06, 09:25]
+PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:21](875 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:00](1282 MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:08, 14:36](995 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:10, 15:21](998 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 05:39](602 MB)
PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:36, 02:47](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:51](538 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:35, 03:55](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:38](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:44](677 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:25](451 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:12](626 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:17, 09:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:45, 16:49](735 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:05, 16:23](802 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:04]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:14, 10:13](788 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:18, 10:02]
-PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:25](952 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:55, 05:30](928 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:29](1337 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:18, 07:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1155 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:20](1109 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:11, 02:03](1009 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:09](1008 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:06](1015 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:10, 02:12](1144 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:04](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:55](1154 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:51](1150 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1148 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 02:59](2441 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:03](2439 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:54]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:31, 05:09](1079 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 06:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:08](1144 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:44]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:54](335 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:50](558 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](563 MB)
-
-PASS -- COMPILE 'atml_intel' [09:18, 07:27]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:04, 05:41](1628 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 05:43](1628 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:33, 02:56](944 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:34]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:31](1693 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:23]
-PASS -- TEST 'control_atmwav_intel' [03:37, 01:29](691 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:04]
-PASS -- TEST 'atmaero_control_p8_intel' [06:09, 03:37](1783 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:12, 04:14](1807 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:27](1820 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:06, 06:48]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:47]
-PASS -- TEST 'regional_atmaq_debug_intel' [18:54, 16:21](4589 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:05, 04:03]
-PASS -- TEST 'control_c48_gnu' [11:36, 09:47](881 MB)
-PASS -- TEST 'control_stochy_gnu' [04:29, 02:14](730 MB)
-PASS -- TEST 'control_ras_gnu' [05:26, 03:38](734 MB)
-PASS -- TEST 'control_p8_gnu' [05:47, 03:32](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:27](1512 MB)
-PASS -- TEST 'control_flake_gnu' [06:22, 04:18](805 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:05, 04:20]
-PASS -- TEST 'rap_control_gnu' [09:36, 07:38](1088 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:36, 07:52](1095 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:09, 07:10](1146 MB)
-PASS -- TEST 'rap_restart_gnu' [05:51, 03:54](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:09, 07:44](1092 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:47, 07:48](1083 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:48, 05:47](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:42, 03:59](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:41, 03:58](1136 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 03:35](1025 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 04:03](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](880 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](936 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:34](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:05, 06:03]
-PASS -- TEST 'control_diag_debug_gnu' [03:22, 01:10](776 MB)
-PASS -- TEST 'regional_debug_gnu' [08:26, 06:24](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:56](1099 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 01:54](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:11, 01:58](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:20, 02:04](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:13, 03:04](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:13, 01:59](1099 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:13, 01:57](1095 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:11](725 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:11, 01:17](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:19](1505 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:56](1103 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:08](1106 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:14](1113 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:05, 02:36]
-PASS -- TEST 'control_wam_debug_gnu' [03:17, 01:55](500 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:05, 04:39]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:44, 07:17](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:47](962 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:42, 06:55](973 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:31](883 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 03:47](953 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:50, 05:21](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 01:57](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:34, 02:35](1264 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:28, 01:03](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:24](933 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:47, 11:46]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:17](989 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:06, 09:59]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 01:57](979 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:58](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:20](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:35](973 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:16](1189 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:24](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:06, 12:18]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 01:55](1003 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:06, 16:56]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:06]
-
-PASS -- COMPILE 's2swa_debug_gnu' [13:07, 11:51]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [18:07, 17:02]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 11:53]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [19:08, 17:15]
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:43](435 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:58, 07:46](541 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:51](624 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:42](623 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:52](679 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 01:24](450 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:17](638 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:48, 16:26](730 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 16:18](817 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:07, 10:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:51, 09:59](796 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:27]
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:36](1338 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:41]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1141 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:14](1075 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1019 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:05](1009 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 01:56](1016 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:08](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:08](1146 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:04](1009 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:57](1162 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:39, 04:55](1157 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1153 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:00](2389 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:04](2431 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:56]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:10](1069 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:06](1150 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](327 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:52](562 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](560 MB)
+
+PASS -- COMPILE 'atml_intel' [10:06, 08:23]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:58, 05:33](1631 MB)
+FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
+MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmw_intel' [10:05, 08:45]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:28](1710 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:05, 09:19]
+PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](704 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:05, 07:03]
+PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:35](1802 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:54, 04:18](1813 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:27](1824 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:05, 06:45]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:37]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:15, 16:58](4598 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:05, 04:01]
+PASS -- TEST 'control_c48_gnu' [11:23, 09:31](868 MB)
+PASS -- TEST 'control_stochy_gnu' [04:21, 02:12](728 MB)
+PASS -- TEST 'control_ras_gnu' [05:16, 03:43](751 MB)
+PASS -- TEST 'control_p8_gnu' [05:49, 03:41](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:32](1516 MB)
+PASS -- TEST 'control_flake_gnu' [06:14, 04:32](811 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:05, 03:57]
+PASS -- TEST 'rap_control_gnu' [09:45, 07:41](1090 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:32, 07:50](1085 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:28, 07:14](1124 MB)
+PASS -- TEST 'rap_restart_gnu' [05:50, 03:58](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:38, 07:51](1085 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:57](1083 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 05:46](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:48, 03:59](1074 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:04](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:44](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 03:59](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:04](878 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:00](934 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:48](1081 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:06, 07:21]
+PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](780 MB)
+PASS -- TEST 'regional_debug_gnu' [08:27, 06:18](926 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:00](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:15, 01:57](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:14, 01:59](1097 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:15, 02:05](1098 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:02](1273 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:14, 03:03](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 01:56](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:55](1096 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:12](726 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:16](1506 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:57](1100 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:10](1104 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:14](1106 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:23]
+PASS -- TEST 'control_wam_debug_gnu' [03:19, 01:56](501 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:21]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:13](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 03:48](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:33, 06:44](998 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:35](873 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:46](961 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:57, 05:32](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:15, 02:06](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:34, 02:29](1265 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:04](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](920 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:05, 11:05]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:21](989 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:05, 08:33]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:00](976 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:57](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:22](1283 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:32](973 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:23, 03:20](1189 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:29](1348 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:06, 10:29]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:00](1002 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:07, 16:50]
+
+PASS -- COMPILE 's2s_gnu' [17:07, 16:01]
+
+PASS -- COMPILE 's2swa_debug_gnu' [11:06, 09:44]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:08, 17:00]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:06, 08:46]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:09]
SYNOPSIS:
-Starting Date/Time: 20240331 12:02:15
-Ending Date/Time: 20240331 13:24:55
-Total Time: 01h:23m:15s
+Starting Date/Time: 20240402 08:21:18
+Ending Date/Time: 20240402 09:43:48
+Total Time: 01h:22m:55s
Compiles Completed: 55/55
-Tests Completed: 239/239
+Tests Completed: 234/239
+Failed Tests:
+* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_atm_ocn_intel.log
+* TEST hafs_regional_docn_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_intel.log
+* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_oisst_intel.log
+* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_control_p8_atmlnd_intel.log
+* TEST control_restart_p8_atmlnd_intel: MISSING
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERCULES REGRESSION TESTING LOG====
+====START OF HERCULES REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2394229
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafsw_intel' [12:06, 10:33]
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:27](932 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:19]
+PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:30](954 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:31](917 MB)
+
+PASS -- COMPILE 'atml_intel' [11:06, 09:36]
+PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 05:30](1635 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240402 10:33:35
+Ending Date/Time: 20240402 10:56:19
+Total Time: 00h:22m:59s
+Compiles Completed: 3/3
+Tests Completed: 4/4
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index c647aedf1f..eed510da36 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,9 +9,9 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,245 +47,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_1584801
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1794749
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:26, 38:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:58, 07:22](1790 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:36, 49:40]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:23, 21:05](1660 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:24, 22:09](1928 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:24, 10:21](999 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:56, 24:05](1633 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:26, 38:36]
-PASS -- TEST 'cpld_control_p8_intel' [11:52, 08:35](1827 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:26, 08:15](1822 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:38, 04:45](1708 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 08:32](1857 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 04:49](1730 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:40, 07:53](2263 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 08:43](1827 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:01, 07:05](1778 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:28, 08:17](1824 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:04, 07:59](1783 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:25, 36:51]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:27, 05:58](1658 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 05:58](1717 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:09, 05:28]
-PASS -- TEST 'cpld_debug_p8_intel' [14:04, 10:40](1840 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:44]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:14](1678 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:22, 32:09]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:26, 06:37](1712 MB)
-
-PASS -- COMPILE 's2s_intel' [33:23, 32:19]
-PASS -- TEST 'cpld_control_c48_intel' [15:12, 12:45](2796 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:55, 33:11]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:05, 08:17](1824 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [50:32, 49:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:39, 20:45](1681 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:46, 10:32](1034 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:45, 24:35](1664 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:12, 05:28]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:25, 32:13](1692 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:23, 34:22]
-PASS -- TEST 'control_flake_intel' [06:28, 04:29](645 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 03:16](597 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:35, 03:35](601 MB)
-PASS -- TEST 'control_latlon_intel' [05:28, 03:19](600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:24](596 MB)
-PASS -- TEST 'control_c48_intel' [11:43, 10:04](850 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 10:08](838 MB)
-PASS -- TEST 'control_c192_intel' [14:50, 12:38](726 MB)
-PASS -- TEST 'control_c384_intel' [19:56, 16:29](894 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:41, 13:51](1018 MB)
-PASS -- TEST 'control_stochy_intel' [04:28, 02:17](598 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB)
-PASS -- TEST 'control_lndp_intel' [04:29, 02:11](600 MB)
-PASS -- TEST 'control_iovr4_intel' [05:30, 03:20](599 MB)
-PASS -- TEST 'control_iovr5_intel' [05:33, 03:21](603 MB)
-PASS -- TEST 'control_p8_intel' [06:31, 04:01](1572 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:53, 04:07](1571 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:52, 03:54](1577 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:09, 02:06](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:37, 03:55](1572 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:04](841 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:37, 04:08](1570 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:39, 03:46](1662 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:18, 07:07](1576 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:00, 05:20](1641 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:03](1578 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:11, 04:46](1586 MB)
-PASS -- TEST 'regional_control_intel' [10:06, 07:12](759 MB)
-PASS -- TEST 'regional_restart_intel' [05:37, 03:51](933 MB)
-PASS -- TEST 'regional_decomp_intel' [10:06, 07:33](764 MB)
-PASS -- TEST 'regional_2threads_intel' [07:09, 04:27](760 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:04, 07:02](759 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:46, 07:05](761 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:25, 33:02]
-PASS -- TEST 'rap_control_intel' [13:02, 10:08](990 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 05:41](1220 MB)
-PASS -- TEST 'rap_decomp_intel' [12:57, 10:41](984 MB)
-PASS -- TEST 'rap_2threads_intel' [12:27, 09:39](1088 MB)
-PASS -- TEST 'rap_restart_intel' [08:27, 05:19](987 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:25, 10:07](989 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:58, 10:41](980 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:19, 07:43](996 MB)
-PASS -- TEST 'hrrr_control_intel' [07:53, 05:09](987 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:53, 05:25](983 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:20, 04:47](1057 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:49](916 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:29, 09:59](990 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:21](1944 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:29, 11:58](1941 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:20, 31:11]
-PASS -- TEST 'control_csawmg_intel' [10:55, 08:09](697 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:48, 07:58](691 MB)
-PASS -- TEST 'control_ras_intel' [06:26, 04:25](666 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:34]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 06:50](1795 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:30, 53:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 20:34](1666 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:06](1918 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:02, 10:24](984 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:40, 23:49](1634 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:24, 39:15]
+PASS -- TEST 'cpld_control_p8_intel' [10:25, 07:29](1828 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:47, 07:31](1819 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:50, 04:18](1712 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:24, 07:33](1852 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:51, 04:23](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:19, 07:07](2259 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 07:35](1828 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:38, 06:17](1777 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 07:30](1824 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:44, 07:03](1802 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:23, 37:14]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:45](1669 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 05:41](1711 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:11]
+PASS -- TEST 'cpld_debug_p8_intel' [13:57, 10:30](1853 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:09, 05:03]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:22, 07:11](1674 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:20, 32:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:36](1717 MB)
+
+PASS -- COMPILE 's2s_intel' [33:20, 32:10]
+PASS -- TEST 'cpld_control_c48_intel' [15:09, 12:43](2796 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:47, 32:44]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:00, 07:01](1822 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [48:27, 47:21]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:35, 20:35](1677 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 10:22](1032 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 24:01](1650 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:41]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:46, 32:08](1692 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:42]
+PASS -- TEST 'control_flake_intel' [06:30, 04:27](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:18](596 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:36, 03:36](602 MB)
+PASS -- TEST 'control_latlon_intel' [05:28, 03:21](598 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:26](595 MB)
+PASS -- TEST 'control_c48_intel' [11:38, 10:07](846 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:38, 10:04](851 MB)
+PASS -- TEST 'control_c192_intel' [14:49, 12:21](731 MB)
+PASS -- TEST 'control_c384_intel' [18:45, 15:48](892 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:22, 13:28](1012 MB)
+PASS -- TEST 'control_stochy_intel' [04:29, 02:14](601 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:28, 01:17](437 MB)
+PASS -- TEST 'control_lndp_intel' [04:30, 02:13](598 MB)
+PASS -- TEST 'control_iovr4_intel' [05:32, 03:21](597 MB)
+PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](599 MB)
+PASS -- TEST 'control_p8_intel' [06:43, 04:02](1574 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:54](1575 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:33, 03:49](1582 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:59, 02:09](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:53](1570 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](844 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:04](1569 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:05, 03:38](1661 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:56](1579 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 05:06](1634 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:21, 04:04](1583 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:39, 04:32](1589 MB)
+PASS -- TEST 'regional_control_intel' [08:39, 07:02](757 MB)
+PASS -- TEST 'regional_restart_intel' [05:44, 03:40](927 MB)
+PASS -- TEST 'regional_decomp_intel' [09:40, 07:28](760 MB)
+PASS -- TEST 'regional_2threads_intel' [06:37, 04:15](759 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:57](766 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:59](767 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:21, 32:25]
+PASS -- TEST 'rap_control_intel' [12:07, 10:07](995 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:22, 05:35](1218 MB)
+PASS -- TEST 'rap_decomp_intel' [13:12, 10:41](989 MB)
+PASS -- TEST 'rap_2threads_intel' [12:07, 09:33](1088 MB)
+PASS -- TEST 'rap_restart_intel' [08:22, 05:14](986 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:30, 10:00](996 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 10:44](983 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 07:33](995 MB)
+PASS -- TEST 'hrrr_control_intel' [08:06, 05:12](986 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:02, 05:24](974 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:35, 04:46](1054 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:45](912 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:35, 10:01](984 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:20](1940 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:03](1941 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:21, 30:55]
+PASS -- TEST 'control_csawmg_intel' [09:43, 07:59](693 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:45, 07:53](694 MB)
+PASS -- TEST 'control_ras_intel' [06:23, 04:24](667 MB)
PASS -- COMPILE 'wam_intel' [31:20, 29:49]
-PASS -- TEST 'control_wam_intel' [04:27, 02:47](502 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:33]
-PASS -- TEST 'control_p8_faster_intel' [06:38, 03:32](1579 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:44, 06:36](767 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:57]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:21](763 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 03:20](761 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:22, 03:45](765 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:22, 03:22](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:40, 05:24](810 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:13](812 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:21, 03:26](778 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:33, 03:32](816 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:35](1595 MB)
-PASS -- TEST 'regional_debug_intel' [23:52, 21:43](785 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:26, 06:11](1155 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:59](1151 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 06:02](1153 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:03](1155 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 06:04](1152 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:36, 06:19](1239 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:10](1153 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:26, 06:12](1156 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:03](1156 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:00](1152 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:56](1157 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:03](1154 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:35, 09:51](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 06:02](1154 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:21, 07:24](1158 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:01](1153 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:35, 10:29](1167 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:07, 04:08]
-PASS -- TEST 'control_wam_debug_intel' [08:31, 06:10](441 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 30:01]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:28, 05:15](1082 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:04, 08:53](898 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:07, 04:24](872 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:04, 08:24](947 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:07, 04:04](910 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:07, 04:41](860 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:48, 06:50](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:45, 03:01](841 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:26, 42:16]
-PASS -- TEST 'conus13km_control_intel' [06:03, 03:08](1108 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:34](1049 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:39](1027 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:18, 30:19]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:00, 05:48](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:53]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:26, 05:56](1030 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 05:48](1030 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:03, 18:24](1143 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:39](852 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:30](1206 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:17]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:31, 06:05](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:23, 34:58]
-PASS -- TEST 'hafs_regional_atm_intel' [09:20, 06:57](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:31, 06:39](1084 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 09:34](775 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:37, 16:26](802 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:53, 18:48](823 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:31, 06:07](774 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:21, 32:01]
-PASS -- TEST 'hafs_regional_docn_intel' [11:39, 08:48](763 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:40, 08:48](745 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:41, 03:50](1059 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 02:10](1048 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:41, 03:53](929 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:58](926 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:41, 03:53](924 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:42, 03:54](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:42, 04:05](1061 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 04:01](925 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:33, 08:11](887 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:32, 08:03](840 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:22, 03:54](1056 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:43, 05:34](2345 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:43, 05:23](2407 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:33]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:23, 08:04](1010 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 03:43](1053 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:52]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:50](229 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 01:38](252 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:51](251 MB)
-
-PASS -- COMPILE 'atml_intel' [36:22, 34:28]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 09:09](1609 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:49, 09:15](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:40](870 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:21, 31:33]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:24](1610 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:21, 30:41]
-PASS -- TEST 'control_atmwav_intel' [05:12, 02:28](608 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:19, 30:39]
-PASS -- TEST 'atmaero_control_p8_intel' [08:28, 05:21](1699 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:21, 06:29](1720 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:12, 06:45](1735 MB)
+PASS -- TEST 'control_wam_intel' [04:22, 02:40](502 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:20, 31:17]
+PASS -- TEST 'control_p8_faster_intel' [06:41, 03:33](1584 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:45, 06:30](769 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:09, 06:09]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:20](758 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:19](756 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:43](768 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:21](761 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:14](805 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:12](808 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:22, 03:22](771 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:31, 03:30](823 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:52, 03:34](1591 MB)
+PASS -- TEST 'regional_debug_intel' [23:56, 21:43](772 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:27, 06:02](1156 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:53](1146 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:59](1146 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:02](1147 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 06:01](1153 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:37, 06:19](1235 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:11](1144 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:21, 06:09](1146 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:03](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:03](1153 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:52](1147 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:01](1142 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:52](1142 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:57](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:21](1148 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:27, 06:01](1143 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:30, 10:25](1158 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:07, 03:42]
+PASS -- TEST 'control_wam_debug_intel' [08:25, 06:08](440 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:21, 29:58]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:14, 05:08](1076 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:56, 08:11](905 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 04:28](871 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 07:50](942 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 04:00](908 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:38](858 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 06:13](900 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:24](844 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:28]
+PASS -- TEST 'conus13km_control_intel' [05:00, 02:56](1105 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:30](1052 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1024 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:23, 30:12]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:26](903 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:50]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:50](1027 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:06, 18:19](1138 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:48](855 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:57, 10:37](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:00, 18:17](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:48]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:03](1072 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:23, 34:38]
+PASS -- TEST 'hafs_regional_atm_intel' [10:19, 07:14](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:43](1092 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:43, 09:25](775 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:30, 16:13](803 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 17:59](825 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:31, 05:51](769 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:20, 31:55]
+PASS -- TEST 'hafs_regional_docn_intel' [11:26, 09:03](769 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 09:01](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:36](1064 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:13](1031 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:32](927 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:35](923 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:39](921 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:36](1050 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:36](1060 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 03:31](923 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:59](888 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:58](847 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:36](1061 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:03](2404 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:05](2359 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:13]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1007 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:33](1058 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:42]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:36](229 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:16](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:48](252 MB)
+
+PASS -- COMPILE 'atml_intel' [35:21, 33:47]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:10](1606 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:41, 08:13](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 04:06](870 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:20, 32:02]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 02:19](1597 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:19, 31:30]
+PASS -- TEST 'control_atmwav_intel' [05:09, 02:09](606 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:20, 30:26]
+PASS -- TEST 'atmaero_control_p8_intel' [08:34, 05:10](1698 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:19](1722 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 06:46](1746 MB)
SYNOPSIS:
-Starting Date/Time: 20240331 17:05:36
-Ending Date/Time: 20240331 20:36:53
-Total Time: 03h:31m:58s
+Starting Date/Time: 20240402 05:55:54
+Ending Date/Time: 20240402 09:27:48
+Total Time: 03h:32m:34s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 7ee8c1f320..6b2b500e70 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,9 +9,9 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,280 +47,374 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_188248
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_117842
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:07, 13:39]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:17](3188 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:56, 16:30](1736 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:02, 18:16](2019 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:52, 08:19](1114 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:57, 18:26](1644 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:24]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:12](1683 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:07, 15:36]
-PASS -- TEST 'cpld_control_p8_intel' [11:32, 05:43](3210 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:44](3206 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:47, 03:20](3257 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:32, 05:44](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 03:31](3199 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:30, 06:11](3559 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:32, 05:43](3211 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:30, 04:48](3066 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:43, 05:43](3217 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:44, 09:58](3267 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:25, 06:07](3627 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:09, 11:03](4173 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:51](4372 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:23](3166 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:07, 13:03]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:59, 04:35](1679 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:25, 04:25](1780 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:30]
-PASS -- TEST 'cpld_debug_p8_intel' [11:33, 08:30](3246 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:06]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:10, 06:00](1753 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:12, 13:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:24, 04:20](1777 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 13:13]
-PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:09](2826 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:07, 19:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 05:15](3213 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:56]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:14, 16:39](1768 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:21, 08:14](1175 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 19:07](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:07]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 24:42](1721 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:06, 12:41]
-PASS -- TEST 'control_flake_intel' [05:20, 03:31](703 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:32](653 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:38](658 MB)
-PASS -- TEST 'control_latlon_intel' [04:19, 02:31](658 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:33](654 MB)
-PASS -- TEST 'control_c48_intel' [07:25, 06:03](869 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:26, 05:56](875 MB)
-PASS -- TEST 'control_c192_intel' [11:39, 09:08](836 MB)
-PASS -- TEST 'control_c384_intel' [13:37, 10:04](1245 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:07, 09:08](1359 MB)
-PASS -- TEST 'control_stochy_intel' [03:18, 01:47](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:17, 01:00](503 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:40](653 MB)
-PASS -- TEST 'control_iovr4_intel' [06:24, 02:31](650 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:29](645 MB)
-PASS -- TEST 'control_p8_intel' [05:07, 03:01](1637 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 02:59](1629 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:25, 02:51](1637 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:02, 01:39](894 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:04, 02:53](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:44](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:09](1616 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:14, 03:09](1722 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:44, 05:14](1638 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:26, 03:59](1687 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:28, 03:00](1633 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:43, 03:32](1646 MB)
-PASS -- TEST 'regional_control_intel' [07:41, 05:14](820 MB)
-PASS -- TEST 'regional_restart_intel' [06:40, 02:43](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:32, 05:31](854 MB)
-PASS -- TEST 'regional_2threads_intel' [05:40, 03:43](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:39, 05:13](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:02](858 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:08](859 MB)
-PASS -- TEST 'regional_wofs_intel' [08:40, 06:35](1919 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:06, 12:21]
-PASS -- TEST 'rap_control_intel' [10:22, 07:41](1109 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:48](1296 MB)
-PASS -- TEST 'rap_decomp_intel' [10:51, 08:07](1025 MB)
-PASS -- TEST 'rap_2threads_intel' [10:10, 07:55](1187 MB)
-PASS -- TEST 'rap_restart_intel' [07:21, 04:04](1101 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:26, 07:43](1099 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:09](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:16, 05:50](1128 MB)
-PASS -- TEST 'hrrr_control_intel' [06:55, 04:02](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 04:07](1019 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 03:43](1064 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:12](1004 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:23, 07:35](1099 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:26, 09:15](1996 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:23, 08:58](2075 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:06, 12:35]
-PASS -- TEST 'control_csawmg_intel' [09:38, 06:00](753 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:44, 05:56](750 MB)
-PASS -- TEST 'control_ras_intel' [06:17, 03:18](749 MB)
-
-PASS -- COMPILE 'wam_intel' [12:06, 10:51]
-PASS -- TEST 'control_wam_intel' [05:16, 02:06](655 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:06, 11:15]
-PASS -- TEST 'control_p8_faster_intel' [06:28, 02:36](1633 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:41, 04:44](803 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:43](813 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:43](810 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:17, 03:03](816 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:46](813 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:15](865 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:05](865 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:19, 02:49](819 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](871 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:40, 03:02](1639 MB)
-PASS -- TEST 'regional_debug_intel' [19:37, 17:13](845 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:18, 05:00](1201 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:54](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:57](1193 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:54](1200 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:15, 04:59](1200 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:27, 05:12](1282 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:04](1142 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1203 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:47](1198 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:54](1212 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 09:32](1197 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:53](1199 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:58](1200 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:53](1210 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1207 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:05, 03:25]
-PASS -- TEST 'control_wam_debug_intel' [06:17, 04:58](519 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:00]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 04:27](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:15, 06:25](1049 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:17, 03:24](978 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:11, 06:40](1085 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](912 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 03:34](929 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 04:48](1035 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](923 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 12:44]
-PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:02](1098 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:18](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 11:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:17](996 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:21]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:50](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:52, 14:29](1230 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:44, 14:14](916 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:25](1152 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:05](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:22, 05:06](1126 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:07, 13:07]
-PASS -- TEST 'hafs_regional_atm_intel' [08:04, 05:35](738 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:24, 05:51](1060 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:23, 06:52](833 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:09, 12:44](861 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 14:27](843 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:52, 06:06](503 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:18, 07:30](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:41](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 08:08](453 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:41, 04:04](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:49, 04:19](534 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:51, 05:17](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:23, 01:25](398 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:48, 04:32](807 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:06, 03:41]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:47, 13:25](569 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:07, 14:03]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:54, 09:24](622 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:58, 09:38](706 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](726 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:06, 12:36]
-PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:15](836 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:20](819 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:01](1210 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:05, 07:01]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:12, 02:41](1130 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:38](1080 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:30](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:35](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:11, 02:39](1008 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:11, 02:42](1132 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:38](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 05:56](1060 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 06:00](1036 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1125 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:36](2443 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:36](2495 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:35]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:14](1059 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:51]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:37](1117 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:47](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](320 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:31](328 MB)
-
-PASS -- COMPILE 'atml_intel' [14:08, 12:58]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:20](1603 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:24, 04:15](1605 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:20](897 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:07, 11:00]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:50](1667 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:09, 11:42]
-PASS -- TEST 'control_atmwav_intel' [04:02, 01:41](678 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:06, 10:47]
-PASS -- TEST 'atmaero_control_p8_intel' [06:14, 03:55](3028 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:14, 04:47](3045 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:01, 05:04](3108 MB)
-
-PASS -- COMPILE 'atmaq_intel' [14:08, 10:39]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:38, 20:47](4411 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:46]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:34, 05:08](3169 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:14]
+PASS -- TEST 'cpld_control_gfsv17_intel' [32:58, 16:26](1746 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 17:21](2019 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 08:08](1111 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:54, 18:37](1608 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:24]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [37:49, 22:54](1690 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:10, 14:35]
+PASS -- TEST 'cpld_control_p8_intel' [22:30, 05:36](3212 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:54, 05:41](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [11:56, 03:19](3257 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [22:30, 05:45](3153 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:50, 03:21](3196 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [23:45, 06:02](3560 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [22:26, 05:36](3203 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [21:39, 04:42](3068 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:49, 05:32](3214 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [25:08, 09:50](3335 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:37, 06:20](3622 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [31:29, 10:49](4112 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 06:53](4285 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [22:40, 05:18](3184 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:09, 13:02]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [15:00, 04:21](1742 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:23, 04:18](1781 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:04]
+PASS -- TEST 'cpld_debug_p8_intel' [15:32, 08:45](3246 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:07, 05:12]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:57, 05:54](1745 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:09, 13:10]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:28, 04:22](1774 MB)
+
+PASS -- COMPILE 's2s_intel' [15:10, 13:10]
+PASS -- TEST 'cpld_control_c48_intel' [19:56, 07:58](2828 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:33]
+PASS -- TEST 'cpld_control_p8_faster_intel' [21:44, 05:24](3196 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:09, 17:50]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:16, 16:30](1769 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:33, 08:10](1170 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 18:41](1685 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 04:59]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:25, 24:38](1719 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:09, 12:22]
+PASS -- TEST 'control_flake_intel' [18:26, 03:29](697 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [16:27, 02:24](650 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:33, 02:35](666 MB)
+PASS -- TEST 'control_latlon_intel' [17:26, 02:30](655 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:33, 02:29](655 MB)
+PASS -- TEST 'control_c48_intel' [19:33, 05:55](874 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [20:32, 05:57](875 MB)
+PASS -- TEST 'control_c192_intel' [26:42, 09:05](859 MB)
+PASS -- TEST 'control_c384_intel' [26:38, 10:13](1248 MB)
+PASS -- TEST 'control_c384gdas_intel' [25:04, 08:51](1354 MB)
+PASS -- TEST 'control_stochy_intel' [14:20, 01:37](656 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:23, 01:06](503 MB)
+PASS -- TEST 'control_lndp_intel' [14:21, 01:32](654 MB)
+PASS -- TEST 'control_iovr4_intel' [12:24, 02:27](648 MB)
+PASS -- TEST 'control_iovr5_intel' [11:23, 02:27](656 MB)
+PASS -- TEST 'control_p8_intel' [10:12, 02:56](1634 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [10:16, 02:58](1626 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [10:36, 02:53](1620 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:14, 01:42](897 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:16, 02:55](1614 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:35](932 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:19, 03:03](1607 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:10, 03:08](1710 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:49, 05:17](1629 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:33, 04:01](1689 MB)
+PASS -- TEST 'control_p8_mynn_intel' [08:32, 03:03](1628 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:50, 03:32](1647 MB)
+PASS -- TEST 'regional_control_intel' [08:44, 05:12](858 MB)
+PASS -- TEST 'regional_restart_intel' [07:40, 02:40](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [09:39, 05:33](849 MB)
+PASS -- TEST 'regional_2threads_intel' [06:32, 03:44](857 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:35, 05:07](1368 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:04](861 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:11](858 MB)
+PASS -- TEST 'regional_wofs_intel' [08:37, 06:34](1920 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:07, 11:48]
+PASS -- TEST 'rap_control_intel' [10:34, 07:47](1104 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:40](1235 MB)
+PASS -- TEST 'rap_decomp_intel' [11:43, 08:05](1030 MB)
+PASS -- TEST 'rap_2threads_intel' [11:11, 07:52](1177 MB)
+PASS -- TEST 'rap_restart_intel' [07:27, 04:02](1111 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:30, 07:43](1107 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:44, 08:08](1028 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 05:50](1131 MB)
+PASS -- TEST 'hrrr_control_intel' [06:15, 03:59](1033 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:07](1023 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:12, 03:26](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:12](1000 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:42, 07:33](1099 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:09](1992 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:23, 08:52](2079 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:07, 11:00]
+PASS -- TEST 'control_csawmg_intel' [09:44, 05:57](744 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:41, 05:55](750 MB)
+PASS -- TEST 'control_ras_intel' [06:19, 03:20](739 MB)
+
+PASS -- COMPILE 'wam_intel' [12:07, 10:33]
+PASS -- TEST 'control_wam_intel' [05:19, 02:04](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:07]
+PASS -- TEST 'control_p8_faster_intel' [08:49, 02:38](1633 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:42, 04:41](854 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:07, 04:36]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 02:42](815 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:26, 02:42](817 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:18, 03:07](812 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:25, 02:48](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:33, 04:22](864 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:11](861 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](876 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:51, 02:56](1650 MB)
+PASS -- TEST 'regional_debug_intel' [19:46, 17:17](844 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:19, 04:57](1201 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:46](1195 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:52](1212 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:58](1209 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:05](1200 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:13](1286 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:07](1207 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 04:59](1200 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1194 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1202 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:51](1202 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:54](1207 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:47](1199 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 04:50](1196 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:44](1212 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:01](1196 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:17](1204 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:07, 03:23]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:03](508 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 10:47]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 04:24](1160 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:32, 06:25](994 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:18, 03:27](984 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:24, 06:43](1089 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:16, 03:24](961 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:06, 03:39](873 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:48](1033 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:56](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:08, 13:24]
+PASS -- TEST 'conus13km_control_intel' [08:55, 02:06](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:04](1121 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:15](1113 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:07, 11:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:46, 04:14](992 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:03]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:21, 04:58](1088 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:19, 04:41](1077 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:53, 14:04](1227 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:45, 14:16](929 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:45, 08:23](1157 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:45, 14:18](1316 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:07, 03:52]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:23, 04:51](1116 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:08, 12:39]
+PASS -- TEST 'hafs_regional_atm_intel' [09:13, 05:28](743 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:25, 05:54](1121 MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 12:47](860 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 14:30](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:59, 06:08](505 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:30](522 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:51, 03:05](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:19, 08:06](485 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:50, 04:09](524 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 04:02](525 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 05:20](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:24](353 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:57, 04:44](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:06, 03:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:04](572 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:07, 13:03]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:54, 09:33](673 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:03, 09:36](689 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:07, 13:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:56](729 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:07, 12:41]
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:02](1208 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:24]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:40](1135 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:42](1090 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:33](1001 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:36](1010 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:39](1017 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:51](1109 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:35](1132 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:36](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 05:54](1056 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:13, 05:49](1038 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1132 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:37](2448 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:32](2433 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:17]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:10](1063 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 06:24]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:38](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 00:55]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:47](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:34](321 MB)
+
+PASS -- COMPILE 'atml_intel' [18:08, 13:19]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:13](1597 MB)
+FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
+MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmw_intel' [17:07, 12:35]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 01:46](1664 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:07, 11:33]
+PASS -- TEST 'control_atmwav_intel' [04:08, 01:39](669 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:08, 10:45]
+PASS -- TEST 'atmaero_control_p8_intel' [06:16, 03:56](3027 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:51](3033 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:58](3111 MB)
+
+PASS -- COMPILE 'atmaq_intel' [14:07, 11:45]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:07, 03:26]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 20:45](4579 MB)
SYNOPSIS:
-Starting Date/Time: 20240331 12:01:52
-Ending Date/Time: 20240331 13:32:26
-Total Time: 01h:31m:04s
+Starting Date/Time: 20240402 08:21:43
+Ending Date/Time: 20240402 10:10:13
+Total Time: 01h:49m:15s
Compiles Completed: 39/39
-Tests Completed: 182/182
+Tests Completed: 177/182
+Failed Tests:
+* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_atm_ocn_intel.log
+* TEST hafs_regional_docn_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_docn_intel.log
+* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_docn_oisst_intel.log
+* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_control_p8_atmlnd_intel.log
+* TEST control_restart_p8_atmlnd_intel: MISSING
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_226483
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-c) - CREATE NEW BASELINES
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafsw_intel' [16:08, 14:27]
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:43, 07:00](830 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:08, 14:11]
+PASS -- TEST 'hafs_regional_docn_intel' [08:27, 06:31](826 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:27, 06:22](814 MB)
+
+PASS -- COMPILE 'atml_intel' [17:08, 15:40]
+PASS -- TEST 'control_p8_atmlnd_intel' [08:46, 04:19](1599 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240402 10:23:05
+Ending Date/Time: 20240402 10:50:14
+Total Time: 00h:27m:23s
+Compiles Completed: 3/3
+Tests Completed: 4/4
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 4f4bce119a..8fd3265890 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-8be49df39e49439d1c10ad54ab3800070692d809
+7fb4bf1a94e195cdd18017fa981ad062ad5b826d
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,9 +9,9 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/HEAD-18-g3fa2f76)
6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (v3.7.1-425-ge240f35)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/HEAD-18-g3fa2f76)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (v3.7.1-425-ge240f35)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,236 +47,236 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39097
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_189100
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:35, 10:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:13, 01:16](2975 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:18, 32:03]
-PASS -- TEST 'cpld_control_gfsv17_intel' [47:42, 02:10](1594 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 01:24](1719 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [28:18, 01:48](849 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:08, 02:01](1566 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:30, 08:51]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [13:18, 01:47](1602 MB)
-
-PASS -- COMPILE 's2swa_intel' [30:14, 29:26]
-PASS -- TEST 'cpld_control_p8_intel' [51:59, 01:10](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:59, 01:15](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [42:16, 01:42](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [51:45, 01:58](3029 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [41:15, 01:15](3082 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [51:31, 01:17](3316 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [50:34, 01:19](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [46:58, 01:45](2928 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:46, 02:04](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [46:55, 04:07](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:06, 03:32](4252 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [46:46, 01:27](2968 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:35, 10:40]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [11:12, 00:50](1586 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:12, 01:01](1635 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [43:44, 42:49]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:34, 01:05](1631 MB)
-
-PASS -- COMPILE 's2s_intel' [10:33, 09:43]
-PASS -- TEST 'cpld_control_c48_intel' [12:14, 00:45](2658 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [29:11, 28:56]
-PASS -- TEST 'cpld_control_p8_faster_intel' [53:16, 01:18](3001 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [21:56, 20:40]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 01:53](1600 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:16, 01:10](904 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:41, 01:10](1570 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:31, 08:24]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:17, 01:27](1627 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:35]
-PASS -- TEST 'control_flake_intel' [02:44, 00:46](572 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:44, 00:40](521 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 00:55](531 MB)
-PASS -- TEST 'control_latlon_intel' [02:44, 00:19](524 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:44, 00:43](527 MB)
-PASS -- TEST 'control_c48_intel' [02:43, 00:30](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [02:43, 00:37](713 MB)
-PASS -- TEST 'control_c192_intel' [02:44, 00:51](637 MB)
-PASS -- TEST 'control_c384_intel' [02:48, 01:30](956 MB)
-PASS -- TEST 'control_c384gdas_intel' [02:48, 01:41](1094 MB)
-PASS -- TEST 'control_stochy_intel' [02:44, 00:36](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [56:08, 01:10](328 MB)
-PASS -- TEST 'control_lndp_intel' [02:44, 00:42](530 MB)
-PASS -- TEST 'control_iovr4_intel' [02:44, 00:24](521 MB)
-PASS -- TEST 'control_iovr5_intel' [02:44, 00:21](526 MB)
-PASS -- TEST 'control_p8_intel' [02:44, 00:52](1511 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [02:44, 01:30](1503 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [02:44, 01:28](1511 MB)
-PASS -- TEST 'control_restart_p8_intel' [53:16, 01:52](688 MB)
-PASS -- TEST 'control_noqr_p8_intel' [02:44, 00:58](1490 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [53:16, 01:50](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [02:44, 00:42](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [02:44, 01:25](1593 MB)
-PASS -- TEST 'control_p8_lndp_intel' [02:44, 00:45](1501 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [02:44, 01:38](1558 MB)
-PASS -- TEST 'control_p8_mynn_intel' [02:44, 02:00](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [02:44, 01:45](1516 MB)
-PASS -- TEST 'regional_control_intel' [02:43, 00:14](610 MB)
-PASS -- TEST 'regional_restart_intel' [53:43, 01:05](779 MB)
-PASS -- TEST 'regional_decomp_intel' [02:43, 00:58](607 MB)
-PASS -- TEST 'regional_2threads_intel' [02:44, 00:41](658 MB)
-PASS -- TEST 'regional_noquilt_intel' [02:43, 00:27](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [56:08, 00:47](607 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [55:02, 01:02](610 MB)
-PASS -- TEST 'regional_wofs_intel' [55:02, 00:33](1577 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:49, 16:37]
-PASS -- TEST 'rap_control_intel' [55:03, 01:34](917 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [55:02, 01:25](1096 MB)
-PASS -- TEST 'rap_decomp_intel' [54:55, 01:17](918 MB)
-PASS -- TEST 'rap_2threads_intel' [53:44, 01:06](1012 MB)
-PASS -- TEST 'rap_restart_intel' [43:32, 01:45](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [53:44, 01:43](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [53:16, 01:21](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [42:06, 01:57](783 MB)
-PASS -- TEST 'hrrr_control_intel' [53:00, 01:00](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [53:00, 01:52](906 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [52:58, 01:12](994 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [45:45, 01:00](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [52:55, 01:46](905 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [52:49, 00:27](1876 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:42, 00:56](1863 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:30, 09:00]
-PASS -- TEST 'control_csawmg_intel' [46:06, 00:31](598 MB)
-PASS -- TEST 'control_csawmgt_intel' [45:55, 00:42](601 MB)
-PASS -- TEST 'control_ras_intel' [45:45, 00:48](563 MB)
-
-PASS -- COMPILE 'wam_intel' [28:13, 27:01]
-PASS -- TEST 'control_wam_intel' [42:36, 00:36](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:48, 16:38]
-PASS -- TEST 'control_p8_faster_intel' [45:16, 00:59](1501 MB)
-PASS -- TEST 'regional_control_faster_intel' [45:05, 00:55](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [17:50, 13:14]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:49, 00:44](684 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:45, 00:52](692 MB)
-PASS -- TEST 'control_stochy_debug_intel' [43:54, 01:10](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [43:32, 00:44](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [43:32, 01:13](734 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [42:17, 00:52](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [42:16, 01:06](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [42:15, 01:05](748 MB)
-PASS -- TEST 'control_debug_p8_intel' [42:02, 01:03](1525 MB)
-PASS -- TEST 'regional_debug_intel' [41:21, 00:25](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [41:17, 01:22](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [41:15, 00:21](1067 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [41:03, 00:27](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [40:53, 00:31](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:52, 01:19](1078 MB)
-PASS -- TEST 'rap_diag_debug_intel' [40:15, 01:23](1157 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [40:06, 00:26](1077 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [38:20, 00:46](1079 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [38:14, 01:03](1075 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [38:12, 01:05](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [38:12, 01:09](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [38:03, 01:04](1077 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:01, 00:56](1073 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [38:00, 01:05](1070 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [37:11, 01:00](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [36:44, 01:01](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [36:39, 01:18](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [16:46, 12:09]
-PASS -- TEST 'control_wam_debug_intel' [36:15, 00:54](298 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:43, 11:42]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [36:07, 01:19](955 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [35:42, 01:11](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [35:21, 02:30](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [34:40, 02:10](854 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [34:40, 02:10](840 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [34:24, 01:54](786 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:19, 01:45](687 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [27:36, 01:07](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:54, 16:12]
-PASS -- TEST 'conus13km_control_intel' [34:14, 00:32](1001 MB)
-PASS -- TEST 'conus13km_2threads_intel' [29:21, 00:32](1009 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [27:10, 00:30](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:36, 08:17]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [33:35, 00:45](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:31, 06:31]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:32, 00:29](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:28, 00:30](955 MB)
-PASS -- TEST 'conus13km_debug_intel' [33:16, 00:58](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [32:27, 01:00](714 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [31:58, 00:28](1039 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:43, 00:28](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:00, 17:27]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [31:29, 01:15](977 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:43, 11:34]
-PASS -- TEST 'hafs_regional_atm_intel' [31:29, 01:32](620 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [31:28, 00:43](971 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 02:08](659 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [31:26, 01:26](701 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:11, 01:53](704 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:58, 00:53](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:42, 02:07](407 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [29:38, 00:51](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:04, 02:33](370 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:47, 01:14](411 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 01:19](412 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:59, 01:16](576 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:56, 00:57](323 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:31, 08:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:52, 01:22](500 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:52, 17:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:02, 00:46](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:29, 00:57](709 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [23:03, 22:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:52, 01:18](715 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:33, 09:09]
-PASS -- TEST 'hafs_regional_docn_intel' [23:39, 01:35](665 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [23:24, 01:35](642 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:58, 00:40](882 MB)
-
-PASS -- COMPILE 'atml_intel' [22:03, 19:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:26, 02:09](1550 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [20:12, 01:26](1547 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:38, 01:12](740 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:42, 11:37]
-PASS -- TEST 'atmaero_control_p8_intel' [22:49, 01:12](2849 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [22:05, 00:59](2909 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:51, 01:02](2922 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:39, 11:22]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:25, 05:38]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:52, 01:36](4448 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [34:25, 29:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:34, 02:18](2977 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:23, 28:09]
+PASS -- TEST 'cpld_control_gfsv17_intel' [41:32, 01:58](1594 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:08, 01:59](1718 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [23:06, 01:18](849 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:29, 02:10](1567 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:53, 13:52]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [58:41, 02:26](1602 MB)
+
+PASS -- COMPILE 's2swa_intel' [30:17, 25:34]
+PASS -- TEST 'cpld_control_p8_intel' [47:15, 01:21](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:15, 02:08](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [38:08, 01:31](3064 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [47:15, 02:18](3026 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [37:05, 01:16](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [47:15, 01:50](3315 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [47:15, 02:31](2997 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [47:16, 02:13](2926 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:15, 02:48](3005 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [47:24, 04:52](3950 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:25, 04:38](4255 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [47:15, 02:05](2967 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:41, 10:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [02:51, 01:20](1584 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:51, 01:36](1640 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:39, 10:13]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [03:54, 01:31](1632 MB)
+
+PASS -- COMPILE 's2s_intel' [13:41, 10:17]
+PASS -- TEST 'cpld_control_c48_intel' [03:51, 01:44](2651 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:55, 16:44]
+PASS -- TEST 'cpld_control_p8_faster_intel' [57:38, 02:05](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:53, 15:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [58:40, 02:11](1604 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:35, 01:02](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:28, 01:34](1586 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:06, 20:44]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:26, 00:55](1611 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:47, 17:48]
+PASS -- TEST 'control_flake_intel' [45:04, 01:16](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [45:04, 00:45](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [45:04, 00:28](529 MB)
+PASS -- TEST 'control_latlon_intel' [45:04, 01:21](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:04, 00:38](523 MB)
+PASS -- TEST 'control_c48_intel' [45:03, 00:56](715 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [45:03, 00:57](715 MB)
+PASS -- TEST 'control_c192_intel' [45:04, 01:20](637 MB)
+PASS -- TEST 'control_c384_intel' [45:08, 02:03](953 MB)
+PASS -- TEST 'control_c384gdas_intel' [45:08, 03:19](1098 MB)
+PASS -- TEST 'control_stochy_intel' [45:04, 01:08](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [41:26, 00:59](330 MB)
+PASS -- TEST 'control_lndp_intel' [45:04, 00:21](526 MB)
+PASS -- TEST 'control_iovr4_intel' [45:04, 01:24](525 MB)
+PASS -- TEST 'control_iovr5_intel' [45:04, 01:27](522 MB)
+PASS -- TEST 'control_p8_intel' [45:04, 02:03](1499 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [45:04, 02:02](1504 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [45:04, 01:49](1512 MB)
+PASS -- TEST 'control_restart_p8_intel' [39:08, 01:25](707 MB)
+PASS -- TEST 'control_noqr_p8_intel' [45:04, 02:00](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [39:08, 01:34](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [41:22, 02:32](1498 MB)
+PASS -- TEST 'control_2threads_p8_intel' [40:22, 01:48](1592 MB)
+PASS -- TEST 'control_p8_lndp_intel' [40:22, 00:42](1498 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [40:21, 02:04](1554 MB)
+PASS -- TEST 'control_p8_mynn_intel' [39:10, 01:56](1513 MB)
+PASS -- TEST 'merra2_thompson_intel' [39:06, 01:44](1513 MB)
+PASS -- TEST 'regional_control_intel' [38:48, 01:00](608 MB)
+PASS -- TEST 'regional_restart_intel' [31:21, 00:15](782 MB)
+PASS -- TEST 'regional_decomp_intel' [38:07, 00:47](608 MB)
+PASS -- TEST 'regional_2threads_intel' [38:07, 00:43](663 MB)
+PASS -- TEST 'regional_noquilt_intel' [38:06, 01:07](1144 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [38:06, 01:10](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [37:46, 01:07](608 MB)
+PASS -- TEST 'regional_wofs_intel' [37:20, 00:26](1579 MB)
+
+PASS -- COMPILE 'rrfs_intel' [28:13, 26:57]
+PASS -- TEST 'rap_control_intel' [34:43, 01:16](915 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:44, 01:40](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [34:16, 02:39](920 MB)
+PASS -- TEST 'rap_2threads_intel' [34:11, 01:28](1008 MB)
+PASS -- TEST 'rap_restart_intel' [25:32, 01:21](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [33:36, 02:07](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:23, 01:30](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [23:43, 01:48](787 MB)
+PASS -- TEST 'hrrr_control_intel' [33:17, 02:00](907 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [33:12, 01:43](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [33:00, 01:36](995 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [26:54, 00:52](743 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [32:52, 01:57](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [32:42, 00:46](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:55, 00:48](1864 MB)
+
+PASS -- COMPILE 'csawmg_intel' [17:47, 17:28]
+PASS -- TEST 'control_csawmg_intel' [37:04, 01:09](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [36:39, 01:28](601 MB)
+PASS -- TEST 'control_ras_intel' [30:51, 00:38](559 MB)
+
+PASS -- COMPILE 'wam_intel' [18:53, 18:04]
+PASS -- TEST 'control_wam_intel' [30:50, 00:41](273 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:56, 18:41]
+PASS -- TEST 'control_p8_faster_intel' [30:49, 02:01](1510 MB)
+PASS -- TEST 'regional_control_faster_intel' [30:41, 01:20](611 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [17:51, 17:09]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [30:28, 01:13](688 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:26, 01:15](690 MB)
+PASS -- TEST 'control_stochy_debug_intel' [30:18, 00:51](694 MB)
+PASS -- TEST 'control_lndp_debug_intel' [29:49, 01:08](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [29:16, 00:43](735 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [27:56, 00:40](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [27:54, 01:04](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [27:37, 01:11](750 MB)
+PASS -- TEST 'control_debug_p8_intel' [27:25, 01:03](1520 MB)
+PASS -- TEST 'regional_debug_intel' [27:23, 00:36](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [27:11, 00:55](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [26:54, 01:04](1073 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [26:54, 00:57](1074 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [26:13, 00:53](1074 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:53, 00:55](1077 MB)
+PASS -- TEST 'rap_diag_debug_intel' [25:47, 00:49](1156 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:42, 00:50](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [25:33, 00:49](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [25:21, 01:05](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [25:17, 01:05](1078 MB)
+PASS -- TEST 'rap_noah_debug_intel' [25:03, 01:04](1072 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [23:46, 01:00](1077 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:43, 00:57](1072 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [23:28, 01:04](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [23:24, 01:13](1077 MB)
+PASS -- TEST 'rap_flake_debug_intel' [23:22, 01:01](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [23:22, 01:19](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:36, 10:58]
+PASS -- TEST 'control_wam_debug_intel' [23:03, 00:58](300 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:52, 17:38]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:57, 01:23](954 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:29, 01:15](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:04, 02:12](787 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:02, 01:23](851 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:38, 01:08](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [20:18, 01:49](788 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:05, 01:37](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:24, 00:20](669 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:59, 18:59]
+PASS -- TEST 'conus13km_control_intel' [20:18, 01:04](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [16:30, 00:53](1005 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [16:24, 00:42](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:43, 14:58]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [20:08, 01:32](809 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:37, 10:24]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:53, 01:06](955 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [19:36, 01:16](950 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:14, 00:50](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:03, 00:40](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [19:00, 00:46](1041 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:56, 00:41](1105 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:32, 08:33]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [18:35, 01:09](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:43, 14:12]
+PASS -- TEST 'hafs_regional_atm_intel' [18:38, 01:16](617 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:31, 00:40](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 02:03](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:08, 01:49](696 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:56, 01:51](713 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:50, 01:09](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:49, 02:20](407 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [16:32, 01:35](291 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:22, 02:24](373 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:47, 00:41](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:05, 00:53](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:02, 00:50](490 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:20, 00:23](315 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:44, 13:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:03, 01:01](498 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:11]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:25, 00:54](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:59, 00:49](709 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:41, 12:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:02, 01:06](718 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:45, 10:50]
+PASS -- TEST 'hafs_regional_docn_intel' [13:49, 01:26](663 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:47, 01:24](649 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:19, 00:45](881 MB)
+
+PASS -- COMPILE 'atml_intel' [20:06, 19:21]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:07, 01:22](1547 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:04, 01:19](1549 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:23, 00:24](745 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:48, 13:19]
+PASS -- TEST 'atmaero_control_p8_intel' [12:47, 01:34](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:56, 00:58](2909 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:51, 01:42](2924 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:43, 12:17]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:33, 05:39]
+PASS -- TEST 'regional_atmaq_debug_intel' [11:49, 01:33](4435 MB)
SYNOPSIS:
-Starting Date/Time: 20240401 13:36:53
-Ending Date/Time: 20240401 15:08:45
-Total Time: 01h:32m:35s
+Starting Date/Time: 20240402 16:42:06
+Ending Date/Time: 20240402 18:14:50
+Total Time: 01h:33m:31s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN
index 586e873c15..de2991fcac 100644
--- a/tests/parm/ufs.configure.atm_lnd.IN
+++ b/tests/parm/ufs.configure.atm_lnd.IN
@@ -45,7 +45,7 @@ LND_attributes::
Verbosity = 1
Diagnostic = 0
mosaic_file = @[mosaic_file]
- input_dir = @[lnd_input_dir]
+ input_dir = @[lnd_input_dir]
ic_type = @[lnd_ic_type]
layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs
num_soil_levels = 4
@@ -67,7 +67,7 @@ LND_attributes::
surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90
glacier_option = 1
surface_thermal_roughness_option = 2
- output_freq = 3600
+ output_freq = 3600
restart_freq = -1
calc_snet = @[CALC_SNET]
initial_albedo = @[initial_albedo]
@@ -96,10 +96,11 @@ DRIVER_attributes::
::
ALLCOMP_attributes::
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4 # required for data atmosphere configurations
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN
index 8434d5a7cb..bd1c554ecc 100644
--- a/tests/parm/ufs.configure.atmw.IN
+++ b/tests/parm/ufs.configure.atmw.IN
@@ -66,14 +66,14 @@ MED_attributes::
ATM_model = @[atm_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN
index 9a0cd26b3e..5f5aebefc0 100644
--- a/tests/parm/ufs.configure.hafs_atm_docn.IN
+++ b/tests/parm/ufs.configure.hafs_atm_docn.IN
@@ -80,10 +80,11 @@ ALLCOMP_attributes::
ATM_model = @[atm_model]
OCN_model = @[ocn_model]
MED_model = cmeps
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN
index 955b0c6bd2..04404e63a4 100644
--- a/tests/parm/ufs.configure.hafs_atm_ocn.IN
+++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN
@@ -109,10 +109,11 @@ ALLCOMP_attributes::
ATM_model = @[atm_model]
OCN_model = @[ocn_model]
MED_model = cmeps
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN
index 20ae2f0ae5..a4398c369b 100644
--- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN
+++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN
@@ -122,10 +122,11 @@ ALLCOMP_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
MED_model = cmeps
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN
index 894f510fb1..dd24683169 100644
--- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN
+++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN
@@ -126,10 +126,11 @@ ALLCOMP_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
MED_model = cmeps
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN
index 1ca0848395..673d864573 100644
--- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN
+++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN
@@ -113,9 +113,10 @@ ALLCOMP_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
MED_model = cmeps
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN
index e925a53478..b57d6c685d 100644
--- a/tests/parm/ufs.configure.hafs_atm_wav.IN
+++ b/tests/parm/ufs.configure.hafs_atm_wav.IN
@@ -84,10 +84,11 @@ ALLCOMP_attributes::
ATM_model = @[atm_model]
WAV_model = @[wav_model]
MED_model = cmeps
- ScalarFieldCount = 3
+ ScalarFieldCount = 4
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
- ScalarFieldIdxNextSwCday = 3
+ ScalarFieldIdxGridNTile = 3
+ ScalarFieldIdxNextSwCday = 4
ScalarFieldName = cpl_scalars
start_type = startup
case_name = ufs.hafs
diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN
index 995d3bd750..3efa42e6fe 100644
--- a/tests/parm/ufs.configure.s2s.IN
+++ b/tests/parm/ufs.configure.s2s.IN
@@ -91,15 +91,15 @@ MED_attributes::
ICE_model = @[ice_model]
OCN_model = @[ocn_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN
index 3b71b40aee..d1be7c7b86 100644
--- a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN
+++ b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN
@@ -96,7 +96,6 @@ MED_attributes::
ICE_model = @[ice_model]
OCN_model = @[ocn_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
aoflux_grid = 'agrid'
aoflux_code = 'ccpp'
aoflux_ccpp_suite = 'FV3_sfc_ocean'
@@ -112,9 +111,10 @@ MED_attributes::
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN
index 6a0234e120..bf17be2a5e 100644
--- a/tests/parm/ufs.configure.s2s_esmf.IN
+++ b/tests/parm/ufs.configure.s2s_esmf.IN
@@ -95,15 +95,15 @@ MED_attributes::
ICE_model = @[ice_model]
OCN_model = @[ocn_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN
index 0d3d3f313f..419a11f6c5 100644
--- a/tests/parm/ufs.configure.s2sa.IN
+++ b/tests/parm/ufs.configure.s2sa.IN
@@ -102,15 +102,15 @@ MED_attributes::
ICE_model = @[ice_model]
OCN_model = @[ocn_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN
index 1cfe5047e9..bac867307e 100644
--- a/tests/parm/ufs.configure.s2sa_esmf.IN
+++ b/tests/parm/ufs.configure.s2sa_esmf.IN
@@ -107,15 +107,15 @@ MED_attributes::
ICE_model = @[ice_model]
OCN_model = @[ocn_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN
index 885e8c3f22..95f35864bf 100644
--- a/tests/parm/ufs.configure.s2sw.IN
+++ b/tests/parm/ufs.configure.s2sw.IN
@@ -108,15 +108,15 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN
index 47c08442dd..e62fca65af 100644
--- a/tests/parm/ufs.configure.s2sw_esmf.IN
+++ b/tests/parm/ufs.configure.s2sw_esmf.IN
@@ -112,14 +112,14 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN
index 5c4c17a2a6..6338a000c8 100644
--- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN
+++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN
@@ -112,14 +112,14 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN
index 5960da0118..7f6627ca37 100644
--- a/tests/parm/ufs.configure.s2swa.IN
+++ b/tests/parm/ufs.configure.s2swa.IN
@@ -118,14 +118,14 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN
index 69a4851dec..69156317e3 100644
--- a/tests/parm/ufs.configure.s2swa_esmf.IN
+++ b/tests/parm/ufs.configure.s2swa_esmf.IN
@@ -124,14 +124,14 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN
index cba72ec139..ce8c6607d3 100644
--- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN
+++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN
@@ -124,15 +124,15 @@ MED_attributes::
OCN_model = @[ocn_model]
WAV_model = @[wav_model]
coupling_mode = @[CPLMODE]
- history_tile_atm = @[ATMTILESIZE]
pio_rearranger = @[pio_rearranger]
ocean_albedo_limit = @[ocean_albedo_limit]
::
ALLCOMP_attributes::
- ScalarFieldCount = 2
+ ScalarFieldCount = 3
ScalarFieldIdxGridNX = 1
ScalarFieldIdxGridNY = 2
+ ScalarFieldIdxGridNTile = 3
ScalarFieldName = cpl_scalars
start_type = @[RUNTYPE]
restart_dir = @[CMEPS_RESTART_DIR]
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e69de29bb2..25c9209077 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -0,0 +1,5 @@
+hafs_regional_atm_ocn intel
+hafs_regional_docn intel
+hafs_regional_docn_oisst intel
+control_p8_atmlnd intel
+control_restart_p8_atmlnd intel
diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8
index 2dde79ca1a..9924a60ff9 100644
--- a/tests/tests/atmwav_control_noaero_p8
+++ b/tests/tests/atmwav_control_noaero_p8
@@ -77,7 +77,6 @@ export med_model=cmeps
export atm_model=fv3
export wav_model=ww3
-export ATMTILESIZE=`expr $NPX - 1`
export WW3_MULTIGRID=false
export WW3_MODDEF=mod_def.glo_1deg
export MESH_WAV=mesh.glo_1deg.nc
diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8
index 810ea89113..722fa03662 100644
--- a/tests/tests/cpld_bmark_p8
+++ b/tests/tests/cpld_bmark_p8
@@ -93,7 +93,6 @@ export NPY=385
export IMO=1536
export JMO=768
export OUTPUT_GRID="'gaussian_grid'"
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=025
export ICERES=0.25
diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d
index 47324a0cb8..6aa2ce2f5f 100644
--- a/tests/tests/cpld_bmark_p8_35d
+++ b/tests/tests/cpld_bmark_p8_35d
@@ -49,7 +49,6 @@ export NPY=385
export IMO=1536
export JMO=768
export OUTPUT_GRID="'gaussian_grid'"
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=025
export ICERES=0.25
diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8
index 5dc87183b2..1aec6e3e71 100644
--- a/tests/tests/cpld_control_c192_p8
+++ b/tests/tests/cpld_control_c192_p8
@@ -87,7 +87,6 @@ export NPX=193
export NPY=193
export IMO=768
export JMO=384
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=050
export ICERES=0.50
@@ -142,4 +141,3 @@ export FV3_RUN=cpld_control_run.IN
if [[ $MACHINE_ID = derecho ]]; then
TPN=96
fi
-
diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48
index 1b8fd090af..cf1484d37e 100644
--- a/tests/tests/cpld_control_c48
+++ b/tests/tests/cpld_control_c48
@@ -76,7 +76,6 @@ export NPX=49
export NPY=49
export IMO=192
export JMO=94
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=500
export ICERES=5.00
diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8
index fcede8710c..fa7be3c086 100644
--- a/tests/tests/cpld_debug_pdlib_p8
+++ b/tests/tests/cpld_debug_pdlib_p8
@@ -96,5 +96,5 @@ export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN
export FV3_RUN=cpld_control_run.IN
if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then
- WLCLK=40
+ WLCLK=50
fi
diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8
index 2ae3534b78..0d71a41f5c 100644
--- a/tests/tests/cpld_restart_bmark_p8
+++ b/tests/tests/cpld_restart_bmark_p8
@@ -97,7 +97,6 @@ export NPY=385
export IMO=1536
export JMO=768
export OUTPUT_GRID="'gaussian_grid'"
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=025
export ICERES=0.25
diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8
index 57f9459c64..54415221ac 100644
--- a/tests/tests/cpld_restart_c192_p8
+++ b/tests/tests/cpld_restart_c192_p8
@@ -89,7 +89,6 @@ export NPX=193
export NPY=193
export IMO=768
export JMO=384
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=050
export ICERES=0.50
diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48
index eeb2626a8f..a9e891519d 100644
--- a/tests/tests/cpld_restart_c48
+++ b/tests/tests/cpld_restart_c48
@@ -91,7 +91,6 @@ export NPX=49
export NPY=49
export IMO=192
export JMO=94
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=500
export ICERES=5.00
diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48
index ea963defc4..94aa503d8f 100644
--- a/tests/tests/cpld_warmstart_c48
+++ b/tests/tests/cpld_warmstart_c48
@@ -88,7 +88,6 @@ export NPX=49
export NPY=49
export IMO=192
export JMO=94
-export ATMTILESIZE=`expr $NPX - 1`
export OCNRES=500
export ICERES=5.00
diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug
index 666598c1e7..17fcea688a 100644
--- a/tests/tests/regional_atmaq_debug
+++ b/tests/tests/regional_atmaq_debug
@@ -97,6 +97,7 @@ export CCPP_SUITE=FV3_GFS_v15p2
if [[ $MACHINE_ID = hera ]]; then
TPN=30
+ WLCLK=45
elif [[ $MACHINE_ID = gaea ]]; then
TPN=16
fi
From 45c8b2ada88e7243b912deeebf4c8d90d4fdc5c5 Mon Sep 17 00:00:00 2001
From: JONG KIM
Date: Thu, 4 Apr 2024 19:49:13 -0400
Subject: [PATCH 18/33] Hotfix/cubed sphere hash fix: HAILCAST diagnostic code
(units issue) (#2223)
cubed_sphere hash update: f060e85 for a bug- fix in the HAILCAST diagnostic code (units issue)
---
.github/workflows/aux.yml | 33 +-
FV3 | 2 +-
tests/ci/repo_check.sh | 23 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 522 ++++++------
tests/logs/RegressionTests_derecho.log | 625 ++++++++------
tests/logs/RegressionTests_gaea.log | 542 ++++++------
tests/logs/RegressionTests_hera.log | 788 ++++++++----------
tests/logs/RegressionTests_jet.log | 476 +++++------
tests/logs/RegressionTests_orion.log | 569 +++++++------
tests/logs/RegressionTests_wcoss2.log | 460 +++++-----
13 files changed, 2087 insertions(+), 2049 deletions(-)
diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml
index edb07c400f..49449097a3 100644
--- a/.github/workflows/aux.yml
+++ b/.github/workflows/aux.yml
@@ -1,9 +1,12 @@
-name: Helpers
+name: Repo Check
on:
- workflow_run:
- workflows: ["Pull Request Tests"]
- types:
- - requested
+ #workflow_run:
+ # workflows: ["Pull Request Tests"]
+ # types:
+ # - requested
+ pull_request:
+ branches:
+ - develop
env:
app: Accept:application/vnd.github.v3+json
base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs
@@ -30,6 +33,7 @@ jobs:
steps:
- name: Check up-to-dateness and post comment
run: |
+ trap 'echo "exit-code=$?" >> "$GITHUB_OUTPUT"' EXIT
head_sha=${{ github.event.pull_request.head.sha }}
head_brc=${{ github.event.pull_request.head.ref }}
head_url=${{ github.event.pull_request.head.repo.html_url }}
@@ -43,13 +47,14 @@ jobs:
echo "pr_number is $pr_number"
pr_uid=${{ github.event.pull_request.head.repo.owner.login }}
echo "pr_uid is $pr_uid"
- comment="$(./repo_check.sh $pr_uid 2>/dev/null)"
- echo "comment is $comment"
- if [[ -n $comment ]]; then
- curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
- $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}'
- echo -n "failure" >~/repocheck_file
- else
- echo -n "success" >~/repocheck_file
- fi
+ ./repo_check.sh
+ #comment="$(./repo_check.sh 2>/dev/null)"
+ #echo "comment is $comment"
+ #if [[ -n $comment ]]; then
+ # curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
+ # $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}'
+ # echo -n "failure" >~/repocheck_file
+ #else
+ # echo -n "success" >~/repocheck_file
+ #fi
diff --git a/FV3 b/FV3
index 1cac9d31d1..383687ef87 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 1cac9d31d139b0069deb31034e2257a2a945a573
+Subproject commit 383687ef8752af2408d882c47a4f3cbb4d3121ee
diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh
index 871021f54a..7f5deb31c8 100755
--- a/tests/ci/repo_check.sh
+++ b/tests/ci/repo_check.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-set -eu
+#set -eu
get_shas () {
cwd=$(pwd)
@@ -24,10 +24,8 @@ get_shas () {
flag_sync=true
-ownerID=$1
-
declare -A urls branches pathes
-submodules="base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake ccpp_physics ccpp_framework aqm noahmp"
+submodules="base fv3 mom6 cice ww3 stoch cmeps cdeps hycom ccpp_physics aqm noahmp cubed_sphere"
urls[base]='https://github.com/ufs-community/ufs-weather-model'
branches[base]='develop'
@@ -93,9 +91,9 @@ pathes[noahmp]='NOAHMP-interface/noahmp'
#branches[upp]='develop'
#pathes[upp]='upp'
-#urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
-#branches[cubed_sphere]='dev/emc'
-#pathes[cubed_sphere]='FV3/atmos_cubed_sphere'
+urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere'
+branches[cubed_sphere]='dev/emc'
+pathes[cubed_sphere]='FV3/atmos_cubed_sphere'
for submodule in $submodules; do
url=${urls[$submodule]}
@@ -105,8 +103,11 @@ for submodule in $submodules; do
get_shas $url $gitapi $branch $workspace
done
-if [[ $flag_sync=='true' ]]; then
- exit 0
-else
- exit 0
+if [[ ! $flag_sync ]]; then
+ echo "** ${GITHUB_WORKSPACE} **NOT** up to date"
+ exit 1
fi
+
+echo "** ${GITHUB_WORKSPACE} up to date **"
+
+exit 0
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 88dbc1ba12..c46f7ef816 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Apr 3 13:03:42 UTC 2024
+Thu Apr 4 13:45:26 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 270.499708
- 0: The maximum resident set size (KB) = 1267976
+ 0: The total amount of wall time = 273.384410
+ 0: The maximum resident set size (KB) = 1252756
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 949.421879
- 0: The maximum resident set size (KB) = 1254204
+ 0: The total amount of wall time = 948.187410
+ 0: The maximum resident set size (KB) = 1232512
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.203503
- 0: The maximum resident set size (KB) = 1247000
+ 0: The total amount of wall time = 246.989736
+ 0: The maximum resident set size (KB) = 1235588
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.209192
- 0: The maximum resident set size (KB) = 1246248
+ 0: The total amount of wall time = 243.345326
+ 0: The maximum resident set size (KB) = 1230288
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.223169
- 0: The maximum resident set size (KB) = 1247272
+ 0: The total amount of wall time = 243.496287
+ 0: The maximum resident set size (KB) = 1237700
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 242.202633
- 0: The maximum resident set size (KB) = 1247172
+ 0: The total amount of wall time = 238.877192
+ 0: The maximum resident set size (KB) = 1230820
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1734208/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.018158
- 0: The maximum resident set size (KB) = 1247888
+ 0: The total amount of wall time = 239.056770
+ 0: The maximum resident set size (KB) = 1231348
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 3 14:13:02 UTC 2024
-Elapsed time: 01h:09m:20s. Have a nice day!
+Thu Apr 4 14:57:18 UTC 2024
+Elapsed time: 01h:11m:52s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index d9a81cb48a..d8d583491a 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Apr 3 18:01:51 UTC 2024
+Thu Apr 4 18:07:00 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1309.881667
- 0: The maximum resident set size (KB) = 1366736
+ 0: The total amount of wall time = 1344.317893
+ 0: The maximum resident set size (KB) = 1342820
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 385.164336
- 0: The maximum resident set size (KB) = 1359652
+ 0: The total amount of wall time = 391.350241
+ 0: The maximum resident set size (KB) = 1343528
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1612891/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 386.874326
- 0: The maximum resident set size (KB) = 1362372
+ 0: The total amount of wall time = 389.898125
+ 0: The maximum resident set size (KB) = 1341344
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 3 19:06:01 UTC 2024
-Elapsed time: 01h:04m:10s. Have a nice day!
+Thu Apr 4 19:08:57 UTC 2024
+Elapsed time: 01h:01m:57s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 458da1602a..0c421a16ed 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Wed Apr 3 15:46:00 UTC 2024
+Thu Apr 4 16:05:04 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2148.497446
- 0: The maximum resident set size (KB) = 557116
+ 0: The total amount of wall time = 2149.189352
+ 0: The maximum resident set size (KB) = 541572
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2165.195419
- 0: The maximum resident set size (KB) = 563120
+ 0: The total amount of wall time = 2148.974341
+ 0: The maximum resident set size (KB) = 544628
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1137011/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2186.776168
- 0: The maximum resident set size (KB) = 554324
+ 0: The total amount of wall time = 2179.538342
+ 0: The maximum resident set size (KB) = 543816
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 3 17:45:29 UTC 2024
-Elapsed time: 01h:59m:30s. Have a nice day!
+Thu Apr 4 18:04:34 UTC 2024
+Elapsed time: 01h:59m:31s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 42fbe6350b..a9d6adc776 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-63a49c307df0bb8a28e7e8ae12200b0284d63022
+616a1599842de8f07db974c54438bb9b9fa996b9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,266 +48,266 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_34194
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_90813
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [10:32, 10:09]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:36, 01:17](3041 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:42, 15:31]
-PASS -- TEST 'cpld_control_gfsv17_intel' [06:30, 01:58](1655 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:57, 01:25](1776 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [37:49, 01:33](907 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [06:19, 01:44](1640 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 03:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [18:51, 01:11](1674 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:34, 10:23]
-PASS -- TEST 'cpld_control_p8_intel' [11:34, 01:45](3069 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:34, 01:30](3067 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [53:34, 00:56](3127 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:34, 01:52](3094 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [51:29, 01:05](3145 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:34, 00:46](3381 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:34, 01:39](3064 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:35, 01:26](2990 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 01:10](3069 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 00:48](3034 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:30, 09:38]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [12:37, 00:55](1649 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:37, 01:00](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:32, 09:23]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:36, 00:56](1694 MB)
-
-PASS -- COMPILE 's2s_intel' [09:30, 09:08]
-PASS -- TEST 'cpld_control_c48_intel' [13:37, 00:45](2680 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:40, 14:14]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:18, 01:14](3070 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:47, 16:40]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [05:09, 01:35](1673 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:15, 00:55](968 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:49, 01:36](1636 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:36]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:50, 00:51](1694 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:31, 09:15]
-PASS -- TEST 'control_flake_intel' [09:19, 00:25](640 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:19, 00:49](589 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:19, 00:42](595 MB)
-PASS -- TEST 'control_latlon_intel' [09:19, 00:41](588 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:19, 00:51](588 MB)
-PASS -- TEST 'control_c48_intel' [09:18, 00:20](737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:18, 01:15](738 MB)
-PASS -- TEST 'control_c192_intel' [09:19, 01:21](703 MB)
-PASS -- TEST 'control_c384_intel' [09:23, 01:35](1015 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:23, 01:49](1148 MB)
-PASS -- TEST 'control_stochy_intel' [09:19, 00:24](596 MB)
-PASS -- TEST 'control_stochy_restart_intel' [53:20, 00:59](398 MB)
-PASS -- TEST 'control_lndp_intel' [09:19, 00:18](590 MB)
-PASS -- TEST 'control_iovr4_intel' [05:36, 01:11](585 MB)
-PASS -- TEST 'control_iovr5_intel' [04:05, 00:47](589 MB)
-PASS -- TEST 'control_p8_intel' [04:03, 01:11](1568 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:30, 01:22](1562 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:04, 01:31](1563 MB)
-PASS -- TEST 'control_restart_p8_intel' [49:16, 01:01](756 MB)
-PASS -- TEST 'control_noqr_p8_intel' [02:30, 00:40](1557 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [49:09, 00:55](758 MB)
-PASS -- TEST 'control_decomp_p8_intel' [01:28, 01:32](1563 MB)
-PASS -- TEST 'control_2threads_p8_intel' [55:52, 01:14](1654 MB)
-PASS -- TEST 'control_p8_lndp_intel' [54:38, 00:44](1567 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [54:35, 01:49](1622 MB)
-PASS -- TEST 'control_p8_mynn_intel' [54:33, 01:17](1570 MB)
-PASS -- TEST 'merra2_thompson_intel' [53:51, 02:05](1577 MB)
-PASS -- TEST 'regional_control_intel' [53:27, 01:01](628 MB)
-PASS -- TEST 'regional_restart_intel' [46:37, 00:13](800 MB)
-PASS -- TEST 'regional_decomp_intel' [53:19, 01:05](629 MB)
-PASS -- TEST 'regional_2threads_intel' [52:18, 01:00](728 MB)
-PASS -- TEST 'regional_noquilt_intel' [52:14, 00:48](1166 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [52:12, 00:49](635 MB)
-PASS -- TEST 'regional_wofs_intel' [52:06, 00:37](1602 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:28, 07:58]
-PASS -- TEST 'regional_ifi_control_intel' [10:20, 00:59](633 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [10:20, 00:49](627 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [10:21, 00:30](721 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:31, 08:39]
-PASS -- TEST 'rap_control_intel' [51:56, 01:01](977 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [51:16, 00:29](1144 MB)
-PASS -- TEST 'rap_decomp_intel' [50:46, 01:35](976 MB)
-PASS -- TEST 'rap_2threads_intel' [50:16, 00:48](1058 MB)
-PASS -- TEST 'rap_restart_intel' [41:26, 01:00](843 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [48:49, 01:46](974 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [48:46, 01:23](971 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [38:20, 01:26](841 MB)
-PASS -- TEST 'hrrr_control_intel' [48:24, 01:13](968 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [48:11, 01:04](966 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [48:12, 00:50](1040 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [41:12, 00:23](798 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [47:46, 01:29](961 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [47:30, 00:24](1935 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:03, 01:02](1919 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:30, 08:25]
-PASS -- TEST 'control_csawmg_intel' [45:36, 00:29](661 MB)
-PASS -- TEST 'control_csawmgt_intel' [45:30, 01:15](657 MB)
-
-PASS -- COMPILE 'wam_intel' [08:29, 08:00]
-PASS -- TEST 'control_wam_intel' [45:14, 00:16](334 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:44]
-PASS -- TEST 'control_p8_faster_intel' [45:09, 01:37](1559 MB)
-PASS -- TEST 'regional_control_faster_intel' [44:53, 00:59](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:19, 03:57]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:52, 00:49](758 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:52, 00:44](762 MB)
-PASS -- TEST 'control_stochy_debug_intel' [44:52, 01:13](764 MB)
-PASS -- TEST 'control_lndp_debug_intel' [44:10, 00:27](763 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [43:02, 01:06](798 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [41:16, 00:58](806 MB)
-PASS -- TEST 'control_ras_debug_intel' [41:12, 00:27](776 MB)
-PASS -- TEST 'control_diag_debug_intel' [41:12, 00:57](817 MB)
-PASS -- TEST 'control_debug_p8_intel' [39:45, 00:37](1590 MB)
-PASS -- TEST 'regional_debug_intel' [39:42, 00:20](668 MB)
-PASS -- TEST 'rap_control_debug_intel' [38:18, 01:00](1144 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [38:17, 00:59](1137 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [38:10, 00:21](1140 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [37:44, 00:34](1141 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:39, 00:27](1148 MB)
-PASS -- TEST 'rap_diag_debug_intel' [37:36, 00:31](1234 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [37:19, 01:09](1142 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [37:17, 00:44](1143 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [36:41, 01:11](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:39, 01:13](1146 MB)
-PASS -- TEST 'rap_noah_debug_intel' [36:25, 00:16](1140 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [35:41, 00:26](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:41, 00:43](1144 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [35:37, 00:18](1139 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [35:06, 00:31](1147 MB)
-PASS -- TEST 'rap_flake_debug_intel' [35:03, 00:31](1144 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:15, 01:19](1151 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:24, 02:53]
-PASS -- TEST 'control_wam_debug_intel' [33:27, 01:10](378 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [39:38, 08:08]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:42, 00:28](1019 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:41, 01:59](855 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [29:41, 02:11](852 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [29:41, 01:51](910 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:42, 01:10](905 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:41, 02:03](854 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:04, 01:18](747 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:39, 00:46](732 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:10, 10:22]
-PASS -- TEST 'conus13km_control_intel' [15:17, 01:21](1057 MB)
-PASS -- TEST 'conus13km_2threads_intel' [07:17, 01:13](1042 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:06, 00:40](939 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:57, 08:13]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:28, 00:28](876 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [45:51, 02:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [21:24, 01:14](1021 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:24, 00:59](1021 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:24, 00:31](1115 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:24, 00:31](789 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [21:25, 00:43](1093 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:24, 00:25](1182 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [43:49, 02:55]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:32, 00:36](1044 MB)
-
-PASS -- COMPILE 'hafsw_intel' [48:58, 09:12]
-PASS -- TEST 'hafs_regional_atm_intel' [15:12, 01:25](676 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:12, 00:43](1023 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [15:10, 01:55](722 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 01:55](752 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 01:20](779 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:10, 01:35](443 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:11, 01:24](466 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [15:11, 00:38](340 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:14, 02:17](407 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:10, 00:55](475 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:10, 01:22](473 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:12, 01:09](537 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [15:11, 00:48](369 MB)
-PASS -- TEST 'gnv1_nested_intel' [15:11, 01:35](737 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [43:47, 03:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:21, 01:14](577 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [49:56, 09:37]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:04, 01:04](590 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:04, 01:30](755 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [48:53, 09:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:16, 01:12](753 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [48:55, 09:02]
-PASS -- TEST 'hafs_regional_docn_intel' [14:10, 01:58](714 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:10, 01:55](698 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [14:08, 00:31](897 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:42, 08:44]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:30, 01:08](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:54, 00:35](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:21, 01:08](643 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:47, 00:51](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:41, 00:54](644 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:04, 00:37](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:04, 00:35](764 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 00:32](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [03:30, 00:52](646 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [02:51, 01:41](631 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 00:40](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [02:10, 00:48](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [02:08, 00:49](2020 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:31, 08:33]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [01:41, 00:13](763 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:14, 00:54]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [20:11, 00:55](271 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [20:11, 00:41](412 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [14:38, 00:24](410 MB)
-
-PASS -- COMPILE 'atml_intel' [10:31, 09:39]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:42, 01:55](1602 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [00:42, 01:37](1608 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [46:55, 00:26](810 MB)
-
-PASS -- COMPILE 'atmw_intel' [09:29, 08:42]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [00:35, 01:35](1603 MB)
-
-PASS -- COMPILE 'atmwm_intel' [09:29, 08:42]
-PASS -- TEST 'control_atmwav_intel' [00:00, 01:10](603 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:28, 08:32]
-PASS -- TEST 'atmaero_control_p8_intel' [59:41, 01:06](2916 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [58:55, 01:02](2978 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:47, 00:49](2991 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:28, 08:20]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:35, 03:03]
-PASS -- TEST 'regional_atmaq_debug_intel' [58:22, 01:15](4509 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [10:33, 10:12]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:08, 01:24](3046 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:43, 15:39]
+PASS -- TEST 'cpld_control_gfsv17_intel' [31:46, 01:47](1652 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:21, 01:58](1777 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [02:13, 01:11](907 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:34, 01:23](1624 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [44:22, 01:13](1673 MB)
+
+PASS -- COMPILE 's2swa_intel' [10:33, 10:10]
+PASS -- TEST 'cpld_control_p8_intel' [38:08, 01:39](3069 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:08, 01:19](3071 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [29:25, 01:45](3126 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [38:08, 01:00](3092 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [17:12, 01:32](3147 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [38:08, 00:53](3384 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [38:08, 01:01](3068 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [38:09, 01:36](2992 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:08, 01:43](3071 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [38:08, 00:52](3033 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:33, 10:12]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [38:08, 00:54](1653 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:08, 01:02](1694 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:30, 09:14]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [39:10, 01:00](1698 MB)
+
+PASS -- COMPILE 's2s_intel' [10:33, 09:26]
+PASS -- TEST 'cpld_control_c48_intel' [38:07, 00:45](2676 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:42, 14:12]
+PASS -- TEST 'cpld_control_p8_faster_intel' [33:00, 01:34](3067 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:32, 01:07](1673 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [02:40, 00:50](971 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:30, 01:24](1647 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:40]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:23, 00:58](1683 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:30, 09:09]
+PASS -- TEST 'control_flake_intel' [34:52, 00:23](639 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 00:43](585 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:52, 00:45](593 MB)
+PASS -- TEST 'control_latlon_intel' [34:52, 00:40](590 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:52, 00:51](590 MB)
+PASS -- TEST 'control_c48_intel' [34:51, 01:08](738 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [34:51, 00:42](739 MB)
+PASS -- TEST 'control_c192_intel' [34:52, 00:35](706 MB)
+PASS -- TEST 'control_c384_intel' [34:56, 01:05](1012 MB)
+PASS -- TEST 'control_c384gdas_intel' [34:56, 01:52](1157 MB)
+PASS -- TEST 'control_stochy_intel' [34:52, 00:37](595 MB)
+PASS -- TEST 'control_stochy_restart_intel' [17:52, 01:04](395 MB)
+PASS -- TEST 'control_lndp_intel' [34:52, 00:29](591 MB)
+PASS -- TEST 'control_iovr4_intel' [30:23, 00:17](591 MB)
+PASS -- TEST 'control_iovr5_intel' [30:08, 00:30](589 MB)
+PASS -- TEST 'control_p8_intel' [29:46, 01:34](1562 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [29:08, 01:53](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [29:07, 01:44](1571 MB)
+PASS -- TEST 'control_restart_p8_intel' [14:06, 01:01](752 MB)
+PASS -- TEST 'control_noqr_p8_intel' [24:02, 01:11](1552 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [13:51, 00:55](759 MB)
+PASS -- TEST 'control_decomp_p8_intel' [24:02, 01:01](1560 MB)
+PASS -- TEST 'control_2threads_p8_intel' [23:13, 01:32](1658 MB)
+PASS -- TEST 'control_p8_lndp_intel' [21:21, 01:01](1564 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [21:03, 01:40](1619 MB)
+PASS -- TEST 'control_p8_mynn_intel' [20:33, 01:46](1576 MB)
+PASS -- TEST 'merra2_thompson_intel' [19:58, 02:01](1574 MB)
+PASS -- TEST 'regional_control_intel' [19:02, 00:09](634 MB)
+PASS -- TEST 'regional_restart_intel' [13:15, 00:54](803 MB)
+PASS -- TEST 'regional_decomp_intel' [18:53, 00:12](629 MB)
+PASS -- TEST 'regional_2threads_intel' [18:52, 00:35](725 MB)
+PASS -- TEST 'regional_noquilt_intel' [18:49, 00:28](1168 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [18:44, 00:33](629 MB)
+PASS -- TEST 'regional_wofs_intel' [17:58, 00:50](1604 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:27, 07:57]
+PASS -- TEST 'regional_ifi_control_intel' [35:53, 00:58](629 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [35:53, 00:15](628 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [35:54, 00:19](726 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:30, 08:35]
+PASS -- TEST 'rap_control_intel' [17:51, 01:51](974 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:33, 00:56](1150 MB)
+PASS -- TEST 'rap_decomp_intel' [17:12, 00:55](973 MB)
+PASS -- TEST 'rap_2threads_intel' [16:36, 01:17](1059 MB)
+PASS -- TEST 'rap_restart_intel' [05:17, 01:07](846 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [16:23, 01:16](969 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:51, 00:41](971 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [03:56, 01:39](844 MB)
+PASS -- TEST 'hrrr_control_intel' [13:52, 01:18](966 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [13:25, 00:50](967 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [13:25, 01:00](1044 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:32, 00:53](798 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:39, 01:50](968 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:07, 01:05](1934 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 01:00](1919 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:31, 08:26]
+PASS -- TEST 'control_csawmg_intel' [11:32, 00:15](661 MB)
+PASS -- TEST 'control_csawmgt_intel' [11:18, 00:23](655 MB)
+
+PASS -- COMPILE 'wam_intel' [08:29, 08:09]
+PASS -- TEST 'control_wam_intel' [11:02, 01:09](333 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:46]
+PASS -- TEST 'control_p8_faster_intel' [10:28, 01:42](1565 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:23, 00:39](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:20, 04:00]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:08, 00:36](755 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:29, 01:13](759 MB)
+PASS -- TEST 'control_stochy_debug_intel' [09:18, 00:26](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [09:17, 01:06](763 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:45, 00:34](803 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [08:45, 01:10](804 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:39, 00:24](771 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:30, 01:15](817 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:34, 00:50](1590 MB)
+PASS -- TEST 'regional_debug_intel' [05:05, 00:34](673 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:31, 00:31](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [03:47, 00:36](1137 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [03:34, 00:24](1139 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [03:04, 00:48](1147 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:48, 01:01](1142 MB)
+PASS -- TEST 'rap_diag_debug_intel' [02:48, 00:41](1233 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:41, 00:28](1143 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:45, 00:19](1146 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [01:26, 01:09](1148 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [01:08, 00:14](1147 MB)
+PASS -- TEST 'rap_noah_debug_intel' [01:04, 01:02](1139 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [01:02, 00:35](1139 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [59:57, 00:25](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [59:56, 00:36](1136 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [59:53, 01:06](1144 MB)
+PASS -- TEST 'rap_flake_debug_intel' [59:52, 00:52](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [59:00, 01:26](1149 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:17, 02:47]
+PASS -- TEST 'control_wam_debug_intel' [57:59, 00:19](376 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:30, 08:05]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:16, 01:19](1018 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [57:04, 01:14](854 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [56:37, 01:29](849 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [56:32, 01:27](913 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:33, 01:07](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [56:24, 01:46](853 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:43, 01:36](750 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:56, 01:08](735 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:41, 10:15]
+PASS -- TEST 'conus13km_control_intel' [56:18, 00:41](1061 MB)
+PASS -- TEST 'conus13km_2threads_intel' [49:25, 00:44](1042 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [49:24, 00:18](939 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [54:08, 08:17]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:40, 00:37](875 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:54, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:04, 01:12](1020 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:04, 00:18](1021 MB)
+PASS -- TEST 'conus13km_debug_intel' [45:04, 00:45](1110 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [45:04, 00:50](788 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [45:05, 00:45](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [45:04, 00:28](1180 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:52, 02:52]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:45, 01:08](1046 MB)
+
+PASS -- COMPILE 'hafsw_intel' [54:03, 09:18]
+PASS -- TEST 'hafs_regional_atm_intel' [37:58, 02:10](677 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:58, 00:39](1025 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:56, 01:29](721 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [37:56, 02:11](765 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:57, 02:02](776 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:56, 01:03](442 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:57, 01:34](467 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [37:57, 01:02](339 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:00, 02:38](402 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:56, 01:00](474 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:56, 01:23](474 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:58, 00:56](542 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:57, 00:39](369 MB)
+PASS -- TEST 'gnv1_nested_intel' [37:57, 01:14](734 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [45:50, 03:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:52, 00:38](576 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [51:02, 09:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:39, 00:46](581 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:39, 00:46](756 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [51:03, 09:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:36, 01:08](756 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [51:03, 08:55]
+PASS -- TEST 'hafs_regional_docn_intel' [37:34, 01:47](715 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:34, 01:21](698 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:32, 00:17](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [46:48, 08:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:15, 00:41](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [21:27, 00:12](738 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:09, 00:27](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [35:15, 00:19](644 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:02, 01:02](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [33:58, 01:03](750 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:23, 00:35](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:48, 00:59](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [28:46, 00:54](650 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:21, 00:58](630 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:45, 00:50](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [26:20, 00:54](2020 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [24:35, 01:03](2020 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [40:39, 08:32]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [38:37, 00:40](764 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 00:52]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:53, 00:47](263 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:53, 01:12](412 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:10, 00:56](411 MB)
+
+PASS -- COMPILE 'atml_intel' [10:32, 09:19]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 01:30](1606 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [21:27, 01:36](1603 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:56, 00:28](808 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:29, 08:47]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:57, 01:19](1609 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:41, 08:47]
+PASS -- TEST 'control_atmwav_intel' [20:54, 01:31](603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:34, 08:36]
+PASS -- TEST 'atmaero_control_p8_intel' [20:50, 01:01](2917 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [20:34, 00:54](2977 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:24, 01:43](2991 MB)
+
+PASS -- COMPILE 'atmaq_intel' [36:25, 08:22]
+
+PASS -- COMPILE 'atmaq_debug_intel' [31:15, 03:03]
+PASS -- TEST 'regional_atmaq_debug_intel' [07:21, 00:56](4493 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 16:36:40
-Ending Date/Time: 20240402 18:32:17
-Total Time: 01h:55m:55s
+Starting Date/Time: 20240404 18:11:06
+Ending Date/Time: 20240404 20:17:56
+Total Time: 02h:07m:10s
Compiles Completed: 37/37
Tests Completed: 176/176
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index f05e309630..1b36672e72 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-be233c68ae3c7010234ed89394531449f51ee522
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 758491ed6681dd6054b1ff877027e6da381e86f8 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g758491e)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 0e980b5f203e5342fbf0a3dbcddc07cf4f2172b9 FV3 (remotes/origin/rrfs_write_netcdf_hangs)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,273 +47,366 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240315
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6817
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_10684
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:26, 19:23]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:04, 04:54](3073 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:26, 20:52]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:17, 13:45](1683 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:34, 15:02](1826 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 07:10](955 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:20, 15:46](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:26, 09:14]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:52, 21:19](1699 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:28, 19:17]
-PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:37](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:20, 05:36](3091 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:35, 03:16](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:37](3128 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:35, 03:17](3176 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:59, 05:28](3088 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:36](3382 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:33](3094 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:41, 08:42](3633 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:31, 05:44](3616 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [26:23, 09:45](4345 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:22, 06:51](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:50, 05:16](3063 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:26, 18:52]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:42, 04:13](1679 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:13](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:26, 09:13]
-PASS -- TEST 'cpld_debug_p8_intel' [11:41, 07:46](3147 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:26, 08:42]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:27, 05:19](1706 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:26, 14:20]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:15, 04:15](1720 MB)
-
-PASS -- COMPILE 's2s_intel' [15:26, 14:15]
-PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:32](2666 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:30, 22:56]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:20, 05:28](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:30, 19:35]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:00, 14:04](1693 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:55, 07:13](1011 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:30, 16:02](1666 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:26, 08:37]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:49](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:42]
-PASS -- TEST 'control_flake_intel' [04:58, 03:26](666 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:05](617 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:11](623 MB)
-PASS -- TEST 'control_latlon_intel' [03:49, 02:05](618 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:07](622 MB)
-PASS -- TEST 'control_c48_intel' [06:44, 05:13](733 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 05:13](739 MB)
-PASS -- TEST 'control_c192_intel' [10:35, 07:50](738 MB)
-PASS -- TEST 'control_c384_intel' [13:56, 08:08](1061 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:36, 07:17](1194 MB)
-PASS -- TEST 'control_stochy_intel' [02:50, 01:25](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:50](439 MB)
-PASS -- TEST 'control_lndp_intel' [02:50, 01:23](621 MB)
-PASS -- TEST 'control_iovr4_intel' [03:56, 02:07](617 MB)
-PASS -- TEST 'control_iovr5_intel' [03:41, 02:05](621 MB)
-PASS -- TEST 'control_p8_intel' [04:32, 02:29](1595 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:39, 02:27](1592 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:27](1597 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:23, 01:26](803 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:45, 02:30](1589 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:23](804 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:34](1583 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:22](1595 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:41, 03:14](1653 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:46, 02:31](1611 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:39, 02:58](1607 MB)
-PASS -- TEST 'regional_control_intel' [06:09, 04:30](630 MB)
-PASS -- TEST 'regional_restart_intel' [04:09, 02:29](800 MB)
-PASS -- TEST 'regional_decomp_intel' [06:11, 04:43](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:10, 04:24](1215 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:27](627 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:28](629 MB)
-PASS -- TEST 'regional_wofs_intel' [07:06, 05:34](1601 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:29, 10:57]
-PASS -- TEST 'rap_control_intel' [08:24, 06:05](1000 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:40, 03:40](1188 MB)
-PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1004 MB)
-PASS -- TEST 'rap_restart_intel' [05:20, 03:11](876 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:05](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:20](1002 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](880 MB)
-PASS -- TEST 'hrrr_control_intel' [05:05, 03:12](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:16, 03:18](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:24, 02:48](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:48, 01:46](829 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:58](997 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:21](1954 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:44, 07:08](1946 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:29, 10:07]
-PASS -- TEST 'control_csawmg_intel' [08:07, 05:46](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:06, 05:44](693 MB)
-PASS -- TEST 'control_ras_intel' [04:39, 02:53](657 MB)
-
-PASS -- COMPILE 'wam_intel' [10:25, 09:18]
-PASS -- TEST 'control_wam_intel' [03:33, 01:53](378 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:27]
-PASS -- TEST 'control_p8_faster_intel' [04:44, 02:20](1598 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:15, 04:16](626 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:17]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:35](794 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:36](795 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:40, 02:49](794 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:40](799 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:10, 04:01](841 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:51](837 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:37, 02:37](805 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:13, 02:42](849 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:15, 02:44](1620 MB)
-PASS -- TEST 'regional_debug_intel' [17:12, 16:02](666 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:41, 04:41](1181 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:33](1175 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:34](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:35, 04:38](1182 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:40](1180 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:13, 04:50](1266 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 04:43](1180 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:46, 04:51](1177 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:44, 04:48](1181 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:39](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:38, 04:31](1181 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 04:39](1176 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:30](1180 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 04:37](1174 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:33](1177 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:44](1177 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:53](1182 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:25, 05:12]
-PASS -- TEST 'control_wam_debug_intel' [05:29, 04:37](423 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:37]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:28, 03:27](1055 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:16, 02:44](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:10, 02:54](879 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](794 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:31](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:33]
-PASS -- TEST 'conus13km_control_intel' [04:13, 01:51](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:41, 00:54](1084 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:08](971 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:21, 09:45]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:37](906 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:24, 05:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:31](1054 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1053 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:01, 13:21](1130 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:58, 13:34](813 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 13:44](1197 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:24, 05:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:40, 04:33](1086 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:23, 15:43]
-PASS -- TEST 'hafs_regional_atm_intel' [06:49, 04:30](713 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:03](1069 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 06:20](774 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [12:59, 10:49](897 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:16, 11:53](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:39](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:40, 05:44](493 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:20](386 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:21, 06:15](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:16](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:03](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:28, 03:49](579 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:39, 01:14](428 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:07, 03:23](786 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:21, 11:54](608 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:02](631 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:34, 07:06](685 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:26, 16:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:19](671 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:27, 13:59]
-PASS -- TEST 'hafs_regional_docn_intel' [07:42, 05:36](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:46, 05:32](734 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:31, 16:15](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:29](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:30](1215 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:38, 02:22](642 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:26](1215 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:25](641 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:30](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:20](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:39, 05:42](688 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 05:41](669 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:29](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:52, 03:51](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 03:53](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:19, 04:58]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:03](735 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:27](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:16]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:40, 01:06](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:02](451 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:40, 00:42](507 MB)
-
-PASS -- COMPILE 'atml_intel' [14:15, 12:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:02, 06:12](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:23](1632 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:24, 03:23](850 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:21, 12:35]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1629 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:26, 12:34]
-PASS -- TEST 'control_atmwav_intel' [02:57, 01:28](637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:20, 11:01]
-PASS -- TEST 'atmaero_control_p8_intel' [06:01, 03:36](2948 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:03, 04:16](2996 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:27](3014 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:21, 10:45]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:05]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 21:51](4532 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:32, 19:36]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 04:54](3079 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:29, 20:57]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:48](1690 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 15:07](1825 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:32, 07:09](962 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:44](1656 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:32, 09:34]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 21:20](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:30, 19:20]
+PASS -- TEST 'cpld_control_p8_intel' [09:09, 05:40](3094 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:13, 05:40](3091 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:19](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 05:38](3123 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:22](3179 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:55, 05:34](3093 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:37](3388 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:37](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:19, 08:46](3635 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:36, 05:48](3614 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [26:38, 09:46](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:57, 06:53](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:18](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:30, 18:58]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:43, 04:15](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:17](1726 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:24, 09:28]
+PASS -- TEST 'cpld_debug_p8_intel' [10:09, 07:40](3155 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:30, 08:56]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:16](1706 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:30, 14:26]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:14](1725 MB)
+
+PASS -- COMPILE 's2s_intel' [15:30, 14:29]
+PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:40](2670 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:33, 23:00]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:22, 05:30](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 19:44]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:03](1706 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:19](1016 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 16:00](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:52]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:53](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:28, 13:02]
+PASS -- TEST 'control_flake_intel' [04:55, 03:22](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:04](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:03, 02:07](623 MB)
+PASS -- TEST 'control_latlon_intel' [03:40, 02:06](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:07](621 MB)
+PASS -- TEST 'control_c48_intel' [06:43, 05:15](734 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:12](736 MB)
+PASS -- TEST 'control_c192_intel' [09:22, 07:51](740 MB)
+PASS -- TEST 'control_c384_intel' [14:29, 08:15](1068 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:55, 07:15](1201 MB)
+PASS -- TEST 'control_stochy_intel' [02:48, 01:27](629 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:38, 00:53](439 MB)
+PASS -- TEST 'control_lndp_intel' [02:39, 01:21](626 MB)
+PASS -- TEST 'control_iovr4_intel' [04:00, 02:05](625 MB)
+PASS -- TEST 'control_iovr5_intel' [03:45, 02:07](621 MB)
+PASS -- TEST 'control_p8_intel' [04:33, 02:29](1600 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:33, 02:28](1596 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:36, 02:28](1602 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:27, 01:26](800 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:29](1592 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:21](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:34, 02:35](1593 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:22](1608 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:16](1662 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:33](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:52, 02:57](1608 MB)
+PASS -- TEST 'regional_control_intel' [06:15, 04:30](628 MB)
+PASS -- TEST 'regional_restart_intel' [04:18, 02:30](799 MB)
+PASS -- TEST 'regional_decomp_intel' [06:18, 04:44](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:16, 04:23](1160 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:29](627 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:30](634 MB)
+PASS -- TEST 'regional_wofs_intel' [07:08, 05:35](1608 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:29, 11:14]
+PASS -- TEST 'rap_control_intel' [08:26, 06:04](1006 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:40](1196 MB)
+PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1005 MB)
+PASS -- TEST 'rap_restart_intel' [05:14, 03:11](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:21](1008 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:36](880 MB)
+PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](1002 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:17, 03:17](1000 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 02:49](1090 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:50](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:23, 06:00](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:45, 07:21](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:41, 07:05](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:28, 10:20]
+PASS -- TEST 'control_csawmg_intel' [08:02, 05:49](696 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:17, 05:47](693 MB)
+PASS -- TEST 'control_ras_intel' [04:42, 02:50](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:26, 09:38]
+PASS -- TEST 'control_wam_intel' [03:39, 01:53](379 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 12:41]
+PASS -- TEST 'control_p8_faster_intel' [04:51, 02:24](1594 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:16, 04:14](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 08:33]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:32](794 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:32](792 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:40, 02:50](796 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:42, 02:36](799 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:13, 03:58](841 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:57](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](811 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:28, 02:37](855 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:17, 02:36](1622 MB)
+PASS -- TEST 'regional_debug_intel' [18:08, 15:59](663 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:44, 04:39](1184 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:35](1180 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:40](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:39](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:45, 04:39](1185 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:22, 04:51](1263 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:42, 04:55](1179 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:40, 04:47](1186 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:45, 04:43](1185 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:45, 04:40](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:36](1177 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:45](1184 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:40, 07:45](1180 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:37](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:48, 05:45](1187 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:37](1182 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:14, 07:55](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:19, 05:31]
+PASS -- TEST 'control_wam_debug_intel' [05:35, 04:37](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:42]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:13, 03:30](1062 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:06](885 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:07, 02:46](883 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:13, 02:52](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:31](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:27, 11:33]
+PASS -- TEST 'conus13km_control_intel' [05:37, 01:53](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:40, 00:57](1082 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:10](972 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 09:43]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:36](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 05:36]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:46, 04:29](1061 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:24](1058 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:06, 13:17](1131 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:05, 13:27](818 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 13:10](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:32]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:46, 04:41](1089 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:29, 15:50]
+PASS -- TEST 'hafs_regional_atm_intel' [06:50, 04:32](714 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:12, 05:09](1072 MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [12:52, 10:56](797 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:58, 12:01](817 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:41](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:34, 05:42](493 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:18](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 06:14](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:14](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:28, 03:46](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:17](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:21, 03:25](789 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:29, 07:04]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:33, 12:00](615 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:29, 19:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 07:08](638 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:10](689 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:19](677 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:24, 14:10]
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
+FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:28, 16:11](896 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:27, 07:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:30](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:40, 01:32](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](643 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:37, 02:23](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:25](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:29](749 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:34, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:22](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:03, 05:41](690 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:45, 05:39](678 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:29](749 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:59](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:32, 03:55](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:26, 05:04]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:04](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:36]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:30](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:17]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:11](313 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:38, 01:09](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:42, 00:46](452 MB)
+
+PASS -- COMPILE 'atml_intel' [13:25, 12:45]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 06:19](1642 MB)
+FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
+MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmw_intel' [13:26, 12:38]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:33](1634 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:25, 12:30]
+PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:25, 11:10]
+PASS -- TEST 'atmaero_control_p8_intel' [05:56, 03:38](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:44, 04:15](2996 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:17, 04:32](3011 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:25, 10:36]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:17]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:39, 21:55](4534 MB)
SYNOPSIS:
-Starting Date/Time: 20240331 11:02:38
-Ending Date/Time: 20240331 12:30:03
-Total Time: 01h:28m:12s
+Starting Date/Time: 20240404 09:03:16
+Ending Date/Time: 20240404 10:29:28
+Total Time: 01h:26m:46s
Compiles Completed: 39/39
-Tests Completed: 175/175
+Tests Completed: 170/175
+Failed Tests:
+* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_atm_ocn_intel.log
+* TEST hafs_regional_docn_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_intel.log
+* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_oisst_intel.log
+* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
+-- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_control_p8_atmlnd_intel.log
+* TEST control_restart_p8_atmlnd_intel: MISSING
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_21338
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafsw_intel' [16:32, 16:07]
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:32](780 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:31, 14:32]
+PASS -- TEST 'hafs_regional_docn_intel' [07:24, 05:41](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:24, 05:41](739 MB)
+
+PASS -- COMPILE 'atml_intel' [14:29, 13:18]
+PASS -- TEST 'control_p8_atmlnd_intel' [10:00, 07:09](1641 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240404 11:35:33
+Ending Date/Time: 20240404 12:02:07
+Total Time: 00h:26m:47s
+Compiles Completed: 3/3
+Tests Completed: 4/4
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index fb330537da..7d0d7663cb 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_62571
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4074
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:15, 18:20]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 08:03](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 22:25]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:45, 14:26](1696 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:33, 14:30](1813 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:47](948 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:47, 15:10](1665 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:12, 12:04]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [31:51, 24:26](1703 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:10, 17:07]
-PASS -- TEST 'cpld_control_p8_intel' [18:00, 08:08](3101 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:00, 08:02](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:25, 05:02](3159 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [20:51, 09:03](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 05:09](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 06:36](3413 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [19:14, 08:19](3098 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 07:07](3023 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:51, 08:52](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [22:58, 10:29](3269 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:24, 07:23](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [27:02, 13:08](4039 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:07, 09:16](4344 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [16:58, 07:48](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:10, 17:17]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 05:20](1684 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:36, 05:18](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [13:12, 11:43]
-PASS -- TEST 'cpld_debug_p8_intel' [17:06, 10:02](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:08, 10:17]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:56, 05:59](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:10, 15:30]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:39, 05:19](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [17:09, 15:32]
-PASS -- TEST 'cpld_control_c48_intel' [09:16, 06:54](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:11, 21:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:19](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:12, 21:27]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:28, 15:05](1707 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:30, 07:42](1002 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:36, 17:44](1681 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 11:45]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:05, 26:56](1710 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:09, 14:00]
-PASS -- TEST 'control_flake_intel' [08:50, 03:44](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [08:17, 02:32](620 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:58, 02:36](627 MB)
-PASS -- TEST 'control_latlon_intel' [07:48, 02:35](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:05, 02:36](623 MB)
-PASS -- TEST 'control_c48_intel' [11:48, 05:38](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:48, 05:41](728 MB)
-PASS -- TEST 'control_c192_intel' [14:03, 08:54](739 MB)
-PASS -- TEST 'control_c384_intel' [22:25, 16:46](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:04, 14:13](1184 MB)
-PASS -- TEST 'control_stochy_intel' [07:46, 01:50](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:51, 01:20](430 MB)
-PASS -- TEST 'control_lndp_intel' [07:46, 01:48](628 MB)
-PASS -- TEST 'control_iovr4_intel' [07:00, 02:19](623 MB)
-PASS -- TEST 'control_iovr5_intel' [07:42, 03:00](623 MB)
-PASS -- TEST 'control_p8_intel' [06:03, 03:21](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:29, 04:07](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:36, 03:22](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:36, 01:48](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:36, 03:19](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:09, 02:15](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:30, 03:26](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:32, 03:02](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:07, 05:40](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:38, 04:13](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:39, 03:42](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:15, 03:49](1616 MB)
-PASS -- TEST 'regional_control_intel' [06:42, 04:39](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:39, 02:51](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:42, 04:56](614 MB)
-PASS -- TEST 'regional_2threads_intel' [04:36, 03:02](757 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:06, 04:38](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:38](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 04:37](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:43, 06:14](1590 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:09, 12:38]
-PASS -- TEST 'rap_control_intel' [08:59, 06:52](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:59, 04:03](1183 MB)
-PASS -- TEST 'rap_decomp_intel' [10:02, 07:11](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:52, 06:07](1095 MB)
-PASS -- TEST 'rap_restart_intel' [06:07, 03:25](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:57](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 07:12](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:00, 05:01](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:04, 03:58](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:08](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:57, 03:10](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:16](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:56, 06:44](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 08:14](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:35, 07:50](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:09, 12:36]
-PASS -- TEST 'control_csawmg_intel' [08:43, 06:43](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:36, 06:57](691 MB)
-PASS -- TEST 'control_ras_intel' [05:23, 03:50](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:12, 11:50]
-PASS -- TEST 'control_wam_intel' [04:30, 02:25](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:14, 15:06]
-PASS -- TEST 'control_p8_faster_intel' [06:05, 03:13](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:47, 04:28](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:08, 10:37]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:38, 02:48](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:51](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:09](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:22, 03:03](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:58, 04:17](826 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:52, 04:17](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:04, 03:08](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:38, 02:53](844 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:47, 03:07](1622 MB)
-PASS -- TEST 'regional_debug_intel' [18:41, 16:15](637 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:21, 04:59](1168 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:26, 04:50](1166 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 05:05](1169 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:53](1169 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:01](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:34, 05:26](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 05:16](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:12](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:30, 05:20](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:32](1168 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:11](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 05:30](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:26](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 05:29](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:29, 06:23](1170 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:27, 05:15](1168 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:07, 08:34](1171 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:07, 07:42]
-PASS -- TEST 'control_wam_debug_intel' [07:30, 05:10](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:10, 12:57]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:49](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:51, 05:55](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:00, 03:43](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:14](948 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:56, 02:45](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 03:31](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:53, 04:25](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:43](763 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 14:35]
-PASS -- TEST 'conus13km_control_intel' [04:59, 02:32](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:07](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:25](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:08]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:54, 04:22](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:09, 09:20]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:49](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:54](1045 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:47, 14:30](1127 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:26](802 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:36, 08:27](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:03](1193 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:09, 09:17]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:13, 17:29]
-PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:17](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 04:28](1056 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:33, 07:52](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:55, 11:49](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:37, 12:54](805 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 05:23](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:26, 06:40](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:54](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:04](433 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:48, 03:50](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:01, 03:42](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:10, 04:42](571 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:38, 01:44](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:14, 04:03](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:11, 11:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:06, 12:53](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:29, 07:40](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 07:43](784 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:10, 17:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 06:00](788 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:16, 15:08]
-PASS -- TEST 'hafs_regional_docn_intel' [09:49, 06:10](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:25, 06:09](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:14, 20:10](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:10, 11:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:38](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 01:37](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:27](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:28](635 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:29](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:35](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:57, 06:16](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:05](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 02:34](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 04:33](2012 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:31, 04:36](2014 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:09, 07:22]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:26](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:09, 11:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:32, 02:34](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:09, 03:18]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:29, 02:00](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:24, 01:39](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 01:04](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:12, 15:06]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:37, 07:45](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:35, 07:56](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 04:47](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:09, 14:30]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:23](1648 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:10, 14:20]
-PASS -- TEST 'control_atmwav_intel' [04:45, 02:02](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:11, 12:59]
-PASS -- TEST 'atmaero_control_p8_intel' [09:10, 06:29](2942 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:08, 07:06](3010 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:59, 07:14](3016 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:11, 13:28]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:09, 09:43]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:35, 18:25](4481 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [23:14, 22:04]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:19](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:13, 29:20]
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 14:39](1698 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:54](1814 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:03, 07:34](949 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:47, 15:55](1665 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:32]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 24:28](1697 MB)
+
+PASS -- COMPILE 's2swa_intel' [25:12, 23:44]
+PASS -- TEST 'cpld_control_p8_intel' [12:57, 08:49](3101 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:37, 08:58](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:38, 05:43](3159 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:25, 09:07](3126 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:55, 07:02](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:46, 07:35](3415 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:46, 08:43](3098 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:46, 07:49](3023 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:37, 09:11](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:47, 11:00](3272 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:38, 08:41](3605 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 13:52](4043 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:10, 09:24](4346 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 08:23](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [23:14, 22:07]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 05:45](1684 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:31, 05:55](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [21:10, 19:36]
+PASS -- TEST 'cpld_debug_p8_intel' [18:26, 10:54](3130 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [22:10, 20:45]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 06:29](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [23:14, 21:43]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:32, 06:00](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [23:14, 21:38]
+PASS -- TEST 'cpld_control_c48_intel' [12:03, 07:15](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [27:13, 25:40]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 08:45](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [27:22, 26:16]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:03, 15:50](1703 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:14, 07:51](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 17:55](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:13, 16:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 26:54](1711 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:06]
+PASS -- TEST 'control_flake_intel' [06:44, 04:05](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:51, 02:48](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:04](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:37, 02:58](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:49](623 MB)
+PASS -- TEST 'control_c48_intel' [08:17, 05:37](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:17, 05:41](727 MB)
+PASS -- TEST 'control_c192_intel' [12:49, 09:33](738 MB)
+PASS -- TEST 'control_c384_intel' [19:13, 16:47](1041 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:44, 14:29](1184 MB)
+PASS -- TEST 'control_stochy_intel' [03:36, 01:54](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:32](429 MB)
+PASS -- TEST 'control_lndp_intel' [03:36, 01:58](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:44, 02:51](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:38, 02:50](623 MB)
+PASS -- TEST 'control_p8_intel' [07:23, 04:10](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:02, 04:16](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 03:42](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:24, 01:51](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:38](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 01:48](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:44, 03:46](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:33, 03:35](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:37](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:07, 04:29](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:08, 03:53](1614 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:35, 04:10](1615 MB)
+PASS -- TEST 'regional_control_intel' [06:56, 04:59](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:38, 02:39](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:53, 04:59](615 MB)
+PASS -- TEST 'regional_2threads_intel' [07:08, 04:11](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:17, 05:11](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:19, 05:21](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:04, 05:10](615 MB)
+PASS -- TEST 'regional_wofs_intel' [09:27, 07:01](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:09, 14:08]
+PASS -- TEST 'rap_control_intel' [11:19, 07:11](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:35, 04:02](1183 MB)
+PASS -- TEST 'rap_decomp_intel' [11:19, 07:22](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [10:35, 06:13](1093 MB)
+PASS -- TEST 'rap_restart_intel' [07:53, 04:32](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:20, 07:46](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:20, 07:48](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:33](880 MB)
+PASS -- TEST 'hrrr_control_intel' [07:49, 04:22](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:28](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 03:29](1082 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:09, 02:28](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:35, 06:50](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 08:26](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:18, 07:59](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [18:09, 16:48]
+PASS -- TEST 'control_csawmg_intel' [09:44, 06:58](696 MB)
+PASS -- TEST 'control_csawmgt_intel' [09:44, 06:45](691 MB)
+PASS -- TEST 'control_ras_intel' [05:50, 03:33](657 MB)
+
+PASS -- COMPILE 'wam_intel' [16:09, 14:44]
+PASS -- TEST 'control_wam_intel' [04:49, 02:08](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [20:14, 18:11]
+PASS -- TEST 'control_p8_faster_intel' [06:42, 03:20](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:05, 04:53](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [15:13, 13:36]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:51](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:38, 03:04](782 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:11, 03:29](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:29, 03:03](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:28](825 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:19](826 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:13, 02:53](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:13, 02:58](846 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:41, 03:31](1621 MB)
+PASS -- TEST 'regional_debug_intel' [18:57, 16:30](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:26, 05:29](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:44, 05:05](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:17](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:16](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 05:03](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:39](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:21](1167 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:51](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:41](1169 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 05:25](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:16](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:18](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:56, 08:26](1167 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:18](1164 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:05, 06:19](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:45, 05:12](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:35](1172 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [12:10, 10:20]
+PASS -- TEST 'control_wam_debug_intel' [07:43, 05:33](397 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:10, 15:08]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:50](1048 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 05:54](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 03:43](885 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:21](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 02:48](940 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:28](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:52, 04:11](783 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 02:07](765 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:09, 17:54]
+PASS -- TEST 'conus13km_control_intel' [05:07, 02:36](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:17, 01:18](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 01:24](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:09, 15:25]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:15, 04:33](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:50]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:09](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 04:56](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:52, 13:56](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:12](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:46, 08:12](1109 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:57](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:57](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [25:15, 23:19]
+PASS -- TEST 'hafs_regional_atm_intel' [08:27, 05:46](708 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 05:02](1055 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:43, 07:40](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:45, 11:41](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:41, 12:44](799 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:41](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 06:51](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:20](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:14, 08:25](444 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:06, 04:13](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:30](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:24, 04:53](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:08, 02:00](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:32, 04:35](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [16:09, 14:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:31, 13:13](586 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [24:22, 22:13]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:52](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:48, 07:54](786 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 20:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:15](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [22:16, 20:35]
+PASS -- TEST 'hafs_regional_docn_intel' [09:45, 06:15](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:41, 06:15](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:32, 20:06](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:01, 01:37](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:30, 02:39](635 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:31](635 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:32](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:31, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:02, 02:28](635 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:05](691 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:59, 06:12](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:45, 02:42](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:46](2015 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:39](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:21]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:28](740 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 13:01]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:35](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:08, 03:46]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:05, 03:51](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:53, 02:13](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:53, 01:07](456 MB)
+
+PASS -- COMPILE 'atml_intel' [19:10, 17:29]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:51, 08:22](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:51, 08:33](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:12](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [18:14, 16:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:19, 02:29](1648 MB)
+
+PASS -- COMPILE 'atmwm_intel' [17:13, 15:39]
+PASS -- TEST 'control_atmwav_intel' [06:03, 02:49](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:17, 14:25]
+PASS -- TEST 'atmaero_control_p8_intel' [12:24, 06:41](2941 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:10, 06:56](3011 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:16, 07:32](3017 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:10, 13:50]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:12, 10:51]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 18:32](4482 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 02:13:47
-Ending Date/Time: 20240402 03:53:52
-Total Time: 01h:40m:57s
+Starting Date/Time: 20240404 09:47:15
+Ending Date/Time: 20240404 11:36:12
+Total Time: 01h:49m:47s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 45d7d38cee..e10204126e 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,19 +1,19 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -25,433 +25,373 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3566098
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2065634
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [15:11, 12:59]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:23, 05:27](3192 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 16:04]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:59, 17:05](1756 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:15, 17:43](2035 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:08](1124 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:12](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:08, 04:34]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:08, 22:31](1703 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:12, 12:58]
-PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:45](3228 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 05:46](3229 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:23, 03:19](3264 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:44](3253 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:20, 03:22](3281 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:15, 05:29](3564 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:14, 05:42](3218 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:17, 04:46](3086 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:42](3229 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:14, 10:07](3350 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:29, 05:59](3627 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [17:32, 09:19](4132 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:31, 05:53](4367 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:22](3191 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:11, 12:07]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 04:42](1747 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:17](1799 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:09, 04:34]
-PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:22](3267 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:09, 04:13]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:37](1753 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:11, 11:26]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:45](1782 MB)
-
-PASS -- COMPILE 's2s_intel' [14:11, 11:25]
-PASS -- TEST 'cpld_control_c48_intel' [11:44, 09:19](2833 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:13, 16:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:03, 05:17](3224 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 15:35]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:01, 17:12](1780 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:07, 08:01](1183 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:00, 19:38](1687 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:58, 24:39](1733 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:10, 11:09]
-PASS -- TEST 'control_flake_intel' [05:20, 03:18](707 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:23](659 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:29](662 MB)
-PASS -- TEST 'control_latlon_intel' [04:21, 02:25](655 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:30](657 MB)
-PASS -- TEST 'control_c48_intel' [08:23, 06:21](872 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 06:21](876 MB)
-PASS -- TEST 'control_c192_intel' [11:36, 09:05](855 MB)
-PASS -- TEST 'control_c384_intel' [12:27, 09:02](1296 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:34, 07:48](1396 MB)
-PASS -- TEST 'control_stochy_intel' [04:18, 01:39](659 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:20, 00:58](508 MB)
-PASS -- TEST 'control_lndp_intel' [04:17, 01:30](659 MB)
-PASS -- TEST 'control_iovr4_intel' [05:18, 02:24](653 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:25](653 MB)
-PASS -- TEST 'control_p8_intel' [04:59, 02:53](1623 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 02:53](1628 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:55](1625 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:46, 01:34](893 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:52, 02:50](1626 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:33](938 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:48, 02:56](1627 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:48, 02:41](1717 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:42, 05:10](1639 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 03:56](1694 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:51, 02:55](1641 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:49, 03:24](1648 MB)
-PASS -- TEST 'regional_control_intel' [07:32, 05:08](853 MB)
-PASS -- TEST 'regional_restart_intel' [04:34, 02:42](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [07:30, 05:26](851 MB)
-PASS -- TEST 'regional_2threads_intel' [05:40, 03:11](841 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:38, 05:11](1360 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:36, 05:05](856 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:07](852 MB)
-PASS -- TEST 'regional_wofs_intel' [08:39, 06:42](1914 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:10, 10:27]
-PASS -- TEST 'rap_control_intel' [09:41, 07:46](1109 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:00](1298 MB)
-PASS -- TEST 'rap_decomp_intel' [10:30, 08:06](1041 MB)
-PASS -- TEST 'rap_2threads_intel' [09:33, 07:11](1187 MB)
-PASS -- TEST 'rap_restart_intel' [06:37, 04:01](1109 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:39, 07:39](1108 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:06](1043 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 05:48](1139 MB)
-PASS -- TEST 'hrrr_control_intel' [06:28, 03:55](1050 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:04](1039 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:38](1117 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1001 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:34](1108 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:11](1999 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 08:54](2060 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:09, 10:14]
-PASS -- TEST 'control_csawmg_intel' [08:39, 05:57](758 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:37, 05:51](757 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:12](745 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:07, 03:33]
-PASS -- TEST 'control_csawmg_gnu' [10:36, 08:03](549 MB)
-PASS -- TEST 'control_csawmgt_gnu' [10:38, 08:08](547 MB)
-
-PASS -- COMPILE 'wam_intel' [12:09, 09:54]
-PASS -- TEST 'control_wam_intel' [04:17, 02:02](657 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:09, 10:50]
-PASS -- TEST 'control_p8_faster_intel' [05:48, 02:38](1633 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:37, 04:43](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 04:34]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 02:40](818 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:40](820 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:16, 03:06](824 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:16, 02:40](822 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:04](875 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:33, 04:05](872 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:16, 02:47](836 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:25, 02:47](877 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:39, 02:50](1648 MB)
-PASS -- TEST 'regional_debug_intel' [18:44, 17:02](835 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:21, 04:49](1212 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:21, 04:44](1207 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:21, 05:08](1208 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:19, 04:53](1212 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 04:56](1217 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:06](1297 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:53](1217 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:56](1217 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:22, 04:57](1211 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:50](1217 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:20, 04:48](1209 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:56](1213 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 07:50](1213 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:50](1210 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:50](1219 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:21, 04:51](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:27](1217 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:07, 02:34]
-PASS -- TEST 'control_csawmg_debug_gnu' [05:39, 02:13](530 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:36, 02:08](535 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:08]
-PASS -- TEST 'control_wam_debug_intel' [07:18, 04:58](538 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 09:58]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:48](1162 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 06:23](1060 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 03:23](991 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:03](1092 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:30, 03:06](968 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:26, 03:43](926 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:33, 04:48](1034 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:54](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19]
-PASS -- TEST 'conus13km_control_intel' [04:51, 02:03](1208 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:51](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:35, 01:12](1108 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 09:55]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:10](990 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:09, 03:14]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:19, 04:48](1089 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:43](1086 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:45, 14:43](1227 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:44, 14:36](939 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 07:56](1156 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:06](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:11]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 04:53](1131 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:10, 11:30]
-PASS -- TEST 'hafs_regional_atm_intel' [07:08, 04:50](746 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:52](1119 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 06:52](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:16, 13:23](870 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:14](883 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:48, 05:28](505 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 06:34](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:41](375 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:06](481 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 03:38](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:25](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 03:57](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:09](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:35, 04:00](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:09, 03:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:45, 12:47](580 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:10, 12:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:38](671 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:58, 08:40](742 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 11:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:54, 06:29](727 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:09, 11:10]
-PASS -- TEST 'hafs_regional_docn_intel' [09:07, 06:19](833 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:21](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 16:01](1221 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:40](1169 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:14, 01:38](1100 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:35](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1035 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:35](1023 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:13, 02:38](1145 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:37](1152 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1025 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 06:01](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 06:01](1040 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:11, 02:37](1148 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 04:23](2424 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:46](2436 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 02:51]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:12](1078 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:41](1136 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:24, 00:42](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:45](330 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:18, 00:29](323 MB)
-
-PASS -- COMPILE 'atml_intel' [13:09, 11:30]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 04:04](1629 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:49, 04:05](1608 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:13](906 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:09, 10:49]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:41](1681 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:09, 10:45]
-PASS -- TEST 'control_atmwav_intel' [04:25, 01:46](678 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:09, 10:30]
-PASS -- TEST 'atmaero_control_p8_intel' [06:50, 03:59](3039 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:50, 04:52](3109 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:37, 05:04](3117 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:09, 10:12]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:08, 03:34]
-FAIL TO COMPARE -- TEST 'regional_atmaq_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'atm_gnu' [06:08, 03:37]
-PASS -- TEST 'control_c48_gnu' [12:20, 10:38](765 MB)
-PASS -- TEST 'control_stochy_gnu' [06:17, 03:26](512 MB)
-PASS -- TEST 'control_ras_gnu' [07:16, 04:46](516 MB)
-PASS -- TEST 'control_p8_gnu' [06:49, 04:37](1266 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [07:46, 04:32](1270 MB)
-PASS -- TEST 'control_flake_gnu' [13:20, 10:39](553 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:07, 03:54]
-PASS -- TEST 'rap_control_gnu' [13:29, 10:47](857 MB)
-PASS -- TEST 'rap_decomp_gnu' [13:30, 10:56](859 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:35, 09:48](948 MB)
-PASS -- TEST 'rap_restart_gnu' [07:33, 05:29](586 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [15:31, 13:33](860 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:38, 10:54](859 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:33, 07:59](588 MB)
-PASS -- TEST 'hrrr_control_gnu' [07:29, 05:29](860 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:29, 05:29](842 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:25, 04:59](931 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [07:24, 05:23](859 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [05:19, 02:49](576 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:22, 02:49](667 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [12:40, 10:22](857 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:44]
-PASS -- TEST 'control_diag_debug_gnu' [03:21, 01:36](551 MB)
-PASS -- TEST 'regional_debug_gnu' [13:37, 11:18](565 MB)
-PASS -- TEST 'rap_control_debug_gnu' [05:18, 02:35](877 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 02:36](873 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:15, 02:32](875 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:15, 02:33](875 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [05:29, 02:45](953 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:01](870 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:16, 02:38](874 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:31](871 MB)
-PASS -- TEST 'control_ras_debug_gnu' [04:15, 01:34](503 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:43](500 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:35, 01:37](1260 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:37](869 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [05:16, 02:51](879 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:29, 04:17](877 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:08, 01:54]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:07, 03:34]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:25, 09:21](714 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:24, 04:52](719 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:31, 08:32](771 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:28, 04:33](757 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:23, 05:12](718 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:30, 06:58](553 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:20, 02:32](549 MB)
-PASS -- TEST 'conus13km_control_gnu' [05:47, 03:12](887 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [07:39, 05:51](888 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:38, 01:46](565 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:28]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:33, 05:43](747 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:07, 03:53]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:17, 02:33](718 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:15, 02:24](724 MB)
-PASS -- TEST 'conus13km_debug_gnu' [09:43, 06:43](898 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:39, 06:51](590 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [09:35, 07:12](903 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:35, 06:56](967 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:40]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:35](750 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:11, 14:29]
-
-PASS -- COMPILE 's2s_gnu' [16:09, 14:25]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:59, 07:32](1359 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:29]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 14:29]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:54, 21:54](1326 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:32]
-FAIL TO COMPARE -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 14:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:12, 03:00](697 MB)
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [13:06, 13:06]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:28, 05:37](3146 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:57, 15:57]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:49, 17:05](1730 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 17:51](1996 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:58, 08:05](1092 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:12](1618 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:55, 04:55]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 22:47](1642 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:14, 13:14]
+PASS -- TEST 'cpld_control_p8_intel' [06:46, 05:54](3192 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:44, 05:49](3199 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:42, 03:26](3244 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:46, 05:54](3207 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:43, 03:25](3263 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3527 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:54](3191 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:47](3054 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:41, 05:49](3191 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:48, 10:11](3326 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 06:10](3594 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [14:36, 09:43](4102 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:31, 06:11](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:12, 05:24](3167 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:42, 12:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:40, 04:48](1716 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:41, 04:49](1709 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:42, 04:42]
+PASS -- TEST 'cpld_debug_p8_intel' [09:34, 08:42](3181 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:20, 04:20]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:49, 05:53](1716 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:43, 11:43]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:30, 04:31](1763 MB)
+
+PASS -- COMPILE 's2s_intel' [11:41, 11:41]
+PASS -- TEST 'cpld_control_c48_intel' [10:19, 09:37](2805 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:30]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:25, 05:32](3197 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:31, 15:31]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:55, 17:10](1767 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:12](1144 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:33, 19:48](1664 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:44, 04:43]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:59, 25:16](1670 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:53, 11:53]
+PASS -- TEST 'control_flake_intel' [03:34, 03:23](685 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:26](636 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](636 MB)
+PASS -- TEST 'control_latlon_intel' [02:36, 02:27](638 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:58, 02:31](632 MB)
+PASS -- TEST 'control_c48_intel' [06:46, 06:23](854 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 06:24](859 MB)
+PASS -- TEST 'control_c192_intel' [09:38, 09:13](835 MB)
+PASS -- TEST 'control_c384_intel' [10:24, 09:15](1274 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1373 MB)
+PASS -- TEST 'control_stochy_intel' [01:53, 01:39](644 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:18, 01:00](478 MB)
+PASS -- TEST 'control_lndp_intel' [01:46, 01:33](643 MB)
+PASS -- TEST 'control_iovr4_intel' [02:38, 02:27](638 MB)
+PASS -- TEST 'control_iovr5_intel' [02:42, 02:27](636 MB)
+PASS -- TEST 'control_p8_intel' [03:45, 03:02](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:44, 02:59](1605 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 02:56](1600 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](877 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:29, 02:52](1606 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:14, 01:38](919 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:37, 03:02](1586 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:21, 02:46](1701 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:51, 05:19](1594 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:44, 04:01](1670 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:42, 03:00](1623 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:08, 03:28](1617 MB)
+PASS -- TEST 'regional_control_intel' [05:42, 05:14](826 MB)
+PASS -- TEST 'regional_restart_intel' [03:18, 02:50](1005 MB)
+PASS -- TEST 'regional_decomp_intel' [06:01, 05:35](826 MB)
+PASS -- TEST 'regional_2threads_intel' [03:44, 03:20](827 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:37, 05:12](1343 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 05:17](829 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:43, 05:18](830 MB)
+PASS -- TEST 'regional_wofs_intel' [07:13, 06:46](1894 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:38, 10:37]
+PASS -- TEST 'rap_control_intel' [08:23, 07:55](1092 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 04:20](1273 MB)
+PASS -- TEST 'rap_decomp_intel' [08:40, 08:17](1015 MB)
+PASS -- TEST 'rap_2threads_intel' [08:12, 07:41](1160 MB)
+PASS -- TEST 'rap_restart_intel' [04:33, 04:03](1078 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:19, 07:46](1091 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1021 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:52](1122 MB)
+PASS -- TEST 'hrrr_control_intel' [04:26, 04:01](1029 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 04:07](1017 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:41](1094 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:49, 02:30](944 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:09, 07:37](1082 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1978 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:01](2054 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:20, 10:19]
+PASS -- TEST 'control_csawmg_intel' [06:32, 06:04](736 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:27, 05:59](736 MB)
+PASS -- TEST 'control_ras_intel' [03:33, 03:21](725 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:34, 03:34]
+PASS -- TEST 'control_csawmg_gnu' [08:48, 08:22](534 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:36, 08:11](533 MB)
+
+PASS -- COMPILE 'wam_intel' [09:57, 09:56]
+PASS -- TEST 'control_wam_intel' [02:16, 02:04](640 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:54, 10:54]
+PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1613 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:13, 04:45](837 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:55, 04:55]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:58, 02:43](777 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:04, 02:46](777 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:13, 03:01](779 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:56, 02:44](782 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:11](833 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:38, 04:09](832 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:59, 02:47](791 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:09, 02:48](837 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1596 MB)
+PASS -- TEST 'regional_debug_intel' [17:37, 17:08](806 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:33, 05:18](1136 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1162 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:08, 04:57](1170 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:09, 04:57](1163 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:57](1165 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:17](1255 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:06](1169 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:12, 05:00](1174 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:11, 04:57](1172 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:09, 04:56](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:04, 04:49](1174 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:58](1167 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:10, 07:55](1167 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:12, 04:59](1157 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:57, 05:45](1173 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:56](1167 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 08:22](1175 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:38]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 02:09](508 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:37, 02:11](504 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:37, 03:36]
+PASS -- TEST 'control_wam_debug_intel' [05:02, 04:52](469 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:05, 10:05]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:50](1145 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:23](1034 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 03:24](971 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 06:06](1077 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:08](945 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:34](918 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:16, 04:50](1023 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](918 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 12:27]
+PASS -- TEST 'conus13km_control_intel' [02:45, 02:06](1182 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:21, 00:54](1101 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:16](1073 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:16, 10:16]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:41, 04:12](976 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:55, 04:43](1042 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:52, 04:35](1049 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:05, 14:27](1172 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:57, 14:16](879 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:30, 08:02](1107 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 14:40](1253 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:28, 03:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:06, 04:52](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:56, 11:55]
+PASS -- TEST 'hafs_regional_atm_intel' [05:53, 04:57](724 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:18, 06:00](1098 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:49, 06:47](803 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 13:27](850 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 15:04](1017 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 05:28](480 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:46, 06:41](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:12, 02:42](362 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:50, 07:12](466 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:44](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:09, 03:30](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:40, 04:01](565 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:33, 01:16](387 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:35, 04:04](780 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:05, 04:05]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:25, 12:46](534 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](612 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 08:45](687 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:59, 11:58]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:19, 06:29](675 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:25, 11:24]
+PASS -- TEST 'hafs_regional_docn_intel' [07:15, 06:21](813 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:17, 06:21](796 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:38, 16:02](1203 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:49, 02:41](1141 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:43, 01:36](1078 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:40, 02:32](1000 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:41, 02:33](1014 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:39](1018 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:43, 02:37](1156 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:41](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:36](1002 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1050 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:19](1038 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:43, 02:38](1143 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:53, 03:46](2482 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:51](2484 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:07]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 06:10](1076 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 06:12]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:48, 02:41](1142 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:10]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:48](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](322 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](316 MB)
+
+PASS -- COMPILE 'atml_intel' [11:38, 11:38]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:00, 04:17](1584 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:15](1592 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:54, 02:21](880 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:54, 10:54]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:46](1659 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:00, 11:00]
+PASS -- TEST 'control_atmwav_intel' [02:00, 01:40](653 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:46, 10:46]
+PASS -- TEST 'atmaero_control_p8_intel' [04:45, 04:00](2995 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:53](3075 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 05:06](3085 MB)
+
+PASS -- COMPILE 'atmaq_intel' [10:33, 10:33]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:48, 03:48]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 22:57](4291 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:44, 03:44]
+PASS -- TEST 'control_c48_gnu' [10:59, 10:48](751 MB)
+PASS -- TEST 'control_stochy_gnu' [03:38, 03:26](494 MB)
+PASS -- TEST 'control_ras_gnu' [04:58, 04:48](502 MB)
+PASS -- TEST 'control_p8_gnu' [05:25, 04:39](1255 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:10, 04:28](1256 MB)
+PASS -- TEST 'control_flake_gnu' [11:32, 11:21](536 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:48, 03:48]
+PASS -- TEST 'rap_control_gnu' [11:01, 10:41](842 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](852 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:19, 09:53](931 MB)
+PASS -- TEST 'rap_restart_gnu' [06:01, 05:32](567 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:04, 10:39](842 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:05](842 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:39, 08:12](585 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:56, 05:33](841 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:03, 05:36](824 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 05:01](924 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:52, 05:33](841 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:54](554 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:52](652 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:00, 10:30](838 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37]
+PASS -- TEST 'control_diag_debug_gnu' [01:55, 01:37](530 MB)
+PASS -- TEST 'regional_debug_gnu' [11:54, 11:26](547 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:37](849 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:45, 02:34](846 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:37](855 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:37](850 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:48](936 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:09](850 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:39](851 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:51, 02:39](845 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](483 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [01:58, 01:47](476 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:38](1241 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:45, 02:33](847 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:52](852 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:44, 04:19](855 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:54, 01:54]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 09:13](696 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:58](697 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:00, 08:37](750 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:52, 04:31](740 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:13](698 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:15, 06:53](545 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:50, 02:35](532 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:52, 03:13](870 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:45](869 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:18, 01:48](543 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:28, 05:28]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:11, 05:44](725 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:35, 03:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:32](702 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:33](700 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:59](871 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](562 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:29](874 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:18, 06:50](937 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:35, 03:35]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:33](722 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:36, 14:36]
+
+PASS -- COMPILE 's2s_gnu' [14:25, 14:24]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:20, 11:30](1341 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:31, 02:30]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:30, 14:30]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:37, 21:47](1312 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:27, 16:45](1306 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [13:58, 13:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:03, 02:58](699 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 05:54:51
-Ending Date/Time: 20240402 08:38:48
-Total Time: 02h:44m:12s
+Starting Date/Time: 20240404 13:42:06
+Ending Date/Time: 20240404 15:52:22
+Total Time: 02h:10m:48s
Compiles Completed: 55/55
-Tests Completed: 242/244
-Failed Tests:
-* TEST regional_atmaq_debug_intel: FAIL TO COMPARE
--- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2175/ufs-weather-model/tests/logs/log_hera/rt_regional_atmaq_debug_intel.log
-* TEST cpld_debug_pdlib_p8_gnu: FAIL TO COMPARE
--- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2175/ufs-weather-model/tests/logs/log_hera/rt_cpld_debug_pdlib_p8_gnu.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERA REGRESSION TESTING LOG====
-====START OF HERA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-8db4e9acc2aed6e1901730c858d54815cede102c
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2778129
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf.fails
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:07, 03:40]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:50, 20:59](4439 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:57](1333 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240403 15:37:29
-Ending Date/Time: 20240403 16:07:53
-Total Time: 00h:30m:29s
-Compiles Completed: 2/2
-Tests Completed: 2/2
+Tests Completed: 244/244
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index eed510da36..5fcdcf3580 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1794749
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_2701044
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:34]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 06:50](1795 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:30, 53:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 20:34](1666 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:06](1918 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:02, 10:24](984 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:40, 23:49](1634 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:24, 39:15]
-PASS -- TEST 'cpld_control_p8_intel' [10:25, 07:29](1828 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:47, 07:31](1819 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:50, 04:18](1712 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:24, 07:33](1852 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:51, 04:23](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:19, 07:07](2259 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 07:35](1828 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:38, 06:17](1777 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 07:30](1824 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:44, 07:03](1802 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:23, 37:14]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:45](1669 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 05:41](1711 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:11]
-PASS -- TEST 'cpld_debug_p8_intel' [13:57, 10:30](1853 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:09, 05:03]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:22, 07:11](1674 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:20, 32:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:36](1717 MB)
-
-PASS -- COMPILE 's2s_intel' [33:20, 32:10]
-PASS -- TEST 'cpld_control_c48_intel' [15:09, 12:43](2796 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:47, 32:44]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:00, 07:01](1822 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [48:27, 47:21]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:35, 20:35](1677 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 10:22](1032 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 24:01](1650 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:41]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:46, 32:08](1692 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:42]
-PASS -- TEST 'control_flake_intel' [06:30, 04:27](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:18](596 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:36, 03:36](602 MB)
-PASS -- TEST 'control_latlon_intel' [05:28, 03:21](598 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:36, 03:26](595 MB)
-PASS -- TEST 'control_c48_intel' [11:38, 10:07](846 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:38, 10:04](851 MB)
-PASS -- TEST 'control_c192_intel' [14:49, 12:21](731 MB)
-PASS -- TEST 'control_c384_intel' [18:45, 15:48](892 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:22, 13:28](1012 MB)
-PASS -- TEST 'control_stochy_intel' [04:29, 02:14](601 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:28, 01:17](437 MB)
-PASS -- TEST 'control_lndp_intel' [04:30, 02:13](598 MB)
-PASS -- TEST 'control_iovr4_intel' [05:32, 03:21](597 MB)
-PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](599 MB)
-PASS -- TEST 'control_p8_intel' [06:43, 04:02](1574 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:54](1575 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:33, 03:49](1582 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:59, 02:09](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:53](1570 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:04](844 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:06, 04:04](1569 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:05, 03:38](1661 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:46, 06:56](1579 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:25, 05:06](1634 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:21, 04:04](1583 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:39, 04:32](1589 MB)
-PASS -- TEST 'regional_control_intel' [08:39, 07:02](757 MB)
-PASS -- TEST 'regional_restart_intel' [05:44, 03:40](927 MB)
-PASS -- TEST 'regional_decomp_intel' [09:40, 07:28](760 MB)
-PASS -- TEST 'regional_2threads_intel' [06:37, 04:15](759 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 06:57](766 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 06:59](767 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:21, 32:25]
-PASS -- TEST 'rap_control_intel' [12:07, 10:07](995 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:22, 05:35](1218 MB)
-PASS -- TEST 'rap_decomp_intel' [13:12, 10:41](989 MB)
-PASS -- TEST 'rap_2threads_intel' [12:07, 09:33](1088 MB)
-PASS -- TEST 'rap_restart_intel' [08:22, 05:14](986 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:30, 10:00](996 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 10:44](983 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:28, 07:33](995 MB)
-PASS -- TEST 'hrrr_control_intel' [08:06, 05:12](986 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:02, 05:24](974 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:35, 04:46](1054 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:32, 02:45](912 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:35, 10:01](984 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:20](1940 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:03](1941 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:21, 30:55]
-PASS -- TEST 'control_csawmg_intel' [09:43, 07:59](693 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:45, 07:53](694 MB)
-PASS -- TEST 'control_ras_intel' [06:23, 04:24](667 MB)
-
-PASS -- COMPILE 'wam_intel' [31:20, 29:49]
-PASS -- TEST 'control_wam_intel' [04:22, 02:40](502 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:20, 31:17]
-PASS -- TEST 'control_p8_faster_intel' [06:41, 03:33](1584 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:45, 06:30](769 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:09, 06:09]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:24, 03:20](758 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:19](756 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:43](768 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:21](761 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:14](805 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:39, 05:12](808 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:22, 03:22](771 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:31, 03:30](823 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:52, 03:34](1591 MB)
-PASS -- TEST 'regional_debug_intel' [23:56, 21:43](772 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:27, 06:02](1156 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:53](1146 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 05:59](1146 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 06:02](1147 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 06:01](1153 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:37, 06:19](1235 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:26, 06:11](1144 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:21, 06:09](1146 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:25, 06:03](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:03](1153 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:52](1147 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:01](1142 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 09:52](1142 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:57](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:21](1148 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:27, 06:01](1143 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:30, 10:25](1158 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:07, 03:42]
-PASS -- TEST 'control_wam_debug_intel' [08:25, 06:08](440 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:21, 29:58]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:14, 05:08](1076 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:56, 08:11](905 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 04:28](871 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:25, 07:50](942 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:36, 04:00](908 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 04:38](858 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 06:13](900 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:24](844 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 42:28]
-PASS -- TEST 'conus13km_control_intel' [05:00, 02:56](1105 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:30](1052 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:35](1024 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:23, 30:12]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:26](903 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:50]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:50](1027 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:06, 18:19](1138 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:05, 18:48](855 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:57, 10:37](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:00, 18:17](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:48]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:28, 06:03](1072 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:23, 34:38]
-PASS -- TEST 'hafs_regional_atm_intel' [10:19, 07:14](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:43](1092 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:43, 09:25](775 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:30, 16:13](803 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 17:59](825 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:31, 05:51](769 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:20, 31:55]
-PASS -- TEST 'hafs_regional_docn_intel' [11:26, 09:03](769 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 09:01](749 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:10, 08:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:36](1064 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:13](1031 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:32](927 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:35](923 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:20, 03:39](921 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:36](1050 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:36](1060 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:20, 03:31](923 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:59](888 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:58](847 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:36](1061 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 05:03](2404 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:05](2359 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:13]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1007 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:33](1058 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:42]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:36](229 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:29, 01:16](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:48](252 MB)
-
-PASS -- COMPILE 'atml_intel' [35:21, 33:47]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:41, 08:10](1606 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:41, 08:13](1611 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:51, 04:06](870 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:20, 32:02]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:38, 02:19](1597 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:19, 31:30]
-PASS -- TEST 'control_atmwav_intel' [05:09, 02:09](606 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:20, 30:26]
-PASS -- TEST 'atmaero_control_p8_intel' [08:34, 05:10](1698 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:28, 06:19](1722 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 06:46](1746 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:30]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:48, 06:53](1793 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:32, 53:55]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:56, 20:29](1664 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:17](1880 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:22, 11:10](997 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:41](1624 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:24, 38:30]
+PASS -- TEST 'cpld_control_p8_intel' [10:25, 07:33](1820 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:48, 07:30](1824 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:23](1708 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:25, 07:39](1843 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:26](1718 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:18, 07:12](2264 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:35](1826 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:42, 06:26](1759 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 07:31](1833 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:36, 07:08](1780 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:23, 37:08]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:50](1649 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:40](1717 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:38]
+PASS -- TEST 'cpld_debug_p8_intel' [13:58, 10:27](1849 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:44]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:11](1670 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:19, 32:14]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:37](1709 MB)
+
+PASS -- COMPILE 's2s_intel' [33:22, 32:14]
+PASS -- TEST 'cpld_control_c48_intel' [16:37, 13:20](2802 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:50, 32:49]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:52, 07:11](1832 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:28, 47:36]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:13, 21:07](1674 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:35](1040 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:26, 24:06](1661 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:56]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:24, 32:10](1686 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:21, 35:19]
+PASS -- TEST 'control_flake_intel' [06:30, 04:26](644 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:34, 03:17](600 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:38, 03:35](601 MB)
+PASS -- TEST 'control_latlon_intel' [05:31, 03:20](600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:39, 03:22](600 MB)
+PASS -- TEST 'control_c48_intel' [11:43, 10:05](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:04](846 MB)
+PASS -- TEST 'control_c192_intel' [14:52, 12:33](728 MB)
+PASS -- TEST 'control_c384_intel' [18:57, 15:49](892 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:48, 13:31](1015 MB)
+PASS -- TEST 'control_stochy_intel' [04:31, 02:16](603 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:29, 01:18](434 MB)
+PASS -- TEST 'control_lndp_intel' [04:30, 02:10](603 MB)
+PASS -- TEST 'control_iovr4_intel' [05:35, 03:20](595 MB)
+PASS -- TEST 'control_iovr5_intel' [05:34, 03:22](597 MB)
+PASS -- TEST 'control_p8_intel' [06:35, 03:58](1573 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:59](1575 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:50](1584 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:15, 02:09](813 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:40, 03:55](1571 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 02:05](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:39, 04:04](1567 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:40, 03:45](1657 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:22, 06:59](1581 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:59, 05:09](1639 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:51, 04:02](1576 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:12, 04:35](1591 MB)
+PASS -- TEST 'regional_control_intel' [10:10, 07:08](758 MB)
+PASS -- TEST 'regional_restart_intel' [05:40, 03:46](932 MB)
+PASS -- TEST 'regional_decomp_intel' [10:10, 07:30](761 MB)
+PASS -- TEST 'regional_2threads_intel' [07:08, 04:15](756 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:57, 07:09](758 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:01](766 MB)
+
+PASS -- COMPILE 'rrfs_intel' [35:21, 33:27]
+PASS -- TEST 'rap_control_intel' [12:06, 09:58](994 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:36](1214 MB)
+PASS -- TEST 'rap_decomp_intel' [12:53, 10:37](987 MB)
+PASS -- TEST 'rap_2threads_intel' [12:01, 09:35](1084 MB)
+PASS -- TEST 'rap_restart_intel' [08:28, 05:20](987 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:21, 09:58](991 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:50, 10:36](985 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:24, 07:41](1002 MB)
+PASS -- TEST 'hrrr_control_intel' [07:52, 05:11](993 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:31](979 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 04:44](1055 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:47](925 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:35, 09:59](984 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:40, 12:21](1941 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:04](1937 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:21, 31:30]
+PASS -- TEST 'control_csawmg_intel' [10:47, 08:17](699 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:50, 08:10](691 MB)
+PASS -- TEST 'control_ras_intel' [06:29, 04:26](664 MB)
+
+PASS -- COMPILE 'wam_intel' [31:17, 29:31]
+PASS -- TEST 'control_wam_intel' [04:27, 02:48](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:22, 32:12]
+PASS -- TEST 'control_p8_faster_intel' [06:41, 03:34](1571 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:48, 06:29](763 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 06:03]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:20](763 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:22](759 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:44](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:30](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:45, 05:16](812 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:16](805 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:30, 03:24](772 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:29, 03:28](816 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:52, 03:44](1591 MB)
+PASS -- TEST 'regional_debug_intel' [23:52, 21:51](774 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:22, 05:59](1153 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:54](1143 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 06:02](1144 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:02](1152 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 06:02](1149 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:33, 06:19](1235 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:09](1155 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 06:23](1155 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:18](1153 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:04](1151 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1153 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 06:09](1152 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:36, 09:50](1147 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:31, 05:57](1148 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:23](1150 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:28, 06:05](1152 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:43, 10:30](1153 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:07, 04:09]
+PASS -- TEST 'control_wam_debug_intel' [08:25, 06:08](435 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:57]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1077 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:23, 08:10](897 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 04:39](869 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:20, 07:51](937 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:46, 04:00](902 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:03, 04:59](852 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:22, 06:31](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:36](843 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 43:40]
+PASS -- TEST 'conus13km_control_intel' [05:09, 02:54](1105 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:28](1050 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:36](1025 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:22, 30:08]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:33](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 04:02]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:54](1029 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:46](1030 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:38, 18:23](1138 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:39, 18:51](849 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:17, 18:27](1205 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:30, 06:15](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [38:26, 36:42]
+PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:57](714 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:19](1088 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:23](778 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 16:09](807 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:13](820 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](782 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:23, 31:32]
+PASS -- TEST 'hafs_regional_docn_intel' [11:33, 08:38](773 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:35, 08:49](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:35, 04:18](1073 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:14](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:35, 04:23](930 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:36, 04:18](926 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 04:18](918 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:35, 04:33](1078 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:36, 04:23](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:36, 04:24](946 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:04, 09:05](889 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:04, 09:03](846 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:33, 04:24](1047 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:38, 06:51](2353 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [08:38, 06:21](2402 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:07]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 07:55](1002 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1062 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:33](231 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:19](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB)
+
+PASS -- COMPILE 'atml_intel' [36:20, 34:16]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:38, 08:04](1604 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 08:06](1606 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:53, 04:06](871 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:19, 31:28]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 02:17](1594 MB)
+
+PASS -- COMPILE 'atmwm_intel' [33:22, 32:01]
+PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](608 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:19, 30:20]
+PASS -- TEST 'atmaero_control_p8_intel' [08:29, 05:15](1694 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:30](1719 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:38](1734 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 05:55:54
-Ending Date/Time: 20240402 09:27:48
-Total Time: 03h:32m:34s
+Starting Date/Time: 20240404 13:46:55
+Ending Date/Time: 20240404 17:20:28
+Total Time: 03h:34m:21s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 6b2b500e70..7893a3140f 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,288 +48,288 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_117842
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_107796
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:46]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:34, 05:08](3169 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:14]
-PASS -- TEST 'cpld_control_gfsv17_intel' [32:58, 16:26](1746 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 17:21](2019 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 08:08](1111 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:54, 18:37](1608 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:24]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [37:49, 22:54](1690 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:10, 14:35]
-PASS -- TEST 'cpld_control_p8_intel' [22:30, 05:36](3212 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:54, 05:41](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [11:56, 03:19](3257 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [22:30, 05:45](3153 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:50, 03:21](3196 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [23:45, 06:02](3560 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [22:26, 05:36](3203 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [21:39, 04:42](3068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [22:49, 05:32](3214 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [25:08, 09:50](3335 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:37, 06:20](3622 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [31:29, 10:49](4112 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 06:53](4285 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [22:40, 05:18](3184 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:09, 13:02]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [15:00, 04:21](1742 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:23, 04:18](1781 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 05:04]
-PASS -- TEST 'cpld_debug_p8_intel' [15:32, 08:45](3246 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:07, 05:12]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [19:57, 05:54](1745 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:09, 13:10]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:28, 04:22](1774 MB)
-
-PASS -- COMPILE 's2s_intel' [15:10, 13:10]
-PASS -- TEST 'cpld_control_c48_intel' [19:56, 07:58](2828 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:33]
-PASS -- TEST 'cpld_control_p8_faster_intel' [21:44, 05:24](3196 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:09, 17:50]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:16, 16:30](1769 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:33, 08:10](1170 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:16, 18:41](1685 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 04:59]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:25, 24:38](1719 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:09, 12:22]
-PASS -- TEST 'control_flake_intel' [18:26, 03:29](697 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [16:27, 02:24](650 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:33, 02:35](666 MB)
-PASS -- TEST 'control_latlon_intel' [17:26, 02:30](655 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:33, 02:29](655 MB)
-PASS -- TEST 'control_c48_intel' [19:33, 05:55](874 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [20:32, 05:57](875 MB)
-PASS -- TEST 'control_c192_intel' [26:42, 09:05](859 MB)
-PASS -- TEST 'control_c384_intel' [26:38, 10:13](1248 MB)
-PASS -- TEST 'control_c384gdas_intel' [25:04, 08:51](1354 MB)
-PASS -- TEST 'control_stochy_intel' [14:20, 01:37](656 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:23, 01:06](503 MB)
-PASS -- TEST 'control_lndp_intel' [14:21, 01:32](654 MB)
-PASS -- TEST 'control_iovr4_intel' [12:24, 02:27](648 MB)
-PASS -- TEST 'control_iovr5_intel' [11:23, 02:27](656 MB)
-PASS -- TEST 'control_p8_intel' [10:12, 02:56](1634 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [10:16, 02:58](1626 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:36, 02:53](1620 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:14, 01:42](897 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:16, 02:55](1614 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 01:35](932 MB)
-PASS -- TEST 'control_decomp_p8_intel' [10:19, 03:03](1607 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:10, 03:08](1710 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:49, 05:17](1629 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:33, 04:01](1689 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:32, 03:03](1628 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:50, 03:32](1647 MB)
-PASS -- TEST 'regional_control_intel' [08:44, 05:12](858 MB)
-PASS -- TEST 'regional_restart_intel' [07:40, 02:40](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [09:39, 05:33](849 MB)
-PASS -- TEST 'regional_2threads_intel' [06:32, 03:44](857 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:35, 05:07](1368 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 05:04](861 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 05:11](858 MB)
-PASS -- TEST 'regional_wofs_intel' [08:37, 06:34](1920 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:07, 11:48]
-PASS -- TEST 'rap_control_intel' [10:34, 07:47](1104 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:56, 04:40](1235 MB)
-PASS -- TEST 'rap_decomp_intel' [11:43, 08:05](1030 MB)
-PASS -- TEST 'rap_2threads_intel' [11:11, 07:52](1177 MB)
-PASS -- TEST 'rap_restart_intel' [07:27, 04:02](1111 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:30, 07:43](1107 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:44, 08:08](1028 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:32, 05:50](1131 MB)
-PASS -- TEST 'hrrr_control_intel' [06:15, 03:59](1033 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:07](1023 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:12, 03:26](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:12](1000 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:42, 07:33](1099 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:09](1992 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:23, 08:52](2079 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:07, 11:00]
-PASS -- TEST 'control_csawmg_intel' [09:44, 05:57](744 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:41, 05:55](750 MB)
-PASS -- TEST 'control_ras_intel' [06:19, 03:20](739 MB)
-
-PASS -- COMPILE 'wam_intel' [12:07, 10:33]
-PASS -- TEST 'control_wam_intel' [05:19, 02:04](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:07]
-PASS -- TEST 'control_p8_faster_intel' [08:49, 02:38](1633 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:42, 04:41](854 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:07, 04:36]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 02:42](815 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:26, 02:42](817 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:18, 03:07](812 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:25, 02:48](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:33, 04:22](864 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:39, 04:11](861 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](823 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](876 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:51, 02:56](1650 MB)
-PASS -- TEST 'regional_debug_intel' [19:46, 17:17](844 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:19, 04:57](1201 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:46](1195 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:52](1212 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:58](1209 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:05](1200 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:13](1286 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:07](1207 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 04:59](1200 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:04](1194 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:56](1202 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:51](1202 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:54](1207 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 07:47](1199 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:20, 04:50](1196 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:44](1212 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:01](1196 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:34, 08:17](1204 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:07, 03:23]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:03](508 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 10:47]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:05, 04:24](1160 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:32, 06:25](994 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:18, 03:27](984 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:24, 06:43](1089 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:16, 03:24](961 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:06, 03:39](873 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:54, 04:48](1033 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:56](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:08, 13:24]
-PASS -- TEST 'conus13km_control_intel' [08:55, 02:06](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:43, 01:04](1121 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:39, 01:15](1113 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:07, 11:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:46, 04:14](992 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:03]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:21, 04:58](1088 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:19, 04:41](1077 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:53, 14:04](1227 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:45, 14:16](929 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [13:45, 08:23](1157 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:45, 14:18](1316 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:07, 03:52]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:23, 04:51](1116 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:08, 12:39]
-PASS -- TEST 'hafs_regional_atm_intel' [09:13, 05:28](743 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:25, 05:54](1121 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:07, 16:39]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:36, 05:18](3180 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:09, 23:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [27:51, 16:25](1741 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:07, 17:28](2054 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:58, 08:06](1122 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:46, 18:30](1654 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:34]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 22:41](1686 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:06, 14:13]
+PASS -- TEST 'cpld_control_p8_intel' [08:21, 05:34](3207 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 05:39](3202 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [13:39, 03:19](3257 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:21, 05:37](3230 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [13:43, 03:21](3276 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 06:04](3548 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [15:33, 05:37](3202 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:39](3069 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 05:37](3173 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 09:53](3347 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:16, 06:10](3622 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:40, 10:54](4162 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 06:54](4370 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:30, 05:17](3172 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 14:57]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:16, 04:21](1736 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:34, 04:17](1780 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20]
+PASS -- TEST 'cpld_debug_p8_intel' [12:23, 08:46](3188 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:17]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 05:59](1738 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:42]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:16](1779 MB)
+
+PASS -- COMPILE 's2s_intel' [15:06, 13:15]
+PASS -- TEST 'cpld_control_c48_intel' [13:46, 08:01](2835 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:08, 18:06]
+PASS -- TEST 'cpld_control_p8_faster_intel' [17:39, 05:16](3203 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:37]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 16:41](1767 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 08:06](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 18:35](1676 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:39]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:50](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:42]
+PASS -- TEST 'control_flake_intel' [14:25, 03:27](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [13:26, 02:24](656 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:29, 02:35](653 MB)
+PASS -- TEST 'control_latlon_intel' [13:23, 02:25](655 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:31, 02:33](649 MB)
+PASS -- TEST 'control_c48_intel' [16:35, 05:56](872 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [16:42, 05:56](872 MB)
+PASS -- TEST 'control_c192_intel' [19:35, 09:01](852 MB)
+PASS -- TEST 'control_c384_intel' [21:42, 10:04](1246 MB)
+PASS -- TEST 'control_c384gdas_intel' [25:04, 11:49](1354 MB)
+PASS -- TEST 'control_stochy_intel' [12:22, 01:42](655 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:04](503 MB)
+PASS -- TEST 'control_lndp_intel' [12:23, 01:37](650 MB)
+PASS -- TEST 'control_iovr4_intel' [12:26, 02:28](653 MB)
+PASS -- TEST 'control_iovr5_intel' [12:24, 02:32](645 MB)
+PASS -- TEST 'control_p8_intel' [13:15, 03:02](1633 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:19, 02:58](1639 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:38, 02:52](1638 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:11, 01:38](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:11, 02:54](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:18, 01:41](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [08:11, 03:03](1611 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:11, 03:06](1723 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:45, 05:09](1636 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 03:55](1695 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:01](1641 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:45, 03:29](1647 MB)
+PASS -- TEST 'regional_control_intel' [07:42, 05:05](851 MB)
+PASS -- TEST 'regional_restart_intel' [04:39, 02:45](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [07:40, 05:24](844 MB)
+PASS -- TEST 'regional_2threads_intel' [05:38, 03:37](844 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:40, 05:03](1365 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](858 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:03](854 MB)
+PASS -- TEST 'regional_wofs_intel' [08:37, 06:37](1917 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:08, 11:36]
+PASS -- TEST 'rap_control_intel' [10:26, 07:46](1105 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:50, 04:46](1288 MB)
+PASS -- TEST 'rap_decomp_intel' [10:53, 08:06](1032 MB)
+PASS -- TEST 'rap_2threads_intel' [09:56, 07:55](1180 MB)
+PASS -- TEST 'rap_restart_intel' [06:26, 04:03](1097 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:43](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:10, 08:07](1026 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:23, 05:50](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [06:12, 04:01](1036 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:07](1023 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:58, 03:23](1110 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:10](997 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:16, 07:36](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1994 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:56](2074 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:06, 10:57]
+PASS -- TEST 'control_csawmg_intel' [08:38, 06:06](744 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:36, 06:02](752 MB)
+PASS -- TEST 'control_ras_intel' [05:19, 03:19](733 MB)
+
+PASS -- COMPILE 'wam_intel' [15:07, 10:45]
+PASS -- TEST 'control_wam_intel' [04:16, 02:07](658 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [15:07, 11:35]
+PASS -- TEST 'control_p8_faster_intel' [05:36, 02:39](1625 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](852 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:27]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:45](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](815 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:58](813 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:47](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:15](857 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:44, 04:05](856 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:19, 02:47](826 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:26, 02:50](872 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 02:52](1646 MB)
+PASS -- TEST 'regional_debug_intel' [19:42, 17:28](841 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:21, 04:54](1201 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:58](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:54](1201 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:49](1203 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:08](1207 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1288 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:57](1199 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:06](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:57](1200 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:19, 04:58](1200 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:52](1207 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:56](1200 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1199 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:56](1192 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:53](1198 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:18, 05:15](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 08:37](1199 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:06, 03:34]
+PASS -- TEST 'control_wam_debug_intel' [07:17, 05:13](515 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:08, 11:27]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:27](1169 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:30](1065 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 03:24](974 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:01, 06:42](1097 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:03](967 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:54, 03:33](943 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:14, 04:58](1033 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:59](937 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:11]
+PASS -- TEST 'conus13km_control_intel' [04:56, 02:08](1207 MB)
+PASS -- TEST 'conus13km_2threads_intel' [06:42, 01:06](1125 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:41, 01:18](1114 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 11:55]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 04:12](1000 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:06, 03:32]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:52](1075 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:49](1090 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:51, 13:57](1229 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:37](932 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:22](1152 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:06](1319 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:06, 03:51]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:20, 04:55](1128 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:06, 12:43]
+PASS -- TEST 'hafs_regional_atm_intel' [08:12, 05:28](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:54](1124 MB)
FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 12:47](860 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 14:30](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:59, 06:08](505 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 07:30](522 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:51, 03:05](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:19, 08:06](485 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:50, 04:09](524 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 04:02](525 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:55, 05:20](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:25, 01:24](353 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:57, 04:44](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:06, 03:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:04](572 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:07, 13:03]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:54, 09:33](673 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:03, 09:36](689 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:07, 13:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:56](729 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:07, 12:41]
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:08, 12:47](865 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:33](878 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:11](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 07:27](516 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:06](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:26, 07:56](473 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 04:07](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:53, 03:56](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:15](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:23, 01:22](397 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:50, 04:36](806 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:06, 05:22]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 13:10](566 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:07, 14:18]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:38](669 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 09:37](696 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:07, 13:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:57](732 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:07, 13:33]
FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:02](1208 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:07, 06:24]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:40](1135 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:42](1090 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:33](1001 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:36](1010 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:39](1017 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:51](1109 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:35](1132 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:36](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 05:54](1056 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:13, 05:49](1038 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1132 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:37](2448 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:32](2433 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:17]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:10](1063 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:08, 06:24]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:38](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 00:55]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:47](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:34](321 MB)
-
-PASS -- COMPILE 'atml_intel' [18:08, 13:19]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:13](1597 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:57](1203 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:36](1141 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:42](1080 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:31](1004 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:34](1010 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1019 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:43](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:58](1052 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:58](1025 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:36](1138 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:34](2437 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:37](2487 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:51]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:12, 06:14](1066 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 08:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1138 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:19]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:52](248 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:51](326 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:32](324 MB)
+
+PASS -- COMPILE 'atml_intel' [15:06, 13:29]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:16](1601 MB)
FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
-PASS -- COMPILE 'atmw_intel' [17:07, 12:35]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 01:46](1664 MB)
+PASS -- COMPILE 'atmw_intel' [14:06, 12:28]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:45](1668 MB)
-PASS -- COMPILE 'atmwm_intel' [16:07, 11:33]
-PASS -- TEST 'control_atmwav_intel' [04:08, 01:39](669 MB)
+PASS -- COMPILE 'atmwm_intel' [14:06, 12:52]
+PASS -- TEST 'control_atmwav_intel' [04:04, 01:41](678 MB)
-PASS -- COMPILE 'atmaero_intel' [14:08, 10:45]
-PASS -- TEST 'atmaero_control_p8_intel' [06:16, 03:56](3027 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:51](3033 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:58](3111 MB)
+PASS -- COMPILE 'atmaero_intel' [13:06, 11:17]
+PASS -- TEST 'atmaero_control_p8_intel' [07:17, 03:59](3033 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:50](3092 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:05](3113 MB)
-PASS -- COMPILE 'atmaq_intel' [14:07, 11:45]
+PASS -- COMPILE 'atmaq_intel' [12:06, 10:46]
-PASS -- COMPILE 'atmaq_debug_intel' [05:07, 03:26]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 20:45](4579 MB)
+PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:51]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:46, 20:56](4578 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 08:21:43
-Ending Date/Time: 20240402 10:10:13
-Total Time: 01h:49m:15s
+Starting Date/Time: 20240404 08:42:36
+Ending Date/Time: 20240404 10:22:54
+Total Time: 01h:41m:03s
Compiles Completed: 39/39
Tests Completed: 177/182
Failed Tests:
* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_atm_ocn_intel.log
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_atm_ocn_intel.log
* TEST hafs_regional_docn_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_docn_intel.log
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_intel.log
* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_hafs_regional_docn_oisst_intel.log
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_oisst_intel.log
* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2175/tests/logs/log_orion/rt_control_p8_atmlnd_intel.log
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_control_p8_atmlnd_intel.log
* TEST control_restart_p8_atmlnd_intel: MISSING
-- LOG: N/A
@@ -344,7 +344,7 @@ Result: FAILURE
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+7cc39e3287638afc5817eeb7c57e1279250a7dcc
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -352,10 +352,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -367,19 +367,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -391,28 +391,27 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_226483
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_156392
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-c) - CREATE NEW BASELINES
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'hafsw_intel' [16:08, 14:27]
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:43, 07:00](830 MB)
+PASS -- COMPILE 'hafsw_intel' [15:06, 13:24]
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 06:58](842 MB)
-PASS -- COMPILE 'hafs_all_intel' [16:08, 14:11]
-PASS -- TEST 'hafs_regional_docn_intel' [08:27, 06:31](826 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:27, 06:22](814 MB)
+PASS -- COMPILE 'hafs_all_intel' [15:06, 13:16]
+PASS -- TEST 'hafs_regional_docn_intel' [09:04, 06:24](828 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:05, 06:30](817 MB)
-PASS -- COMPILE 'atml_intel' [17:08, 15:40]
-PASS -- TEST 'control_p8_atmlnd_intel' [08:46, 04:19](1599 MB)
+PASS -- COMPILE 'atml_intel' [15:06, 13:26]
+PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 04:16](1593 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 10:23:05
-Ending Date/Time: 20240402 10:50:14
-Total Time: 00h:27m:23s
+Starting Date/Time: 20240404 13:06:07
+Ending Date/Time: 20240404 13:32:43
+Total Time: 00h:26m:41s
Compiles Completed: 3/3
Tests Completed: 4/4
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 8fd3265890..7184495c81 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7fb4bf1a94e195cdd18017fa981ad062ad5b826d
+616a1599842de8f07db974c54438bb9b9fa996b9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,10 +9,10 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/HEAD-18-g3fa2f76)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (v3.7.1-425-ge240f35)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/HEAD-18-g3fa2f76)
+ 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (v3.7.1-425-ge240f35)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_189100
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_152070
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [34:25, 29:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [42:34, 02:18](2977 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:23, 28:09]
-PASS -- TEST 'cpld_control_gfsv17_intel' [41:32, 01:58](1594 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:08, 01:59](1718 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [23:06, 01:18](849 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:29, 02:10](1567 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:53, 13:52]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [58:41, 02:26](1602 MB)
-
-PASS -- COMPILE 's2swa_intel' [30:17, 25:34]
-PASS -- TEST 'cpld_control_p8_intel' [47:15, 01:21](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [47:15, 02:08](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [38:08, 01:31](3064 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [47:15, 02:18](3026 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [37:05, 01:16](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [47:15, 01:50](3315 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [47:15, 02:31](2997 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [47:16, 02:13](2926 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [47:15, 02:48](3005 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [47:24, 04:52](3950 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:25, 04:38](4255 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [47:15, 02:05](2967 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:41, 10:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [02:51, 01:20](1584 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [02:51, 01:36](1640 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:39, 10:13]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [03:54, 01:31](1632 MB)
-
-PASS -- COMPILE 's2s_intel' [13:41, 10:17]
-PASS -- TEST 'cpld_control_c48_intel' [03:51, 01:44](2651 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:55, 16:44]
-PASS -- TEST 'cpld_control_p8_faster_intel' [57:38, 02:05](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:53, 15:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [58:40, 02:11](1604 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:35, 01:02](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:28, 01:34](1586 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:06, 20:44]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:26, 00:55](1611 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:47, 17:48]
-PASS -- TEST 'control_flake_intel' [45:04, 01:16](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [45:04, 00:45](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [45:04, 00:28](529 MB)
-PASS -- TEST 'control_latlon_intel' [45:04, 01:21](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [45:04, 00:38](523 MB)
-PASS -- TEST 'control_c48_intel' [45:03, 00:56](715 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [45:03, 00:57](715 MB)
-PASS -- TEST 'control_c192_intel' [45:04, 01:20](637 MB)
-PASS -- TEST 'control_c384_intel' [45:08, 02:03](953 MB)
-PASS -- TEST 'control_c384gdas_intel' [45:08, 03:19](1098 MB)
-PASS -- TEST 'control_stochy_intel' [45:04, 01:08](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [41:26, 00:59](330 MB)
-PASS -- TEST 'control_lndp_intel' [45:04, 00:21](526 MB)
-PASS -- TEST 'control_iovr4_intel' [45:04, 01:24](525 MB)
-PASS -- TEST 'control_iovr5_intel' [45:04, 01:27](522 MB)
-PASS -- TEST 'control_p8_intel' [45:04, 02:03](1499 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [45:04, 02:02](1504 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [45:04, 01:49](1512 MB)
-PASS -- TEST 'control_restart_p8_intel' [39:08, 01:25](707 MB)
-PASS -- TEST 'control_noqr_p8_intel' [45:04, 02:00](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [39:08, 01:34](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [41:22, 02:32](1498 MB)
-PASS -- TEST 'control_2threads_p8_intel' [40:22, 01:48](1592 MB)
-PASS -- TEST 'control_p8_lndp_intel' [40:22, 00:42](1498 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [40:21, 02:04](1554 MB)
-PASS -- TEST 'control_p8_mynn_intel' [39:10, 01:56](1513 MB)
-PASS -- TEST 'merra2_thompson_intel' [39:06, 01:44](1513 MB)
-PASS -- TEST 'regional_control_intel' [38:48, 01:00](608 MB)
-PASS -- TEST 'regional_restart_intel' [31:21, 00:15](782 MB)
-PASS -- TEST 'regional_decomp_intel' [38:07, 00:47](608 MB)
-PASS -- TEST 'regional_2threads_intel' [38:07, 00:43](663 MB)
-PASS -- TEST 'regional_noquilt_intel' [38:06, 01:07](1144 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [38:06, 01:10](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [37:46, 01:07](608 MB)
-PASS -- TEST 'regional_wofs_intel' [37:20, 00:26](1579 MB)
-
-PASS -- COMPILE 'rrfs_intel' [28:13, 26:57]
-PASS -- TEST 'rap_control_intel' [34:43, 01:16](915 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:44, 01:40](1096 MB)
-PASS -- TEST 'rap_decomp_intel' [34:16, 02:39](920 MB)
-PASS -- TEST 'rap_2threads_intel' [34:11, 01:28](1008 MB)
-PASS -- TEST 'rap_restart_intel' [25:32, 01:21](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [33:36, 02:07](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:23, 01:30](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [23:43, 01:48](787 MB)
-PASS -- TEST 'hrrr_control_intel' [33:17, 02:00](907 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [33:12, 01:43](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [33:00, 01:36](995 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [26:54, 00:52](743 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [32:52, 01:57](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [32:42, 00:46](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:55, 00:48](1864 MB)
-
-PASS -- COMPILE 'csawmg_intel' [17:47, 17:28]
-PASS -- TEST 'control_csawmg_intel' [37:04, 01:09](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [36:39, 01:28](601 MB)
-PASS -- TEST 'control_ras_intel' [30:51, 00:38](559 MB)
-
-PASS -- COMPILE 'wam_intel' [18:53, 18:04]
-PASS -- TEST 'control_wam_intel' [30:50, 00:41](273 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:56, 18:41]
-PASS -- TEST 'control_p8_faster_intel' [30:49, 02:01](1510 MB)
-PASS -- TEST 'regional_control_faster_intel' [30:41, 01:20](611 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [17:51, 17:09]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [30:28, 01:13](688 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [30:26, 01:15](690 MB)
-PASS -- TEST 'control_stochy_debug_intel' [30:18, 00:51](694 MB)
-PASS -- TEST 'control_lndp_debug_intel' [29:49, 01:08](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [29:16, 00:43](735 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [27:56, 00:40](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [27:54, 01:04](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [27:37, 01:11](750 MB)
-PASS -- TEST 'control_debug_p8_intel' [27:25, 01:03](1520 MB)
-PASS -- TEST 'regional_debug_intel' [27:23, 00:36](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [27:11, 00:55](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [26:54, 01:04](1073 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [26:54, 00:57](1074 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [26:13, 00:53](1074 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [25:53, 00:55](1077 MB)
-PASS -- TEST 'rap_diag_debug_intel' [25:47, 00:49](1156 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:42, 00:50](1077 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [25:33, 00:49](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [25:21, 01:05](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [25:17, 01:05](1078 MB)
-PASS -- TEST 'rap_noah_debug_intel' [25:03, 01:04](1072 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [23:46, 01:00](1077 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:43, 00:57](1072 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [23:28, 01:04](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [23:24, 01:13](1077 MB)
-PASS -- TEST 'rap_flake_debug_intel' [23:22, 01:01](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [23:22, 01:19](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:36, 10:58]
-PASS -- TEST 'control_wam_debug_intel' [23:03, 00:58](300 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:52, 17:38]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:57, 01:23](954 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:29, 01:15](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [22:04, 02:12](787 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [22:02, 01:23](851 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [20:38, 01:08](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [20:18, 01:49](788 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:05, 01:37](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [16:24, 00:20](669 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:59, 18:59]
-PASS -- TEST 'conus13km_control_intel' [20:18, 01:04](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [16:30, 00:53](1005 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [16:24, 00:42](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:43, 14:58]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [20:08, 01:32](809 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:37, 10:24]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [19:53, 01:06](955 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [19:36, 01:16](950 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:14, 00:50](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:03, 00:40](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [19:00, 00:46](1041 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:56, 00:41](1105 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:32, 08:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [18:35, 01:09](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:43, 14:12]
-PASS -- TEST 'hafs_regional_atm_intel' [18:38, 01:16](617 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:31, 00:40](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 02:03](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:08, 01:49](696 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:56, 01:51](713 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:50, 01:09](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:49, 02:20](407 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [16:32, 01:35](291 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [16:22, 02:24](373 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:47, 00:41](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [15:05, 00:53](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:02, 00:50](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:20, 00:23](315 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:44, 13:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:03, 01:01](498 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:11]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:25, 00:54](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:59, 00:49](709 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:41, 12:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:02, 01:06](718 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:45, 10:50]
-PASS -- TEST 'hafs_regional_docn_intel' [13:49, 01:26](663 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:47, 01:24](649 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [13:19, 00:45](881 MB)
-
-PASS -- COMPILE 'atml_intel' [20:06, 19:21]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:07, 01:22](1547 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [13:04, 01:19](1549 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:23, 00:24](745 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:48, 13:19]
-PASS -- TEST 'atmaero_control_p8_intel' [12:47, 01:34](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:56, 00:58](2909 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:51, 01:42](2924 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:43, 12:17]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:33, 05:39]
-PASS -- TEST 'regional_atmaq_debug_intel' [11:49, 01:33](4435 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:12, 27:38]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:55, 01:12](2975 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:40, 11:38]
+PASS -- TEST 'cpld_control_gfsv17_intel' [32:27, 02:28](1596 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:55, 01:32](1717 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:07, 01:45](848 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:28, 02:06](1572 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:23]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [39:47, 02:36](1604 MB)
+
+PASS -- COMPILE 's2swa_intel' [27:10, 25:57]
+PASS -- TEST 'cpld_control_p8_intel' [17:58, 01:23](3004 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:58, 01:16](3006 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:11, 01:33](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [17:58, 00:59](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:09, 01:38](3077 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [17:58, 01:04](3318 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [17:58, 01:19](3001 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [17:59, 01:09](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:58, 01:24](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:07, 05:18](3953 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:04, 05:47](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [17:58, 02:04](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:38, 10:27]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [33:29, 01:46](1588 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:29, 00:57](1634 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:36, 09:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:31, 01:55](1631 MB)
+
+PASS -- COMPILE 's2s_intel' [15:46, 15:00]
+PASS -- TEST 'cpld_control_c48_intel' [29:20, 00:50](2659 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:48, 15:34]
+PASS -- TEST 'cpld_control_p8_faster_intel' [28:19, 01:42](3004 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:03, 23:14]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 01:23](1601 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:18, 00:46](901 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:14, 01:06](1582 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:46, 15:16]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:22, 01:10](1613 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [30:27, 29:35]
+PASS -- TEST 'control_flake_intel' [08:02, 01:40](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [08:02, 01:04](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:56, 00:55](528 MB)
+PASS -- TEST 'control_latlon_intel' [07:56, 00:52](525 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:55, 01:01](522 MB)
+PASS -- TEST 'control_c48_intel' [07:50, 01:00](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 00:55](715 MB)
+PASS -- TEST 'control_c192_intel' [07:46, 01:14](641 MB)
+PASS -- TEST 'control_c384_intel' [07:40, 02:06](954 MB)
+PASS -- TEST 'control_c384gdas_intel' [07:16, 02:21](1095 MB)
+PASS -- TEST 'control_stochy_intel' [06:59, 00:41](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:18, 00:34](333 MB)
+PASS -- TEST 'control_lndp_intel' [06:51, 00:35](526 MB)
+PASS -- TEST 'control_iovr4_intel' [06:49, 00:50](522 MB)
+PASS -- TEST 'control_iovr5_intel' [06:32, 00:42](524 MB)
+PASS -- TEST 'control_p8_intel' [05:54, 01:45](1500 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:50, 01:41](1506 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 01:43](1503 MB)
+PASS -- TEST 'control_restart_p8_intel' [00:22, 01:37](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:48, 01:26](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [00:22, 01:33](697 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:30, 01:23](1497 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:49, 01:39](1588 MB)
+PASS -- TEST 'control_p8_lndp_intel' [04:19, 01:28](1499 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 02:05](1555 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:14, 02:04](1515 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:13, 01:33](1510 MB)
+PASS -- TEST 'regional_control_intel' [04:07, 00:48](611 MB)
+PASS -- TEST 'regional_restart_intel' [56:10, 01:00](783 MB)
+PASS -- TEST 'regional_decomp_intel' [03:00, 00:59](609 MB)
+PASS -- TEST 'regional_2threads_intel' [02:19, 00:27](660 MB)
+PASS -- TEST 'regional_noquilt_intel' [02:17, 01:29](1148 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [02:08, 01:17](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [01:38, 00:23](609 MB)
+PASS -- TEST 'regional_wofs_intel' [00:57, 00:52](1578 MB)
+
+PASS -- COMPILE 'rrfs_intel' [20:04, 18:35]
+PASS -- TEST 'rap_control_intel' [12:49, 01:31](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:00, 00:37](1099 MB)
+PASS -- TEST 'rap_decomp_intel' [11:52, 01:45](916 MB)
+PASS -- TEST 'rap_2threads_intel' [00:57, 01:19](1010 MB)
+PASS -- TEST 'rap_restart_intel' [00:50, 02:32](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [00:48, 02:00](916 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:23, 01:26](914 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [51:06, 01:55](783 MB)
+PASS -- TEST 'hrrr_control_intel' [00:23, 01:42](912 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [00:22, 01:51](915 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [00:23, 01:23](992 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [54:09, 01:05](741 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [00:19, 02:09](908 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [59:40, 01:31](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:24, 01:22](1863 MB)
+
+PASS -- COMPILE 'csawmg_intel' [22:05, 20:59]
+PASS -- TEST 'control_csawmg_intel' [57:21, 01:08](599 MB)
+PASS -- TEST 'control_csawmgt_intel' [56:45, 00:24](601 MB)
+PASS -- TEST 'control_ras_intel' [56:31, 00:42](558 MB)
+
+PASS -- COMPILE 'wam_intel' [18:00, 17:07]
+PASS -- TEST 'control_wam_intel' [56:16, 00:54](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:50]
+PASS -- TEST 'control_p8_faster_intel' [19:49, 01:26](1510 MB)
+PASS -- TEST 'regional_control_faster_intel' [19:48, 00:56](611 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:41, 12:44]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:39, 00:48](689 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:39, 00:55](690 MB)
+PASS -- TEST 'control_stochy_debug_intel' [15:39, 00:28](695 MB)
+PASS -- TEST 'control_lndp_debug_intel' [15:39, 00:47](691 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [15:39, 01:22](729 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [15:39, 00:24](732 MB)
+PASS -- TEST 'control_ras_debug_intel' [15:39, 00:39](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [15:39, 00:39](748 MB)
+PASS -- TEST 'control_debug_p8_intel' [15:39, 00:35](1523 MB)
+PASS -- TEST 'regional_debug_intel' [15:38, 00:55](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [15:39, 00:19](1073 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [15:39, 00:26](1071 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [15:39, 00:21](1072 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [55:55, 00:56](1075 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [55:55, 00:57](1074 MB)
+PASS -- TEST 'rap_diag_debug_intel' [55:19, 01:28](1160 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [55:05, 00:28](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:47, 00:57](1080 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [54:17, 00:55](1076 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:09, 00:59](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [54:09, 01:07](1070 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [54:02, 01:00](1075 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:28, 00:52](1075 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [52:59, 01:06](1068 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [52:58, 01:09](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [52:41, 00:33](1080 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [52:32, 01:59](1081 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:49, 13:28]
+PASS -- TEST 'control_wam_debug_intel' [52:28, 00:43](301 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:51, 13:45]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:28, 01:31](959 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [51:58, 02:29](791 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [51:38, 02:13](784 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [51:07, 02:11](850 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [50:58, 02:01](844 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [50:49, 01:36](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:16, 01:33](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:48, 00:22](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:43, 12:46]
+PASS -- TEST 'conus13km_control_intel' [50:45, 01:19](1001 MB)
+PASS -- TEST 'conus13km_2threads_intel' [46:38, 00:53](1006 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [46:19, 00:48](879 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:51, 12:23]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [50:30, 01:38](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:39, 04:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [48:30, 01:14](956 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [48:14, 00:31](950 MB)
+PASS -- TEST 'conus13km_debug_intel' [48:13, 01:33](1041 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [47:59, 01:02](713 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [47:51, 01:13](1039 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [47:42, 00:25](1105 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:48, 09:01]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [47:38, 00:27](979 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:51, 12:40]
+PASS -- TEST 'hafs_regional_atm_intel' [47:37, 01:46](617 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:34, 00:59](970 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:31, 01:44](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [47:24, 02:24](694 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:07, 02:22](714 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [46:10, 01:08](394 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [46:08, 02:07](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [45:51, 01:26](285 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:48, 02:45](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:37, 01:36](412 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [45:23, 00:50](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [45:19, 00:58](497 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [44:27, 00:26](312 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:38, 06:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:47, 01:29](499 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:45, 10:17]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [43:38, 01:04](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:29, 01:48](716 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:55, 17:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [43:25, 01:09](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:58, 19:40]
+PASS -- TEST 'hafs_regional_docn_intel' [43:17, 01:58](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [43:13, 01:40](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:19, 00:46](881 MB)
+
+PASS -- COMPILE 'atml_intel' [14:48, 14:18]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [41:41, 02:22](1546 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [41:02, 02:07](1543 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [32:02, 01:21](748 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:42, 12:19]
+PASS -- TEST 'atmaero_control_p8_intel' [40:51, 01:19](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [40:49, 01:46](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [40:48, 01:23](2922 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:48, 12:38]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:42, 10:38]
+PASS -- TEST 'regional_atmaq_debug_intel' [40:45, 01:47](4435 MB)
SYNOPSIS:
-Starting Date/Time: 20240402 16:42:06
-Ending Date/Time: 20240402 18:14:50
-Total Time: 01h:33m:31s
+Starting Date/Time: 20240404 18:14:35
+Ending Date/Time: 20240404 19:47:06
+Total Time: 01h:33m:18s
Compiles Completed: 31/31
Tests Completed: 157/157
From 8a5f7112970b835f110493532ab85fd57ddaa20d Mon Sep 17 00:00:00 2001
From: Denise Worthen
Date: Thu, 11 Apr 2024 13:32:26 -0400
Subject: [PATCH 19/33] Add PIO namelist control for CICE (#2145)
Update to CICE-Consortium/CICE aca8357. Adds implementation of namelist PIO options for CICE
---
CICE-interface/CICE | 2 +-
CICE-interface/CMakeLists.txt | 2 +-
tests/bl_date.conf | 2 +-
tests/default_vars.sh | 22 +
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 500 +++++------
tests/logs/RegressionTests_derecho.log | 575 ++++++------
tests/logs/RegressionTests_gaea.log | 536 ++++++------
tests/logs/RegressionTests_hera.log | 783 +++++++++--------
tests/logs/RegressionTests_hercules.log | 821 ++++++++----------
tests/logs/RegressionTests_jet.log | 472 +++++-----
tests/logs/RegressionTests_orion.log | 633 ++++++--------
tests/logs/RegressionTests_wcoss2.log | 460 +++++-----
tests/parm/ice_in.IN | 101 ++-
tests/test_changes.list | 14 +-
17 files changed, 2456 insertions(+), 2563 deletions(-)
diff --git a/CICE-interface/CICE b/CICE-interface/CICE
index 7d4e5defc1..c9e4679f44 160000
--- a/CICE-interface/CICE
+++ b/CICE-interface/CICE
@@ -1 +1 @@
-Subproject commit 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1
+Subproject commit c9e4679f449e30bb4cc0f22164b4401a8b50f7a6
diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt
index 3a6614699b..2bfb3b3e4e 100644
--- a/CICE-interface/CMakeLists.txt
+++ b/CICE-interface/CMakeLists.txt
@@ -39,7 +39,7 @@ else()
endif()
# Configuration Options
-set(CICE_IO "NetCDF" CACHE STRING "CICE OPTIONS: Choose IO options.")
+set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.")
set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary")
# Too many files to list, so include them via this file
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 046381c5ba..d230802e95 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240401
+export BL_DATE=20240408
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index 9bd6d6355e..3f969d191d 100755
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -653,6 +653,28 @@ export CICE_RUNID=unknown
export CICE_USE_RESTART_TIME=.false.
export CICE_RESTART_DIR=./RESTART/
export CICE_RESTART_FILE=iced
+
+export CICE_RESTART_FORMAT='pnetcdf2'
+export CICE_RESTART_IOTASKS=-99
+export CICE_RESTART_REARR='box'
+export CICE_RESTART_ROOT=-99
+export CICE_RESTART_STRIDE=-99
+export CICE_RESTART_CHUNK=0,0
+export CICE_RESTART_DEFLATE=0
+
+export CICE_HISTORY_FORMAT='pnetcdf2'
+if [[ ${MACHINE_ID} == wcoss2 ]]; then
+ export CICE_RESTART_FORMAT='hdf5'
+ export CICE_HISTORY_FORMAT='hdf5'
+fi
+export CICE_HISTORY_IOTASKS=-99
+export CICE_HISTORY_REARR='box'
+export CICE_HISTORY_ROOT=-99
+export CICE_HISTORY_STRIDE=-99
+export CICE_HISTORY_CHUNK=0,0
+export CICE_HISTORY_DEFLATE=0
+export CICE_HISTORY_PREC=4
+
export CICE_DUMPFREQ=d
export CICE_DUMPFREQ_N=1000
export CICE_DIAGFREQ=`expr $FHMAX \* 3600 / $DT_CICE`
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index c46f7ef816..42e07e0ed4 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 4 13:45:26 UTC 2024
+Mon Apr 8 18:02:49 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 273.384410
- 0: The maximum resident set size (KB) = 1252756
+ 0: The total amount of wall time = 261.545248
+ 0: The maximum resident set size (KB) = 1268088
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 948.187410
- 0: The maximum resident set size (KB) = 1232512
+ 0: The total amount of wall time = 967.578197
+ 0: The maximum resident set size (KB) = 1257076
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 246.989736
- 0: The maximum resident set size (KB) = 1235588
+ 0: The total amount of wall time = 242.264272
+ 0: The maximum resident set size (KB) = 1250184
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.345326
- 0: The maximum resident set size (KB) = 1230288
+ 0: The total amount of wall time = 242.136596
+ 0: The maximum resident set size (KB) = 1248008
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.496287
- 0: The maximum resident set size (KB) = 1237700
+ 0: The total amount of wall time = 238.165900
+ 0: The maximum resident set size (KB) = 1248672
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 238.877192
- 0: The maximum resident set size (KB) = 1230820
+ 0: The total amount of wall time = 238.350921
+ 0: The maximum resident set size (KB) = 1252224
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_478288/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.056770
- 0: The maximum resident set size (KB) = 1231348
+ 0: The total amount of wall time = 240.189587
+ 0: The maximum resident set size (KB) = 1247168
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 4 14:57:18 UTC 2024
-Elapsed time: 01h:11m:52s. Have a nice day!
+Mon Apr 8 19:15:35 UTC 2024
+Elapsed time: 01h:12m:46s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index d8d583491a..04c54bdef2 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 4 18:07:00 UTC 2024
+Mon Apr 8 19:23:40 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1344.317893
- 0: The maximum resident set size (KB) = 1342820
+ 0: The total amount of wall time = 1341.650023
+ 0: The maximum resident set size (KB) = 1370360
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 391.350241
- 0: The maximum resident set size (KB) = 1343528
+ 0: The total amount of wall time = 389.411111
+ 0: The maximum resident set size (KB) = 1359432
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1261607/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 389.898125
- 0: The maximum resident set size (KB) = 1341344
+ 0: The total amount of wall time = 388.613517
+ 0: The maximum resident set size (KB) = 1359920
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 4 19:08:57 UTC 2024
-Elapsed time: 01h:01m:57s. Have a nice day!
+Mon Apr 8 20:26:41 UTC 2024
+Elapsed time: 01h:03m:01s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 0c421a16ed..40a305b301 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 4 16:05:04 UTC 2024
+Tue Apr 9 12:15:38 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2149.189352
- 0: The maximum resident set size (KB) = 541572
+ 0: The total amount of wall time = 2173.644877
+ 0: The maximum resident set size (KB) = 560340
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2148.974341
- 0: The maximum resident set size (KB) = 544628
+ 0: The total amount of wall time = 2203.053030
+ 0: The maximum resident set size (KB) = 550920
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_768169/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2179.538342
- 0: The maximum resident set size (KB) = 543816
+ 0: The total amount of wall time = 2229.689107
+ 0: The maximum resident set size (KB) = 558500
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 4 18:04:34 UTC 2024
-Elapsed time: 01h:59m:31s. Have a nice day!
+Tue Apr 9 14:19:17 UTC 2024
+Elapsed time: 02h:03m:40s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index a9d6adc776..f163758b64 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,17 +1,17 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-616a1599842de8f07db974c54438bb9b9fa996b9
+15c446f74134854e40dd2650d736dbec726082dd
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (383687e)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (remotes/origin/HEAD)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (383687e)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (remotes/origin/HEAD)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,267 +47,267 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_90813
+BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2375
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
PASS -- COMPILE 's2swa_32bit_intel' [10:33, 10:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [38:08, 01:24](3046 MB)
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:31, 01:27](3045 MB)
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:43, 15:39]
-PASS -- TEST 'cpld_control_gfsv17_intel' [31:46, 01:47](1652 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [02:21, 01:58](1777 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [02:13, 01:11](907 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:34, 01:23](1624 MB)
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:51, 20:26]
+PASS -- TEST 'cpld_control_gfsv17_intel' [54:26, 01:23](1652 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:03, 01:48](1778 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [27:28, 01:15](907 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:46, 01:30](1626 MB)
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [44:22, 01:13](1673 MB)
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:02]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [11:47, 01:50](1675 MB)
PASS -- COMPILE 's2swa_intel' [10:33, 10:10]
-PASS -- TEST 'cpld_control_p8_intel' [38:08, 01:39](3069 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:08, 01:19](3071 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [29:25, 01:45](3126 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [38:08, 01:00](3092 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [17:12, 01:32](3147 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [38:08, 00:53](3384 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [38:08, 01:01](3068 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [38:09, 01:36](2992 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:08, 01:43](3071 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [38:08, 00:52](3033 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:33, 10:12]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [38:08, 00:54](1653 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:08, 01:02](1694 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:30, 09:14]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [39:10, 01:00](1698 MB)
-
-PASS -- COMPILE 's2s_intel' [10:33, 09:26]
-PASS -- TEST 'cpld_control_c48_intel' [38:07, 00:45](2676 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:42, 14:12]
-PASS -- TEST 'cpld_control_p8_faster_intel' [33:00, 01:34](3067 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:43, 15:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:32, 01:07](1673 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [02:40, 00:50](971 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:30, 01:24](1647 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:40]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:23, 00:58](1683 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:30, 09:09]
-PASS -- TEST 'control_flake_intel' [34:52, 00:23](639 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 00:43](585 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:52, 00:45](593 MB)
-PASS -- TEST 'control_latlon_intel' [34:52, 00:40](590 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:52, 00:51](590 MB)
-PASS -- TEST 'control_c48_intel' [34:51, 01:08](738 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [34:51, 00:42](739 MB)
-PASS -- TEST 'control_c192_intel' [34:52, 00:35](706 MB)
-PASS -- TEST 'control_c384_intel' [34:56, 01:05](1012 MB)
-PASS -- TEST 'control_c384gdas_intel' [34:56, 01:52](1157 MB)
-PASS -- TEST 'control_stochy_intel' [34:52, 00:37](595 MB)
-PASS -- TEST 'control_stochy_restart_intel' [17:52, 01:04](395 MB)
-PASS -- TEST 'control_lndp_intel' [34:52, 00:29](591 MB)
-PASS -- TEST 'control_iovr4_intel' [30:23, 00:17](591 MB)
-PASS -- TEST 'control_iovr5_intel' [30:08, 00:30](589 MB)
-PASS -- TEST 'control_p8_intel' [29:46, 01:34](1562 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [29:08, 01:53](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [29:07, 01:44](1571 MB)
-PASS -- TEST 'control_restart_p8_intel' [14:06, 01:01](752 MB)
-PASS -- TEST 'control_noqr_p8_intel' [24:02, 01:11](1552 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [13:51, 00:55](759 MB)
-PASS -- TEST 'control_decomp_p8_intel' [24:02, 01:01](1560 MB)
-PASS -- TEST 'control_2threads_p8_intel' [23:13, 01:32](1658 MB)
-PASS -- TEST 'control_p8_lndp_intel' [21:21, 01:01](1564 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [21:03, 01:40](1619 MB)
-PASS -- TEST 'control_p8_mynn_intel' [20:33, 01:46](1576 MB)
-PASS -- TEST 'merra2_thompson_intel' [19:58, 02:01](1574 MB)
-PASS -- TEST 'regional_control_intel' [19:02, 00:09](634 MB)
-PASS -- TEST 'regional_restart_intel' [13:15, 00:54](803 MB)
-PASS -- TEST 'regional_decomp_intel' [18:53, 00:12](629 MB)
-PASS -- TEST 'regional_2threads_intel' [18:52, 00:35](725 MB)
-PASS -- TEST 'regional_noquilt_intel' [18:49, 00:28](1168 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [18:44, 00:33](629 MB)
-PASS -- TEST 'regional_wofs_intel' [17:58, 00:50](1604 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:27, 07:57]
-PASS -- TEST 'regional_ifi_control_intel' [35:53, 00:58](629 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [35:53, 00:15](628 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [35:54, 00:19](726 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:30, 08:35]
-PASS -- TEST 'rap_control_intel' [17:51, 01:51](974 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:33, 00:56](1150 MB)
-PASS -- TEST 'rap_decomp_intel' [17:12, 00:55](973 MB)
-PASS -- TEST 'rap_2threads_intel' [16:36, 01:17](1059 MB)
-PASS -- TEST 'rap_restart_intel' [05:17, 01:07](846 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [16:23, 01:16](969 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:51, 00:41](971 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [03:56, 01:39](844 MB)
-PASS -- TEST 'hrrr_control_intel' [13:52, 01:18](966 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [13:25, 00:50](967 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [13:25, 01:00](1044 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:32, 00:53](798 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:39, 01:50](968 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:07, 01:05](1934 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:46, 01:00](1919 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:31, 08:26]
-PASS -- TEST 'control_csawmg_intel' [11:32, 00:15](661 MB)
-PASS -- TEST 'control_csawmgt_intel' [11:18, 00:23](655 MB)
-
-PASS -- COMPILE 'wam_intel' [08:29, 08:09]
-PASS -- TEST 'control_wam_intel' [11:02, 01:09](333 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:46]
-PASS -- TEST 'control_p8_faster_intel' [10:28, 01:42](1565 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:23, 00:39](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:20, 04:00]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:08, 00:36](755 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:29, 01:13](759 MB)
-PASS -- TEST 'control_stochy_debug_intel' [09:18, 00:26](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [09:17, 01:06](763 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:45, 00:34](803 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [08:45, 01:10](804 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:39, 00:24](771 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:30, 01:15](817 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:34, 00:50](1590 MB)
-PASS -- TEST 'regional_debug_intel' [05:05, 00:34](673 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:31, 00:31](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [03:47, 00:36](1137 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [03:34, 00:24](1139 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [03:04, 00:48](1147 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [02:48, 01:01](1142 MB)
-PASS -- TEST 'rap_diag_debug_intel' [02:48, 00:41](1233 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [02:41, 00:28](1143 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [01:45, 00:19](1146 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [01:26, 01:09](1148 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [01:08, 00:14](1147 MB)
-PASS -- TEST 'rap_noah_debug_intel' [01:04, 01:02](1139 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [01:02, 00:35](1139 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [59:57, 00:25](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [59:56, 00:36](1136 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [59:53, 01:06](1144 MB)
-PASS -- TEST 'rap_flake_debug_intel' [59:52, 00:52](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [59:00, 01:26](1149 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:17, 02:47]
-PASS -- TEST 'control_wam_debug_intel' [57:59, 00:19](376 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:30, 08:05]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:16, 01:19](1018 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [57:04, 01:14](854 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [56:37, 01:29](849 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [56:32, 01:27](913 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [56:33, 01:07](904 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [56:24, 01:46](853 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [45:43, 01:36](750 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:56, 01:08](735 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:41, 10:15]
-PASS -- TEST 'conus13km_control_intel' [56:18, 00:41](1061 MB)
-PASS -- TEST 'conus13km_2threads_intel' [49:25, 00:44](1042 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [49:24, 00:18](939 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [54:08, 08:17]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:40, 00:37](875 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:54, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:04, 01:12](1020 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [45:04, 00:18](1021 MB)
-PASS -- TEST 'conus13km_debug_intel' [45:04, 00:45](1110 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [45:04, 00:50](788 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [45:05, 00:45](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [45:04, 00:28](1180 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:52, 02:52]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:45, 01:08](1046 MB)
-
-PASS -- COMPILE 'hafsw_intel' [54:03, 09:18]
-PASS -- TEST 'hafs_regional_atm_intel' [37:58, 02:10](677 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:58, 00:39](1025 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:56, 01:29](721 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [37:56, 02:11](765 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:57, 02:02](776 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:56, 01:03](442 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:57, 01:34](467 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [37:57, 01:02](339 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:00, 02:38](402 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:56, 01:00](474 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:56, 01:23](474 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:58, 00:56](542 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:57, 00:39](369 MB)
-PASS -- TEST 'gnv1_nested_intel' [37:57, 01:14](734 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [45:50, 03:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:52, 00:38](576 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [51:02, 09:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:39, 00:46](581 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:39, 00:46](756 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [51:03, 09:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:36, 01:08](756 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [51:03, 08:55]
-PASS -- TEST 'hafs_regional_docn_intel' [37:34, 01:47](715 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:34, 01:21](698 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:32, 00:17](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [46:48, 08:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [37:15, 00:41](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [21:27, 00:12](738 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:09, 00:27](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [35:15, 00:19](644 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:02, 01:02](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [33:58, 01:03](750 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:23, 00:35](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:48, 00:59](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [28:46, 00:54](650 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:21, 00:58](630 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:45, 00:50](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [26:20, 00:54](2020 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [24:35, 01:03](2020 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [40:39, 08:32]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [38:37, 00:40](764 MB)
+PASS -- TEST 'cpld_control_p8_intel' [05:31, 01:22](3075 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:31, 01:39](3072 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [50:48, 01:35](3129 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [05:31, 01:44](3097 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [51:37, 01:30](3149 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [05:31, 01:10](3384 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [05:31, 01:15](3068 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 01:29](2995 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:31, 01:11](3076 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:31, 00:51](3037 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:33, 09:37]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:31, 00:49](1649 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:31, 01:00](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:30, 09:12]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:34, 01:00](1693 MB)
+
+PASS -- COMPILE 's2s_intel' [09:31, 09:13]
+PASS -- TEST 'cpld_control_c48_intel' [06:32, 00:42](2675 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:44, 14:38]
+PASS -- TEST 'cpld_control_p8_faster_intel' [00:19, 01:44](3074 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:45, 15:54]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:11, 00:54](1670 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:20, 01:23](972 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:37, 01:28](1636 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:44]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:46, 01:21](1685 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:46]
+PASS -- TEST 'control_flake_intel' [01:12, 00:35](637 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [01:12, 00:56](587 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:12, 00:54](594 MB)
+PASS -- TEST 'control_latlon_intel' [01:12, 00:16](586 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:12, 01:10](589 MB)
+PASS -- TEST 'control_c48_intel' [01:11, 01:17](737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [01:11, 01:16](737 MB)
+PASS -- TEST 'control_c192_intel' [01:12, 00:40](706 MB)
+PASS -- TEST 'control_c384_intel' [01:16, 01:11](1014 MB)
+PASS -- TEST 'control_c384gdas_intel' [01:16, 02:17](1157 MB)
+PASS -- TEST 'control_stochy_intel' [01:12, 00:34](594 MB)
+PASS -- TEST 'control_stochy_restart_intel' [51:31, 00:21](392 MB)
+PASS -- TEST 'control_lndp_intel' [01:12, 01:14](590 MB)
+PASS -- TEST 'control_iovr4_intel' [58:57, 00:49](590 MB)
+PASS -- TEST 'control_iovr5_intel' [58:30, 01:11](588 MB)
+PASS -- TEST 'control_p8_intel' [57:57, 01:45](1562 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [57:56, 00:54](1573 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [57:56, 00:53](1572 MB)
+PASS -- TEST 'control_restart_p8_intel' [42:17, 01:50](757 MB)
+PASS -- TEST 'control_noqr_p8_intel' [56:30, 00:55](1557 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [41:08, 01:29](757 MB)
+PASS -- TEST 'control_decomp_p8_intel' [53:33, 01:23](1558 MB)
+PASS -- TEST 'control_2threads_p8_intel' [53:23, 00:50](1656 MB)
+PASS -- TEST 'control_p8_lndp_intel' [52:37, 00:59](1566 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [50:25, 01:25](1621 MB)
+PASS -- TEST 'control_p8_mynn_intel' [48:24, 00:56](1579 MB)
+PASS -- TEST 'merra2_thompson_intel' [48:14, 01:52](1575 MB)
+PASS -- TEST 'regional_control_intel' [47:42, 00:51](634 MB)
+PASS -- TEST 'regional_restart_intel' [38:54, 00:12](803 MB)
+PASS -- TEST 'regional_decomp_intel' [46:24, 00:52](629 MB)
+PASS -- TEST 'regional_2threads_intel' [46:19, 01:13](725 MB)
+PASS -- TEST 'regional_noquilt_intel' [46:12, 01:03](1168 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [45:23, 00:56](631 MB)
+PASS -- TEST 'regional_wofs_intel' [45:14, 00:38](1604 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:28, 08:01]
+PASS -- TEST 'regional_ifi_control_intel' [03:15, 01:00](630 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [03:15, 00:48](629 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [03:16, 00:36](720 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:31, 08:56]
+PASS -- TEST 'rap_control_intel' [44:15, 01:37](973 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:06, 00:36](1146 MB)
+PASS -- TEST 'rap_decomp_intel' [43:54, 01:07](976 MB)
+PASS -- TEST 'rap_2threads_intel' [43:43, 00:39](1062 MB)
+PASS -- TEST 'rap_restart_intel' [32:48, 01:44](845 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [42:54, 01:13](972 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [42:46, 01:32](972 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [31:25, 00:57](841 MB)
+PASS -- TEST 'hrrr_control_intel' [42:12, 01:06](967 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [41:10, 01:24](972 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [41:09, 01:55](1045 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [33:50, 00:35](801 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [40:28, 01:45](967 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [40:17, 00:56](1933 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [38:56, 01:19](1919 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:31, 08:23]
+PASS -- TEST 'control_csawmg_intel' [38:54, 00:27](664 MB)
+PASS -- TEST 'control_csawmgt_intel' [38:22, 00:43](658 MB)
+
+PASS -- COMPILE 'wam_intel' [08:28, 08:07]
+PASS -- TEST 'control_wam_intel' [38:03, 00:37](334 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:30, 08:42]
+PASS -- TEST 'control_p8_faster_intel' [37:56, 01:47](1570 MB)
+PASS -- TEST 'regional_control_faster_intel' [37:32, 00:28](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:19, 03:59]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [37:26, 01:01](761 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:37, 01:19](761 MB)
+PASS -- TEST 'control_stochy_debug_intel' [36:26, 00:53](763 MB)
+PASS -- TEST 'control_lndp_debug_intel' [34:52, 00:18](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [34:52, 00:49](799 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [33:13, 01:02](799 MB)
+PASS -- TEST 'control_ras_debug_intel' [32:39, 00:56](773 MB)
+PASS -- TEST 'control_diag_debug_intel' [32:35, 00:34](817 MB)
+PASS -- TEST 'control_debug_p8_intel' [32:24, 01:00](1590 MB)
+PASS -- TEST 'regional_debug_intel' [31:45, 01:01](673 MB)
+PASS -- TEST 'rap_control_debug_intel' [31:33, 00:12](1145 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [29:50, 00:36](1143 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [29:34, 00:58](1141 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [29:25, 00:51](1149 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:22, 00:51](1147 MB)
+PASS -- TEST 'rap_diag_debug_intel' [29:02, 01:01](1226 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:00, 00:50](1143 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [28:55, 00:39](1142 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [28:53, 00:39](1148 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [28:34, 00:25](1144 MB)
+PASS -- TEST 'rap_noah_debug_intel' [27:10, 00:13](1146 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [27:09, 01:00](1141 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:06, 00:52](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [27:02, 00:36](1137 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [26:29, 01:12](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [26:28, 00:41](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:38, 01:42](1148 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:26, 02:50]
+PASS -- TEST 'control_wam_debug_intel' [24:11, 00:18](374 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:06]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:00, 00:30](1020 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:19, 01:57](854 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:03, 02:03](851 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:00, 01:17](915 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:02, 02:26](906 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:51, 01:14](851 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:59, 01:25](750 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:21, 01:02](730 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:45, 10:20]
+PASS -- TEST 'conus13km_control_intel' [21:50, 01:03](1059 MB)
+PASS -- TEST 'conus13km_2threads_intel' [15:00, 00:54](1043 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [14:59, 00:15](939 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:04, 08:16]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 01:21](877 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:50, 02:59]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:27, 00:39](1020 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:27, 00:18](1019 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:27, 01:06](1116 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 01:00](789 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:28, 01:11](1085 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 01:05](1182 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [44:47, 02:56]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:14, 01:04](1045 MB)
+
+PASS -- COMPILE 'hafsw_intel' [52:03, 09:19]
+PASS -- TEST 'hafs_regional_atm_intel' [05:02, 01:25](675 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:02, 01:04](1025 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:00, 01:55](718 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [05:00, 01:54](757 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:36, 01:55](771 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:17, 01:06](443 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:31, 01:45](466 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [01:28, 00:48](340 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:37, 02:00](407 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [00:25, 01:21](475 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:46, 01:24](477 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:06, 01:33](539 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [56:16, 00:49](369 MB)
+PASS -- TEST 'gnv1_nested_intel' [55:26, 01:26](735 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [45:49, 03:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:15, 00:39](573 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [50:58, 09:33]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [05:05, 00:50](581 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:05, 00:43](754 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [51:02, 09:26]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:17, 01:31](751 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [49:57, 09:00]
+PASS -- TEST 'hafs_regional_docn_intel' [05:16, 02:03](714 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:16, 01:14](701 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [05:14, 01:08](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [41:41, 08:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:50, 00:23](749 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [54:08, 00:38](751 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:50, 00:53](638 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:50, 01:05](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:50, 00:09](640 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:50, 00:33](763 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:50, 00:29](763 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 00:41](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:51, 01:21](649 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:51, 01:11](629 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:50, 00:15](750 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:50, 00:38](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:50, 00:40](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [40:38, 08:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [55:12, 01:02](761 MB)
PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 00:52]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [43:53, 00:47](263 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [43:53, 01:12](412 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:10, 00:56](411 MB)
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:15, 00:50](272 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:15, 00:29](412 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:43, 00:59](412 MB)
-PASS -- COMPILE 'atml_intel' [10:32, 09:19]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:53, 01:30](1606 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [21:27, 01:36](1603 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:56, 00:28](808 MB)
+PASS -- COMPILE 'atml_intel' [10:32, 09:37]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [55:13, 01:50](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [55:10, 01:10](1605 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [34:12, 00:26](804 MB)
-PASS -- COMPILE 'atmw_intel' [09:29, 08:47]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:57, 01:19](1609 MB)
+PASS -- COMPILE 'atmw_intel' [12:36, 08:38]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [54:11, 01:07](1612 MB)
-PASS -- COMPILE 'atmwm_intel' [14:41, 08:47]
-PASS -- TEST 'control_atmwav_intel' [20:54, 01:31](603 MB)
+PASS -- COMPILE 'atmwm_intel' [14:40, 08:44]
+PASS -- TEST 'control_atmwav_intel' [54:09, 01:13](604 MB)
-PASS -- COMPILE 'atmaero_intel' [10:34, 08:36]
-PASS -- TEST 'atmaero_control_p8_intel' [20:50, 01:01](2917 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [20:34, 00:54](2977 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:24, 01:43](2991 MB)
+PASS -- COMPILE 'atmaero_intel' [10:30, 08:35]
+PASS -- TEST 'atmaero_control_p8_intel' [54:09, 00:44](2920 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [53:43, 01:04](2979 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:06, 01:33](2990 MB)
-PASS -- COMPILE 'atmaq_intel' [36:25, 08:22]
+PASS -- COMPILE 'atmaq_intel' [09:30, 08:21]
-PASS -- COMPILE 'atmaq_debug_intel' [31:15, 03:03]
-PASS -- TEST 'regional_atmaq_debug_intel' [07:21, 00:56](4493 MB)
+PASS -- COMPILE 'atmaq_debug_intel' [14:40, 03:01]
+PASS -- TEST 'regional_atmaq_debug_intel' [50:36, 01:10](4507 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 18:11:06
-Ending Date/Time: 20240404 20:17:56
-Total Time: 02h:07m:10s
+Starting Date/Time: 20240410 18:43:44
+Ending Date/Time: 20240410 20:45:11
+Total Time: 02h:01m:47s
Compiles Completed: 37/37
Tests Completed: 176/176
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 1b36672e72..2fe824266c 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,17 +1,17 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -47,284 +47,276 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_10684
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_47655
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:32, 19:36]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 04:54](3079 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:29, 20:57]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:48](1690 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:44, 15:07](1825 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:32, 07:09](962 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:44](1656 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:32, 09:34]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 21:20](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:30, 19:20]
-PASS -- TEST 'cpld_control_p8_intel' [09:09, 05:40](3094 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:13, 05:40](3091 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:54, 03:19](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 05:38](3123 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:22](3179 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:55, 05:34](3093 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:35, 04:37](3388 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:37](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:19, 08:46](3635 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:36, 05:48](3614 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [26:38, 09:46](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:57, 06:53](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:18](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:30, 18:58]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:43, 04:15](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:17](1726 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:24, 09:28]
-PASS -- TEST 'cpld_debug_p8_intel' [10:09, 07:40](3155 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:30, 08:56]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:16](1706 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:30, 14:26]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 04:14](1725 MB)
-
-PASS -- COMPILE 's2s_intel' [15:30, 14:29]
-PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:40](2670 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:33, 23:00]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:22, 05:30](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:29, 19:44]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:03](1706 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:19](1016 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 16:00](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:52]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:20, 22:53](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:28, 13:02]
-PASS -- TEST 'control_flake_intel' [04:55, 03:22](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:04](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:03, 02:07](623 MB)
-PASS -- TEST 'control_latlon_intel' [03:40, 02:06](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:07](621 MB)
-PASS -- TEST 'control_c48_intel' [06:43, 05:15](734 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:12](736 MB)
-PASS -- TEST 'control_c192_intel' [09:22, 07:51](740 MB)
-PASS -- TEST 'control_c384_intel' [14:29, 08:15](1068 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:55, 07:15](1201 MB)
-PASS -- TEST 'control_stochy_intel' [02:48, 01:27](629 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:38, 00:53](439 MB)
-PASS -- TEST 'control_lndp_intel' [02:39, 01:21](626 MB)
-PASS -- TEST 'control_iovr4_intel' [04:00, 02:05](625 MB)
-PASS -- TEST 'control_iovr5_intel' [03:45, 02:07](621 MB)
-PASS -- TEST 'control_p8_intel' [04:33, 02:29](1600 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:33, 02:28](1596 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:36, 02:28](1602 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:27, 01:26](800 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:37, 02:29](1592 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:21](805 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:34, 02:35](1593 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:22](1608 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:16](1662 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:33](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:52, 02:57](1608 MB)
-PASS -- TEST 'regional_control_intel' [06:15, 04:30](628 MB)
-PASS -- TEST 'regional_restart_intel' [04:18, 02:30](799 MB)
-PASS -- TEST 'regional_decomp_intel' [06:18, 04:44](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:16, 04:23](1160 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:29](627 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:30](634 MB)
-PASS -- TEST 'regional_wofs_intel' [07:08, 05:35](1608 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:29, 11:14]
-PASS -- TEST 'rap_control_intel' [08:26, 06:04](1006 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:40](1196 MB)
-PASS -- TEST 'rap_decomp_intel' [08:19, 06:21](1005 MB)
-PASS -- TEST 'rap_restart_intel' [05:14, 03:11](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:05](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:18, 06:21](1008 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:36](880 MB)
-PASS -- TEST 'hrrr_control_intel' [05:18, 03:12](1002 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:17, 03:17](1000 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 02:49](1090 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:50](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:23, 06:00](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:45, 07:21](1960 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:41, 07:05](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:28, 10:20]
-PASS -- TEST 'control_csawmg_intel' [08:02, 05:49](696 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:17, 05:47](693 MB)
-PASS -- TEST 'control_ras_intel' [04:42, 02:50](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:26, 09:38]
-PASS -- TEST 'control_wam_intel' [03:39, 01:53](379 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 12:41]
-PASS -- TEST 'control_p8_faster_intel' [04:51, 02:24](1594 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:16, 04:14](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 08:33]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:32](794 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:32](792 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:40, 02:50](796 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:42, 02:36](799 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:13, 03:58](841 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:13, 03:57](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:37, 02:38](811 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:28, 02:37](855 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:17, 02:36](1622 MB)
-PASS -- TEST 'regional_debug_intel' [18:08, 15:59](663 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:44, 04:39](1184 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:35](1180 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:40](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:39](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:45, 04:39](1185 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:22, 04:51](1263 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:42, 04:55](1179 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:40, 04:47](1186 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:45, 04:43](1185 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:45, 04:40](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:43, 04:36](1177 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:43, 04:45](1184 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:40, 07:45](1180 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:37](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:48, 05:45](1187 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:42, 04:37](1182 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:14, 07:55](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:19, 05:31]
-PASS -- TEST 'control_wam_debug_intel' [05:35, 04:37](421 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 09:42]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:13, 03:30](1062 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:06](885 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:07, 02:46](883 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:13, 02:52](885 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 01:31](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:27, 11:33]
-PASS -- TEST 'conus13km_control_intel' [05:37, 01:53](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:40, 00:57](1082 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:10](972 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 09:43]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:36](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 05:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:46, 04:29](1061 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:24](1058 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:06, 13:17](1131 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:05, 13:27](818 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 13:10](1203 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:32]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:46, 04:41](1089 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:29, 15:50]
-PASS -- TEST 'hafs_regional_atm_intel' [06:50, 04:32](714 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:12, 05:09](1072 MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [12:52, 10:56](797 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:58, 12:01](817 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:41](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:34, 05:42](493 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:12, 02:18](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:57, 06:14](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:14](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:28, 03:46](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:17](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:21, 03:25](789 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:29, 07:04]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:33, 12:00](615 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:29, 19:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:42, 07:08](638 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:10](689 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:19](677 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:24, 14:10]
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:28, 16:11](896 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:27, 07:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:30](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:40, 01:32](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:37, 02:22](643 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:37, 02:23](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:25](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:29](749 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:34, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:22](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:03, 05:41](690 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:45, 05:39](678 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:29](749 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:59](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:32, 03:55](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:26, 05:04]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:38, 05:04](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 07:36]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:30](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:17]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:11](313 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:38, 01:09](453 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:42, 00:46](452 MB)
-
-PASS -- COMPILE 'atml_intel' [13:25, 12:45]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:41, 06:19](1642 MB)
-FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
-MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmw_intel' [13:26, 12:38]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:21, 01:33](1634 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:25, 12:30]
-PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:25, 11:10]
-PASS -- TEST 'atmaero_control_p8_intel' [05:56, 03:38](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:44, 04:15](2996 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:17, 04:32](3011 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:25, 10:36]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:17]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:39, 21:55](4534 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:33, 19:36]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:55, 04:55](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:32, 20:49]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:14, 13:43](1691 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:43, 15:09](1827 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:37, 07:14](962 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:09, 15:42](1665 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:28, 09:30]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:03, 21:18](1700 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:34, 19:32]
+PASS -- TEST 'cpld_control_p8_intel' [09:04, 05:38](3094 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:36](3093 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:41, 03:17](3153 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:04, 05:38](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:17](3178 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 05:33](3092 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:28, 04:36](3388 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:35](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:16, 08:51](3638 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 06:08](3618 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [27:04, 09:50](4344 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:59, 07:02](4652 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:37, 05:16](3071 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:33, 19:02]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:55, 04:11](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:07, 04:14](1733 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:28, 09:20]
+PASS -- TEST 'cpld_debug_p8_intel' [10:19, 07:40](3155 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:29, 08:48]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:19](1712 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:32, 14:29]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:15](1727 MB)
+
+PASS -- COMPILE 's2s_intel' [15:32, 14:24]
+PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:37](2672 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:34, 23:09]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:33, 05:29](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:32, 19:52]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:08, 14:01](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:29, 07:19](1015 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:01](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:24, 08:58]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:56, 22:56](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:25]
+PASS -- TEST 'control_flake_intel' [04:54, 03:24](673 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:47, 02:04](621 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:01, 02:08](628 MB)
+PASS -- TEST 'control_latlon_intel' [03:50, 02:05](620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:07](623 MB)
+PASS -- TEST 'control_c48_intel' [06:55, 05:16](740 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:53, 05:14](734 MB)
+PASS -- TEST 'control_c192_intel' [09:31, 07:51](739 MB)
+PASS -- TEST 'control_c384_intel' [14:43, 08:14](1063 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:05, 07:20](1206 MB)
+PASS -- TEST 'control_stochy_intel' [02:47, 01:24](629 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:47, 00:54](443 MB)
+PASS -- TEST 'control_lndp_intel' [02:44, 01:21](625 MB)
+PASS -- TEST 'control_iovr4_intel' [03:57, 02:06](622 MB)
+PASS -- TEST 'control_iovr5_intel' [03:57, 02:05](625 MB)
+PASS -- TEST 'control_p8_intel' [04:33, 02:27](1597 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:34, 02:28](1601 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:55, 02:27](1595 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:42, 01:26](801 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:52, 02:30](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:22](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:31](1601 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:39, 04:23](1604 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:16](1661 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:31](1609 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:58, 02:58](1608 MB)
+PASS -- TEST 'regional_control_intel' [06:19, 04:29](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:18, 02:32](800 MB)
+PASS -- TEST 'regional_decomp_intel' [06:15, 04:45](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:15, 04:25](1158 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:29](632 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:30](634 MB)
+PASS -- TEST 'regional_wofs_intel' [07:16, 05:39](1606 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:25, 11:05]
+PASS -- TEST 'rap_control_intel' [08:29, 06:06](1008 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:52, 03:41](1188 MB)
+PASS -- TEST 'rap_decomp_intel' [08:16, 06:23](1008 MB)
+PASS -- TEST 'rap_restart_intel' [05:22, 03:12](879 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:06](1004 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:22](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:37](881 MB)
+PASS -- TEST 'hrrr_control_intel' [05:22, 03:11](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:17](1002 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 02:48](1093 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:49, 01:45](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:01, 05:57](998 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:47, 07:22](1959 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:08](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:26, 10:09]
+PASS -- TEST 'control_csawmg_intel' [07:25, 05:51](693 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:19, 05:43](698 MB)
+PASS -- TEST 'control_ras_intel' [04:37, 02:53](660 MB)
+
+PASS -- COMPILE 'wam_intel' [10:25, 09:26]
+PASS -- TEST 'control_wam_intel' [03:33, 01:53](381 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:36]
+PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1591 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:37]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:33](795 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:39, 02:34](798 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:35, 02:50](797 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:36, 02:34](798 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:19, 03:56](840 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:06, 03:56](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:44, 02:35](806 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:06, 02:43](855 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:08, 02:37](1624 MB)
+PASS -- TEST 'regional_debug_intel' [18:11, 16:13](666 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:40, 04:38](1182 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:44, 04:35](1175 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:50, 04:43](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:41, 04:41](1184 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:38](1182 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:39, 04:51](1266 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:52, 04:45](1181 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:52, 04:48](1185 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:51, 04:44](1185 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:49, 04:42](1180 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:51, 04:33](1185 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:49, 04:47](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:44, 07:30](1183 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 04:35](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:45](1189 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:49, 04:55](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:15, 08:06](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:18, 05:21]
+PASS -- TEST 'control_wam_debug_intel' [05:34, 04:37](418 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 09:39]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 03:30](1061 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:08, 05:07](884 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:25, 02:46](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:23, 02:55](886 MB)
+FAIL TO RUN -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:32](779 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:29]
+PASS -- TEST 'conus13km_control_intel' [03:52, 01:52](1085 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:56, 00:59](1088 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:50, 01:07](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 09:49]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:09, 03:35](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:34]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:44, 04:37](1061 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:27](1056 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:09, 13:20](1133 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:25](823 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 13:16](1200 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:26]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:45, 04:36](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:30, 15:56]
+PASS -- TEST 'hafs_regional_atm_intel' [08:50, 04:32](721 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 05:03](1069 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:24](783 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [12:48, 10:53](797 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:04](820 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:39, 04:40](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:58, 05:44](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:16, 02:20](393 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 06:17](461 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:18](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:36, 03:03](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:48](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:42, 01:15](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:10, 03:20](789 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:01, 12:06](613 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:28, 19:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:13, 07:09](636 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:47, 07:08](691 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:35, 05:20](680 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:24, 14:07]
+PASS -- TEST 'hafs_regional_docn_intel' [07:41, 05:35](751 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:51, 05:37](739 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:25, 16:12](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:23, 07:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:29](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:58, 01:33](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:39, 02:21](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:42, 02:24](645 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:23](645 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:29](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:20](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 05:41](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:02, 05:42](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:29](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:47, 03:54](1955 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:40, 03:55](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:02]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:06](733 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 07:41]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:29](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:24, 02:23]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:47, 01:11](304 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:07](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:46](452 MB)
+
+PASS -- COMPILE 'atml_intel' [13:26, 13:01]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:52, 06:23](1644 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:53, 06:20](1637 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:23, 03:18](849 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:22, 12:32]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:30, 01:32](1635 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:20, 12:36]
+PASS -- TEST 'control_atmwav_intel' [03:04, 01:30](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:19, 11:03]
+PASS -- TEST 'atmaero_control_p8_intel' [07:02, 03:39](2949 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:13](2998 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:31](3012 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:24, 10:51]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:09]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:49, 22:05](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 09:03:16
-Ending Date/Time: 20240404 10:29:28
-Total Time: 01h:26m:46s
+Starting Date/Time: 20240408 15:23:08
+Ending Date/Time: 20240408 16:51:29
+Total Time: 01h:29m:06s
Compiles Completed: 39/39
-Tests Completed: 170/175
+Tests Completed: 174/175
Failed Tests:
-* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_atm_ocn_intel.log
-* TEST hafs_regional_docn_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_intel.log
-* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_hafs_regional_docn_oisst_intel.log
-* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
--- LOG: /glade/work/zshrader/rt-2223/tests/logs/log_derecho/rt_control_p8_atmlnd_intel.log
-* TEST control_restart_p8_atmlnd_intel: MISSING
--- LOG: N/A
+* TEST rap_restart_dyn32_phy32_intel: FAIL TO RUN
+-- LOG: /glade/work/zshrader/rt-2145/tests/logs/log_derecho/run_rap_restart_dyn32_phy32_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -337,17 +329,17 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -365,10 +357,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -383,30 +375,23 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_21338
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_108573
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafsw_intel' [16:32, 16:07]
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:32](780 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:31, 14:32]
-PASS -- TEST 'hafs_regional_docn_intel' [07:24, 05:41](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:24, 05:41](739 MB)
-PASS -- COMPILE 'atml_intel' [14:29, 13:18]
-PASS -- TEST 'control_p8_atmlnd_intel' [10:00, 07:09](1641 MB)
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:43]
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:03, 05:09](884 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 03:54](797 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 11:35:33
-Ending Date/Time: 20240404 12:02:07
-Total Time: 00h:26m:47s
-Compiles Completed: 3/3
-Tests Completed: 4/4
+Starting Date/Time: 20240409 06:22:16
+Ending Date/Time: 20240409 06:46:34
+Total Time: 00h:24m:26s
+Compiles Completed: 1/1
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 7d0d7663cb..c34b8d1f16 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,17 +1,17 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -47,278 +47,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4074
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_175164
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [23:14, 22:04]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:19](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:13, 29:20]
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 14:39](1698 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:54](1814 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:03, 07:34](949 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:47, 15:55](1665 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:13, 16:32]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:22, 24:28](1697 MB)
-
-PASS -- COMPILE 's2swa_intel' [25:12, 23:44]
-PASS -- TEST 'cpld_control_p8_intel' [12:57, 08:49](3101 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:37, 08:58](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:38, 05:43](3159 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:25, 09:07](3126 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:55, 07:02](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:46, 07:35](3415 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:46, 08:43](3098 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:46, 07:49](3023 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:37, 09:11](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:47, 11:00](3272 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:38, 08:41](3605 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 13:52](4043 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:10, 09:24](4346 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:57, 08:23](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [23:14, 22:07]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [11:32, 05:45](1684 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:31, 05:55](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [21:10, 19:36]
-PASS -- TEST 'cpld_debug_p8_intel' [18:26, 10:54](3130 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [22:10, 20:45]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:33, 06:29](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [23:14, 21:43]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:32, 06:00](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [23:14, 21:38]
-PASS -- TEST 'cpld_control_c48_intel' [12:03, 07:15](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [27:13, 25:40]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:37, 08:45](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [27:22, 26:16]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:03, 15:50](1703 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:14, 07:51](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 17:55](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:13, 16:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 26:54](1711 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:13, 16:06]
-PASS -- TEST 'control_flake_intel' [06:44, 04:05](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:51, 02:48](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:50, 03:04](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:37, 02:58](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:49](623 MB)
-PASS -- TEST 'control_c48_intel' [08:17, 05:37](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:17, 05:41](727 MB)
-PASS -- TEST 'control_c192_intel' [12:49, 09:33](738 MB)
-PASS -- TEST 'control_c384_intel' [19:13, 16:47](1041 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:44, 14:29](1184 MB)
-PASS -- TEST 'control_stochy_intel' [03:36, 01:54](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:32](429 MB)
-PASS -- TEST 'control_lndp_intel' [03:36, 01:58](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:44, 02:51](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:38, 02:50](623 MB)
-PASS -- TEST 'control_p8_intel' [07:23, 04:10](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:02, 04:16](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 03:42](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:24, 01:51](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:38](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 01:48](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:44, 03:46](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:33, 03:35](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:37](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:07, 04:29](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:08, 03:53](1614 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:35, 04:10](1615 MB)
-PASS -- TEST 'regional_control_intel' [06:56, 04:59](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:38, 02:39](789 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [24:15, 22:29]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 07:51](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:12, 25:47]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:10, 14:27](1693 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:57](1811 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 06:48](946 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 15:27](1663 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:10, 15:38]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 24:04](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:11, 19:59]
+PASS -- TEST 'cpld_control_p8_intel' [13:20, 09:21](3096 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:45, 08:21](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:25, 05:45](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:20, 09:10](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [38:11, 06:24](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:08, 06:59](3409 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:13, 08:34](3094 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:18](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:45, 08:18](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:45, 10:36](3265 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:21, 07:35](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:00, 13:26](4032 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:34, 09:25](4343 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:10, 08:12](3066 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:15, 20:58]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:51, 05:02](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:51, 05:29](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [18:13, 16:12]
+PASS -- TEST 'cpld_debug_p8_intel' [14:43, 10:32](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:05]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:47, 06:12](1697 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [20:10, 18:43]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:24](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [19:13, 17:16]
+PASS -- TEST 'cpld_control_c48_intel' [09:27, 06:54](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [26:14, 24:12]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:18, 08:34](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [26:15, 24:28]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:45, 15:49](1704 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:54, 07:42](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 18:06](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 13:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:13, 27:01](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:34]
+PASS -- TEST 'control_flake_intel' [06:02, 03:55](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:35, 02:46](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 02:49](627 MB)
+PASS -- TEST 'control_latlon_intel' [05:10, 02:42](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 02:59](622 MB)
+PASS -- TEST 'control_c48_intel' [08:42, 05:41](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:41, 05:36](727 MB)
+PASS -- TEST 'control_c192_intel' [11:27, 09:03](739 MB)
+PASS -- TEST 'control_c384_intel' [20:25, 16:37](1041 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:27, 14:24](1184 MB)
+PASS -- TEST 'control_stochy_intel' [05:10, 02:12](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:04](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:04, 02:00](628 MB)
+PASS -- TEST 'control_iovr4_intel' [06:11, 03:07](623 MB)
+PASS -- TEST 'control_iovr5_intel' [05:09, 02:54](623 MB)
+PASS -- TEST 'control_p8_intel' [07:29, 03:40](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:51, 03:50](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:38, 03:35](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:24, 01:55](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:29, 03:32](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:45](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:28, 03:48](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:26, 03:00](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:08, 05:51](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 04:23](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:36, 03:35](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:32, 04:25](1615 MB)
+PASS -- TEST 'regional_control_intel' [07:05, 04:48](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:46, 02:38](789 MB)
PASS -- TEST 'regional_decomp_intel' [06:53, 04:59](615 MB)
-PASS -- TEST 'regional_2threads_intel' [07:08, 04:11](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:17, 05:11](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:19, 05:21](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:04, 05:10](615 MB)
-PASS -- TEST 'regional_wofs_intel' [09:27, 07:01](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:09, 14:08]
-PASS -- TEST 'rap_control_intel' [11:19, 07:11](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:35, 04:02](1183 MB)
-PASS -- TEST 'rap_decomp_intel' [11:19, 07:22](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [10:35, 06:13](1093 MB)
-PASS -- TEST 'rap_restart_intel' [07:53, 04:32](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:20, 07:46](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:20, 07:48](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:46, 05:33](880 MB)
-PASS -- TEST 'hrrr_control_intel' [07:49, 04:22](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:28](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 03:29](1082 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:09, 02:28](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:35, 06:50](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:17, 08:26](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:18, 07:59](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [18:09, 16:48]
-PASS -- TEST 'control_csawmg_intel' [09:44, 06:58](696 MB)
-PASS -- TEST 'control_csawmgt_intel' [09:44, 06:45](691 MB)
-PASS -- TEST 'control_ras_intel' [05:50, 03:33](657 MB)
-
-PASS -- COMPILE 'wam_intel' [16:09, 14:44]
-PASS -- TEST 'control_wam_intel' [04:49, 02:08](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [20:14, 18:11]
-PASS -- TEST 'control_p8_faster_intel' [06:42, 03:20](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:05, 04:53](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [15:13, 13:36]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:51](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:38, 03:04](782 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:11, 03:29](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:29, 03:03](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:28](825 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:37, 04:19](826 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:13, 02:53](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:13, 02:58](846 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:41, 03:31](1621 MB)
-PASS -- TEST 'regional_debug_intel' [18:57, 16:30](635 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:26, 05:29](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:44, 05:05](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:37, 05:17](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:16](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:41, 05:03](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:42, 05:39](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:21](1167 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:51](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:29, 05:41](1169 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 05:25](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:16](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:18](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:56, 08:26](1167 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:18](1164 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:05, 06:19](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:45, 05:12](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:35](1172 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [12:10, 10:20]
-PASS -- TEST 'control_wam_debug_intel' [07:43, 05:33](397 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [17:10, 15:08]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:15, 03:50](1048 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 05:54](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:01, 03:43](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:21](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:04, 02:48](940 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:28](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:52, 04:11](783 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:32, 02:07](765 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:09, 17:54]
-PASS -- TEST 'conus13km_control_intel' [05:07, 02:36](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:17, 01:18](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 01:24](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:09, 15:25]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:15, 04:33](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:13, 11:50]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:09](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:48, 04:56](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:52, 13:56](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:55, 14:12](805 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:46, 08:12](1109 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:57](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:12, 11:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:31, 04:57](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [25:15, 23:19]
-PASS -- TEST 'hafs_regional_atm_intel' [08:27, 05:46](708 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:44, 05:02](1055 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:43, 07:40](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:45, 11:41](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:41, 12:44](799 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:41](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 06:51](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:20](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:14, 08:25](444 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:06, 04:13](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:12, 04:30](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:24, 04:53](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:08, 02:00](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:32, 04:35](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [16:09, 14:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:31, 13:13](586 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [24:22, 22:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:52](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:48, 07:54](786 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [22:17, 20:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:15](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [22:16, 20:35]
-PASS -- TEST 'hafs_regional_docn_intel' [09:45, 06:15](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:41, 06:15](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:32, 20:06](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:33, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:01, 01:37](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:30, 02:39](635 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:32, 02:31](635 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:32, 02:32](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:31, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:02, 02:28](635 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:02, 06:05](691 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:59, 06:12](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:45, 02:42](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:30, 04:46](2015 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:39](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [10:13, 08:21]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:28](740 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 13:01]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:35](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:08, 03:46]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:05, 03:51](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:53, 02:13](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:53, 01:07](456 MB)
-
-PASS -- COMPILE 'atml_intel' [19:10, 17:29]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:51, 08:22](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [13:51, 08:33](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 04:12](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [18:14, 16:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:19, 02:29](1648 MB)
-
-PASS -- COMPILE 'atmwm_intel' [17:13, 15:39]
-PASS -- TEST 'control_atmwav_intel' [06:03, 02:49](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:17, 14:25]
-PASS -- TEST 'atmaero_control_p8_intel' [12:24, 06:41](2941 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:10, 06:56](3011 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:16, 07:32](3017 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:10, 13:50]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:12, 10:51]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 18:32](4482 MB)
+PASS -- TEST 'regional_2threads_intel' [04:54, 02:59](766 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:53, 05:08](1154 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:05](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 04:59](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:55, 06:15](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:13, 14:12]
+PASS -- TEST 'rap_control_intel' [10:34, 07:12](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:02](1189 MB)
+PASS -- TEST 'rap_decomp_intel' [10:28, 07:08](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:39, 06:17](1095 MB)
+PASS -- TEST 'rap_restart_intel' [06:26, 03:31](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:59, 07:23](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 07:11](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:10, 05:16](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:19, 03:59](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:20, 04:05](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 03:07](1086 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:28](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:15, 07:23](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:14](1966 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:48, 07:57](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:13, 13:27]
+PASS -- TEST 'control_csawmg_intel' [08:39, 06:44](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:51, 06:37](691 MB)
+PASS -- TEST 'control_ras_intel' [05:47, 03:37](657 MB)
+
+PASS -- COMPILE 'wam_intel' [15:10, 13:59]
+PASS -- TEST 'control_wam_intel' [04:37, 02:17](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:47]
+PASS -- TEST 'control_p8_faster_intel' [06:56, 03:31](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:50, 04:35](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [15:09, 13:19]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:04](779 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:52](783 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:16](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:32, 03:06](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:35](826 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:27](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:51, 03:01](798 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:01, 03:21](845 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:23, 03:43](1622 MB)
+PASS -- TEST 'regional_debug_intel' [19:32, 16:32](637 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:50, 05:35](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:49, 05:14](1166 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:08, 05:16](1168 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 05:23](1169 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:00, 05:17](1169 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:47, 05:15](1253 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:21](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 05:25](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:40, 05:20](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 05:17](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:42, 05:00](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:34, 05:27](1168 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 08:09](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 04:57](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:34](1170 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:26](1168 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:44](1171 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:08, 09:55]
+PASS -- TEST 'control_wam_debug_intel' [07:32, 05:23](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:09, 14:41]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 04:11](1044 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 06:05](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 03:39](885 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 05:43](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 02:56](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:26, 04:07](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:17, 04:48](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 02:15](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:09, 15:12]
+PASS -- TEST 'conus13km_control_intel' [07:00, 02:28](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:02, 01:42](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 02:04](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 14:25]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:55, 04:41](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:14, 05:12](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:13](1046 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:09, 14:19](1126 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:09, 14:14](803 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:59, 08:34](1106 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:58, 14:11](1193 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:31]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:23](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:14, 18:53]
+PASS -- TEST 'hafs_regional_atm_intel' [08:53, 05:29](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:46, 04:37](1061 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:46, 07:43](754 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:52](789 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:32, 12:57](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:49, 05:22](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:46, 06:45](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:46, 03:11](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:25, 08:18](433 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:14, 04:31](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:46](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:22, 04:44](574 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:46, 02:03](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:39, 04:13](763 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:09, 12:31]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:55, 13:29](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:10, 19:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:21, 07:59](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:20, 07:56](789 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:14, 19:38]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:15, 06:12](789 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:14, 17:32]
+PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:32](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:31](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:43, 20:03](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:12, 13:24]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:41](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:32](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:28, 02:25](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 02:33](641 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:30, 02:38](757 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:38](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:24](643 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:40, 06:10](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:32, 06:08](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:35](745 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:35](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:30, 04:35](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [12:11, 10:13]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:25](727 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 13:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:34](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:06, 04:42]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:00, 02:15](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:37](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 02:38](456 MB)
+
+PASS -- COMPILE 'atml_intel' [20:10, 18:44]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:06, 08:46](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:06, 08:41](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:06, 05:15](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [19:18, 17:54]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:15, 02:29](1649 MB)
+
+PASS -- COMPILE 'atmwm_intel' [18:09, 16:33]
+PASS -- TEST 'control_atmwav_intel' [06:03, 02:02](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [17:19, 15:56]
+PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:36](2942 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:23, 07:20](3011 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:06, 07:20](3017 MB)
+
+PASS -- COMPILE 'atmaq_intel' [17:23, 16:06]
+
+PASS -- COMPILE 'atmaq_debug_intel' [14:09, 12:42]
+PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:18](4481 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 09:47:15
-Ending Date/Time: 20240404 11:36:12
-Total Time: 01h:49m:47s
+Starting Date/Time: 20240409 01:09:06
+Ending Date/Time: 20240409 02:50:29
+Total Time: 01h:44m:00s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index e10204126e..0dcf6fd852 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,15 +1,15 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -24,374 +24,429 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_2065634
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1447120
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [13:06, 13:06]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:28, 05:37](3146 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:57, 15:57]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:49, 17:05](1730 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:50, 17:51](1996 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:58, 08:05](1092 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:12](1618 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:55, 04:55]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:30, 22:47](1642 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:14, 13:14]
-PASS -- TEST 'cpld_control_p8_intel' [06:46, 05:54](3192 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:44, 05:49](3199 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:42, 03:26](3244 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:46, 05:54](3207 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:43, 03:25](3263 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3527 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:54](3191 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:31, 04:47](3054 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:41, 05:49](3191 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:48, 10:11](3326 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 06:10](3594 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [14:36, 09:43](4102 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:31, 06:11](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:12, 05:24](3167 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:42, 12:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:40, 04:48](1716 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:41, 04:49](1709 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:42, 04:42]
-PASS -- TEST 'cpld_debug_p8_intel' [09:34, 08:42](3181 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:20, 04:20]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:49, 05:53](1716 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:43, 11:43]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:30, 04:31](1763 MB)
-
-PASS -- COMPILE 's2s_intel' [11:41, 11:41]
-PASS -- TEST 'cpld_control_c48_intel' [10:19, 09:37](2805 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:30]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:25, 05:32](3197 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:31, 15:31]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:55, 17:10](1767 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:12](1144 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:33, 19:48](1664 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:44, 04:43]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:59, 25:16](1670 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:53, 11:53]
-PASS -- TEST 'control_flake_intel' [03:34, 03:23](685 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [02:39, 02:26](636 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:44, 02:30](636 MB)
-PASS -- TEST 'control_latlon_intel' [02:36, 02:27](638 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [02:58, 02:31](632 MB)
-PASS -- TEST 'control_c48_intel' [06:46, 06:23](854 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:46, 06:24](859 MB)
-PASS -- TEST 'control_c192_intel' [09:38, 09:13](835 MB)
-PASS -- TEST 'control_c384_intel' [10:24, 09:15](1274 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:21, 08:03](1373 MB)
-PASS -- TEST 'control_stochy_intel' [01:53, 01:39](644 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:18, 01:00](478 MB)
-PASS -- TEST 'control_lndp_intel' [01:46, 01:33](643 MB)
-PASS -- TEST 'control_iovr4_intel' [02:38, 02:27](638 MB)
-PASS -- TEST 'control_iovr5_intel' [02:42, 02:27](636 MB)
-PASS -- TEST 'control_p8_intel' [03:45, 03:02](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:44, 02:59](1605 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:35, 02:56](1600 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](877 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:29, 02:52](1606 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:14, 01:38](919 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:37, 03:02](1586 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:21, 02:46](1701 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:51, 05:19](1594 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:44, 04:01](1670 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:42, 03:00](1623 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:08, 03:28](1617 MB)
-PASS -- TEST 'regional_control_intel' [05:42, 05:14](826 MB)
-PASS -- TEST 'regional_restart_intel' [03:18, 02:50](1005 MB)
-PASS -- TEST 'regional_decomp_intel' [06:01, 05:35](826 MB)
-PASS -- TEST 'regional_2threads_intel' [03:44, 03:20](827 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:37, 05:12](1343 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 05:17](829 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:43, 05:18](830 MB)
-PASS -- TEST 'regional_wofs_intel' [07:13, 06:46](1894 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:38, 10:37]
-PASS -- TEST 'rap_control_intel' [08:23, 07:55](1092 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 04:20](1273 MB)
-PASS -- TEST 'rap_decomp_intel' [08:40, 08:17](1015 MB)
-PASS -- TEST 'rap_2threads_intel' [08:12, 07:41](1160 MB)
-PASS -- TEST 'rap_restart_intel' [04:33, 04:03](1078 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:19, 07:46](1091 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:11](1021 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 05:52](1122 MB)
-PASS -- TEST 'hrrr_control_intel' [04:26, 04:01](1029 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:30, 04:07](1017 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 03:41](1094 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:49, 02:30](944 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:09, 07:37](1082 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 09:11](1978 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:01](2054 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:20, 10:19]
-PASS -- TEST 'control_csawmg_intel' [06:32, 06:04](736 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:27, 05:59](736 MB)
-PASS -- TEST 'control_ras_intel' [03:33, 03:21](725 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:34, 03:34]
-PASS -- TEST 'control_csawmg_gnu' [08:48, 08:22](534 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:36, 08:11](533 MB)
-
-PASS -- COMPILE 'wam_intel' [09:57, 09:56]
-PASS -- TEST 'control_wam_intel' [02:16, 02:04](640 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:54, 10:54]
-PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1613 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:13, 04:45](837 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:55, 04:55]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:58, 02:43](777 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:04, 02:46](777 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:13, 03:01](779 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:56, 02:44](782 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:11](833 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:38, 04:09](832 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:59, 02:47](791 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:09, 02:48](837 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:28, 02:58](1596 MB)
-PASS -- TEST 'regional_debug_intel' [17:37, 17:08](806 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:33, 05:18](1136 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:00, 04:48](1162 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:08, 04:57](1170 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:09, 04:57](1163 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:08, 04:57](1165 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:40, 05:17](1255 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:06](1169 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:12, 05:00](1174 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:11, 04:57](1172 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:09, 04:56](1168 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:04, 04:49](1174 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:58](1167 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:10, 07:55](1167 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:12, 04:59](1157 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:57, 05:45](1173 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:09, 04:56](1167 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 08:22](1175 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:38]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 02:09](508 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:37, 02:11](504 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:37, 03:36]
-PASS -- TEST 'control_wam_debug_intel' [05:02, 04:52](469 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:05, 10:05]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:50](1145 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 06:23](1034 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:48, 03:24](971 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:31, 06:06](1077 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:30, 03:08](945 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:34](918 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:16, 04:50](1023 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](918 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:28, 12:27]
-PASS -- TEST 'conus13km_control_intel' [02:45, 02:06](1182 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:21, 00:54](1101 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 01:16](1073 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:16, 10:16]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:41, 04:12](976 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:28, 03:28]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:55, 04:43](1042 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:52, 04:35](1049 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:05, 14:27](1172 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:57, 14:16](879 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:30, 08:02](1107 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:09, 14:40](1253 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:28, 03:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:06, 04:52](1086 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:56, 11:55]
-PASS -- TEST 'hafs_regional_atm_intel' [05:53, 04:57](724 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:18, 06:00](1098 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:49, 06:47](803 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 13:27](850 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 15:04](1017 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 05:28](480 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:46, 06:41](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:12, 02:42](362 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:50, 07:12](466 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:44](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:09, 03:30](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:40, 04:01](565 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:33, 01:16](387 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:35, 04:04](780 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:05, 04:05]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:25, 12:46](534 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:10, 12:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:53](612 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 08:45](687 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:59, 11:58]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:19, 06:29](675 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:25, 11:24]
-PASS -- TEST 'hafs_regional_docn_intel' [07:15, 06:21](813 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:17, 06:21](796 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:38, 16:02](1203 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:02, 06:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:49, 02:41](1141 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:43, 01:36](1078 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:40, 02:32](1000 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:41, 02:33](1014 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:45, 02:39](1018 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:43, 02:37](1156 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:46, 02:41](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:36](1002 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:19, 06:18](1050 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:19](1038 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:43, 02:38](1143 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:53, 03:46](2482 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:59, 03:51](2484 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:07, 03:07]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 06:10](1076 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 06:12]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:48, 02:41](1142 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:10]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:03, 00:48](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:57, 00:45](322 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](316 MB)
-
-PASS -- COMPILE 'atml_intel' [11:38, 11:38]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:00, 04:17](1584 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:15](1592 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:54, 02:21](880 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:54, 10:54]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:23, 01:46](1659 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:00, 11:00]
-PASS -- TEST 'control_atmwav_intel' [02:00, 01:40](653 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:46, 10:46]
-PASS -- TEST 'atmaero_control_p8_intel' [04:45, 04:00](2995 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:36, 04:53](3075 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 05:06](3085 MB)
-
-PASS -- COMPILE 'atmaq_intel' [10:33, 10:33]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:48, 03:48]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:29, 22:57](4291 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:44, 03:44]
-PASS -- TEST 'control_c48_gnu' [10:59, 10:48](751 MB)
-PASS -- TEST 'control_stochy_gnu' [03:38, 03:26](494 MB)
-PASS -- TEST 'control_ras_gnu' [04:58, 04:48](502 MB)
-PASS -- TEST 'control_p8_gnu' [05:25, 04:39](1255 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:10, 04:28](1256 MB)
-PASS -- TEST 'control_flake_gnu' [11:32, 11:21](536 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:48, 03:48]
-PASS -- TEST 'rap_control_gnu' [11:01, 10:41](842 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](852 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:19, 09:53](931 MB)
-PASS -- TEST 'rap_restart_gnu' [06:01, 05:32](567 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:04, 10:39](842 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:30, 11:05](842 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:39, 08:12](585 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:56, 05:33](841 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:03, 05:36](824 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 05:01](924 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:52, 05:33](841 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:09, 02:54](554 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:12, 02:52](652 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:00, 10:30](838 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:37, 03:37]
-PASS -- TEST 'control_diag_debug_gnu' [01:55, 01:37](530 MB)
-PASS -- TEST 'regional_debug_gnu' [11:54, 11:26](547 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:50, 02:37](849 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:45, 02:34](846 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:37](855 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:37](850 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:48](936 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:09](850 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:39](851 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:51, 02:39](845 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:33](483 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [01:58, 01:47](476 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:07, 01:38](1241 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:45, 02:33](847 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:52](852 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:44, 04:19](855 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:54, 01:54]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:44, 03:44]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 09:13](696 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:17, 04:58](697 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:00, 08:37](750 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:52, 04:31](740 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:13](698 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:15, 06:53](545 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:50, 02:35](532 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:52, 03:13](870 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:14, 05:45](869 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:18, 01:48](543 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:28, 05:28]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:11, 05:44](725 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:35, 03:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:32](702 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:33](700 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:31, 06:59](871 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](562 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:29](874 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:18, 06:50](937 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:35, 03:35]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:45, 02:33](722 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:36, 14:36]
-
-PASS -- COMPILE 's2s_gnu' [14:25, 14:24]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:20, 11:30](1341 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:31, 02:30]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:30, 14:30]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:37, 21:47](1312 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:20, 02:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:27, 16:45](1306 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [13:58, 13:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:03, 02:58](699 MB)
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:55]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:24, 05:30](3187 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:29]
+PASS -- TEST 'cpld_control_gfsv17_intel' [38:07, 17:03](1763 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [36:20, 17:47](1985 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [26:07, 08:03](1123 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:02, 19:14](1651 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:34]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 22:30](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:09, 12:54]
+PASS -- TEST 'cpld_control_p8_intel' [30:26, 05:48](3218 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:34, 05:46](3195 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [32:36, 03:23](3270 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [30:26, 05:47](3223 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [33:29, 03:26](3293 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [16:12, 05:25](3562 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [30:26, 05:48](3220 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:19, 04:44](3047 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:28, 05:50](3221 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [19:10, 10:09](3348 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [46:39, 06:13](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [29:20, 09:21](4128 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:25, 06:07](4378 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [26:19, 05:18](3192 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:09, 12:12]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [20:14, 04:45](1762 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:21, 04:19](1771 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:35]
+PASS -- TEST 'cpld_debug_p8_intel' [11:09, 08:21](3264 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:18]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:37](1745 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:09, 11:25]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:21](1787 MB)
+
+PASS -- COMPILE 's2s_intel' [13:10, 11:28]
+PASS -- TEST 'cpld_control_c48_intel' [11:39, 09:21](2828 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:30]
+PASS -- TEST 'cpld_control_p8_faster_intel' [28:18, 05:33](3180 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:07]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:01, 17:17](1781 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:07, 08:09](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:03, 19:43](1689 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:13]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:53, 24:45](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:29]
+PASS -- TEST 'control_flake_intel' [27:24, 03:27](704 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [25:27, 02:23](660 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:29, 02:29](663 MB)
+PASS -- TEST 'control_latlon_intel' [25:23, 02:26](656 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:33, 02:27](659 MB)
+PASS -- TEST 'control_c48_intel' [11:21, 06:23](866 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [27:27, 06:23](877 MB)
+PASS -- TEST 'control_c192_intel' [33:40, 09:08](854 MB)
+PASS -- TEST 'control_c384_intel' [33:27, 09:03](1291 MB)
+PASS -- TEST 'control_c384gdas_intel' [25:27, 07:56](1400 MB)
+PASS -- TEST 'control_stochy_intel' [15:20, 01:38](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [29:29, 00:59](503 MB)
+PASS -- TEST 'control_lndp_intel' [16:20, 01:32](661 MB)
+PASS -- TEST 'control_iovr4_intel' [16:20, 02:24](655 MB)
+PASS -- TEST 'control_iovr5_intel' [41:32, 02:26](656 MB)
+PASS -- TEST 'control_p8_intel' [37:01, 02:57](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [36:04, 02:56](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [34:59, 02:49](1635 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:43, 01:35](900 MB)
+PASS -- TEST 'control_noqr_p8_intel' [34:52, 02:52](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:34](934 MB)
+PASS -- TEST 'control_decomp_p8_intel' [33:52, 02:59](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [31:59, 02:44](1720 MB)
+PASS -- TEST 'control_p8_lndp_intel' [33:57, 05:12](1632 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [33:02, 03:54](1689 MB)
+PASS -- TEST 'control_p8_mynn_intel' [32:05, 02:57](1647 MB)
+PASS -- TEST 'merra2_thompson_intel' [32:05, 03:28](1636 MB)
+PASS -- TEST 'regional_control_intel' [34:49, 05:10](852 MB)
+PASS -- TEST 'regional_restart_intel' [06:35, 02:43](1022 MB)
+PASS -- TEST 'regional_decomp_intel' [33:43, 05:32](850 MB)
+PASS -- TEST 'regional_2threads_intel' [31:42, 03:14](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [33:45, 05:09](1362 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [35:45, 05:06](852 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [35:40, 05:07](848 MB)
+PASS -- TEST 'regional_wofs_intel' [35:40, 06:45](1910 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:09, 10:28]
+PASS -- TEST 'rap_control_intel' [36:37, 07:41](1114 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:03, 04:12](1293 MB)
+PASS -- TEST 'rap_decomp_intel' [32:36, 08:07](1037 MB)
+PASS -- TEST 'rap_2threads_intel' [31:41, 07:14](1181 MB)
+PASS -- TEST 'rap_restart_intel' [06:39, 04:00](1099 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:36, 07:40](1113 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:07](1045 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:46](1129 MB)
+PASS -- TEST 'hrrr_control_intel' [05:36, 03:58](1048 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:07](1040 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:42](1117 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1007 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:32](1095 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:10](2002 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 08:58](2060 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:08, 10:11]
+PASS -- TEST 'control_csawmg_intel' [07:34, 06:00](760 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:33, 05:55](758 MB)
+PASS -- TEST 'control_ras_intel' [07:17, 03:14](748 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:07, 03:37]
+PASS -- TEST 'control_csawmg_gnu' [30:46, 08:14](548 MB)
+PASS -- TEST 'control_csawmgt_gnu' [30:46, 08:11](553 MB)
+
+PASS -- COMPILE 'wam_intel' [12:08, 10:01]
+PASS -- TEST 'control_wam_intel' [06:17, 02:04](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 10:40]
+PASS -- TEST 'control_p8_faster_intel' [06:49, 02:34](1641 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:33, 04:41](855 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 04:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:20, 02:43](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:23, 02:38](823 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:16, 03:00](822 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:16, 02:44](822 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:06](873 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 03:59](875 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:16, 02:49](829 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:25, 02:45](880 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:37, 02:50](1656 MB)
+PASS -- TEST 'regional_debug_intel' [19:37, 17:21](842 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:17, 04:45](1210 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:16, 04:41](1212 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 04:48](1215 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:54](1198 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:46](1220 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:09](1297 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:57](1212 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:56](1211 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:56](1208 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1209 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:47](1210 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:50](1212 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:17, 07:56](1214 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:43](1209 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:17, 05:46](1213 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:48](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:35, 08:22](1209 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:07, 02:36]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:33, 02:09](534 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:33, 02:10](528 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:07, 03:25]
+PASS -- TEST 'control_wam_debug_intel' [06:17, 04:56](515 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 10:02]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:58, 03:48](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:33, 06:22](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:30, 03:21](984 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:04](1091 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:23, 03:08](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:24, 03:36](936 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 04:50](1041 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](931 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 12:17]
+PASS -- TEST 'conus13km_control_intel' [06:48, 02:04](1205 MB)
+PASS -- TEST 'conus13km_2threads_intel' [06:42, 00:50](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [06:39, 01:13](1111 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 10:02]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:33, 04:12](984 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:12, 03:36]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:18, 04:48](1092 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:18, 04:46](1089 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:49, 14:31](1231 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:44, 14:34](924 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:41, 08:03](1157 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 14:44](1305 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:11, 03:24]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:54](1131 MB)
+
+PASS -- COMPILE 'hafsw_intel' [31:13, 11:31]
+PASS -- TEST 'hafs_regional_atm_intel' [10:09, 04:49](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:26, 05:42](1115 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:24, 06:51](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 13:16](865 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:25, 14:59](895 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:53, 05:29](503 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:20, 06:35](520 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [10:39, 02:38](376 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:03, 07:06](485 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 03:39](538 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:43, 03:28](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:49, 04:00](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:23, 01:09](404 MB)
+PASS -- TEST 'gnv1_nested_intel' [10:42, 03:59](809 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [23:12, 03:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:51, 12:50](581 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [30:13, 11:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:55, 08:47](654 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 08:38](742 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 11:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:58, 06:17](735 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [27:12, 10:55]
+PASS -- TEST 'hafs_regional_docn_intel' [11:11, 06:18](839 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 06:21](817 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 15:58](1216 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [17:11, 06:01]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:42](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:37](1102 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:32](1018 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:37](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:33](1018 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:39](1153 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:43](1162 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:36](1018 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 06:14](1071 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 05:59](1042 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:42](1167 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:53](2483 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:16, 04:11](2487 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [16:10, 02:59]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:12](1081 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [34:16, 05:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:37](1151 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [31:15, 00:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:27, 00:45](256 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:22, 00:44](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:20, 00:28](321 MB)
+
+PASS -- COMPILE 'atml_intel' [42:15, 11:46]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 04:04](1615 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:02, 04:04](1625 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:11](902 MB)
+
+PASS -- COMPILE 'atmw_intel' [38:15, 10:36]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:52, 01:43](1681 MB)
+
+PASS -- COMPILE 'atmwm_intel' [37:15, 10:37]
+PASS -- TEST 'control_atmwav_intel' [04:28, 01:40](682 MB)
+
+PASS -- COMPILE 'atmaero_intel' [35:14, 10:47]
+PASS -- TEST 'atmaero_control_p8_intel' [08:55, 03:57](3035 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:52, 04:48](3103 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:36, 05:06](3113 MB)
+
+PASS -- COMPILE 'atmaq_intel' [33:14, 10:16]
+
+PASS -- COMPILE 'atmaq_debug_intel' [26:12, 03:39]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:51, 21:18](4447 MB)
+
+PASS -- COMPILE 'atm_gnu' [26:13, 03:44]
+PASS -- TEST 'control_c48_gnu' [13:24, 10:40](765 MB)
+PASS -- TEST 'control_stochy_gnu' [05:19, 03:23](510 MB)
+PASS -- TEST 'control_ras_gnu' [06:18, 04:44](517 MB)
+PASS -- TEST 'control_p8_gnu' [06:53, 04:35](1273 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:29](1270 MB)
+PASS -- TEST 'control_flake_gnu' [12:20, 10:38](554 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [26:14, 03:36]
+PASS -- TEST 'rap_control_gnu' [12:29, 10:34](865 MB)
+PASS -- TEST 'rap_decomp_gnu' [13:28, 10:53](863 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:35, 09:36](945 MB)
+PASS -- TEST 'rap_restart_gnu' [07:37, 05:21](587 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 10:52](860 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 10:58](862 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 07:48](589 MB)
+PASS -- TEST 'hrrr_control_gnu' [08:32, 05:33](858 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [08:27, 05:23](843 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [09:30, 05:02](937 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [09:27, 05:27](863 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:56](573 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:49](665 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [14:44, 10:27](859 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:41]
+PASS -- TEST 'control_diag_debug_gnu' [05:24, 01:37](550 MB)
+PASS -- TEST 'regional_debug_gnu' [13:38, 10:52](569 MB)
+PASS -- TEST 'rap_control_debug_gnu' [05:16, 02:34](872 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [05:17, 02:35](872 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [05:16, 02:39](876 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 02:36](876 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:42](960 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:06](871 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:35](872 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:18, 02:36](869 MB)
+PASS -- TEST 'control_ras_debug_gnu' [04:17, 01:32](502 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:40](499 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:36](1259 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:18, 02:35](872 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [05:18, 02:50](877 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:34, 04:17](882 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:06, 01:51]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 03:34]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:26, 09:17](715 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 04:57](717 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:43](764 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:24, 04:34](755 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:26, 05:02](712 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:35, 06:53](563 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:37](545 MB)
+PASS -- TEST 'conus13km_control_gnu' [05:54, 03:15](888 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:38](886 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:42, 01:46](575 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:07, 05:20]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:46](745 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:07, 03:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:33](721 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:29](724 MB)
+PASS -- TEST 'conus13km_debug_gnu' [10:44, 07:01](901 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [09:44, 06:56](591 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [10:38, 07:34](904 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:39, 06:56](972 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:20, 02:33](748 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:09, 14:24]
+
+PASS -- COMPILE 's2s_gnu' [16:09, 14:19]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 06:34](1363 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:27]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 14:16]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:03, 25:48](1323 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:24]
+FAIL TO COMPARE -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 14:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 03:02](699 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 13:42:06
-Ending Date/Time: 20240404 15:52:22
-Total Time: 02h:10m:48s
+Starting Date/Time: 20240409 06:46:12
+Ending Date/Time: 20240409 10:35:59
+Total Time: 03h:50m:04s
Compiles Completed: 55/55
-Tests Completed: 244/244
+Tests Completed: 243/244
+Failed Tests:
+* TEST cpld_debug_pdlib_p8_gnu: FAIL TO COMPARE
+-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2145/ufs-weather-model/tests/logs/log_hera/rt_cpld_debug_pdlib_p8_gnu.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERA REGRESSION TESTING LOG====
+====START OF HERA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+5efb5c1c91c717f5e8713bca35ebf642fd679681
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2935262
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: cpld_debug_pdlib_p8
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:08, 02:26]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [21:13, 16:37](1332 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240410 19:08:57
+Ending Date/Time: 20240410 19:35:33
+Total Time: 00h:26m:47s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 76ec536f18..e6543f75a1 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,18 +1,18 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -47,462 +47,369 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1160764
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1728655
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:05, 11:13]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:12, 07:43](1892 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 15:52]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:12, 13:18](1772 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 13:59](2177 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:25, 06:25](1165 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 14:55](1691 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:05, 05:24]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:14, 20:07](1736 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:05, 11:20]
-PASS -- TEST 'cpld_control_p8_intel' [10:00, 07:43](2066 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:12, 07:39](2055 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:06, 04:15](1978 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:00, 07:45](1990 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 04:18](1739 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:05, 08:51](2492 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:54, 07:40](2074 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:02, 06:27](1895 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:12, 07:35](2065 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:31, 14:57](2804 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:57, 05:40](2932 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:26, 08:27](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:17, 04:56](3615 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:59, 05:00](2052 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:05, 11:19]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 07:11](1770 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:08](1822 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:05, 05:22]
-PASS -- TEST 'cpld_debug_p8_intel' [09:06, 06:49](2070 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:14]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:53, 04:42](1786 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:05]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 03:54](1828 MB)
-
-PASS -- COMPILE 's2s_intel' [11:05, 09:10]
-PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:15](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:50]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:20](2069 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:31, 17:44]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:04, 13:49](1813 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:08, 06:32](1294 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:14](1739 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:37]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:50, 22:03](1776 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:48]
-PASS -- TEST 'control_flake_intel' [04:29, 02:49](726 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:03](664 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:34, 02:10](663 MB)
-PASS -- TEST 'control_latlon_intel' [04:29, 02:05](668 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:36, 02:07](659 MB)
-PASS -- TEST 'control_c48_intel' [07:35, 05:42](856 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:44](858 MB)
-PASS -- TEST 'control_c192_intel' [09:37, 07:47](947 MB)
-PASS -- TEST 'control_c384_intel' [11:10, 08:07](1450 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:44, 07:15](1531 MB)
-PASS -- TEST 'control_stochy_intel' [03:24, 01:26](667 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:27, 00:52](548 MB)
-PASS -- TEST 'control_lndp_intel' [03:23, 01:22](669 MB)
-PASS -- TEST 'control_iovr4_intel' [03:44, 02:04](671 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:05](665 MB)
-PASS -- TEST 'control_p8_intel' [04:49, 02:30](1632 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:48, 02:32](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:48, 02:26](1637 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:44, 01:23](923 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:39, 02:31](1629 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:24](988 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1622 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:35, 02:23](1725 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1647 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:24](1720 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:32](1646 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:58, 02:57](1646 MB)
-PASS -- TEST 'regional_control_intel' [06:25, 04:31](962 MB)
-PASS -- TEST 'regional_restart_intel' [04:23, 02:30](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [06:27, 04:47](952 MB)
-PASS -- TEST 'regional_2threads_intel' [04:23, 02:53](923 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:30, 04:23](1487 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:25](957 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:30](962 MB)
-PASS -- TEST 'regional_wofs_intel' [07:25, 05:35](2101 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:31, 07:36]
-PASS -- TEST 'rap_control_intel' [08:49, 06:32](1189 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:40, 03:25](1446 MB)
-PASS -- TEST 'rap_decomp_intel' [08:37, 06:53](1127 MB)
-PASS -- TEST 'rap_2threads_intel' [08:36, 06:12](1376 MB)
-PASS -- TEST 'rap_restart_intel' [06:40, 03:25](1162 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:29](1192 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 06:56](1133 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:00, 04:56](1194 MB)
-PASS -- TEST 'hrrr_control_intel' [05:46, 03:25](1065 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:28](1054 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:09](1125 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:15, 01:50](1037 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:26](1193 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:37](2021 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:27](2165 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:31, 07:12]
-PASS -- TEST 'control_csawmg_intel' [07:24, 05:21](822 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:28, 05:16](825 MB)
-PASS -- TEST 'control_ras_intel' [04:14, 02:52](828 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [07:30, 06:06]
-PASS -- TEST 'control_csawmg_gnu' [08:26, 06:28](810 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:22, 06:27](812 MB)
-
-PASS -- COMPILE 'wam_intel' [09:30, 07:58]
-PASS -- TEST 'control_wam_intel' [03:17, 01:50](781 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:30, 10:39]
-PASS -- TEST 'control_p8_faster_intel' [04:48, 02:14](1641 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:24, 04:07](958 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 05:25]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:11](822 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:11](827 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:25](836 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:14, 02:10](830 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:23](880 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:23](867 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:12, 02:18](831 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:19, 02:21](882 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:30, 02:20](1657 MB)
-PASS -- TEST 'regional_debug_intel' [15:41, 14:15](890 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:50, 03:53](1217 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:39, 03:52](1215 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:20, 03:58](1215 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:59](1214 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:57](1222 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:58, 04:08](1295 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:05](1224 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:04](1225 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:02](1225 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:30, 04:00](1222 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:56](1210 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:57](1220 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:23](1222 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 03:53](1221 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 04:46](1214 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:20, 03:58](1210 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:58, 06:50](1225 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:31, 05:28]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:47, 01:42](791 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:46, 01:39](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:25, 04:09]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:31, 08:25]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:23](1275 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:22](1140 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:59, 02:52](1023 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:46, 05:07](1287 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:39](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 03:02](984 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:51, 04:03](1135 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:36, 01:36](950 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:06, 09:55]
-PASS -- TEST 'conus13km_control_intel' [03:36, 01:45](1281 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:28, 00:42](1200 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 01:01](1153 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:54]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 03:48](1079 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:55]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:55](1093 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:53](1090 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:33, 11:34](1345 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:32, 11:49](987 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1240 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:29, 11:32](1401 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:50]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:18, 03:58](1153 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:06, 09:25]
-PASS -- TEST 'hafs_regional_atm_intel' [08:00, 05:21](875 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:19, 05:00](1282 MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:08, 14:36](995 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:10, 15:21](998 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 05:39](602 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:11, 06:57](617 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:43](435 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:58, 07:46](541 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:51](624 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:42](623 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:52](679 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:20, 01:24](450 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:47, 11:17](638 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:48, 16:26](730 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 16:18](817 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:07, 10:13]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:51, 09:59](796 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:27]
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:36](1338 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:41]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:08](1141 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:14](1075 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1019 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:05](1009 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 01:56](1016 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:08](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:11, 02:08](1146 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:04](1009 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 04:57](1162 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:39, 04:55](1157 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1153 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:00](2389 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:04](2431 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:56]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:10](1069 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:10, 02:06](1150 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:59](327 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:52](562 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](560 MB)
-
-PASS -- COMPILE 'atml_intel' [10:06, 08:23]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:58, 05:33](1631 MB)
-FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
-MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmw_intel' [10:05, 08:45]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:28](1710 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:05, 09:19]
-PASS -- TEST 'control_atmwav_intel' [03:37, 01:30](704 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:05, 07:03]
-PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:35](1802 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:54, 04:18](1813 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:27](1824 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:05, 06:45]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 02:37]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:15, 16:58](4598 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:05, 04:01]
-PASS -- TEST 'control_c48_gnu' [11:23, 09:31](868 MB)
-PASS -- TEST 'control_stochy_gnu' [04:21, 02:12](728 MB)
-PASS -- TEST 'control_ras_gnu' [05:16, 03:43](751 MB)
-PASS -- TEST 'control_p8_gnu' [05:49, 03:41](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:44, 03:32](1516 MB)
-PASS -- TEST 'control_flake_gnu' [06:14, 04:32](811 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:05, 03:57]
-PASS -- TEST 'rap_control_gnu' [09:45, 07:41](1090 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:32, 07:50](1085 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:28, 07:14](1124 MB)
-PASS -- TEST 'rap_restart_gnu' [05:50, 03:58](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:38, 07:51](1085 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:57](1083 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 05:46](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:48, 03:59](1074 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:04](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 03:44](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 03:59](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:04](878 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:00](934 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:48](1081 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:06, 07:21]
-PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](780 MB)
-PASS -- TEST 'regional_debug_gnu' [08:27, 06:18](926 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:00](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:15, 01:57](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:14, 01:59](1097 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:15, 02:05](1098 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:02](1273 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:14, 03:03](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 01:56](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:55](1096 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:12](726 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:15](726 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:16](1506 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:57](1100 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:10](1104 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:14](1106 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:23]
-PASS -- TEST 'control_wam_debug_gnu' [03:19, 01:56](501 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:06, 05:21]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:30, 07:13](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 03:48](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:33, 06:44](998 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 03:35](873 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:46](961 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:57, 05:32](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:15, 02:06](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:34, 02:29](1265 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:04](1172 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:27, 01:27](920 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:05, 11:05]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:26, 04:21](989 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:05, 08:33]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:00](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:57](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:26, 05:22](1283 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:32](973 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:23, 03:20](1189 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:29](1348 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:06, 10:29]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 02:00](1002 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:07, 16:50]
-
-PASS -- COMPILE 's2s_gnu' [17:07, 16:01]
-
-PASS -- COMPILE 's2swa_debug_gnu' [11:06, 09:44]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [18:08, 17:00]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:06, 08:46]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:07, 14:09]
+PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:26]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 07:32](1916 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 18:15]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:13](1778 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 14:24](2170 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:21, 06:34](1169 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 15:00](1703 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:59]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:14, 20:16](1731 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:06, 13:14]
+PASS -- TEST 'cpld_control_p8_intel' [09:49, 07:45](2054 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:01, 07:43](2066 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:08, 04:18](1956 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 07:44](1983 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:09, 04:13](1736 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 08:56](2495 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:34](2065 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 06:22](1899 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:30](2054 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:35, 15:11](2810 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:09, 05:53](2911 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [16:35, 09:16](3631 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:54, 05:27](3622 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:50, 05:00](2047 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:06, 12:48]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:00](1762 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:52, 04:00](1831 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:59]
+PASS -- TEST 'cpld_debug_p8_intel' [09:02, 06:51](2048 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:51]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:55, 04:46](1794 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:05, 10:52]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:04](1815 MB)
+
+PASS -- COMPILE 's2s_intel' [12:05, 10:46]
+PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:18](2830 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:06, 15:33]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:01, 07:15](2078 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:35]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:53, 13:47](1798 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:07, 06:56](1304 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:16](1719 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:01]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:44, 21:47](1774 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:24]
+PASS -- TEST 'control_flake_intel' [04:14, 02:56](713 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 02:07](658 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:17](678 MB)
+PASS -- TEST 'control_latlon_intel' [04:14, 02:07](660 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:11](667 MB)
+PASS -- TEST 'control_c48_intel' [07:20, 05:52](863 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:21, 05:44](857 MB)
+PASS -- TEST 'control_c192_intel' [09:25, 07:59](972 MB)
+PASS -- TEST 'control_c384_intel' [11:03, 08:05](1446 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:45, 07:15](1521 MB)
+PASS -- TEST 'control_stochy_intel' [03:14, 01:24](674 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:51](547 MB)
+PASS -- TEST 'control_lndp_intel' [03:14, 01:25](665 MB)
+PASS -- TEST 'control_iovr4_intel' [04:16, 02:08](669 MB)
+PASS -- TEST 'control_iovr5_intel' [04:17, 02:07](662 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:33](1648 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:32](1633 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:25](1636 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:41, 01:24](926 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:28](1628 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:41, 01:24](983 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:39](1636 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:35, 02:21](1730 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:26, 04:23](1652 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 03:25](1729 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:39](1642 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:50, 03:03](1658 MB)
+PASS -- TEST 'regional_control_intel' [06:22, 04:32](957 MB)
+PASS -- TEST 'regional_restart_intel' [04:23, 02:33](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [06:19, 04:50](945 MB)
+PASS -- TEST 'regional_2threads_intel' [04:22, 02:57](918 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:28](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:20, 04:32](956 MB)
+PASS -- TEST 'regional_wofs_intel' [07:22, 05:39](2087 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:05, 07:44]
+PASS -- TEST 'rap_control_intel' [08:45, 06:31](1204 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:41, 03:28](1416 MB)
+PASS -- TEST 'rap_decomp_intel' [08:26, 06:57](1118 MB)
+PASS -- TEST 'rap_2threads_intel' [08:28, 06:16](1375 MB)
+PASS -- TEST 'rap_restart_intel' [05:36, 03:27](1144 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:40, 06:43](1216 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:26, 06:50](1129 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:01](1211 MB)
+PASS -- TEST 'hrrr_control_intel' [05:39, 03:22](1088 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 03:28](1045 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:51](1028 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:48, 07:14](1179 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:39](2008 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:38](2163 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:05, 07:26]
+PASS -- TEST 'control_csawmg_intel' [07:23, 05:24](798 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:21, 05:14](802 MB)
+PASS -- TEST 'control_ras_intel' [04:12, 02:49](820 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:06, 04:01]
+PASS -- TEST 'control_csawmg_gnu' [08:28, 06:35](811 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:23, 06:32](824 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:32]
+PASS -- TEST 'control_wam_intel' [03:18, 01:48](784 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:34]
+PASS -- TEST 'control_p8_faster_intel' [04:48, 02:20](1642 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:21, 04:06](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:50]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:18](818 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:12](837 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:28](830 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:11, 02:11](827 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:24](884 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:23](875 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:12, 02:15](836 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:17, 02:16](895 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:27, 02:22](1663 MB)
+PASS -- TEST 'regional_debug_intel' [16:24, 14:21](875 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:12, 03:58](1220 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:50](1217 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:12, 04:23](1218 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:12, 04:01](1216 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 04:00](1221 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:20, 04:13](1300 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:13, 04:04](1219 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:11, 04:02](1218 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:13, 04:02](1227 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 03:57](1212 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:56](1219 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:13, 03:57](1223 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:25](1227 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:11, 03:55](1211 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:14](1225 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:13, 04:02](1210 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 06:43](1220 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 03:08]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:23, 01:46](788 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:21, 01:40](787 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:32]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:34]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1270 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 05:25](1142 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:52](1034 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:26, 05:04](1275 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 02:42](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:16](985 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:26](1091 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:51](960 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 08:51]
+PASS -- TEST 'conus13km_control_intel' [03:35, 01:43](1291 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:45](1204 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1152 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:52]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:26, 03:52](1091 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:39]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:55](1109 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:48](1102 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:30, 11:36](1336 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 11:53](1005 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 06:39](1237 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:22, 11:41](1405 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 04:01](1149 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:05, 10:19]
+PASS -- TEST 'hafs_regional_atm_intel' [07:57, 05:20](872 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:15, 05:06](1287 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:26](941 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:54](998 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:08, 15:19](999 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 05:31](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:10, 07:08](616 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:59](436 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 08:00](550 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:39, 03:56](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:38](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 04:54](679 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:21](448 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:05, 03:04]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:38, 11:31](636 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:05, 10:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:15](729 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:49, 16:01](820 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:48, 10:30](798 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:05, 10:17]
+PASS -- TEST 'hafs_regional_docn_intel' [07:55, 05:27](932 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:58, 05:30](940 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:37, 16:22](1336 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:05, 05:30]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:09](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:22](1115 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:09, 02:04](1007 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:07](1017 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:07](1007 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:08](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1144 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:03](1025 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:56](1159 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:45, 04:52](1152 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:08](1130 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:00](2382 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:04](2379 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:08]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:12](1069 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:41]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:06](1159 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:47]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:51](336 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:47](556 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:15, 00:31](559 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:53]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 05:53](1656 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:54, 05:49](1660 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:36, 02:55](946 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:56]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:30](1701 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:52]
+PASS -- TEST 'control_atmwav_intel' [03:38, 01:29](705 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:05, 07:23]
+PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:35](1789 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:19](1798 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:36](1816 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:06, 06:59]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:46]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 16:46](4594 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:05, 04:37]
+PASS -- TEST 'control_c48_gnu' [11:23, 09:32](864 MB)
+PASS -- TEST 'control_stochy_gnu' [04:14, 02:19](726 MB)
+PASS -- TEST 'control_ras_gnu' [05:13, 03:47](733 MB)
+PASS -- TEST 'control_p8_gnu' [05:46, 03:42](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:32](1517 MB)
+PASS -- TEST 'control_flake_gnu' [06:12, 04:25](808 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:05, 04:40]
+PASS -- TEST 'rap_control_gnu' [09:35, 07:42](1086 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:34, 07:44](1085 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:28, 07:10](1149 MB)
+PASS -- TEST 'rap_restart_gnu' [06:45, 04:04](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:41, 07:50](1086 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:29, 07:48](1088 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:36, 05:43](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:29, 04:03](1071 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:27, 04:06](1136 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 03:42](1028 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:34, 04:01](1072 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:03](882 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:14, 02:06](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:48, 07:44](1080 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:06, 06:11]
+PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:16](779 MB)
+PASS -- TEST 'regional_debug_gnu' [08:24, 06:17](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:12, 01:59](1099 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:14, 01:57](1091 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:12, 02:03](1099 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1094 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:19, 02:08](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:12, 03:10](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:14, 02:04](1099 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:12, 02:04](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [04:12, 01:13](729 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [04:12, 01:18](726 MB)
+PASS -- TEST 'control_debug_p8_gnu' [04:33, 01:15](1503 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [05:13, 01:59](1099 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:10](1104 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 03:21](1105 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:26]
+PASS -- TEST 'control_wam_debug_gnu' [04:17, 01:58](502 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 04:54]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:39, 07:17](965 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:51, 03:53](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:29, 06:49](968 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 03:26](870 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:31, 03:57](952 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:30](862 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:13, 01:59](858 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:34, 02:32](1265 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:20, 01:04](1175 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:27](944 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:06, 10:09]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:25, 04:29](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:12, 02:02](979 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:12, 01:58](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:25, 05:29](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:33](955 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:22, 03:20](1192 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:21, 05:30](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:05, 06:39]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 01:56](1003 MB)
+
+PASS -- COMPILE 's2swa_gnu' [18:06, 16:27]
+
+PASS -- COMPILE 's2s_gnu' [17:06, 15:58]
+
+PASS -- COMPILE 's2swa_debug_gnu' [06:05, 04:53]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:06, 16:07]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:06, 03:18]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 15:01]
SYNOPSIS:
-Starting Date/Time: 20240402 08:21:18
-Ending Date/Time: 20240402 09:43:48
-Total Time: 01h:22m:55s
+Starting Date/Time: 20240409 07:14:18
+Ending Date/Time: 20240409 08:37:36
+Total Time: 01h:23m:53s
Compiles Completed: 55/55
-Tests Completed: 234/239
-Failed Tests:
-* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_atm_ocn_intel.log
-* TEST hafs_regional_docn_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_intel.log
-* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_hafs_regional_docn_oisst_intel.log
-* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2175/tests/logs/log_hercules/rt_control_p8_atmlnd_intel.log
-* TEST control_restart_p8_atmlnd_intel: MISSING
--- LOG: N/A
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERCULES REGRESSION TESTING LOG====
-====START OF HERCULES REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-2ec8af0cbe7f0ebcfc8c2211b8102911f510940e
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 6663459e58a04e3bda2157d5891d227e3abc3c7a FV3/atmos_cubed_sphere (201912_public_release-386-g6663459)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- d2e6f997276affa7b6e334a40c22d6692c1a8515 CMEPS-interface/CMEPS (cmeps_v0.4.1-2866-gd2e6f997)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 3fa2f7604878645038a590ca9f830ccb105c5c0e FV3 (remotes/origin/feature/cplscalars)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- e240f35b2a8d114dd35868b23fea67352f766f65 NOAHMP-interface/noahmp (remotes/origin/feature/cplscalars)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2394229
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafsw_intel' [12:06, 10:33]
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:27](932 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:19]
-PASS -- TEST 'hafs_regional_docn_intel' [08:02, 05:30](954 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:31](917 MB)
-
-PASS -- COMPILE 'atml_intel' [11:06, 09:36]
-PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 05:30](1635 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240402 10:33:35
-Ending Date/Time: 20240402 10:56:19
-Total Time: 00h:22m:59s
-Compiles Completed: 3/3
-Tests Completed: 4/4
+Tests Completed: 239/239
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 5fcdcf3580..688cc3c31c 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,17 +1,17 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -47,245 +47,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_2701044
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3748272
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:30]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:48, 06:53](1793 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:32, 53:55]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:56, 20:29](1664 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:17](1880 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:22, 11:10](997 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:31, 23:41](1624 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:24, 38:30]
-PASS -- TEST 'cpld_control_p8_intel' [10:25, 07:33](1820 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:48, 07:30](1824 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:47, 04:23](1708 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:25, 07:39](1843 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:26](1718 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:18, 07:12](2264 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:19, 07:35](1826 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:42, 06:26](1759 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 07:31](1833 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:36, 07:08](1780 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:23, 37:08]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 05:50](1649 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:40](1717 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:38]
-PASS -- TEST 'cpld_debug_p8_intel' [13:58, 10:27](1849 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:09, 04:44]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 07:11](1670 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:19, 32:14]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:37](1709 MB)
-
-PASS -- COMPILE 's2s_intel' [33:22, 32:14]
-PASS -- TEST 'cpld_control_c48_intel' [16:37, 13:20](2802 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:50, 32:49]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:52, 07:11](1832 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [49:28, 47:36]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:13, 21:07](1674 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:47, 10:35](1040 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:26, 24:06](1661 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:56]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:24, 32:10](1686 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:21, 35:19]
-PASS -- TEST 'control_flake_intel' [06:30, 04:26](644 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:34, 03:17](600 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:38, 03:35](601 MB)
-PASS -- TEST 'control_latlon_intel' [05:31, 03:20](600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:39, 03:22](600 MB)
-PASS -- TEST 'control_c48_intel' [11:43, 10:05](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:04](846 MB)
-PASS -- TEST 'control_c192_intel' [14:52, 12:33](728 MB)
-PASS -- TEST 'control_c384_intel' [18:57, 15:49](892 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:48, 13:31](1015 MB)
-PASS -- TEST 'control_stochy_intel' [04:31, 02:16](603 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:29, 01:18](434 MB)
-PASS -- TEST 'control_lndp_intel' [04:30, 02:10](603 MB)
-PASS -- TEST 'control_iovr4_intel' [05:35, 03:20](595 MB)
-PASS -- TEST 'control_iovr5_intel' [05:34, 03:22](597 MB)
-PASS -- TEST 'control_p8_intel' [06:35, 03:58](1573 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 03:59](1575 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:50](1584 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:15, 02:09](813 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:40, 03:55](1571 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:12, 02:05](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:39, 04:04](1567 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:40, 03:45](1657 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:22, 06:59](1581 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:59, 05:09](1639 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:51, 04:02](1576 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:12, 04:35](1591 MB)
-PASS -- TEST 'regional_control_intel' [10:10, 07:08](758 MB)
-PASS -- TEST 'regional_restart_intel' [05:40, 03:46](932 MB)
-PASS -- TEST 'regional_decomp_intel' [10:10, 07:30](761 MB)
-PASS -- TEST 'regional_2threads_intel' [07:08, 04:15](756 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:57, 07:09](758 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:01](766 MB)
-
-PASS -- COMPILE 'rrfs_intel' [35:21, 33:27]
-PASS -- TEST 'rap_control_intel' [12:06, 09:58](994 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:09, 05:36](1214 MB)
-PASS -- TEST 'rap_decomp_intel' [12:53, 10:37](987 MB)
-PASS -- TEST 'rap_2threads_intel' [12:01, 09:35](1084 MB)
-PASS -- TEST 'rap_restart_intel' [08:28, 05:20](987 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:21, 09:58](991 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:50, 10:36](985 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:24, 07:41](1002 MB)
-PASS -- TEST 'hrrr_control_intel' [07:52, 05:11](993 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 05:31](979 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 04:44](1055 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:47](925 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:35, 09:59](984 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:40, 12:21](1941 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:04](1937 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:21, 31:30]
-PASS -- TEST 'control_csawmg_intel' [10:47, 08:17](699 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:50, 08:10](691 MB)
-PASS -- TEST 'control_ras_intel' [06:29, 04:26](664 MB)
-
-PASS -- COMPILE 'wam_intel' [31:17, 29:31]
-PASS -- TEST 'control_wam_intel' [04:27, 02:48](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:22, 32:12]
-PASS -- TEST 'control_p8_faster_intel' [06:41, 03:34](1571 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:48, 06:29](763 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:09, 06:03]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:26, 03:20](763 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:22](759 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:44](765 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:30](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:45, 05:16](812 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 05:16](805 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:30, 03:24](772 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:29, 03:28](816 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:52, 03:44](1591 MB)
-PASS -- TEST 'regional_debug_intel' [23:52, 21:51](774 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:22, 05:59](1153 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:23, 05:54](1143 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 06:02](1144 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:02](1152 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:21, 06:02](1149 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:33, 06:19](1235 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:09](1155 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 06:23](1155 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:18](1153 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:04](1151 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1153 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:21, 06:09](1152 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:36, 09:50](1147 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:31, 05:57](1148 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:23](1150 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:28, 06:05](1152 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:43, 10:30](1153 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:07, 04:09]
-PASS -- TEST 'control_wam_debug_intel' [08:25, 06:08](435 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:20, 29:57]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:12, 05:12](1077 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:23, 08:10](897 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:02, 04:39](869 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:20, 07:51](937 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:46, 04:00](902 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:03, 04:59](852 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:22, 06:31](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 02:36](843 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 43:40]
-PASS -- TEST 'conus13km_control_intel' [05:09, 02:54](1105 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:42, 01:28](1050 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:36](1025 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:22, 30:08]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:33](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 04:02]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:54](1029 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:46](1030 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:38, 18:23](1138 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:39, 18:51](849 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:54, 10:34](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:17, 18:27](1205 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:30, 06:15](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [38:26, 36:42]
-PASS -- TEST 'hafs_regional_atm_intel' [09:17, 06:57](714 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 06:19](1088 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:45, 09:23](778 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:30, 16:09](807 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:51, 18:13](820 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:25, 05:40](782 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:23, 31:32]
-PASS -- TEST 'hafs_regional_docn_intel' [11:33, 08:38](773 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:35, 08:49](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:35, 04:18](1073 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:14](1032 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:35, 04:23](930 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:36, 04:18](926 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 04:18](918 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:35, 04:33](1078 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:36, 04:23](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:36, 04:24](946 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:04, 09:05](889 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:04, 09:03](846 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:33, 04:24](1047 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:38, 06:51](2353 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [08:38, 06:21](2402 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:07]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 07:55](1002 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1062 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:38]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:33](231 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:19](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:48](251 MB)
-
-PASS -- COMPILE 'atml_intel' [36:20, 34:16]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:38, 08:04](1604 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 08:06](1606 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:53, 04:06](871 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:19, 31:28]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 02:17](1594 MB)
-
-PASS -- COMPILE 'atmwm_intel' [33:22, 32:01]
-PASS -- TEST 'control_atmwav_intel' [05:12, 02:15](608 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:19, 30:20]
-PASS -- TEST 'atmaero_control_p8_intel' [08:29, 05:15](1694 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:27, 06:30](1719 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:38](1734 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [40:21, 38:47]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:07, 07:25](1792 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:26, 49:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:45](1666 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:13, 22:10](1926 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:13, 10:17](1005 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 23:46](1628 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:21, 38:48]
+PASS -- TEST 'cpld_control_p8_intel' [11:40, 08:09](1825 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:10, 08:11](1834 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:05, 04:19](1711 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:41, 08:12](1840 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 04:31](1737 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:27, 07:49](2271 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:35, 08:11](1822 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 07:01](1777 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 08:07](1825 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:59, 07:35](1791 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:20, 36:13]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 06:13](1661 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:43, 06:08](1720 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:00]
+PASS -- TEST 'cpld_debug_p8_intel' [14:10, 10:30](1851 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:26]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:22, 07:14](1680 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:19, 32:50]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:41](1718 MB)
+
+PASS -- COMPILE 's2s_intel' [34:19, 32:27]
+PASS -- TEST 'cpld_control_c48_intel' [15:10, 12:43](2792 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:43, 33:11]
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:17](1828 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:25, 47:11]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:40, 21:06](1685 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:35, 10:26](1032 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:41, 24:02](1659 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 05:04]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:42, 32:10](1694 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [37:20, 35:06]
+PASS -- TEST 'control_flake_intel' [06:26, 04:28](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:17](599 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 03:37](607 MB)
+PASS -- TEST 'control_latlon_intel' [05:26, 03:21](602 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:25](597 MB)
+PASS -- TEST 'control_c48_intel' [12:41, 10:08](844 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:08](847 MB)
+PASS -- TEST 'control_c192_intel' [14:52, 12:26](727 MB)
+PASS -- TEST 'control_c384_intel' [18:57, 15:57](896 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:55, 13:39](1018 MB)
+PASS -- TEST 'control_stochy_intel' [04:28, 02:10](604 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB)
+PASS -- TEST 'control_lndp_intel' [04:28, 02:09](602 MB)
+PASS -- TEST 'control_iovr4_intel' [05:29, 03:14](598 MB)
+PASS -- TEST 'control_iovr5_intel' [05:29, 03:22](595 MB)
+PASS -- TEST 'control_p8_intel' [06:30, 03:58](1572 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:44, 04:03](1575 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:53](1575 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:05, 02:12](813 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:35, 03:52](1573 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:07, 02:04](843 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:28, 04:03](1566 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:41](1659 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:12, 06:59](1577 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:53, 05:12](1636 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:45, 04:02](1590 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:07, 04:41](1588 MB)
+PASS -- TEST 'regional_control_intel' [09:02, 07:02](762 MB)
+PASS -- TEST 'regional_restart_intel' [05:42, 03:43](943 MB)
+PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](762 MB)
+PASS -- TEST 'regional_2threads_intel' [07:03, 04:22](749 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:01](758 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:37, 07:02](759 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:19, 32:49]
+PASS -- TEST 'rap_control_intel' [12:57, 09:58](988 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:28](1213 MB)
+PASS -- TEST 'rap_decomp_intel' [12:53, 10:44](984 MB)
+PASS -- TEST 'rap_2threads_intel' [12:16, 09:34](1082 MB)
+PASS -- TEST 'rap_restart_intel' [08:24, 05:31](984 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:28, 09:55](996 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:54, 10:44](988 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:23, 07:52](990 MB)
+PASS -- TEST 'hrrr_control_intel' [07:54, 05:04](988 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:19](977 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:41](1060 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:53](916 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:24, 09:55](987 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:19](1941 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:27, 12:12](1936 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:18, 31:09]
+PASS -- TEST 'control_csawmg_intel' [10:47, 08:19](696 MB)
+PASS -- TEST 'control_csawmgt_intel' [10:39, 08:13](696 MB)
+PASS -- TEST 'control_ras_intel' [06:20, 04:39](665 MB)
+
+PASS -- COMPILE 'wam_intel' [31:17, 29:47]
+PASS -- TEST 'control_wam_intel' [04:18, 02:49](495 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:39]
+PASS -- TEST 'control_p8_faster_intel' [06:32, 03:45](1576 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:47, 07:04](765 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:48]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:23](760 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:19](757 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:44](768 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:21](757 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:13](802 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 05:15](806 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](767 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:33, 03:26](815 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:37](1598 MB)
+PASS -- TEST 'regional_debug_intel' [24:50, 22:04](775 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:24, 06:00](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:24, 05:52](1142 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 05:58](1151 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 06:04](1156 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:19, 06:01](1154 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:33, 06:22](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:10](1149 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 06:09](1149 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:23, 06:06](1152 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:00](1155 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:54](1151 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1149 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 09:52](1141 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:27, 06:01](1144 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:23](1152 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:27, 05:58](1152 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:34, 10:23](1153 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:08, 04:02]
+PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](443 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:12]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:17](1066 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:03, 08:24](896 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 04:23](865 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:03, 08:04](942 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:09, 04:02](907 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:11, 04:39](850 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:11, 06:16](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](849 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:41]
+PASS -- TEST 'conus13km_control_intel' [06:02, 02:58](1106 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:20](1056 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:35](1027 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:17, 30:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:39](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:03]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 05:58](1033 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 05:50](1026 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:03, 18:11](1168 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](849 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:32](1084 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:13](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:17]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:02](1071 MB)
+
+PASS -- COMPILE 'hafsw_intel' [37:20, 35:10]
+PASS -- TEST 'hafs_regional_atm_intel' [10:17, 07:31](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:53](1087 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:39, 09:53](778 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [20:30, 17:21](799 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:44, 18:40](825 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:26, 06:15](772 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:18, 31:37]
+PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:45](767 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:29, 09:04](752 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:51]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:38](1063 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:18](1034 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:31](925 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:33](925 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:35](925 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:37](1065 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:38](1052 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:32](922 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 07:58](883 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:46](851 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:38](1069 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:01](2353 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:22, 05:10](2355 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:27]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 07:58](1006 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:33](1064 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:07, 01:40]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 02:03](229 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:31](252 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:49](254 MB)
+
+PASS -- COMPILE 'atml_intel' [36:19, 34:10]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:06, 08:20](1605 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:02, 08:02](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 03:57](870 MB)
+
+PASS -- COMPILE 'atmw_intel' [34:18, 32:25]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:26](1607 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:18, 30:55]
+PASS -- TEST 'control_atmwav_intel' [05:12, 02:14](612 MB)
+
+PASS -- COMPILE 'atmaero_intel' [32:18, 30:22]
+PASS -- TEST 'atmaero_control_p8_intel' [08:25, 05:07](1694 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:26, 06:28](1716 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 06:46](1731 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 13:46:55
-Ending Date/Time: 20240404 17:20:28
-Total Time: 03h:34m:21s
+Starting Date/Time: 20240409 05:13:52
+Ending Date/Time: 20240409 08:46:15
+Total Time: 03h:33m:09s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 7893a3140f..0f638d49eb 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,17 +1,17 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
+6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -47,373 +47,280 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_107796
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_390197
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:07, 16:39]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:36, 05:18](3180 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:09, 23:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [27:51, 16:25](1741 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:07, 17:28](2054 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:58, 08:06](1122 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:46, 18:30](1654 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:34]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 22:41](1686 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:06, 14:13]
-PASS -- TEST 'cpld_control_p8_intel' [08:21, 05:34](3207 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 05:39](3202 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [13:39, 03:19](3257 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:21, 05:37](3230 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [13:43, 03:21](3276 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 06:04](3548 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [15:33, 05:37](3202 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:39](3069 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 05:37](3173 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:39, 09:53](3347 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:16, 06:10](3622 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:40, 10:54](4162 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:13, 06:54](4370 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:30, 05:17](3172 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 14:57]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:16, 04:21](1736 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:34, 04:17](1780 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20]
-PASS -- TEST 'cpld_debug_p8_intel' [12:23, 08:46](3188 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:17]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 05:59](1738 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:06, 12:42]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:12, 04:16](1779 MB)
-
-PASS -- COMPILE 's2s_intel' [15:06, 13:15]
-PASS -- TEST 'cpld_control_c48_intel' [13:46, 08:01](2835 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:08, 18:06]
-PASS -- TEST 'cpld_control_p8_faster_intel' [17:39, 05:16](3203 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:37]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 16:41](1767 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 08:06](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 18:35](1676 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:39]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:50](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:42]
-PASS -- TEST 'control_flake_intel' [14:25, 03:27](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [13:26, 02:24](656 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:29, 02:35](653 MB)
-PASS -- TEST 'control_latlon_intel' [13:23, 02:25](655 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:31, 02:33](649 MB)
-PASS -- TEST 'control_c48_intel' [16:35, 05:56](872 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [16:42, 05:56](872 MB)
-PASS -- TEST 'control_c192_intel' [19:35, 09:01](852 MB)
-PASS -- TEST 'control_c384_intel' [21:42, 10:04](1246 MB)
-PASS -- TEST 'control_c384gdas_intel' [25:04, 11:49](1354 MB)
-PASS -- TEST 'control_stochy_intel' [12:22, 01:42](655 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:04](503 MB)
-PASS -- TEST 'control_lndp_intel' [12:23, 01:37](650 MB)
-PASS -- TEST 'control_iovr4_intel' [12:26, 02:28](653 MB)
-PASS -- TEST 'control_iovr5_intel' [12:24, 02:32](645 MB)
-PASS -- TEST 'control_p8_intel' [13:15, 03:02](1633 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:19, 02:58](1639 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:38, 02:52](1638 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:11, 01:38](893 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:11, 02:54](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:18, 01:41](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [08:11, 03:03](1611 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:11, 03:06](1723 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:45, 05:09](1636 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 03:55](1695 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:01](1641 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:45, 03:29](1647 MB)
-PASS -- TEST 'regional_control_intel' [07:42, 05:05](851 MB)
-PASS -- TEST 'regional_restart_intel' [04:39, 02:45](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [07:40, 05:24](844 MB)
-PASS -- TEST 'regional_2threads_intel' [05:38, 03:37](844 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:40, 05:03](1365 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](858 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:36, 05:03](854 MB)
-PASS -- TEST 'regional_wofs_intel' [08:37, 06:37](1917 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:08, 11:36]
-PASS -- TEST 'rap_control_intel' [10:26, 07:46](1105 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:50, 04:46](1288 MB)
-PASS -- TEST 'rap_decomp_intel' [10:53, 08:06](1032 MB)
-PASS -- TEST 'rap_2threads_intel' [09:56, 07:55](1180 MB)
-PASS -- TEST 'rap_restart_intel' [06:26, 04:03](1097 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:43](1099 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:10, 08:07](1026 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:23, 05:50](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [06:12, 04:01](1036 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:07](1023 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:58, 03:23](1110 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:23, 02:10](997 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:16, 07:36](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:31, 09:15](1994 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:22, 08:56](2074 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:06, 10:57]
-PASS -- TEST 'control_csawmg_intel' [08:38, 06:06](744 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:36, 06:02](752 MB)
-PASS -- TEST 'control_ras_intel' [05:19, 03:19](733 MB)
-
-PASS -- COMPILE 'wam_intel' [15:07, 10:45]
-PASS -- TEST 'control_wam_intel' [04:16, 02:07](658 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [15:07, 11:35]
-PASS -- TEST 'control_p8_faster_intel' [05:36, 02:39](1625 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:39, 04:41](852 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:06, 04:27]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:45](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](815 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:15, 02:58](813 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:47](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:15](857 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:44, 04:05](856 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:19, 02:47](826 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 02:50](872 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 02:52](1646 MB)
-PASS -- TEST 'regional_debug_intel' [19:42, 17:28](841 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:21, 04:54](1201 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:58](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 04:54](1201 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:49](1203 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:08](1207 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1288 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:57](1199 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:06](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:57](1200 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:19, 04:58](1200 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:24, 04:52](1207 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 04:56](1200 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 07:55](1199 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:56](1192 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:53](1198 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:18, 05:15](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 08:37](1199 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:06, 03:34]
-PASS -- TEST 'control_wam_debug_intel' [07:17, 05:13](515 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:08, 11:27]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:27](1169 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:30](1065 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 03:24](974 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:01, 06:42](1097 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:03](967 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:54, 03:33](943 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:14, 04:58](1033 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:59](937 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:11]
-PASS -- TEST 'conus13km_control_intel' [04:56, 02:08](1207 MB)
-PASS -- TEST 'conus13km_2threads_intel' [06:42, 01:06](1125 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:41, 01:18](1114 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:07, 11:55]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 04:12](1000 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:06, 03:32]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:23, 04:52](1075 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:49](1090 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:51, 13:57](1229 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:37](932 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 08:22](1152 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:43, 14:06](1319 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:06, 03:51]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:20, 04:55](1128 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:06, 12:43]
-PASS -- TEST 'hafs_regional_atm_intel' [08:12, 05:28](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:54](1124 MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_atm_ocn_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:08, 12:47](865 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:33](878 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:11](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 07:27](516 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:06](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:26, 07:56](473 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:43, 04:07](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:53, 03:56](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:49, 05:15](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:23, 01:22](397 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:50, 04:36](806 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:06, 05:22]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:46, 13:10](566 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:07, 14:18]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 09:38](669 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 09:37](696 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:07, 13:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:02, 06:57](732 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:07, 13:33]
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_intel' [, ]( MB)
-FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 15:57](1203 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:36](1141 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:14, 01:42](1080 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:31](1004 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:34](1010 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1019 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:43](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:58](1052 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:58](1025 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:36](1138 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:34](2437 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:37](2487 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:06, 03:51]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:12, 06:14](1066 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:06, 08:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1138 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:05, 01:19]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:25, 00:52](248 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:21, 00:51](326 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:32](324 MB)
-
-PASS -- COMPILE 'atml_intel' [15:06, 13:29]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:31, 04:16](1601 MB)
-FAIL TO COMPARE -- TEST 'control_p8_atmlnd_intel' [, ]( MB)
-MISSING -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmw_intel' [14:06, 12:28]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 01:45](1668 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:06, 12:52]
-PASS -- TEST 'control_atmwav_intel' [04:04, 01:41](678 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:06, 11:17]
-PASS -- TEST 'atmaero_control_p8_intel' [07:17, 03:59](3033 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:50](3092 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:05](3113 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 10:46]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:51]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:46, 20:56](4578 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:31]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:57, 06:18](3174 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:08, 16:20]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:50, 16:30](1742 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:01, 17:24](2021 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 08:02](1109 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 18:37](1646 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:17]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:07](1684 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:07, 14:55]
+PASS -- TEST 'cpld_control_p8_intel' [10:37, 05:39](3214 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:37](3210 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:57, 03:23](3259 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:37, 05:40](3233 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:22](3268 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:37, 06:11](3555 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:37, 05:38](3201 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 04:47](3055 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:50, 05:43](3207 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:52, 10:06](3340 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:10, 06:18](3628 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 10:52](4127 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:07, 06:50](4365 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:39, 05:22](3172 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:07, 14:25]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 04:27](1731 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 04:27](1778 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:14]
+PASS -- TEST 'cpld_debug_p8_intel' [11:35, 08:40](3246 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:58]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:54](1752 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:07, 12:49]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:22](1786 MB)
+
+PASS -- COMPILE 's2s_intel' [15:07, 13:12]
+PASS -- TEST 'cpld_control_c48_intel' [10:49, 08:02](2832 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:08, 18:00]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:47, 05:21](3214 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:19]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 16:45](1771 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 08:12](1169 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 18:43](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:18]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:29](1717 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:14]
+PASS -- TEST 'control_flake_intel' [06:20, 03:26](699 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:24](653 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:28, 02:29](662 MB)
+PASS -- TEST 'control_latlon_intel' [05:20, 02:26](648 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:29, 02:28](646 MB)
+PASS -- TEST 'control_c48_intel' [08:24, 05:54](861 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 05:54](875 MB)
+PASS -- TEST 'control_c192_intel' [11:33, 09:06](858 MB)
+PASS -- TEST 'control_c384_intel' [13:47, 10:03](1241 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:06, 09:00](1349 MB)
+PASS -- TEST 'control_stochy_intel' [04:17, 01:39](653 MB)
+PASS -- TEST 'control_stochy_restart_intel' [05:22, 01:01](503 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:37](651 MB)
+PASS -- TEST 'control_iovr4_intel' [04:19, 02:31](656 MB)
+PASS -- TEST 'control_iovr5_intel' [04:18, 02:37](645 MB)
+PASS -- TEST 'control_p8_intel' [08:07, 03:02](1638 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:14, 02:57](1631 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:35, 02:51](1633 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:17, 01:44](892 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:14, 02:50](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:09, 01:37](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:15, 03:03](1615 MB)
+PASS -- TEST 'control_2threads_p8_intel' [08:30, 03:02](1719 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:50, 05:13](1636 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:38, 03:57](1695 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:33, 02:57](1630 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:53, 03:28](1646 MB)
+PASS -- TEST 'regional_control_intel' [10:43, 05:06](856 MB)
+PASS -- TEST 'regional_restart_intel' [04:36, 02:47](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [10:35, 05:27](854 MB)
+PASS -- TEST 'regional_2threads_intel' [06:38, 03:43](846 MB)
+PASS -- TEST 'regional_noquilt_intel' [09:38, 05:05](1362 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:42, 05:04](855 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 05:13](857 MB)
+PASS -- TEST 'regional_wofs_intel' [09:35, 06:34](1923 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:07, 11:47]
+PASS -- TEST 'rap_control_intel' [10:21, 07:44](1097 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:43](1294 MB)
+PASS -- TEST 'rap_decomp_intel' [11:00, 08:06](1026 MB)
+PASS -- TEST 'rap_2threads_intel' [10:08, 07:52](1176 MB)
+PASS -- TEST 'rap_restart_intel' [07:16, 04:05](1092 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:18, 07:49](1109 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:00, 08:15](1030 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 05:51](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [06:16, 04:02](1032 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:07](1020 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:22](1104 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:12](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:17, 07:36](1098 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:08](1996 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:18, 09:01](2074 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:06, 11:01]
+PASS -- TEST 'control_csawmg_intel' [08:36, 06:02](749 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:36, 05:59](750 MB)
+PASS -- TEST 'control_ras_intel' [05:18, 03:18](743 MB)
+
+PASS -- COMPILE 'wam_intel' [12:06, 10:34]
+PASS -- TEST 'control_wam_intel' [04:18, 02:07](655 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:06, 10:59]
+PASS -- TEST 'control_p8_faster_intel' [06:23, 02:39](1621 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:40, 04:43](850 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:49](814 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:47](809 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:16, 03:07](825 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:15, 02:51](821 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:09](862 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:04](870 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:20, 02:51](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:24, 02:50](874 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:40, 02:56](1640 MB)
+PASS -- TEST 'regional_debug_intel' [19:38, 17:05](852 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:20, 04:50](1200 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:17, 05:01](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:16, 05:00](1196 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:50](1198 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:54](1198 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:26, 05:09](1285 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:18, 05:05](1197 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:03](1202 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:19, 05:04](1199 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:17, 04:57](1198 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:17, 04:53](1196 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 04:53](1205 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 07:45](1201 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:19, 04:52](1201 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:53](1203 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:17, 05:01](1200 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 08:15](1207 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:06, 03:06]
+PASS -- TEST 'control_wam_debug_intel' [08:16, 04:46](506 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 10:50]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:50, 04:26](1162 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:12, 06:29](1049 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:38, 03:23](985 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:49, 06:41](1096 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:19, 02:56](960 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:08, 03:37](930 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:18, 04:46](1031 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:22, 01:50](931 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:07, 13:30]
+PASS -- TEST 'conus13km_control_intel' [04:52, 02:05](1196 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:39, 00:59](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:16](1106 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 10:55]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:19](996 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:25]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:49](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:41](1073 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:45, 13:56](1225 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:49](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:13](1151 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:36, 14:15](1296 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:18]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 04:59](1119 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:06, 13:08]
+PASS -- TEST 'hafs_regional_atm_intel' [09:07, 05:30](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:22, 06:00](1120 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 06:52](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:09, 12:51](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 14:29](883 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:57, 06:07](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:23, 07:23](515 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:07](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 07:59](478 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:07](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:02](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:23](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:23, 01:23](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:56, 04:31](797 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:11, 04:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:18](573 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:07, 13:41]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 09:46](671 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:02, 09:38](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:17, 13:28]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:55, 06:56](690 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:07, 12:13]
+PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:26](827 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 06:21](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:53, 16:05](1211 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:07, 07:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1128 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:42](1088 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:30](1014 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:13, 02:36](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:12, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:12, 02:39](1124 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:42](1120 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 05:59](1050 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:56](1043 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:35](1135 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:38](2432 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:40](2487 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:23]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:09](1055 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:35](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:51](254 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:34](322 MB)
+
+PASS -- COMPILE 'atml_intel' [14:07, 12:29]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:32, 05:16](1610 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:21, 04:14](1601 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 02:20](894 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:07, 12:17]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:11, 01:45](1664 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:07, 12:17]
+PASS -- TEST 'control_atmwav_intel' [04:03, 01:43](678 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:06, 11:39]
+PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:59](3022 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:47](3090 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 05:06](3112 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:06, 10:17]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:14]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 20:45](4580 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 08:42:36
-Ending Date/Time: 20240404 10:22:54
-Total Time: 01h:41m:03s
+Starting Date/Time: 20240409 08:07:51
+Ending Date/Time: 20240409 09:40:37
+Total Time: 01h:33m:37s
Compiles Completed: 39/39
-Tests Completed: 177/182
-Failed Tests:
-* TEST hafs_regional_atm_ocn_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_atm_ocn_intel.log
-* TEST hafs_regional_docn_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_intel.log
-* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_hafs_regional_docn_oisst_intel.log
-* TEST control_p8_atmlnd_intel: FAIL TO COMPARE
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2223/tests/logs/log_orion/rt_control_p8_atmlnd_intel.log
-* TEST control_restart_p8_atmlnd_intel: MISSING
--- LOG: N/A
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ORION REGRESSION TESTING LOG====
-====START OF ORION REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-7cc39e3287638afc5817eeb7c57e1279250a7dcc
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_156392
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafsw_intel' [15:06, 13:24]
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 06:58](842 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:06, 13:16]
-PASS -- TEST 'hafs_regional_docn_intel' [09:04, 06:24](828 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:05, 06:30](817 MB)
-
-PASS -- COMPILE 'atml_intel' [15:06, 13:26]
-PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 04:16](1593 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240404 13:06:07
-Ending Date/Time: 20240404 13:32:43
-Total Time: 00h:26m:41s
-Compiles Completed: 3/3
-Tests Completed: 4/4
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 7184495c81..d2bba3fe98 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,17 +1,17 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-616a1599842de8f07db974c54438bb9b9fa996b9
+5efb5c1c91c717f5e8713bca35ebf642fd679681
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (remotes/origin/HEAD)
f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 7d4e5defc1c5ff6d67cd74470e8fdbce5de84be1 CICE-interface/CICE (CICE6.0.0-446-g7d4e5de)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 1c30df1a1dbd509108589299d5634a119b516127 FV3 (remotes/origin/hotfix/cubed_sphere-hash)
+ 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (remotes/origin/HEAD)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -47,236 +47,236 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240401
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_152070
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_240137
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:12, 27:38]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:55, 01:12](2975 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:40, 11:38]
-PASS -- TEST 'cpld_control_gfsv17_intel' [32:27, 02:28](1596 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:55, 01:32](1717 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:07, 01:45](848 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:28, 02:06](1572 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:23]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [39:47, 02:36](1604 MB)
-
-PASS -- COMPILE 's2swa_intel' [27:10, 25:57]
-PASS -- TEST 'cpld_control_p8_intel' [17:58, 01:23](3004 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:58, 01:16](3006 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:11, 01:33](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [17:58, 00:59](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:09, 01:38](3077 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [17:58, 01:04](3318 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [17:58, 01:19](3001 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [17:59, 01:09](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:58, 01:24](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:07, 05:18](3953 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:04, 05:47](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [17:58, 02:04](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:38, 10:27]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [33:29, 01:46](1588 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:29, 00:57](1634 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:36, 09:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [34:31, 01:55](1631 MB)
-
-PASS -- COMPILE 's2s_intel' [15:46, 15:00]
-PASS -- TEST 'cpld_control_c48_intel' [29:20, 00:50](2659 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:48, 15:34]
-PASS -- TEST 'cpld_control_p8_faster_intel' [28:19, 01:42](3004 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:03, 23:14]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 01:23](1601 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:18, 00:46](901 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [03:14, 01:06](1582 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:46, 15:16]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:22, 01:10](1613 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [30:27, 29:35]
-PASS -- TEST 'control_flake_intel' [08:02, 01:40](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [08:02, 01:04](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:56, 00:55](528 MB)
-PASS -- TEST 'control_latlon_intel' [07:56, 00:52](525 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:55, 01:01](522 MB)
-PASS -- TEST 'control_c48_intel' [07:50, 01:00](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 00:55](715 MB)
-PASS -- TEST 'control_c192_intel' [07:46, 01:14](641 MB)
-PASS -- TEST 'control_c384_intel' [07:40, 02:06](954 MB)
-PASS -- TEST 'control_c384gdas_intel' [07:16, 02:21](1095 MB)
-PASS -- TEST 'control_stochy_intel' [06:59, 00:41](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:18, 00:34](333 MB)
-PASS -- TEST 'control_lndp_intel' [06:51, 00:35](526 MB)
-PASS -- TEST 'control_iovr4_intel' [06:49, 00:50](522 MB)
-PASS -- TEST 'control_iovr5_intel' [06:32, 00:42](524 MB)
-PASS -- TEST 'control_p8_intel' [05:54, 01:45](1500 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:50, 01:41](1506 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:49, 01:43](1503 MB)
-PASS -- TEST 'control_restart_p8_intel' [00:22, 01:37](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:48, 01:26](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [00:22, 01:33](697 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:30, 01:23](1497 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:49, 01:39](1588 MB)
-PASS -- TEST 'control_p8_lndp_intel' [04:19, 01:28](1499 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:17, 02:05](1555 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:14, 02:04](1515 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:13, 01:33](1510 MB)
-PASS -- TEST 'regional_control_intel' [04:07, 00:48](611 MB)
-PASS -- TEST 'regional_restart_intel' [56:10, 01:00](783 MB)
-PASS -- TEST 'regional_decomp_intel' [03:00, 00:59](609 MB)
-PASS -- TEST 'regional_2threads_intel' [02:19, 00:27](660 MB)
-PASS -- TEST 'regional_noquilt_intel' [02:17, 01:29](1148 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [02:08, 01:17](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [01:38, 00:23](609 MB)
-PASS -- TEST 'regional_wofs_intel' [00:57, 00:52](1578 MB)
-
-PASS -- COMPILE 'rrfs_intel' [20:04, 18:35]
-PASS -- TEST 'rap_control_intel' [12:49, 01:31](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:00, 00:37](1099 MB)
-PASS -- TEST 'rap_decomp_intel' [11:52, 01:45](916 MB)
-PASS -- TEST 'rap_2threads_intel' [00:57, 01:19](1010 MB)
-PASS -- TEST 'rap_restart_intel' [00:50, 02:32](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [00:48, 02:00](916 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [00:23, 01:26](914 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [51:06, 01:55](783 MB)
-PASS -- TEST 'hrrr_control_intel' [00:23, 01:42](912 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [00:22, 01:51](915 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [00:23, 01:23](992 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [54:09, 01:05](741 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [00:19, 02:09](908 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [59:40, 01:31](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:24, 01:22](1863 MB)
-
-PASS -- COMPILE 'csawmg_intel' [22:05, 20:59]
-PASS -- TEST 'control_csawmg_intel' [57:21, 01:08](599 MB)
-PASS -- TEST 'control_csawmgt_intel' [56:45, 00:24](601 MB)
-PASS -- TEST 'control_ras_intel' [56:31, 00:42](558 MB)
-
-PASS -- COMPILE 'wam_intel' [18:00, 17:07]
-PASS -- TEST 'control_wam_intel' [56:16, 00:54](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:50]
-PASS -- TEST 'control_p8_faster_intel' [19:49, 01:26](1510 MB)
-PASS -- TEST 'regional_control_faster_intel' [19:48, 00:56](611 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:41, 12:44]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:39, 00:48](689 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:39, 00:55](690 MB)
-PASS -- TEST 'control_stochy_debug_intel' [15:39, 00:28](695 MB)
-PASS -- TEST 'control_lndp_debug_intel' [15:39, 00:47](691 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [15:39, 01:22](729 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [15:39, 00:24](732 MB)
-PASS -- TEST 'control_ras_debug_intel' [15:39, 00:39](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [15:39, 00:39](748 MB)
-PASS -- TEST 'control_debug_p8_intel' [15:39, 00:35](1523 MB)
-PASS -- TEST 'regional_debug_intel' [15:38, 00:55](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [15:39, 00:19](1073 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [15:39, 00:26](1071 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [15:39, 00:21](1072 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [55:55, 00:56](1075 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [55:55, 00:57](1074 MB)
-PASS -- TEST 'rap_diag_debug_intel' [55:19, 01:28](1160 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [55:05, 00:28](1077 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [54:47, 00:57](1080 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [54:17, 00:55](1076 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [54:09, 00:59](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [54:09, 01:07](1070 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [54:02, 01:00](1075 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [53:28, 00:52](1075 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [52:59, 01:06](1068 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [52:58, 01:09](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [52:41, 00:33](1080 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [52:32, 01:59](1081 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:49, 13:28]
-PASS -- TEST 'control_wam_debug_intel' [52:28, 00:43](301 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:51, 13:45]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:28, 01:31](959 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [51:58, 02:29](791 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [51:38, 02:13](784 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [51:07, 02:11](850 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [50:58, 02:01](844 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [50:49, 01:36](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:16, 01:33](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:48, 00:22](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:43, 12:46]
-PASS -- TEST 'conus13km_control_intel' [50:45, 01:19](1001 MB)
-PASS -- TEST 'conus13km_2threads_intel' [46:38, 00:53](1006 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [46:19, 00:48](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:51, 12:23]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [50:30, 01:38](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:39, 04:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [48:30, 01:14](956 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [48:14, 00:31](950 MB)
-PASS -- TEST 'conus13km_debug_intel' [48:13, 01:33](1041 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [47:59, 01:02](713 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [47:51, 01:13](1039 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [47:42, 00:25](1105 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:48, 09:01]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [47:38, 00:27](979 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:51, 12:40]
-PASS -- TEST 'hafs_regional_atm_intel' [47:37, 01:46](617 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:34, 00:59](970 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:31, 01:44](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [47:24, 02:24](694 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:07, 02:22](714 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [46:10, 01:08](394 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [46:08, 02:07](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [45:51, 01:26](285 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:48, 02:45](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [45:37, 01:36](412 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [45:23, 00:50](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [45:19, 00:58](497 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [44:27, 00:26](312 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:38, 06:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:47, 01:29](499 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:45, 10:17]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [43:38, 01:04](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:29, 01:48](716 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:55, 17:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [43:25, 01:09](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:58, 19:40]
-PASS -- TEST 'hafs_regional_docn_intel' [43:17, 01:58](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [43:13, 01:40](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:19, 00:46](881 MB)
-
-PASS -- COMPILE 'atml_intel' [14:48, 14:18]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [41:41, 02:22](1546 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [41:02, 02:07](1543 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [32:02, 01:21](748 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:42, 12:19]
-PASS -- TEST 'atmaero_control_p8_intel' [40:51, 01:19](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [40:49, 01:46](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [40:48, 01:23](2922 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:48, 12:38]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:42, 10:38]
-PASS -- TEST 'regional_atmaq_debug_intel' [40:45, 01:47](4435 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:52, 16:19]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [46:17, 01:26](2975 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:10, 24:26]
+PASS -- TEST 'cpld_control_gfsv17_intel' [37:59, 02:10](1591 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:44, 01:58](1718 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:46, 01:22](848 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:59, 01:18](1579 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 05:06]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [57:49, 02:11](1604 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:40, 11:01]
+PASS -- TEST 'cpld_control_p8_intel' [51:28, 01:13](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:28, 01:25](3001 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [42:57, 01:54](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [51:28, 01:13](3029 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:48](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [51:28, 01:45](3312 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [51:28, 01:16](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [51:29, 01:30](2928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:28, 01:34](3005 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 04:11](3955 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:52, 03:51](4252 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [51:28, 01:45](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:01, 20:35]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [42:08, 00:47](1588 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:08, 02:10](1637 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:38, 09:59]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [52:30, 01:52](1637 MB)
+
+PASS -- COMPILE 's2s_intel' [29:19, 28:21]
+PASS -- TEST 'cpld_control_c48_intel' [33:24, 00:45](2656 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:54, 16:40]
+PASS -- TEST 'cpld_control_p8_faster_intel' [45:15, 01:34](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:43, 11:49]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:26, 01:20](1601 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:20, 01:47](904 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:19, 01:00](1589 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [29:20, 28:43]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:26, 01:04](1612 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [22:57, 21:43]
+PASS -- TEST 'control_flake_intel' [34:50, 00:21](572 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [34:50, 00:46](521 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:50, 00:41](528 MB)
+PASS -- TEST 'control_latlon_intel' [34:50, 00:39](524 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:50, 00:48](524 MB)
+PASS -- TEST 'control_c48_intel' [34:49, 00:57](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [34:49, 00:53](719 MB)
+PASS -- TEST 'control_c192_intel' [34:50, 00:25](637 MB)
+PASS -- TEST 'control_c384_intel' [34:54, 02:01](954 MB)
+PASS -- TEST 'control_c384gdas_intel' [34:54, 01:42](1095 MB)
+PASS -- TEST 'control_stochy_intel' [34:50, 00:27](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [32:12, 01:01](338 MB)
+PASS -- TEST 'control_lndp_intel' [34:50, 00:29](531 MB)
+PASS -- TEST 'control_iovr4_intel' [34:50, 00:44](523 MB)
+PASS -- TEST 'control_iovr5_intel' [34:50, 00:44](524 MB)
+PASS -- TEST 'control_p8_intel' [34:28, 02:00](1497 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [34:20, 01:56](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [33:22, 01:57](1504 MB)
+PASS -- TEST 'control_restart_p8_intel' [28:54, 00:42](690 MB)
+PASS -- TEST 'control_noqr_p8_intel' [32:18, 01:35](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [27:07, 01:05](701 MB)
+PASS -- TEST 'control_decomp_p8_intel' [32:17, 01:28](1496 MB)
+PASS -- TEST 'control_2threads_p8_intel' [32:17, 01:03](1602 MB)
+PASS -- TEST 'control_p8_lndp_intel' [32:14, 01:15](1512 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [32:13, 01:02](1563 MB)
+PASS -- TEST 'control_p8_mynn_intel' [32:12, 01:48](1508 MB)
+PASS -- TEST 'merra2_thompson_intel' [31:11, 01:32](1509 MB)
+PASS -- TEST 'regional_control_intel' [31:09, 00:21](608 MB)
+PASS -- TEST 'regional_restart_intel' [25:22, 00:26](780 MB)
+PASS -- TEST 'regional_decomp_intel' [31:06, 01:05](609 MB)
+PASS -- TEST 'regional_2threads_intel' [31:07, 01:02](664 MB)
+PASS -- TEST 'regional_noquilt_intel' [31:06, 00:30](1140 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [31:04, 00:29](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [30:58, 00:22](608 MB)
+PASS -- TEST 'regional_wofs_intel' [30:06, 00:41](1585 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:32, 09:52]
+PASS -- TEST 'rap_control_intel' [41:58, 02:14](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:59, 01:04](1097 MB)
+PASS -- TEST 'rap_decomp_intel' [41:58, 02:04](919 MB)
+PASS -- TEST 'rap_2threads_intel' [41:58, 01:43](1010 MB)
+PASS -- TEST 'rap_restart_intel' [29:45, 01:15](790 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [41:58, 02:19](914 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:58, 02:03](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [28:51, 01:43](788 MB)
+PASS -- TEST 'hrrr_control_intel' [41:58, 01:07](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [41:58, 01:01](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [41:59, 01:25](997 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [36:49, 01:02](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [41:58, 01:15](910 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [41:58, 01:06](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:58, 01:21](1860 MB)
+
+PASS -- COMPILE 'csawmg_intel' [27:15, 26:32]
+PASS -- TEST 'control_csawmg_intel' [23:47, 00:36](602 MB)
+PASS -- TEST 'control_csawmgt_intel' [23:38, 00:39](598 MB)
+PASS -- TEST 'control_ras_intel' [23:20, 00:55](559 MB)
+
+PASS -- COMPILE 'wam_intel' [12:39, 12:08]
+PASS -- TEST 'control_wam_intel' [37:46, 00:56](273 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:45, 12:20]
+PASS -- TEST 'control_p8_faster_intel' [28:00, 00:59](1501 MB)
+PASS -- TEST 'regional_control_faster_intel' [27:52, 00:19](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [17:54, 17:12]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:09, 01:18](687 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 01:27](686 MB)
+PASS -- TEST 'control_stochy_debug_intel' [26:47, 00:53](691 MB)
+PASS -- TEST 'control_lndp_debug_intel' [26:24, 01:06](689 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [25:53, 00:45](731 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [25:31, 00:49](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [25:21, 01:08](705 MB)
+PASS -- TEST 'control_diag_debug_intel' [25:20, 01:13](745 MB)
+PASS -- TEST 'control_debug_p8_intel' [25:13, 01:08](1525 MB)
+PASS -- TEST 'regional_debug_intel' [25:12, 01:06](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [25:08, 00:57](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [24:51, 00:57](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [24:21, 01:01](1075 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [24:18, 00:59](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:37, 00:55](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [22:18, 00:53](1162 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:14, 00:52](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [22:12, 00:51](1077 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [22:09, 00:57](1076 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:05, 00:59](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [21:57, 01:08](1069 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [21:44, 00:55](1070 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [21:43, 00:51](1071 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [21:24, 00:59](1066 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [21:19, 01:09](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [21:16, 00:59](1073 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:54, 01:23](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [17:56, 17:00]
+PASS -- TEST 'control_wam_debug_intel' [20:47, 00:57](298 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:49, 16:19]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:25, 01:25](955 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:11, 01:11](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:46, 02:05](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:32, 01:17](855 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:11, 02:02](842 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:07, 01:36](790 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:49, 01:39](690 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:07, 00:17](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:08, 22:15]
+PASS -- TEST 'conus13km_control_intel' [14:43, 01:01](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [10:55, 00:52](1006 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [10:13, 00:39](879 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:39, 11:49]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:42, 01:27](809 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:28, 04:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:51, 01:02](950 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:51, 01:08](953 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:40, 00:41](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 00:37](708 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [15:57, 00:43](1038 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 00:42](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:37, 08:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:39, 01:01](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:56, 18:20]
+PASS -- TEST 'hafs_regional_atm_intel' [14:54, 01:57](616 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:54, 00:26](968 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:52, 01:50](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 01:35](698 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:53, 01:22](710 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:52, 01:05](389 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:53, 02:06](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [14:18, 01:30](314 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:20, 02:26](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:44, 01:39](426 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:00, 00:49](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:01, 00:56](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:34, 01:24](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:19, 03:25]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:42, 00:55](504 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 00:49](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:58, 00:46](712 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:54, 17:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:18, 01:03](710 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:44, 12:51]
+PASS -- TEST 'hafs_regional_docn_intel' [11:42, 01:22](662 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:36, 01:18](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:02, 00:42](881 MB)
+
+PASS -- COMPILE 'atml_intel' [15:49, 15:32]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 01:18](1550 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:47, 01:24](1552 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:09, 00:24](748 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:43, 12:54]
+PASS -- TEST 'atmaero_control_p8_intel' [08:11, 01:26](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:07, 00:52](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:04, 01:42](2926 MB)
+
+PASS -- COMPILE 'atmaq_intel' [20:05, 19:20]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:43, 11:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [07:46, 00:52](4436 MB)
SYNOPSIS:
-Starting Date/Time: 20240404 18:14:35
-Ending Date/Time: 20240404 19:47:06
-Total Time: 01h:33m:18s
+Starting Date/Time: 20240411 10:56:31
+Ending Date/Time: 20240411 12:18:07
+Total Time: 01h:22m:18s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN
index f82edf479d..7910561fe0 100644
--- a/tests/parm/ice_in.IN
+++ b/tests/parm/ice_in.IN
@@ -1,48 +1,61 @@
&setup_nml
- days_per_year = 365
- use_leap_years = .true.
- year_init = @[SYEAR]
- month_init = @[SMONTH]
- day_init = @[SDAY]
- sec_init = @[SECS]
- dt = @[DT_CICE]
- npt = @[CICE_NPT]
- ndtd = 1
- runtype = '@[CICE_RUNTYPE]'
- runid = '@[CICE_RUNID]'
- ice_ic = 'cice_model.res.nc'
- restart = .true.
- restart_ext = .false.
- use_restart_time = @[CICE_USE_RESTART_TIME]
- restart_format = 'nc'
- lcdf64 = .false.
- numin = 21
- numax = 89
- restart_dir = '@[CICE_RESTART_DIR]'
- restart_file = '@[CICE_RESTART_FILE]'
- pointer_file = './ice.restart_file'
- dumpfreq = '@[CICE_DUMPFREQ]'
- dumpfreq_n = @[CICE_DUMPFREQ_N]
- dump_last = .false.
- bfbflag = 'off'
- diagfreq = @[CICE_DIAGFREQ]
- diag_type = 'file'
- diag_file = 'ice_diag.d'
- print_global = .true.
- print_points = .true.
- latpnt(1) = 90.
- lonpnt(1) = 0.
- latpnt(2) = -65.
- lonpnt(2) = -45.
- histfreq = 'm','d','h','x','x'
- histfreq_n = @[CICE_HISTFREQ_N]
- hist_avg = @[CICE_HIST_AVG]
- history_dir = '@[CICE_HISTORY_DIR]'
- history_file = 'iceh'
- write_ic = .true.
- incond_dir = '@[CICE_INCOND_DIR]'
- incond_file = 'iceh_ic'
- version_name = 'CICE_6.0.2'
+ days_per_year = 365
+ use_leap_years = .true.
+ year_init = @[SYEAR]
+ month_init = @[SMONTH]
+ day_init = @[SDAY]
+ sec_init = @[SECS]
+ dt = @[DT_CICE]
+ npt = @[CICE_NPT]
+ ndtd = 1
+ runtype = '@[CICE_RUNTYPE]'
+ runid = '@[CICE_RUNID]'
+ ice_ic = 'cice_model.res.nc'
+ restart = .true.
+ restart_ext = .false.
+ use_restart_time = @[CICE_USE_RESTART_TIME]
+ numin = 21
+ numax = 89
+ restart_format = '@[CICE_RESTART_FORMAT]'
+ restart_iotasks = @[CICE_RESTART_IOTASKS]
+ restart_rearranger = '@[CICE_RESTART_REARR]'
+ restart_root = @[CICE_RESTART_ROOT]
+ restart_stride = @[CICE_RESTART_STRIDE]
+ restart_chunksize = @[CICE_RESTART_CHUNK]
+ restart_deflate = @[CICE_RESTART_DEFLATE]
+ restart_dir = '@[CICE_RESTART_DIR]'
+ restart_file = '@[CICE_RESTART_FILE]'
+ pointer_file = './ice.restart_file'
+ dumpfreq = '@[CICE_DUMPFREQ]'
+ dumpfreq_n = @[CICE_DUMPFREQ_N]
+ dump_last = .false.
+ bfbflag = 'off'
+ diagfreq = @[CICE_DIAGFREQ]
+ diag_type = 'file'
+ diag_file = 'ice_diag.d'
+ print_global = .true.
+ print_points = .true.
+ latpnt(1) = 90.
+ lonpnt(1) = 0.
+ latpnt(2) = -65.
+ lonpnt(2) = -45.
+ history_format = '@[CICE_HISTORY_FORMAT]'
+ history_iotasks = @[CICE_HISTORY_IOTASKS]
+ history_rearranger = '@[CICE_HISTORY_REARR]'
+ history_root = @[CICE_HISTORY_ROOT]
+ history_stride = @[CICE_HISTORY_STRIDE]
+ history_chunksize = @[CICE_HISTORY_CHUNK]
+ history_deflate = @[CICE_HISTORY_DEFLATE]
+ history_precision = @[CICE_HISTORY_PREC]
+ histfreq = 'm','d','h','x','x'
+ histfreq_n = @[CICE_HISTFREQ_N]
+ hist_avg = @[CICE_HIST_AVG]
+ history_dir = '@[CICE_HISTORY_DIR]'
+ history_file = 'iceh'
+ write_ic = .true.
+ incond_dir = '@[CICE_INCOND_DIR]'
+ incond_file = 'iceh_ic'
+ version_name = 'CICE_6.0.2'
/
&grid_nml
diff --git a/tests/test_changes.list b/tests/test_changes.list
index 25c9209077..c37e12ad66 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,5 +1,9 @@
-hafs_regional_atm_ocn intel
-hafs_regional_docn intel
-hafs_regional_docn_oisst intel
-control_p8_atmlnd intel
-control_restart_p8_atmlnd intel
+cpld_control_gfsv17_iau intel
+cpld_control_ciceC_p8 intel
+cpld_control_c192_p8 intel
+cpld_restart_c192_p8 intel
+cpld_control_c48 intel
+datm_cdeps_ciceC_cfsr intel
+datm_cdeps_mx025_cfsr intel
+datm_cdeps_mx025_gefs intel
+cpld_control_nowave_noaero_p8 gnu
From 281b32fba18b34ec73c53e22adafe3cff76c52c0 Mon Sep 17 00:00:00 2001
From: "Samuel Trahan (NOAA contractor)"
<39415369+SamuelTrahanNOAA@users.noreply.github.com>
Date: Mon, 15 Apr 2024 08:38:01 -0400
Subject: [PATCH 20/33] bug fixes: kchunk3d ignored, hailwat uninitialized in
dycore, tile_num wrong for nests (#2201)
* UFSWM - None.
* FV3 - Write component will use kchunk3d. Model init sends the right tile number to CCPP.
* atmos_cubed_sphere - Initialize the hailwat variable. Pass global_tile index to model.
---
FV3 | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
tests/logs/RegressionTests_acorn.log | 526 +++++++-------
tests/logs/RegressionTests_derecho.log | 605 +++++++---------
tests/logs/RegressionTests_gaea.log | 538 +++++++-------
tests/logs/RegressionTests_hera.log | 777 ++++++++++-----------
tests/logs/RegressionTests_hercules.log | 709 ++++++++++---------
tests/logs/RegressionTests_jet.log | 472 ++++++-------
tests/logs/RegressionTests_orion.log | 539 +++++++-------
tests/logs/RegressionTests_wcoss2.log | 460 ++++++------
tests/test_changes.list | 9 -
11 files changed, 2270 insertions(+), 2415 deletions(-)
diff --git a/FV3 b/FV3
index 383687ef87..37e7d4859d 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 383687ef8752af2408d882c47a4f3cbb4d3121ee
+Subproject commit 37e7d4859db4eb75472091abc650831060037715
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 42e07e0ed4..644a6cfef2 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 8 18:02:49 UTC 2024
+Fri Apr 12 15:33:44 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 261.545248
- 0: The maximum resident set size (KB) = 1268088
+ 0: The total amount of wall time = 268.779052
+ 0: The maximum resident set size (KB) = 1266844
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 967.578197
- 0: The maximum resident set size (KB) = 1257076
+ 0: The total amount of wall time = 954.578049
+ 0: The maximum resident set size (KB) = 1253880
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.264272
- 0: The maximum resident set size (KB) = 1250184
+ 0: The total amount of wall time = 246.936524
+ 0: The maximum resident set size (KB) = 1247528
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.136596
- 0: The maximum resident set size (KB) = 1248008
+ 0: The total amount of wall time = 242.865330
+ 0: The maximum resident set size (KB) = 1248864
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.165900
- 0: The maximum resident set size (KB) = 1248672
+ 0: The total amount of wall time = 238.898069
+ 0: The maximum resident set size (KB) = 1246768
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 238.350921
- 0: The maximum resident set size (KB) = 1252224
+ 0: The total amount of wall time = 237.211758
+ 0: The maximum resident set size (KB) = 1248264
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2423128/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 240.189587
- 0: The maximum resident set size (KB) = 1247168
+ 0: The total amount of wall time = 244.451475
+ 0: The maximum resident set size (KB) = 1243996
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 8 19:15:35 UTC 2024
-Elapsed time: 01h:12m:46s. Have a nice day!
+Fri Apr 12 16:48:07 UTC 2024
+Elapsed time: 01h:14m:24s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index f163758b64..d6b98a0857 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,18 +1,18 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-15c446f74134854e40dd2650d736dbec726082dd
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (383687e)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -24,19 +24,19 @@ Submodule hashes used in testing:
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (remotes/origin/HEAD)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (383687e)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (remotes/origin/HEAD)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
@@ -48,266 +48,266 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2375
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_118167
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [10:33, 10:12]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:31, 01:27](3045 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:51, 20:26]
-PASS -- TEST 'cpld_control_gfsv17_intel' [54:26, 01:23](1652 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:03, 01:48](1778 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [27:28, 01:15](907 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:46, 01:30](1626 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:02]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [11:47, 01:50](1675 MB)
-
-PASS -- COMPILE 's2swa_intel' [10:33, 10:10]
-PASS -- TEST 'cpld_control_p8_intel' [05:31, 01:22](3075 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:31, 01:39](3072 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [50:48, 01:35](3129 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [05:31, 01:44](3097 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [51:37, 01:30](3149 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [05:31, 01:10](3384 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [05:31, 01:15](3068 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 01:29](2995 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:31, 01:11](3076 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:31, 00:51](3037 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:33, 09:37]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:31, 00:49](1649 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:31, 01:00](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:30, 09:12]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:34, 01:00](1693 MB)
-
-PASS -- COMPILE 's2s_intel' [09:31, 09:13]
-PASS -- TEST 'cpld_control_c48_intel' [06:32, 00:42](2675 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:44, 14:38]
-PASS -- TEST 'cpld_control_p8_faster_intel' [00:19, 01:44](3074 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:45, 15:54]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:11, 00:54](1670 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [31:20, 01:23](972 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:37, 01:28](1636 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:44]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:46, 01:21](1685 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:32, 09:46]
-PASS -- TEST 'control_flake_intel' [01:12, 00:35](637 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [01:12, 00:56](587 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [01:12, 00:54](594 MB)
-PASS -- TEST 'control_latlon_intel' [01:12, 00:16](586 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [01:12, 01:10](589 MB)
-PASS -- TEST 'control_c48_intel' [01:11, 01:17](737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [01:11, 01:16](737 MB)
-PASS -- TEST 'control_c192_intel' [01:12, 00:40](706 MB)
-PASS -- TEST 'control_c384_intel' [01:16, 01:11](1014 MB)
-PASS -- TEST 'control_c384gdas_intel' [01:16, 02:17](1157 MB)
-PASS -- TEST 'control_stochy_intel' [01:12, 00:34](594 MB)
-PASS -- TEST 'control_stochy_restart_intel' [51:31, 00:21](392 MB)
-PASS -- TEST 'control_lndp_intel' [01:12, 01:14](590 MB)
-PASS -- TEST 'control_iovr4_intel' [58:57, 00:49](590 MB)
-PASS -- TEST 'control_iovr5_intel' [58:30, 01:11](588 MB)
-PASS -- TEST 'control_p8_intel' [57:57, 01:45](1562 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [57:56, 00:54](1573 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [57:56, 00:53](1572 MB)
-PASS -- TEST 'control_restart_p8_intel' [42:17, 01:50](757 MB)
-PASS -- TEST 'control_noqr_p8_intel' [56:30, 00:55](1557 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [41:08, 01:29](757 MB)
-PASS -- TEST 'control_decomp_p8_intel' [53:33, 01:23](1558 MB)
-PASS -- TEST 'control_2threads_p8_intel' [53:23, 00:50](1656 MB)
-PASS -- TEST 'control_p8_lndp_intel' [52:37, 00:59](1566 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [50:25, 01:25](1621 MB)
-PASS -- TEST 'control_p8_mynn_intel' [48:24, 00:56](1579 MB)
-PASS -- TEST 'merra2_thompson_intel' [48:14, 01:52](1575 MB)
-PASS -- TEST 'regional_control_intel' [47:42, 00:51](634 MB)
-PASS -- TEST 'regional_restart_intel' [38:54, 00:12](803 MB)
-PASS -- TEST 'regional_decomp_intel' [46:24, 00:52](629 MB)
-PASS -- TEST 'regional_2threads_intel' [46:19, 01:13](725 MB)
-PASS -- TEST 'regional_noquilt_intel' [46:12, 01:03](1168 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [45:23, 00:56](631 MB)
-PASS -- TEST 'regional_wofs_intel' [45:14, 00:38](1604 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:28, 08:01]
-PASS -- TEST 'regional_ifi_control_intel' [03:15, 01:00](630 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [03:15, 00:48](629 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [03:16, 00:36](720 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:31, 08:56]
-PASS -- TEST 'rap_control_intel' [44:15, 01:37](973 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [44:06, 00:36](1146 MB)
-PASS -- TEST 'rap_decomp_intel' [43:54, 01:07](976 MB)
-PASS -- TEST 'rap_2threads_intel' [43:43, 00:39](1062 MB)
-PASS -- TEST 'rap_restart_intel' [32:48, 01:44](845 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [42:54, 01:13](972 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [42:46, 01:32](972 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [31:25, 00:57](841 MB)
-PASS -- TEST 'hrrr_control_intel' [42:12, 01:06](967 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [41:10, 01:24](972 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [41:09, 01:55](1045 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [33:50, 00:35](801 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [40:28, 01:45](967 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [40:17, 00:56](1933 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [38:56, 01:19](1919 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:31, 08:23]
-PASS -- TEST 'control_csawmg_intel' [38:54, 00:27](664 MB)
-PASS -- TEST 'control_csawmgt_intel' [38:22, 00:43](658 MB)
-
-PASS -- COMPILE 'wam_intel' [08:28, 08:07]
-PASS -- TEST 'control_wam_intel' [38:03, 00:37](334 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:30, 08:42]
-PASS -- TEST 'control_p8_faster_intel' [37:56, 01:47](1570 MB)
-PASS -- TEST 'regional_control_faster_intel' [37:32, 00:28](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:19, 03:59]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [37:26, 01:01](761 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:37, 01:19](761 MB)
-PASS -- TEST 'control_stochy_debug_intel' [36:26, 00:53](763 MB)
-PASS -- TEST 'control_lndp_debug_intel' [34:52, 00:18](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [34:52, 00:49](799 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [33:13, 01:02](799 MB)
-PASS -- TEST 'control_ras_debug_intel' [32:39, 00:56](773 MB)
-PASS -- TEST 'control_diag_debug_intel' [32:35, 00:34](817 MB)
-PASS -- TEST 'control_debug_p8_intel' [32:24, 01:00](1590 MB)
-PASS -- TEST 'regional_debug_intel' [31:45, 01:01](673 MB)
-PASS -- TEST 'rap_control_debug_intel' [31:33, 00:12](1145 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [29:50, 00:36](1143 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [29:34, 00:58](1141 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [29:25, 00:51](1149 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:22, 00:51](1147 MB)
-PASS -- TEST 'rap_diag_debug_intel' [29:02, 01:01](1226 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:00, 00:50](1143 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [28:55, 00:39](1142 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [28:53, 00:39](1148 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [28:34, 00:25](1144 MB)
-PASS -- TEST 'rap_noah_debug_intel' [27:10, 00:13](1146 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [27:09, 01:00](1141 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:06, 00:52](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [27:02, 00:36](1137 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [26:29, 01:12](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [26:28, 00:41](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:38, 01:42](1148 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:26, 02:50]
-PASS -- TEST 'control_wam_debug_intel' [24:11, 00:18](374 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:06]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:00, 00:30](1020 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:19, 01:57](854 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:03, 02:03](851 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:00, 01:17](915 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:02, 02:26](906 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [21:51, 01:14](851 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:59, 01:25](750 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:21, 01:02](730 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:45, 10:20]
-PASS -- TEST 'conus13km_control_intel' [21:50, 01:03](1059 MB)
-PASS -- TEST 'conus13km_2threads_intel' [15:00, 00:54](1043 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [14:59, 00:15](939 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:04, 08:16]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 01:21](877 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:50, 02:59]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [12:27, 00:39](1020 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [12:27, 00:18](1019 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:27, 01:06](1116 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 01:00](789 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:28, 01:11](1085 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 01:05](1182 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [44:47, 02:56]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [12:14, 01:04](1045 MB)
-
-PASS -- COMPILE 'hafsw_intel' [52:03, 09:19]
-PASS -- TEST 'hafs_regional_atm_intel' [05:02, 01:25](675 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:02, 01:04](1025 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:00, 01:55](718 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [05:00, 01:54](757 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:36, 01:55](771 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [03:17, 01:06](443 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [02:31, 01:45](466 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [01:28, 00:48](340 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:37, 02:00](407 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [00:25, 01:21](475 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [57:46, 01:24](477 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:06, 01:33](539 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [56:16, 00:49](369 MB)
-PASS -- TEST 'gnv1_nested_intel' [55:26, 01:26](735 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [45:49, 03:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:15, 00:39](573 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [50:58, 09:33]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [05:05, 00:50](581 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:05, 00:43](754 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [51:02, 09:26]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:17, 01:31](751 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [49:57, 09:00]
-PASS -- TEST 'hafs_regional_docn_intel' [05:16, 02:03](714 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:16, 01:14](701 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [05:14, 01:08](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [41:41, 08:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:50, 00:23](749 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [54:08, 00:38](751 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:50, 00:53](638 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:50, 01:05](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:50, 00:09](640 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:50, 00:33](763 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:50, 00:29](763 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 00:41](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:51, 01:21](649 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:51, 01:11](629 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:50, 00:15](750 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:50, 00:38](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:50, 00:40](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [40:38, 08:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [55:12, 01:02](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 00:52]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [11:15, 00:50](272 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:15, 00:29](412 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:43, 00:59](412 MB)
-
-PASS -- COMPILE 'atml_intel' [10:32, 09:37]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [55:13, 01:50](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [55:10, 01:10](1605 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [34:12, 00:26](804 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:36, 08:38]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [54:11, 01:07](1612 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:40, 08:44]
-PASS -- TEST 'control_atmwav_intel' [54:09, 01:13](604 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:30, 08:35]
-PASS -- TEST 'atmaero_control_p8_intel' [54:09, 00:44](2920 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [53:43, 01:04](2979 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:06, 01:33](2990 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:30, 08:21]
-
-PASS -- COMPILE 'atmaq_debug_intel' [14:40, 03:01]
-PASS -- TEST 'regional_atmaq_debug_intel' [50:36, 01:10](4507 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [10:34, 10:14]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [00:08, 01:47](3047 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:44, 16:12]
+PASS -- TEST 'cpld_control_gfsv17_intel' [53:08, 02:03](1656 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:38, 01:21](1781 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [17:06, 01:34](905 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:39, 01:46](1626 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [06:23, 01:08](1676 MB)
+
+PASS -- COMPILE 's2swa_intel' [10:35, 10:17]
+PASS -- TEST 'cpld_control_p8_intel' [00:07, 01:17](3077 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:07, 01:50](3072 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [36:57, 01:43](3132 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [00:07, 01:00](3099 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [42:22, 01:46](3150 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [00:07, 01:34](3385 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [00:07, 01:22](3072 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [00:08, 01:27](2997 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [00:07, 01:17](3076 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [00:07, 00:54](3039 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:36, 10:52]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [59:05, 00:57](1647 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:05, 01:38](1698 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:32, 09:10]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:10, 01:01](1699 MB)
+
+PASS -- COMPILE 's2s_intel' [09:32, 09:14]
+PASS -- TEST 'cpld_control_c48_intel' [01:09, 00:44](2675 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:44, 15:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [54:57, 01:02](3073 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:46, 15:44]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:09, 00:38](1669 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:20, 00:33](971 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:54, 01:26](1636 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:38]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:24, 00:52](1693 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:12]
+PASS -- TEST 'control_flake_intel' [56:54, 01:12](635 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [56:54, 01:11](584 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:54, 01:06](592 MB)
+PASS -- TEST 'control_latlon_intel' [56:54, 00:55](586 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:54, 01:17](585 MB)
+PASS -- TEST 'control_c48_intel' [56:53, 00:44](737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [56:53, 00:51](741 MB)
+PASS -- TEST 'control_c192_intel' [56:54, 01:14](708 MB)
+PASS -- TEST 'control_c384_intel' [56:58, 01:33](1010 MB)
+PASS -- TEST 'control_c384gdas_intel' [56:58, 02:15](1159 MB)
+PASS -- TEST 'control_stochy_intel' [56:54, 00:17](597 MB)
+PASS -- TEST 'control_stochy_restart_intel' [39:56, 00:21](394 MB)
+PASS -- TEST 'control_lndp_intel' [56:54, 00:33](589 MB)
+PASS -- TEST 'control_iovr4_intel' [51:09, 00:48](587 MB)
+PASS -- TEST 'control_iovr5_intel' [50:08, 00:15](587 MB)
+PASS -- TEST 'control_p8_intel' [48:28, 01:44](1561 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [44:30, 01:03](1571 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [43:29, 01:54](1564 MB)
+PASS -- TEST 'control_restart_p8_intel' [31:46, 00:54](752 MB)
+PASS -- TEST 'control_noqr_p8_intel' [41:05, 01:17](1551 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [14:14, 01:25](758 MB)
+PASS -- TEST 'control_decomp_p8_intel' [41:03, 01:35](1561 MB)
+PASS -- TEST 'control_2threads_p8_intel' [40:15, 00:45](1652 MB)
+PASS -- TEST 'control_p8_lndp_intel' [39:35, 01:07](1561 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:03](1622 MB)
+PASS -- TEST 'control_p8_mynn_intel' [38:02, 01:16](1576 MB)
+PASS -- TEST 'merra2_thompson_intel' [37:51, 01:08](1568 MB)
+PASS -- TEST 'regional_control_intel' [37:50, 00:20](633 MB)
+PASS -- TEST 'regional_restart_intel' [27:53, 00:17](801 MB)
+PASS -- TEST 'regional_decomp_intel' [37:47, 01:02](635 MB)
+PASS -- TEST 'regional_2threads_intel' [37:41, 00:19](726 MB)
+PASS -- TEST 'regional_noquilt_intel' [36:48, 00:58](1165 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [36:15, 00:47](631 MB)
+PASS -- TEST 'regional_wofs_intel' [36:06, 01:04](1603 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:27, 08:00]
+PASS -- TEST 'regional_ifi_control_intel' [57:53, 00:24](631 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [57:53, 00:45](630 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [57:54, 01:12](721 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:30, 08:42]
+PASS -- TEST 'rap_control_intel' [34:53, 01:29](976 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:17, 01:14](1150 MB)
+PASS -- TEST 'rap_decomp_intel' [34:15, 01:27](977 MB)
+PASS -- TEST 'rap_2threads_intel' [33:42, 01:38](1060 MB)
+PASS -- TEST 'rap_restart_intel' [03:39, 00:58](843 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [31:33, 01:30](969 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:56, 00:43](970 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [00:26, 01:17](842 MB)
+PASS -- TEST 'hrrr_control_intel' [30:52, 01:32](963 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [29:55, 00:49](967 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [29:54, 01:42](1050 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:47, 00:27](799 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [28:37, 00:58](968 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [28:24, 01:21](1932 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:26, 00:48](1917 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:30, 08:22]
+PASS -- TEST 'control_csawmg_intel' [26:52, 00:57](664 MB)
+PASS -- TEST 'control_csawmgt_intel' [25:52, 01:01](657 MB)
+
+PASS -- COMPILE 'wam_intel' [08:27, 08:01]
+PASS -- TEST 'control_wam_intel' [25:16, 00:30](338 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:43]
+PASS -- TEST 'control_p8_faster_intel' [24:14, 00:52](1560 MB)
+PASS -- TEST 'regional_control_faster_intel' [22:09, 00:48](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 03:55]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:27, 00:58](758 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:20, 00:42](758 MB)
+PASS -- TEST 'control_stochy_debug_intel' [11:33, 00:38](766 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:51, 00:41](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:27, 00:31](801 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:11, 00:44](804 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:32, 00:28](778 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:52, 00:56](824 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:44, 01:06](1590 MB)
+PASS -- TEST 'regional_debug_intel' [03:38, 00:27](672 MB)
+PASS -- TEST 'rap_control_debug_intel' [03:27, 01:13](1146 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [03:13, 01:04](1137 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [02:12, 01:07](1144 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [01:22, 01:22](1142 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:04, 00:51](1146 MB)
+PASS -- TEST 'rap_diag_debug_intel' [59:42, 00:41](1230 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:37, 00:45](1147 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:35, 00:27](1144 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [58:24, 00:40](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:20, 00:41](1146 MB)
+PASS -- TEST 'rap_noah_debug_intel' [58:19, 00:48](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [57:49, 00:53](1144 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:14, 01:02](1148 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [57:08, 00:44](1136 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [56:33, 01:07](1148 MB)
+PASS -- TEST 'rap_flake_debug_intel' [55:56, 00:32](1142 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:52, 01:57](1153 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:28, 02:51]
+PASS -- TEST 'control_wam_debug_intel' [55:31, 00:27](373 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:03, 08:13]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:23, 01:02](1019 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:14, 01:26](855 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:12, 01:37](849 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [55:08, 01:10](909 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:54, 01:34](902 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:48, 01:25](850 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:09, 01:24](749 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:31, 00:25](729 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:59, 10:14]
+PASS -- TEST 'conus13km_control_intel' [37:00, 00:44](1057 MB)
+PASS -- TEST 'conus13km_2threads_intel' [30:01, 00:53](1042 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [29:59, 01:08](942 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:46, 08:12]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:12, 00:35](877 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:43, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:14, 01:07](1027 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:14, 00:13](1025 MB)
+PASS -- TEST 'conus13km_debug_intel' [43:14, 00:47](1119 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [43:14, 00:39](793 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [43:15, 00:43](1089 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:14, 00:36](1184 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:32, 03:00]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:08, 01:09](1047 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:51, 09:23]
+PASS -- TEST 'hafs_regional_atm_intel' [36:52, 01:21](677 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:52, 00:55](1028 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:50, 02:32](724 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:40](764 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:51, 01:15](784 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:50, 01:39](443 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [36:51, 02:05](467 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [36:51, 00:54](342 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:54, 02:33](407 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [36:50, 00:47](475 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [36:50, 01:05](475 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:52, 00:51](544 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:51, 00:24](371 MB)
+PASS -- TEST 'gnv1_nested_intel' [36:51, 01:29](737 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:38, 03:16]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:05, 01:19](575 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:50, 09:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:43, 00:49](592 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:37, 01:15](752 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:45, 09:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:51, 01:30](753 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:46, 08:55]
+PASS -- TEST 'hafs_regional_docn_intel' [35:19, 01:39](712 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:18, 01:14](699 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:12, 01:09](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [53:02, 09:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:47, 00:57](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [22:00, 00:14](752 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [36:47, 00:15](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:47, 01:08](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [32:30, 00:16](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:59, 00:54](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:54, 00:19](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:34, 00:57](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:30, 01:19](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:25, 00:42](631 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:02, 00:12](747 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [22:53, 00:51](2020 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [21:43, 00:41](2022 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:28, 08:45]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:41, 00:36](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:01]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:56, 01:07](274 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [41:56, 01:13](411 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [20:16, 01:07](412 MB)
+
+PASS -- COMPILE 'atml_intel' [10:33, 10:15]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:13, 01:28](1605 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [18:51, 01:35](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:14, 00:19](809 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:34, 08:50]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [18:41, 01:39](1610 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:30, 08:43]
+PASS -- TEST 'control_atmwav_intel' [18:23, 00:59](603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:28, 08:31]
+PASS -- TEST 'atmaero_control_p8_intel' [17:44, 01:03](2916 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [17:30, 01:35](2977 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:22, 01:15](2989 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:29, 08:21]
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:17, 03:01]
+PASS -- TEST 'regional_atmaq_debug_intel' [15:11, 00:56](4493 MB)
SYNOPSIS:
-Starting Date/Time: 20240410 18:43:44
-Ending Date/Time: 20240410 20:45:11
-Total Time: 02h:01m:47s
+Starting Date/Time: 20240411 18:49:04
+Ending Date/Time: 20240411 21:11:18
+Total Time: 02h:22m:34s
Compiles Completed: 37/37
Tests Completed: 176/176
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 2fe824266c..f6ad401817 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,18 +1,18 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,350 +48,271 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_47655
+COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_92899
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:33, 19:36]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:55, 04:55](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:32, 20:49]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:14, 13:43](1691 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:43, 15:09](1827 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:37, 07:14](962 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:09, 15:42](1665 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:28, 09:30]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:03, 21:18](1700 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:34, 19:32]
-PASS -- TEST 'cpld_control_p8_intel' [09:04, 05:38](3094 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:36](3093 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:41, 03:17](3153 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:04, 05:38](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:17](3178 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:53, 05:33](3092 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:28, 04:36](3388 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:06, 05:35](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:16, 08:51](3638 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 06:08](3618 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [27:04, 09:50](4344 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:59, 07:02](4652 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:37, 05:16](3071 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:33, 19:02]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:55, 04:11](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:07, 04:14](1733 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:28, 09:20]
-PASS -- TEST 'cpld_debug_p8_intel' [10:19, 07:40](3155 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:29, 08:48]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:19](1712 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:32, 14:29]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:08, 04:15](1727 MB)
-
-PASS -- COMPILE 's2s_intel' [15:32, 14:24]
-PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:37](2672 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:34, 23:09]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:33, 05:29](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:32, 19:52]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:08, 14:01](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:29, 07:19](1015 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:54, 16:01](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:24, 08:58]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:56, 22:56](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:28, 12:25]
-PASS -- TEST 'control_flake_intel' [04:54, 03:24](673 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:47, 02:04](621 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:01, 02:08](628 MB)
-PASS -- TEST 'control_latlon_intel' [03:50, 02:05](620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:07](623 MB)
-PASS -- TEST 'control_c48_intel' [06:55, 05:16](740 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:53, 05:14](734 MB)
-PASS -- TEST 'control_c192_intel' [09:31, 07:51](739 MB)
-PASS -- TEST 'control_c384_intel' [14:43, 08:14](1063 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:05, 07:20](1206 MB)
-PASS -- TEST 'control_stochy_intel' [02:47, 01:24](629 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:47, 00:54](443 MB)
-PASS -- TEST 'control_lndp_intel' [02:44, 01:21](625 MB)
-PASS -- TEST 'control_iovr4_intel' [03:57, 02:06](622 MB)
-PASS -- TEST 'control_iovr5_intel' [03:57, 02:05](625 MB)
-PASS -- TEST 'control_p8_intel' [04:33, 02:27](1597 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:34, 02:28](1601 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:55, 02:27](1595 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:42, 01:26](801 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:52, 02:30](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:22](805 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:31](1601 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:39, 04:23](1604 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:16](1661 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:49, 02:31](1609 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:58, 02:58](1608 MB)
-PASS -- TEST 'regional_control_intel' [06:19, 04:29](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:18, 02:32](800 MB)
-PASS -- TEST 'regional_decomp_intel' [06:15, 04:45](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:15, 04:25](1158 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:29](632 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:12, 04:30](634 MB)
-PASS -- TEST 'regional_wofs_intel' [07:16, 05:39](1606 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:25, 11:05]
-PASS -- TEST 'rap_control_intel' [08:29, 06:06](1008 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:52, 03:41](1188 MB)
-PASS -- TEST 'rap_decomp_intel' [08:16, 06:23](1008 MB)
-PASS -- TEST 'rap_restart_intel' [05:22, 03:12](879 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:12, 06:06](1004 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:22](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:37](881 MB)
-PASS -- TEST 'hrrr_control_intel' [05:22, 03:11](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:17](1002 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 02:48](1093 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:49, 01:45](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:01, 05:57](998 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:47, 07:22](1959 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:08](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:26, 10:09]
-PASS -- TEST 'control_csawmg_intel' [07:25, 05:51](693 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:19, 05:43](698 MB)
-PASS -- TEST 'control_ras_intel' [04:37, 02:53](660 MB)
-
-PASS -- COMPILE 'wam_intel' [10:25, 09:26]
-PASS -- TEST 'control_wam_intel' [03:33, 01:53](381 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:28, 12:36]
-PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1591 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:37]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:33](795 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:39, 02:34](798 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:35, 02:50](797 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:36, 02:34](798 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:19, 03:56](840 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:06, 03:56](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:44, 02:35](806 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:06, 02:43](855 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:08, 02:37](1624 MB)
-PASS -- TEST 'regional_debug_intel' [18:11, 16:13](666 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:40, 04:38](1182 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:44, 04:35](1175 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:50, 04:43](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:41, 04:41](1184 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:38](1182 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:39, 04:51](1266 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:52, 04:45](1181 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:52, 04:48](1185 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:51, 04:44](1185 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:49, 04:42](1180 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:51, 04:33](1185 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:49, 04:47](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:44, 07:30](1183 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 04:35](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:45](1189 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:49, 04:55](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:15, 08:06](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:18, 05:21]
-PASS -- TEST 'control_wam_debug_intel' [05:34, 04:37](418 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 09:39]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:49, 03:30](1061 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:08, 05:07](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:25, 02:46](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:23, 02:55](886 MB)
-FAIL TO RUN -- TEST 'rap_restart_dyn32_phy32_intel' [, ]( MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 01:32](779 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:29]
-PASS -- TEST 'conus13km_control_intel' [03:52, 01:52](1085 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:56, 00:59](1088 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:50, 01:07](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 09:49]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:09, 03:35](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:18, 05:34]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:44, 04:37](1061 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:27](1056 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:09, 13:20](1133 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:25](823 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 13:16](1200 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:26]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:45, 04:36](1086 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:30, 15:56]
-PASS -- TEST 'hafs_regional_atm_intel' [08:50, 04:32](721 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 05:03](1069 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 06:24](783 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [12:48, 10:53](797 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:04](820 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:39, 04:40](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:58, 05:44](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:16, 02:20](393 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 06:17](461 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:18](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:36, 03:03](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:48](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:42, 01:15](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:10, 03:20](789 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:01, 12:06](613 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:28, 19:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:13, 07:09](636 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:47, 07:08](691 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:30, 16:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:35, 05:20](680 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:24, 14:07]
-PASS -- TEST 'hafs_regional_docn_intel' [07:41, 05:35](751 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:51, 05:37](739 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:25, 16:12](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:23, 07:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:29](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:58, 01:33](748 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:39, 02:21](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:42, 02:24](645 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:23](645 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:46, 02:29](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:20](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 05:41](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:02, 05:42](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:29](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:47, 03:54](1955 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:40, 03:55](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:02]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:06](733 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:23, 07:41]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:29](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:24, 02:23]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:47, 01:11](304 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:07](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:46](452 MB)
-
-PASS -- COMPILE 'atml_intel' [13:26, 13:01]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:52, 06:23](1644 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:53, 06:20](1637 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:23, 03:18](849 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:22, 12:32]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:30, 01:32](1635 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:20, 12:36]
-PASS -- TEST 'control_atmwav_intel' [03:04, 01:30](638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:19, 11:03]
-PASS -- TEST 'atmaero_control_p8_intel' [07:02, 03:39](2949 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:13](2998 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:43, 04:31](3012 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:24, 10:51]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:09]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:49, 22:05](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:24, 20:18]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 05:02](3078 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:27, 20:57]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:04, 13:49](1690 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:24, 15:16](1822 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:22](964 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:04, 15:50](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:24, 10:03]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:25, 21:27](1704 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:24, 20:06]
+PASS -- TEST 'cpld_control_p8_intel' [09:42, 05:42](3094 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:51, 05:45](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:21, 03:23](3151 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:42, 05:45](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 03:29](3177 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3092 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:12, 04:42](3385 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:41](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:15, 09:03](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:47, 06:12](3616 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [30:56, 10:11](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:44, 07:28](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 05:23](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:26, 19:30]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:17, 04:16](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:22](1735 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:16, 10:02]
+PASS -- TEST 'cpld_debug_p8_intel' [10:17, 07:53](3155 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:24, 09:22]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:21](1709 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:24, 14:39]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:24](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [15:18, 15:03]
+PASS -- TEST 'cpld_control_c48_intel' [08:21, 06:44](2666 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:58]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 05:38](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [21:23, 20:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:08, 14:11](1708 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 07:30](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 16:03](1670 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:25, 09:29]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:18, 22:53](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:27, 13:29]
+PASS -- TEST 'control_flake_intel' [04:56, 03:31](671 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 02:08](623 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:14](626 MB)
+PASS -- TEST 'control_latlon_intel' [03:47, 02:11](619 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:14](624 MB)
+PASS -- TEST 'control_c48_intel' [06:54, 05:17](736 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:55, 05:15](734 MB)
+PASS -- TEST 'control_c192_intel' [10:08, 07:56](740 MB)
+PASS -- TEST 'control_c384_intel' [15:37, 08:31](1058 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:02, 07:43](1199 MB)
+PASS -- TEST 'control_stochy_intel' [02:46, 01:28](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:44, 01:00](441 MB)
+PASS -- TEST 'control_lndp_intel' [02:50, 01:25](628 MB)
+PASS -- TEST 'control_iovr4_intel' [03:53, 02:11](623 MB)
+PASS -- TEST 'control_iovr5_intel' [03:42, 02:08](621 MB)
+PASS -- TEST 'control_p8_intel' [04:43, 02:34](1595 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:37](1599 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:31](1603 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:35, 01:29](798 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:56, 02:36](1586 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:25](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:37](1595 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1601 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 03:24](1656 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:57, 02:44](1608 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:55, 03:06](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:12, 04:36](629 MB)
+PASS -- TEST 'regional_restart_intel' [04:17, 02:31](799 MB)
+PASS -- TEST 'regional_decomp_intel' [06:12, 04:51](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:09, 04:31](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:35](626 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:05, 04:36](632 MB)
+PASS -- TEST 'regional_wofs_intel' [07:06, 05:40](1603 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:19, 11:39]
+PASS -- TEST 'rap_control_intel' [08:35, 06:07](1006 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:58](1193 MB)
+PASS -- TEST 'rap_decomp_intel' [08:41, 06:28](1006 MB)
+PASS -- TEST 'rap_restart_intel' [05:28, 03:12](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:26, 06:07](1003 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:24, 06:26](1009 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:33](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:31, 03:18](1002 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:28, 03:21](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 02:50](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:00, 01:48](833 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:14, 05:59](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:42, 07:19](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:56, 07:07](1953 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:24, 10:45]
+PASS -- TEST 'control_csawmg_intel' [08:26, 05:54](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:20, 05:50](696 MB)
+PASS -- TEST 'control_ras_intel' [03:56, 02:53](657 MB)
+
+PASS -- COMPILE 'wam_intel' [11:19, 09:56]
+PASS -- TEST 'control_wam_intel' [03:36, 01:54](387 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:20, 13:05]
+PASS -- TEST 'control_p8_faster_intel' [05:00, 02:23](1597 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:04, 04:22](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 09:05]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:34](798 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:37](794 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:49, 02:52](801 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:35](802 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:20, 04:03](839 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:54](839 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:44, 02:40](807 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:39, 02:40](858 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:16, 02:37](1623 MB)
+PASS -- TEST 'regional_debug_intel' [17:14, 16:02](665 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:39, 04:45](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:36](1179 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:45](1184 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:42](1182 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:35, 04:42](1183 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:12, 04:54](1262 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:44](1184 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:40, 04:55](1185 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:48](1182 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:49](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:54, 04:42](1177 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:39, 04:40](1184 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:40](1181 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:36](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 05:36](1185 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:43](1179 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:25, 08:00](1181 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:20, 06:02]
+PASS -- TEST 'control_wam_debug_intel' [05:43, 04:40](426 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:20, 10:13]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:26, 03:37](1056 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:09](885 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:48](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:57](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:54](797 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:36](778 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:15, 12:12]
+PASS -- TEST 'conus13km_control_intel' [04:16, 01:52](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:06](1085 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:10](978 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:14, 10:24]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:19, 03:39](911 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:18, 06:24]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:48, 04:37](1058 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:29](1057 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:53, 13:22](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:52, 13:30](821 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 13:47](1207 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:57]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:46](1081 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:23, 16:46]
+PASS -- TEST 'hafs_regional_atm_intel' [07:07, 04:42](720 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 05:18](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:42](779 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:03](796 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:33, 12:08](820 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 04:37](479 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:53, 05:51](491 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:15, 02:28](393 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:17, 06:21](459 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:18, 03:19](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:15](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:04](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:20](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:37, 03:29](786 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:14, 07:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:04](612 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:07](634 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:09, 07:13](692 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:21, 17:28]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:17, 05:26](676 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:22, 14:46]
+PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:43](755 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:53, 05:41](739 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 16:16](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:18, 08:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:43, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:36](737 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:39, 02:30](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:29](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:30](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:30](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:39](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:21](643 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:51, 05:49](689 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:44, 05:46](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:59](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 04:04](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:27]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:07](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](750 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:28]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:56, 01:20](311 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:49, 01:11](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:35, 00:47](453 MB)
+
+PASS -- COMPILE 'atml_intel' [14:20, 13:30]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:39, 07:40](1631 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:34, 07:20](1639 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:42](855 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:20, 13:13]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1633 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:25, 13:11]
+PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 11:39]
+PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:40](2950 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:27](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:40](3009 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:20, 11:12]
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:23, 06:46]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:02, 22:21](4532 MB)
SYNOPSIS:
-Starting Date/Time: 20240408 15:23:08
-Ending Date/Time: 20240408 16:51:29
-Total Time: 01h:29m:06s
+Starting Date/Time: 20240411 14:32:19
+Ending Date/Time: 20240411 16:01:58
+Total Time: 01h:30m:40s
Compiles Completed: 39/39
-Tests Completed: 174/175
-Failed Tests:
-* TEST rap_restart_dyn32_phy32_intel: FAIL TO RUN
--- LOG: /glade/work/zshrader/rt-2145/tests/logs/log_derecho/run_rap_restart_dyn32_phy32_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_108573
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:43]
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:03, 05:09](884 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 03:54](797 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240409 06:22:16
-Ending Date/Time: 20240409 06:46:34
-Total Time: 00h:24m:26s
-Compiles Completed: 1/1
-Tests Completed: 2/2
+Tests Completed: 175/175
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index c34b8d1f16..a23e9e8eff 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,18 +1,18 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,277 +48,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_175164
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_65366
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [24:15, 22:29]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 07:51](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:12, 25:47]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:10, 14:27](1693 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:57](1811 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 06:48](946 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:57, 15:27](1663 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:10, 15:38]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 24:04](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:11, 19:59]
-PASS -- TEST 'cpld_control_p8_intel' [13:20, 09:21](3096 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:45, 08:21](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:25, 05:45](3155 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:20, 09:10](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [38:11, 06:24](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:08, 06:59](3409 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:13, 08:34](3094 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:18](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:45, 08:18](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:45, 10:36](3265 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:21, 07:35](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:00, 13:26](4032 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:34, 09:25](4343 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:10, 08:12](3066 MB)
-
-PASS -- COMPILE 's2sw_intel' [22:15, 20:58]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:51, 05:02](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:51, 05:29](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [18:13, 16:12]
-PASS -- TEST 'cpld_debug_p8_intel' [14:43, 10:32](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:05]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:47, 06:12](1697 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [20:10, 18:43]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:24](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [19:13, 17:16]
-PASS -- TEST 'cpld_control_c48_intel' [09:27, 06:54](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [26:14, 24:12]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:18, 08:34](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [26:15, 24:28]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:45, 15:49](1704 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:54, 07:42](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 18:06](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 13:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:13, 27:01](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:34]
-PASS -- TEST 'control_flake_intel' [06:02, 03:55](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:35, 02:46](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 02:49](627 MB)
-PASS -- TEST 'control_latlon_intel' [05:10, 02:42](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:34, 02:59](622 MB)
-PASS -- TEST 'control_c48_intel' [08:42, 05:41](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:41, 05:36](727 MB)
-PASS -- TEST 'control_c192_intel' [11:27, 09:03](739 MB)
-PASS -- TEST 'control_c384_intel' [20:25, 16:37](1041 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:27, 14:24](1184 MB)
-PASS -- TEST 'control_stochy_intel' [05:10, 02:12](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:04](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:04, 02:00](628 MB)
-PASS -- TEST 'control_iovr4_intel' [06:11, 03:07](623 MB)
-PASS -- TEST 'control_iovr5_intel' [05:09, 02:54](623 MB)
-PASS -- TEST 'control_p8_intel' [07:29, 03:40](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:51, 03:50](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:38, 03:35](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:24, 01:55](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:29, 03:32](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:45](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:28, 03:48](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:26, 03:00](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:08, 05:51](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:37, 04:23](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:36, 03:35](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:32, 04:25](1615 MB)
-PASS -- TEST 'regional_control_intel' [07:05, 04:48](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:46, 02:38](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:53, 04:59](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:54, 02:59](766 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:53, 05:08](1154 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:05](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 04:59](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:55, 06:15](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:13, 14:12]
-PASS -- TEST 'rap_control_intel' [10:34, 07:12](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:02](1189 MB)
-PASS -- TEST 'rap_decomp_intel' [10:28, 07:08](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:39, 06:17](1095 MB)
-PASS -- TEST 'rap_restart_intel' [06:26, 03:31](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:59, 07:23](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 07:11](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:10, 05:16](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:19, 03:59](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:20, 04:05](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:34, 03:07](1086 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:28](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:15, 07:23](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:40, 08:14](1966 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:48, 07:57](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:13, 13:27]
-PASS -- TEST 'control_csawmg_intel' [08:39, 06:44](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:51, 06:37](691 MB)
-PASS -- TEST 'control_ras_intel' [05:47, 03:37](657 MB)
-
-PASS -- COMPILE 'wam_intel' [15:10, 13:59]
-PASS -- TEST 'control_wam_intel' [04:37, 02:17](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:13, 16:47]
-PASS -- TEST 'control_p8_faster_intel' [06:56, 03:31](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:50, 04:35](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [15:09, 13:19]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:04](779 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:52](783 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:16](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:32, 03:06](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:35](826 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:51, 04:27](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:51, 03:01](798 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:01, 03:21](845 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:23, 03:43](1622 MB)
-PASS -- TEST 'regional_debug_intel' [19:32, 16:32](637 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:50, 05:35](1168 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:49, 05:14](1166 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:08, 05:16](1168 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 05:23](1169 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:00, 05:17](1169 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:47, 05:15](1253 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:44, 05:21](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:43, 05:25](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:40, 05:20](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:42, 05:17](1168 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:42, 05:00](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:34, 05:27](1168 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 08:09](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 04:57](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 06:34](1170 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:26](1168 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:23, 08:44](1171 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:08, 09:55]
-PASS -- TEST 'control_wam_debug_intel' [07:32, 05:23](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:09, 14:41]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:15, 04:11](1044 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 06:05](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 03:39](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 05:43](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 02:56](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:26, 04:07](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:17, 04:48](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 02:15](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:09, 15:12]
-PASS -- TEST 'conus13km_control_intel' [07:00, 02:28](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:02, 01:42](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 02:04](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 14:25]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:55, 04:41](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:13, 10:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:14, 05:12](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:13](1046 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:09, 14:19](1126 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:09, 14:14](803 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:59, 08:34](1106 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:58, 14:11](1193 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:31]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:23](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:14, 18:53]
-PASS -- TEST 'hafs_regional_atm_intel' [08:53, 05:29](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:46, 04:37](1061 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:46, 07:43](754 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:52](789 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:32, 12:57](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:49, 05:22](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:46, 06:45](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:46, 03:11](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:25, 08:18](433 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:14, 04:31](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 03:46](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:22, 04:44](574 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:46, 02:03](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:39, 04:13](763 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:09, 12:31]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:55, 13:29](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:10, 19:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:21, 07:59](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:20, 07:56](789 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:14, 19:38]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:15, 06:12](789 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [19:14, 17:32]
-PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:32](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:31](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:43, 20:03](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:12, 13:24]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 02:41](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 02:32](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:28, 02:25](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 02:33](641 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:30, 02:38](757 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:38](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:24](643 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:40, 06:10](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:32, 06:08](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 02:35](745 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:32, 04:35](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:30, 04:35](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [12:11, 10:13]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:25](727 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 13:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 02:34](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:06, 04:42]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:00, 02:15](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:37](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 02:38](456 MB)
-
-PASS -- COMPILE 'atml_intel' [20:10, 18:44]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:06, 08:46](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:06, 08:41](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:06, 05:15](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [19:18, 17:54]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:15, 02:29](1649 MB)
-
-PASS -- COMPILE 'atmwm_intel' [18:09, 16:33]
-PASS -- TEST 'control_atmwav_intel' [06:03, 02:02](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:19, 15:56]
-PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:36](2942 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:23, 07:20](3011 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:06, 07:20](3017 MB)
-
-PASS -- COMPILE 'atmaq_intel' [17:23, 16:06]
-
-PASS -- COMPILE 'atmaq_debug_intel' [14:09, 12:42]
-PASS -- TEST 'regional_atmaq_debug_intel' [21:41, 18:18](4481 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [23:11, 21:40]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 08:34](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:16, 25:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:34, 14:27](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 14:50](1811 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 06:59](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:31, 15:52](1663 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:45]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:39, 24:32](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [41:15, 39:34]
+PASS -- TEST 'cpld_control_p8_intel' [12:04, 08:40](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:06, 08:58](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [10:40, 06:13](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:53, 09:18](3122 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:53, 06:20](3176 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:44, 07:18](3410 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:05, 08:43](3094 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:16, 08:00](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:14, 08:43](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 11:09](3270 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:30, 07:58](3607 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:08, 13:41](4035 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:42, 09:38](4343 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:18, 08:39](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:13, 19:59]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 05:13](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 05:46](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [17:09, 15:29]
+PASS -- TEST 'cpld_debug_p8_intel' [13:51, 10:16](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:26, 08:45]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 06:28](1697 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:28, 14:31]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:53](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [19:13, 18:01]
+PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:56](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [26:12, 24:13]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:50, 08:48](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:03]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:42, 15:14](1705 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:04, 08:18](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:56, 18:36](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 13:42]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:37, 28:01](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:14, 16:43]
+PASS -- TEST 'control_flake_intel' [09:34, 04:06](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:00, 02:57](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:36, 03:07](626 MB)
+PASS -- TEST 'control_latlon_intel' [07:36, 02:36](623 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:01, 03:06](623 MB)
+PASS -- TEST 'control_c48_intel' [11:24, 05:42](722 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:22, 05:38](722 MB)
+PASS -- TEST 'control_c192_intel' [15:14, 09:08](739 MB)
+PASS -- TEST 'control_c384_intel' [23:29, 17:00](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [23:01, 14:52](1183 MB)
+PASS -- TEST 'control_stochy_intel' [07:36, 02:15](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:35](430 MB)
+PASS -- TEST 'control_lndp_intel' [07:23, 02:09](628 MB)
+PASS -- TEST 'control_iovr4_intel' [08:47, 03:01](623 MB)
+PASS -- TEST 'control_iovr5_intel' [08:48, 03:05](623 MB)
+PASS -- TEST 'control_p8_intel' [10:18, 03:22](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:37, 03:49](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:25, 03:51](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:16, 01:48](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:18, 03:23](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:30, 01:50](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [12:10, 04:01](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:22, 03:13](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:37, 05:58](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 04:13](1659 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:36, 03:55](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:25, 04:11](1615 MB)
+PASS -- TEST 'regional_control_intel' [10:21, 05:11](615 MB)
+PASS -- TEST 'regional_restart_intel' [05:07, 02:56](789 MB)
+PASS -- TEST 'regional_decomp_intel' [09:56, 04:58](615 MB)
+PASS -- TEST 'regional_2threads_intel' [06:09, 03:07](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:17, 04:49](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:18, 04:54](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 05:12](615 MB)
+PASS -- TEST 'regional_wofs_intel' [09:06, 06:17](1590 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:11, 15:17]
+PASS -- TEST 'rap_control_intel' [10:04, 07:31](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:22](1186 MB)
+PASS -- TEST 'rap_decomp_intel' [10:09, 07:24](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:16, 06:19](1099 MB)
+PASS -- TEST 'rap_restart_intel' [06:29, 03:34](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:55, 06:57](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 07:12](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:13](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:59, 04:05](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:19, 03:54](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 03:16](1081 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:16](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:49, 07:15](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:39, 08:21](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:39, 08:00](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:12, 14:02]
+PASS -- TEST 'control_csawmg_intel' [08:58, 06:49](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:56, 06:50](691 MB)
+PASS -- TEST 'control_ras_intel' [05:47, 03:33](657 MB)
+
+PASS -- COMPILE 'wam_intel' [16:14, 14:11]
+PASS -- TEST 'control_wam_intel' [05:00, 02:10](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 18:30]
+PASS -- TEST 'control_p8_faster_intel' [06:46, 03:50](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:51, 05:06](615 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 12:32]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:05, 03:14](778 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:12, 03:36](783 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:43, 03:37](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:40, 03:29](790 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:39](826 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:44, 05:03](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:31, 03:36](796 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:35, 03:24](844 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:58, 04:14](1622 MB)
+PASS -- TEST 'regional_debug_intel' [20:29, 16:47](637 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:46, 05:16](1170 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:15](1166 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 05:27](1169 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:23, 05:38](1168 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:09, 05:31](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:01, 05:20](1253 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:53, 05:13](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:10](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:41, 05:07](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:58, 05:28](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:12, 05:04](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:11](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:16](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:33, 05:38](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 06:16](1170 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:44, 05:29](1168 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 08:56](1171 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [12:08, 10:08]
+PASS -- TEST 'control_wam_debug_intel' [09:54, 05:30](394 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:24]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:21, 03:49](1050 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 05:55](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:18, 03:28](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:19, 05:24](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:59](937 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:06, 03:41](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:06, 04:34](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:45](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:13, 17:47]
+PASS -- TEST 'conus13km_control_intel' [06:20, 03:18](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:51, 01:15](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:45, 01:59](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:14, 13:56]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:20, 04:44](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 09:36]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:36](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 04:59](1046 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:47, 14:21](1127 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 14:21](802 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 08:24](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:30, 14:22](1193 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:43]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:56, 05:09](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [21:10, 19:52]
+PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:27](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:43](1061 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:54, 07:58](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:22, 11:50](790 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:46, 12:56](804 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:30, 05:24](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:45](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 02:55](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:10, 08:19](434 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:57](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:40](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:07, 04:50](576 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:39, 01:49](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:51, 04:27](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [17:10, 15:21]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:25, 13:25](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:35]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 07:46](614 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 08:06](788 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:18, 19:51]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:07](789 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:11, 18:27]
+PASS -- TEST 'hafs_regional_docn_intel' [11:08, 06:34](748 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:02, 06:32](729 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:16](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:27, 01:39](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:29, 02:27](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:29](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:35, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:26](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:17](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:38](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:43](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:00, 04:37](2012 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [14:09, 12:26]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:40](741 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [15:11, 13:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:43](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [07:11, 05:14]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:08, 04:45](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:23, 02:26](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:51, 01:20](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:09, 15:52]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:28, 08:50](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:45, 09:02](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:00, 04:46](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:14, 15:33]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:30, 03:13](1650 MB)
+
+PASS -- COMPILE 'atmwm_intel' [53:19, 51:58]
+PASS -- TEST 'control_atmwav_intel' [04:02, 02:02](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [17:11, 15:53]
+PASS -- TEST 'atmaero_control_p8_intel' [10:37, 07:24](2942 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:55, 07:57](3010 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:46](3017 MB)
+
+PASS -- COMPILE 'atmaq_intel' [15:23, 14:01]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:08, 10:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:45, 19:14](4480 MB)
SYNOPSIS:
-Starting Date/Time: 20240409 01:09:06
-Ending Date/Time: 20240409 02:50:29
-Total Time: 01h:44m:00s
+Starting Date/Time: 20240411 15:48:21
+Ending Date/Time: 20240411 17:57:51
+Total Time: 02h:10m:38s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 0dcf6fd852..bf7ba55e79 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,15 +1,15 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -25,428 +25,373 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1447120
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_569665
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:55]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:24, 05:30](3187 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:29]
-PASS -- TEST 'cpld_control_gfsv17_intel' [38:07, 17:03](1763 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [36:20, 17:47](1985 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [26:07, 08:03](1123 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:02, 19:14](1651 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:34]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:03, 22:30](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:09, 12:54]
-PASS -- TEST 'cpld_control_p8_intel' [30:26, 05:48](3218 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:34, 05:46](3195 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [32:36, 03:23](3270 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [30:26, 05:47](3223 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [33:29, 03:26](3293 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [16:12, 05:25](3562 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [30:26, 05:48](3220 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:19, 04:44](3047 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:28, 05:50](3221 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [19:10, 10:09](3348 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [46:39, 06:13](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [29:20, 09:21](4128 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:25, 06:07](4378 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [26:19, 05:18](3192 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:09, 12:12]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [20:14, 04:45](1762 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [28:21, 04:19](1771 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:35]
-PASS -- TEST 'cpld_debug_p8_intel' [11:09, 08:21](3264 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:18]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:01, 05:37](1745 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:09, 11:25]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:21](1787 MB)
-
-PASS -- COMPILE 's2s_intel' [13:10, 11:28]
-PASS -- TEST 'cpld_control_c48_intel' [11:39, 09:21](2828 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:11, 16:30]
-PASS -- TEST 'cpld_control_p8_faster_intel' [28:18, 05:33](3180 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:07]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:01, 17:17](1781 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:07, 08:09](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:03, 19:43](1689 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:13]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:53, 24:45](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:29]
-PASS -- TEST 'control_flake_intel' [27:24, 03:27](704 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [25:27, 02:23](660 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:29, 02:29](663 MB)
-PASS -- TEST 'control_latlon_intel' [25:23, 02:26](656 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:33, 02:27](659 MB)
-PASS -- TEST 'control_c48_intel' [11:21, 06:23](866 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [27:27, 06:23](877 MB)
-PASS -- TEST 'control_c192_intel' [33:40, 09:08](854 MB)
-PASS -- TEST 'control_c384_intel' [33:27, 09:03](1291 MB)
-PASS -- TEST 'control_c384gdas_intel' [25:27, 07:56](1400 MB)
-PASS -- TEST 'control_stochy_intel' [15:20, 01:38](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [29:29, 00:59](503 MB)
-PASS -- TEST 'control_lndp_intel' [16:20, 01:32](661 MB)
-PASS -- TEST 'control_iovr4_intel' [16:20, 02:24](655 MB)
-PASS -- TEST 'control_iovr5_intel' [41:32, 02:26](656 MB)
-PASS -- TEST 'control_p8_intel' [37:01, 02:57](1625 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [36:04, 02:56](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [34:59, 02:49](1635 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:43, 01:35](900 MB)
-PASS -- TEST 'control_noqr_p8_intel' [34:52, 02:52](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:34](934 MB)
-PASS -- TEST 'control_decomp_p8_intel' [33:52, 02:59](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [31:59, 02:44](1720 MB)
-PASS -- TEST 'control_p8_lndp_intel' [33:57, 05:12](1632 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [33:02, 03:54](1689 MB)
-PASS -- TEST 'control_p8_mynn_intel' [32:05, 02:57](1647 MB)
-PASS -- TEST 'merra2_thompson_intel' [32:05, 03:28](1636 MB)
-PASS -- TEST 'regional_control_intel' [34:49, 05:10](852 MB)
-PASS -- TEST 'regional_restart_intel' [06:35, 02:43](1022 MB)
-PASS -- TEST 'regional_decomp_intel' [33:43, 05:32](850 MB)
-PASS -- TEST 'regional_2threads_intel' [31:42, 03:14](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [33:45, 05:09](1362 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [35:45, 05:06](852 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [35:40, 05:07](848 MB)
-PASS -- TEST 'regional_wofs_intel' [35:40, 06:45](1910 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:09, 10:28]
-PASS -- TEST 'rap_control_intel' [36:37, 07:41](1114 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:03, 04:12](1293 MB)
-PASS -- TEST 'rap_decomp_intel' [32:36, 08:07](1037 MB)
-PASS -- TEST 'rap_2threads_intel' [31:41, 07:14](1181 MB)
-PASS -- TEST 'rap_restart_intel' [06:39, 04:00](1099 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:36, 07:40](1113 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:07](1045 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:40, 05:46](1129 MB)
-PASS -- TEST 'hrrr_control_intel' [05:36, 03:58](1048 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:30, 04:07](1040 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:35, 03:42](1117 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:09](1007 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:32](1095 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:10](2002 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:23, 08:58](2060 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:08, 10:11]
-PASS -- TEST 'control_csawmg_intel' [07:34, 06:00](760 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:33, 05:55](758 MB)
-PASS -- TEST 'control_ras_intel' [07:17, 03:14](748 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:07, 03:37]
-PASS -- TEST 'control_csawmg_gnu' [30:46, 08:14](548 MB)
-PASS -- TEST 'control_csawmgt_gnu' [30:46, 08:11](553 MB)
-
-PASS -- COMPILE 'wam_intel' [12:08, 10:01]
-PASS -- TEST 'control_wam_intel' [06:17, 02:04](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:08, 10:40]
-PASS -- TEST 'control_p8_faster_intel' [06:49, 02:34](1641 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:33, 04:41](855 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 04:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:20, 02:43](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:23, 02:38](823 MB)
-PASS -- TEST 'control_stochy_debug_intel' [07:16, 03:00](822 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:16, 02:44](822 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:06](873 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:35, 03:59](875 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:16, 02:49](829 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:25, 02:45](880 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:37, 02:50](1656 MB)
-PASS -- TEST 'regional_debug_intel' [19:37, 17:21](842 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:17, 04:45](1210 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:16, 04:41](1212 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:16, 04:48](1215 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:19, 04:54](1198 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:18, 04:46](1220 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:09](1297 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 04:57](1212 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 04:56](1211 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:18, 04:56](1208 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 04:53](1209 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:18, 04:47](1210 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:50](1212 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:17, 07:56](1214 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 04:43](1209 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:17, 05:46](1213 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:17, 04:48](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:35, 08:22](1209 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:07, 02:36]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:33, 02:09](534 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:33, 02:10](528 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:07, 03:25]
-PASS -- TEST 'control_wam_debug_intel' [06:17, 04:56](515 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 10:02]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:58, 03:48](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:33, 06:22](1053 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:30, 03:21](984 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:04](1091 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:23, 03:08](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:24, 03:36](936 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 04:50](1041 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:51](931 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 12:17]
-PASS -- TEST 'conus13km_control_intel' [06:48, 02:04](1205 MB)
-PASS -- TEST 'conus13km_2threads_intel' [06:42, 00:50](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [06:39, 01:13](1111 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 10:02]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:33, 04:12](984 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:12, 03:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:18, 04:48](1092 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:18, 04:46](1089 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:49, 14:31](1231 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:44, 14:34](924 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:41, 08:03](1157 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 14:44](1305 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:11, 03:24]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:54](1131 MB)
-
-PASS -- COMPILE 'hafsw_intel' [31:13, 11:31]
-PASS -- TEST 'hafs_regional_atm_intel' [10:09, 04:49](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:26, 05:42](1115 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:24, 06:51](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:13, 13:16](865 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:25, 14:59](895 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:53, 05:29](503 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:20, 06:35](520 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [10:39, 02:38](376 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:03, 07:06](485 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 03:39](538 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:43, 03:28](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:49, 04:00](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:23, 01:09](404 MB)
-PASS -- TEST 'gnv1_nested_intel' [10:42, 03:59](809 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [23:12, 03:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:51, 12:50](581 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [30:13, 11:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:55, 08:47](654 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 08:38](742 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 11:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:58, 06:17](735 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [27:12, 10:55]
-PASS -- TEST 'hafs_regional_docn_intel' [11:11, 06:18](839 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 06:21](817 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:53, 15:58](1216 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [17:11, 06:01]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:15, 02:42](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:37](1102 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:32](1018 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:37](1011 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:33](1018 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:39](1153 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:43](1162 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:36](1018 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 06:14](1071 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 05:59](1042 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:42](1167 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:53](2483 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:16, 04:11](2487 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [16:10, 02:59]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:16, 06:12](1081 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [34:16, 05:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:37](1151 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [31:15, 00:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:27, 00:45](256 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:22, 00:44](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:20, 00:28](321 MB)
-
-PASS -- COMPILE 'atml_intel' [42:15, 11:46]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:07, 04:04](1615 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:02, 04:04](1625 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:11](902 MB)
-
-PASS -- COMPILE 'atmw_intel' [38:15, 10:36]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:52, 01:43](1681 MB)
-
-PASS -- COMPILE 'atmwm_intel' [37:15, 10:37]
-PASS -- TEST 'control_atmwav_intel' [04:28, 01:40](682 MB)
-
-PASS -- COMPILE 'atmaero_intel' [35:14, 10:47]
-PASS -- TEST 'atmaero_control_p8_intel' [08:55, 03:57](3035 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:52, 04:48](3103 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:36, 05:06](3113 MB)
-
-PASS -- COMPILE 'atmaq_intel' [33:14, 10:16]
-
-PASS -- COMPILE 'atmaq_debug_intel' [26:12, 03:39]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:51, 21:18](4447 MB)
-
-PASS -- COMPILE 'atm_gnu' [26:13, 03:44]
-PASS -- TEST 'control_c48_gnu' [13:24, 10:40](765 MB)
-PASS -- TEST 'control_stochy_gnu' [05:19, 03:23](510 MB)
-PASS -- TEST 'control_ras_gnu' [06:18, 04:44](517 MB)
-PASS -- TEST 'control_p8_gnu' [06:53, 04:35](1273 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:29](1270 MB)
-PASS -- TEST 'control_flake_gnu' [12:20, 10:38](554 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [26:14, 03:36]
-PASS -- TEST 'rap_control_gnu' [12:29, 10:34](865 MB)
-PASS -- TEST 'rap_decomp_gnu' [13:28, 10:53](863 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:35, 09:36](945 MB)
-PASS -- TEST 'rap_restart_gnu' [07:37, 05:21](587 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [13:35, 10:52](860 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:31, 10:58](862 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:43, 07:48](589 MB)
-PASS -- TEST 'hrrr_control_gnu' [08:32, 05:33](858 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [08:27, 05:23](843 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [09:30, 05:02](937 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [09:27, 05:27](863 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 02:56](573 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 02:49](665 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [14:44, 10:27](859 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:41]
-PASS -- TEST 'control_diag_debug_gnu' [05:24, 01:37](550 MB)
-PASS -- TEST 'regional_debug_gnu' [13:38, 10:52](569 MB)
-PASS -- TEST 'rap_control_debug_gnu' [05:16, 02:34](872 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [05:17, 02:35](872 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [05:16, 02:39](876 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 02:36](876 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:42](960 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:18, 04:06](871 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:35](872 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:18, 02:36](869 MB)
-PASS -- TEST 'control_ras_debug_gnu' [04:17, 01:32](502 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:40](499 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:36](1259 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:18, 02:35](872 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [05:18, 02:50](877 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:34, 04:17](882 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:06, 01:51]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:07, 03:34]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:26, 09:17](715 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 04:57](717 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:43](764 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:24, 04:34](755 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:26, 05:02](712 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:35, 06:53](563 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:37](545 MB)
-PASS -- TEST 'conus13km_control_gnu' [05:54, 03:15](888 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [07:44, 05:38](886 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:42, 01:46](575 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:07, 05:20]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:37, 05:46](745 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:07, 03:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:20, 02:33](721 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:29](724 MB)
-PASS -- TEST 'conus13km_debug_gnu' [10:44, 07:01](901 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [09:44, 06:56](591 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [10:38, 07:34](904 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:39, 06:56](972 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:20, 02:33](748 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:09, 14:24]
-
-PASS -- COMPILE 's2s_gnu' [16:09, 14:19]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 06:34](1363 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:27]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:10, 14:16]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:03, 25:48](1323 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:24]
-FAIL TO COMPARE -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 14:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:16, 03:02](699 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:10, 13:08]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 05:34](3109 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:37]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:07, 17:03](1732 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 17:42](2004 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 08:03](1121 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:18](1629 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:07, 04:44]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:11, 22:52](1656 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:10, 13:08]
+PASS -- TEST 'cpld_control_p8_intel' [08:11, 05:47](3198 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 05:51](3189 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:30](3236 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:11, 05:52](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:27](3253 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:30](3519 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:47](3190 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:12, 04:45](3054 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:22, 05:53](3190 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 10:15](3321 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:39, 06:20](3593 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:55, 09:29](4146 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 06:04](4348 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:12, 05:21](3149 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:09, 12:33]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:52, 04:45](1718 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:00, 04:22](1761 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:43]
+PASS -- TEST 'cpld_debug_p8_intel' [11:13, 08:19](3188 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:15]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:45](1728 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:09, 11:34]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:17](1774 MB)
+
+PASS -- COMPILE 's2s_intel' [13:10, 11:51]
+PASS -- TEST 'cpld_control_c48_intel' [11:42, 09:28](2804 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:00]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:14, 05:25](3201 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 17:13](1761 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:22](1148 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 19:50](1632 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:12]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:58, 25:13](1674 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:42]
+PASS -- TEST 'control_flake_intel' [05:18, 03:19](661 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:27](640 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:30](646 MB)
+PASS -- TEST 'control_latlon_intel' [04:19, 02:28](634 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:29](634 MB)
+PASS -- TEST 'control_c48_intel' [08:23, 06:20](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:27](847 MB)
+PASS -- TEST 'control_c192_intel' [11:37, 09:12](834 MB)
+PASS -- TEST 'control_c384_intel' [12:31, 09:10](1278 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:38, 07:59](1381 MB)
+PASS -- TEST 'control_stochy_intel' [03:18, 01:39](618 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:22, 00:58](469 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:33](639 MB)
+PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](615 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:26](630 MB)
+PASS -- TEST 'control_p8_intel' [06:56, 03:01](1610 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 02:58](1619 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:54](1618 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:47, 01:35](877 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:56](1603 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:35](916 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:52, 03:11](1579 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:52, 02:49](1697 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:12](1611 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 03:55](1673 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:51, 02:59](1618 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:50, 03:27](1592 MB)
+PASS -- TEST 'regional_control_intel' [07:35, 05:11](808 MB)
+PASS -- TEST 'regional_restart_intel' [08:38, 02:45](1001 MB)
+PASS -- TEST 'regional_decomp_intel' [07:38, 05:29](822 MB)
+PASS -- TEST 'regional_2threads_intel' [05:39, 03:13](821 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:41, 05:06](1339 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:10](829 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:07](829 MB)
+PASS -- TEST 'regional_wofs_intel' [08:36, 06:41](1888 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:10, 10:30]
+PASS -- TEST 'rap_control_intel' [09:36, 07:55](1094 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:05](1282 MB)
+PASS -- TEST 'rap_decomp_intel' [10:35, 08:13](1018 MB)
+PASS -- TEST 'rap_2threads_intel' [09:30, 07:17](1133 MB)
+PASS -- TEST 'rap_restart_intel' [07:40, 04:02](1084 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:42](1090 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:10](1023 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:43, 05:46](1117 MB)
+PASS -- TEST 'hrrr_control_intel' [06:32, 04:01](1020 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:06](1013 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:36](1099 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:26, 02:09](979 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:38](1076 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [16:25, 09:14](1948 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:27, 09:01](2040 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:09, 10:32]
+PASS -- TEST 'control_csawmg_intel' [12:43, 06:03](738 MB)
+PASS -- TEST 'control_csawmgt_intel' [12:40, 05:55](730 MB)
+PASS -- TEST 'control_ras_intel' [09:22, 03:17](704 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:07, 03:54]
+PASS -- TEST 'control_csawmg_gnu' [10:41, 08:20](534 MB)
+PASS -- TEST 'control_csawmgt_gnu' [10:41, 08:08](525 MB)
+
+PASS -- COMPILE 'wam_intel' [12:09, 10:19]
+PASS -- TEST 'control_wam_intel' [08:19, 02:05](636 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:45]
+PASS -- TEST 'control_p8_faster_intel' [08:47, 02:41](1613 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:37, 04:47](832 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:28]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:22, 02:45](789 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:25, 02:48](783 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:18, 03:02](789 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:19, 02:44](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:36, 04:14](832 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:03](835 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:19, 02:53](791 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:25, 02:49](843 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:39, 02:53](1610 MB)
+PASS -- TEST 'regional_debug_intel' [19:40, 17:03](811 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:18, 04:52](1173 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:18, 04:44](1142 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:52](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:18, 04:49](1172 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:58](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1256 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:49](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:59](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:55](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 04:56](1170 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:46](1176 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:51](1174 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1176 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:44](1171 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:04](1178 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:48](1172 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:23](1176 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:08, 02:42]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:06](509 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [04:36, 02:07](506 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:08, 03:13]
+PASS -- TEST 'control_wam_debug_intel' [07:19, 05:06](474 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:09, 10:08]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:51](1146 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:33, 06:24](1033 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 03:23](970 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:06](1069 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:09](946 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:35](898 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:34, 04:51](1026 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](917 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:24]
+PASS -- TEST 'conus13km_control_intel' [04:54, 02:05](1181 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:38, 00:53](1104 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:15](1092 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 10:09]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:15](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:32]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1046 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1051 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:51, 14:37](1192 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 13:59](882 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:02](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:21](1260 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:24]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:54](1092 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:10, 11:43]
+PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:00](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:49](1095 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 07:01](817 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:12](843 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:29, 15:04](873 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:33](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](512 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:39](351 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:38, 07:18](463 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:47](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:31](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:06](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:14](387 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:54, 04:04](778 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:09, 03:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 12:48](531 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:11, 12:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:59, 08:43](650 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 08:48](720 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 12:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 06:22](707 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:10, 11:06]
+PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:31](815 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:19, 06:30](808 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:13](1222 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:08, 06:25]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:45](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1092 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:34](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:35](1008 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:35](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:39](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1141 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:32](1007 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:41](1048 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:12, 06:14](1034 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:40](1139 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:49](2486 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:58](2425 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:04]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:11](1052 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:09, 05:59]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:38](1157 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [07:08, 00:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:46](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:33](319 MB)
+
+PASS -- COMPILE 'atml_intel' [18:12, 11:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 04:10](1587 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:12](1598 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:14](884 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:11, 11:16]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:44](1658 MB)
+
+PASS -- COMPILE 'atmwm_intel' [16:10, 11:15]
+PASS -- TEST 'control_atmwav_intel' [03:30, 01:43](655 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:10, 10:57]
+PASS -- TEST 'atmaero_control_p8_intel' [05:56, 04:01](3009 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:52](3072 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:11](3086 MB)
+
+PASS -- COMPILE 'atmaq_intel' [14:10, 10:16]
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:07, 03:37]
+PASS -- TEST 'regional_atmaq_debug_intel' [31:13, 27:46](4449 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:07, 04:02]
+PASS -- TEST 'control_c48_gnu' [12:26, 10:36](750 MB)
+PASS -- TEST 'control_stochy_gnu' [05:20, 03:25](492 MB)
+PASS -- TEST 'control_ras_gnu' [06:19, 04:49](499 MB)
+PASS -- TEST 'control_p8_gnu' [06:55, 04:39](1251 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:33](1253 MB)
+PASS -- TEST 'control_flake_gnu' [12:21, 10:23](536 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:07, 03:40]
+PASS -- TEST 'rap_control_gnu' [12:31, 10:42](843 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:29, 10:52](851 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:37, 09:41](925 MB)
+PASS -- TEST 'rap_restart_gnu' [07:38, 05:23](569 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:47](848 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:31, 10:47](847 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:38, 07:58](574 MB)
+PASS -- TEST 'hrrr_control_gnu' [07:32, 05:38](842 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:28](830 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:26, 05:04](921 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [07:26, 05:39](842 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:52](555 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:49](654 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [12:39, 10:28](840 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:39]
+PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:38](530 MB)
+PASS -- TEST 'regional_debug_gnu' [12:41, 10:40](547 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:39](849 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:35](848 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:35](852 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:39](853 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:45](938 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 04:01](847 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:36](849 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:41](840 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:32](484 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:45](480 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:39](1242 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:37](848 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:48](852 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:20](854 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:08, 01:53]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:07, 03:42]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:28, 09:28](701 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 04:55](697 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:36](749 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:26, 04:32](738 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:26, 04:55](701 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 06:48](547 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:34](536 MB)
+PASS -- TEST 'conus13km_control_gnu' [05:48, 03:15](871 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [07:37, 05:34](877 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:37, 01:47](543 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:35, 05:51](726 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:07, 03:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:32](703 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:28](701 MB)
+PASS -- TEST 'conus13km_debug_gnu' [08:45, 06:58](868 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 07:04](562 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [09:36, 07:18](875 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:56](936 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:36](721 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:11, 14:42]
+
+PASS -- COMPILE 's2s_gnu' [16:10, 14:27]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 06:34](1345 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:47]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 14:39]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:59, 21:52](1308 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:20]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:41](1308 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 14:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:13, 03:01](690 MB)
SYNOPSIS:
-Starting Date/Time: 20240409 06:46:12
-Ending Date/Time: 20240409 10:35:59
-Total Time: 03h:50m:04s
+Starting Date/Time: 20240411 19:38:17
+Ending Date/Time: 20240411 21:19:50
+Total Time: 01h:41m:49s
Compiles Completed: 55/55
-Tests Completed: 243/244
-Failed Tests:
-* TEST cpld_debug_pdlib_p8_gnu: FAIL TO COMPARE
--- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2145/ufs-weather-model/tests/logs/log_hera/rt_cpld_debug_pdlib_p8_gnu.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERA REGRESSION TESTING LOG====
-====START OF HERA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-5efb5c1c91c717f5e8713bca35ebf642fd679681
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2935262
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: cpld_debug_pdlib_p8
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:08, 02:26]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [21:13, 16:37](1332 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240410 19:08:57
-Ending Date/Time: 20240410 19:35:33
-Total Time: 00h:26m:47s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 244/244
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index e6543f75a1..dbc0dc694c 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,18 +1,18 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,366 +48,365 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1728655
+COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1950397
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:26]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:54, 07:32](1916 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 18:15]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:13](1778 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:22, 14:24](2170 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:21, 06:34](1169 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:57, 15:00](1703 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:59]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:14, 20:16](1731 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:06, 13:14]
-PASS -- TEST 'cpld_control_p8_intel' [09:49, 07:45](2054 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:01, 07:43](2066 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:08, 04:18](1956 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:48, 07:44](1983 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:09, 04:13](1736 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 08:56](2495 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:34](2065 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 06:22](1899 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:30](2054 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:35, 15:11](2810 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:09, 05:53](2911 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [16:35, 09:16](3631 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:54, 05:27](3622 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:50, 05:00](2047 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:06, 12:48]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:00](1762 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:52, 04:00](1831 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:59]
-PASS -- TEST 'cpld_debug_p8_intel' [09:02, 06:51](2048 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:06, 06:51]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:55, 04:46](1794 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:05, 10:52]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:04](1815 MB)
-
-PASS -- COMPILE 's2s_intel' [12:05, 10:46]
-PASS -- TEST 'cpld_control_c48_intel' [09:35, 07:18](2830 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:06, 15:33]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:01, 07:15](2078 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:35]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:53, 13:47](1798 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:07, 06:56](1304 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:16](1719 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:01]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:44, 21:47](1774 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:06, 08:24]
-PASS -- TEST 'control_flake_intel' [04:14, 02:56](713 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 02:07](658 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:20, 02:17](678 MB)
-PASS -- TEST 'control_latlon_intel' [04:14, 02:07](660 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:11](667 MB)
-PASS -- TEST 'control_c48_intel' [07:20, 05:52](863 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:21, 05:44](857 MB)
-PASS -- TEST 'control_c192_intel' [09:25, 07:59](972 MB)
-PASS -- TEST 'control_c384_intel' [11:03, 08:05](1446 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:45, 07:15](1521 MB)
-PASS -- TEST 'control_stochy_intel' [03:14, 01:24](674 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:51](547 MB)
-PASS -- TEST 'control_lndp_intel' [03:14, 01:25](665 MB)
-PASS -- TEST 'control_iovr4_intel' [04:16, 02:08](669 MB)
-PASS -- TEST 'control_iovr5_intel' [04:17, 02:07](662 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:33](1648 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:52, 02:32](1633 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:25](1636 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:41, 01:24](926 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:28](1628 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:41, 01:24](983 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:39](1636 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:35, 02:21](1730 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:26, 04:23](1652 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 03:25](1729 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:39](1642 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:50, 03:03](1658 MB)
-PASS -- TEST 'regional_control_intel' [06:22, 04:32](957 MB)
-PASS -- TEST 'regional_restart_intel' [04:23, 02:33](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [06:19, 04:50](945 MB)
-PASS -- TEST 'regional_2threads_intel' [04:22, 02:57](918 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:25, 04:28](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:20, 04:32](956 MB)
-PASS -- TEST 'regional_wofs_intel' [07:22, 05:39](2087 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:05, 07:44]
-PASS -- TEST 'rap_control_intel' [08:45, 06:31](1204 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:41, 03:28](1416 MB)
-PASS -- TEST 'rap_decomp_intel' [08:26, 06:57](1118 MB)
-PASS -- TEST 'rap_2threads_intel' [08:28, 06:16](1375 MB)
-PASS -- TEST 'rap_restart_intel' [05:36, 03:27](1144 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:40, 06:43](1216 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:26, 06:50](1129 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:50, 05:01](1211 MB)
-PASS -- TEST 'hrrr_control_intel' [05:39, 03:22](1088 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 03:28](1045 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1121 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:51](1028 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:48, 07:14](1179 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:39](2008 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:38](2163 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:05, 07:26]
-PASS -- TEST 'control_csawmg_intel' [07:23, 05:24](798 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:21, 05:14](802 MB)
-PASS -- TEST 'control_ras_intel' [04:12, 02:49](820 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:06, 04:01]
-PASS -- TEST 'control_csawmg_gnu' [08:28, 06:35](811 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:23, 06:32](824 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:32]
-PASS -- TEST 'control_wam_intel' [03:18, 01:48](784 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:34]
-PASS -- TEST 'control_p8_faster_intel' [04:48, 02:20](1642 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:21, 04:06](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:50]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:18](818 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:12](837 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:28](830 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:11, 02:11](827 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:26, 03:24](884 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:22, 03:23](875 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:12, 02:15](836 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:17, 02:16](895 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:27, 02:22](1663 MB)
-PASS -- TEST 'regional_debug_intel' [16:24, 14:21](875 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:12, 03:58](1220 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:50](1217 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:12, 04:23](1218 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:12, 04:01](1216 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:12, 04:00](1221 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:20, 04:13](1300 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:13, 04:04](1219 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:11, 04:02](1218 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:13, 04:02](1227 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:13, 03:57](1212 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:14, 03:56](1219 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:13, 03:57](1223 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:25](1227 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:11, 03:55](1211 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:14](1225 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:13, 04:02](1210 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 06:43](1220 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:05, 03:08]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:23, 01:46](788 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:21, 01:40](787 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:32]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:34]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1270 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 05:25](1142 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 02:52](1034 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:26, 05:04](1275 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 02:42](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:16](985 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:26](1091 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:51](960 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 08:51]
-PASS -- TEST 'conus13km_control_intel' [03:35, 01:43](1291 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:45](1204 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1152 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 06:52]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:26, 03:52](1091 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:39]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:55](1109 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:48](1102 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:30, 11:36](1336 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 11:53](1005 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 06:39](1237 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:22, 11:41](1405 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 04:01](1149 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:05, 10:19]
-PASS -- TEST 'hafs_regional_atm_intel' [07:57, 05:20](872 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:15, 05:06](1287 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:07, 06:26](941 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:54](998 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:08, 15:19](999 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:47, 05:31](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:10, 07:08](616 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:40, 02:59](436 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:51, 08:00](550 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:39, 03:56](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:38](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 04:54](679 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:21](448 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:05, 03:04]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:38, 11:31](636 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:05, 10:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:50, 16:15](729 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:49, 16:01](820 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:48, 10:30](798 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:05, 10:17]
-PASS -- TEST 'hafs_regional_docn_intel' [07:55, 05:27](932 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:58, 05:30](940 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:37, 16:22](1336 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:05, 05:30]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:11, 02:09](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:11, 01:22](1115 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:09, 02:04](1007 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:10, 02:07](1017 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:09, 02:07](1007 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:08](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:09, 02:10](1144 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:09, 02:03](1025 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:50, 04:56](1159 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:45, 04:52](1152 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:08](1130 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:10, 03:00](2382 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 03:04](2379 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:05, 04:08]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:12](1069 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:41]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:06](1159 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:47]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 00:51](336 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:15, 00:47](556 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:15, 00:31](559 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:53]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 05:53](1656 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:54, 05:49](1660 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:36, 02:55](946 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:56]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:30](1701 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:52]
-PASS -- TEST 'control_atmwav_intel' [03:38, 01:29](705 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:05, 07:23]
-PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:35](1789 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:19](1798 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:36](1816 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:06, 06:59]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:46]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 16:46](4594 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:05, 04:37]
-PASS -- TEST 'control_c48_gnu' [11:23, 09:32](864 MB)
-PASS -- TEST 'control_stochy_gnu' [04:14, 02:19](726 MB)
-PASS -- TEST 'control_ras_gnu' [05:13, 03:47](733 MB)
-PASS -- TEST 'control_p8_gnu' [05:46, 03:42](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 03:32](1517 MB)
-PASS -- TEST 'control_flake_gnu' [06:12, 04:25](808 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:05, 04:40]
-PASS -- TEST 'rap_control_gnu' [09:35, 07:42](1086 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:34, 07:44](1085 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:28, 07:10](1149 MB)
-PASS -- TEST 'rap_restart_gnu' [06:45, 04:04](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:41, 07:50](1086 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:29, 07:48](1088 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:36, 05:43](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:29, 04:03](1071 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:27, 04:06](1136 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 03:42](1028 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:34, 04:01](1072 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:03](882 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:14, 02:06](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:48, 07:44](1080 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:06, 06:11]
-PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:16](779 MB)
-PASS -- TEST 'regional_debug_gnu' [08:24, 06:17](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:12, 01:59](1099 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:14, 01:57](1091 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:12, 02:03](1099 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:12, 01:57](1094 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:19, 02:08](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:12, 03:10](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:14, 02:04](1099 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [05:12, 02:04](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [04:12, 01:13](729 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [04:12, 01:18](726 MB)
-PASS -- TEST 'control_debug_p8_gnu' [04:33, 01:15](1503 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [05:13, 01:59](1099 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:13, 02:10](1104 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:42, 03:21](1105 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:26]
-PASS -- TEST 'control_wam_debug_gnu' [04:17, 01:58](502 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 04:54]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:39, 07:17](965 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:51, 03:53](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:29, 06:49](968 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:32, 03:26](870 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:31, 03:57](952 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:30](862 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:13, 01:59](858 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:34, 02:32](1265 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:20, 01:04](1175 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:27](944 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:06, 10:09]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:25, 04:29](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:12, 02:02](979 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:12, 01:58](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:25, 05:29](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:26, 05:33](955 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:22, 03:20](1192 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:21, 05:30](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:05, 06:39]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 01:56](1003 MB)
-
-PASS -- COMPILE 's2swa_gnu' [18:06, 16:27]
-
-PASS -- COMPILE 's2s_gnu' [17:06, 15:58]
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:05, 04:53]
+PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:11]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 07:34](1893 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:38]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:05, 13:43](1774 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:24, 14:27](2174 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:28](1173 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:50, 15:18](1684 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:31]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:03, 20:23](1727 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:06, 11:57]
+PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:42](2078 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:59, 07:34](2059 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:09, 04:15](1981 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:52](1976 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:31](1738 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:44, 09:04](2489 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:43](2058 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:56, 06:27](1890 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:43](2079 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:34, 15:28](2814 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:01, 05:51](2922 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:14, 09:04](3625 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:44, 06:16](3624 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:11](2052 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:06, 12:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:02](1780 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:52, 03:58](1819 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:05, 06:04]
+PASS -- TEST 'cpld_debug_p8_intel' [10:00, 06:52](2068 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:51]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:57, 04:43](1788 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:45]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:50, 04:07](1811 MB)
+
+PASS -- COMPILE 's2s_intel' [11:06, 09:33]
+PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:23](2838 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 07:15](2066 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:54]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:50, 13:54](1816 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:59, 06:39](1291 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:53, 15:18](1739 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:50, 21:40](1769 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:05, 08:03]
+PASS -- TEST 'control_flake_intel' [04:15, 02:55](719 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:09](661 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:14](669 MB)
+PASS -- TEST 'control_latlon_intel' [04:15, 02:09](659 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:12](653 MB)
+PASS -- TEST 'control_c48_intel' [07:19, 05:49](859 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:21, 05:47](855 MB)
+PASS -- TEST 'control_c192_intel' [09:24, 07:55](979 MB)
+PASS -- TEST 'control_c384_intel' [11:03, 08:11](1444 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:40, 07:23](1524 MB)
+PASS -- TEST 'control_stochy_intel' [03:15, 01:29](675 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:53](533 MB)
+PASS -- TEST 'control_lndp_intel' [03:15, 01:23](664 MB)
+PASS -- TEST 'control_iovr4_intel' [04:17, 02:11](668 MB)
+PASS -- TEST 'control_iovr5_intel' [04:15, 02:06](662 MB)
+PASS -- TEST 'control_p8_intel' [04:46, 02:34](1641 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 02:37](1642 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:29](1650 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:54, 01:27](914 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:30](1628 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:26](985 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:33](1628 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:42, 02:21](1734 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:30](1635 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 03:31](1715 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:34](1661 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:53, 02:57](1658 MB)
+PASS -- TEST 'regional_control_intel' [06:24, 04:41](959 MB)
+PASS -- TEST 'regional_restart_intel' [04:24, 02:31](1109 MB)
+PASS -- TEST 'regional_decomp_intel' [06:23, 04:49](951 MB)
+PASS -- TEST 'regional_2threads_intel' [04:22, 02:58](920 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:25, 04:22](1490 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:31](957 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:31](958 MB)
+PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](2092 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:06, 07:12]
+PASS -- TEST 'rap_control_intel' [08:48, 06:30](1199 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:41, 03:37](1390 MB)
+PASS -- TEST 'rap_decomp_intel' [08:31, 06:52](1129 MB)
+PASS -- TEST 'rap_2threads_intel' [08:29, 06:20](1373 MB)
+PASS -- TEST 'rap_restart_intel' [05:40, 03:23](1149 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:35](1195 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 07:03](1134 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 04:54](1193 MB)
+PASS -- TEST 'hrrr_control_intel' [05:42, 03:25](1079 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:26](1042 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:11](1120 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:53](1024 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:25](1181 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 07:51](2003 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:26](2206 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:05, 06:58]
+PASS -- TEST 'control_csawmg_intel' [07:28, 05:22](833 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:22, 05:19](848 MB)
+PASS -- TEST 'control_ras_intel' [04:12, 02:51](808 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:05, 03:59]
+PASS -- TEST 'control_csawmg_gnu' [08:28, 06:35](810 MB)
+PASS -- TEST 'control_csawmgt_gnu' [08:28, 06:31](810 MB)
+
+PASS -- COMPILE 'wam_intel' [08:06, 06:41]
+PASS -- TEST 'control_wam_intel' [03:25, 01:53](782 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:45]
+PASS -- TEST 'control_p8_faster_intel' [04:47, 02:21](1643 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:23, 04:00](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:41]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:15](819 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:14](833 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:30](838 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:12, 02:16](829 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:21, 03:32](875 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:21](881 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:12, 02:15](839 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:17, 02:20](884 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:31, 02:21](1659 MB)
+PASS -- TEST 'regional_debug_intel' [15:24, 14:04](901 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:12, 03:58](1225 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:12, 03:57](1220 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:12, 03:54](1218 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:12, 03:57](1228 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:12, 04:07](1216 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:12](1301 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:13, 04:11](1216 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:12, 04:05](1219 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:13, 04:03](1211 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:12, 04:03](1213 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:12, 03:56](1217 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:12, 04:02](1228 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:36](1227 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 04:02](1216 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:13](1222 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:13, 04:01](1209 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:43, 06:53](1222 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:34]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:48](795 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:24, 01:48](791 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 02:54]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 06:49]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:18](1276 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:23](1137 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:50, 02:51](1018 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:11](1280 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:38](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:06](973 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:46, 04:06](1094 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:36](959 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:05, 09:00]
+PASS -- TEST 'conus13km_control_intel' [03:31, 01:45](1297 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:22, 00:52](1208 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:23, 01:06](1147 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:00]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:26, 03:49](1062 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:49]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 03:54](1094 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:12, 03:50](1100 MB)
+PASS -- TEST 'conus13km_debug_intel' [13:25, 11:48](1343 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [13:23, 11:56](989 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:24, 06:51](1234 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:22, 11:56](1397 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:46]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 03:56](1148 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:06, 09:44]
+PASS -- TEST 'hafs_regional_atm_intel' [09:00, 05:16](873 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:19, 04:58](1286 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:08, 06:32](942 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:58, 14:13](972 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:06, 15:06](990 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:46, 05:36](604 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:04](623 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:57](433 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:54, 08:04](544 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:44, 04:00](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:44, 03:45](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:44, 04:49](680 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:23, 01:28](448 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 11:25](635 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:47, 16:49](735 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:54, 16:47](809 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:32]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:49, 10:36](833 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:06, 10:28]
+PASS -- TEST 'hafs_regional_docn_intel' [15:56, 05:32](936 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:58, 05:40](942 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 16:36](1345 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:25]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:10, 02:14](1152 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:20](1098 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:09, 02:07](1010 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:10, 02:09](1016 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:09, 02:11](1015 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:10, 02:13](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:10, 02:14](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:09, 02:09](1007 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 04:59](1151 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:42, 04:53](1144 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:08, 02:12](1150 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:10, 03:09](2378 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:11, 03:04](2437 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:58]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:11, 05:12](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:09, 02:10](1147 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 00:51](334 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](563 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:15, 00:31](557 MB)
+
+PASS -- COMPILE 'atml_intel' [09:06, 07:51]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 05:22](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:52, 05:36](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:44](945 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:06, 09:17]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:36](1708 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:06, 09:26]
+PASS -- TEST 'control_atmwav_intel' [03:38, 01:30](692 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:06, 07:22]
+PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:31](1796 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:20](1826 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:29](1817 MB)
+
+PASS -- COMPILE 'atmaq_intel' [09:06, 07:14]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:43]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:19, 16:23](4609 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:05, 05:01]
+PASS -- TEST 'control_c48_gnu' [11:22, 09:30](878 MB)
+PASS -- TEST 'control_stochy_gnu' [04:13, 02:16](725 MB)
+PASS -- TEST 'control_ras_gnu' [05:12, 03:39](736 MB)
+PASS -- TEST 'control_p8_gnu' [05:44, 03:39](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:37, 03:34](1524 MB)
+PASS -- TEST 'control_flake_gnu' [06:14, 04:27](812 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:05, 04:37]
+PASS -- TEST 'rap_control_gnu' [09:35, 07:46](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:34, 07:53](1084 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:29, 07:09](1129 MB)
+PASS -- TEST 'rap_restart_gnu' [06:34, 03:53](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:40, 07:48](1084 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:25, 07:49](1084 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:34, 05:47](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:42, 04:03](1073 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:03](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 03:36](1044 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:27, 04:03](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](882 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:01](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:45, 07:35](1081 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:05, 08:52]
+PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](777 MB)
+PASS -- TEST 'regional_debug_gnu' [08:23, 06:23](927 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:15, 01:56](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 02:01](1094 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:58](1099 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:54](1102 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:18, 02:06](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:13, 03:07](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:12, 02:00](1099 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:59](1091 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:15](729 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:14](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:30, 01:20](1506 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:13, 02:04](1100 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:12, 02:07](1102 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 03:14](1105 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:39]
+PASS -- TEST 'control_wam_debug_gnu' [03:18, 02:00](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:05, 05:39]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 07:17](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:44](956 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:26, 06:44](969 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 03:33](889 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 03:52](946 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 05:37](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 02:00](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:35, 02:30](1264 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [03:20, 01:07](1171 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:27](937 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:05, 12:58]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:24, 04:16](992 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:05, 09:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:12, 01:55](977 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:12, 01:56](973 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:25](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:23, 05:36](975 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [05:21, 03:14](1192 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:22, 05:18](1349 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:48]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:12, 01:56](1003 MB)
+
+PASS -- COMPILE 's2swa_gnu' [20:06, 18:10]
+
+PASS -- COMPILE 's2s_gnu' [18:06, 16:38]
+
+PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:00]
PASS -- COMPILE 's2sw_pdlib_gnu' [18:06, 16:07]
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:06, 03:18]
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 12:03]
-PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 15:01]
+PASS -- COMPILE 'datm_cdeps_gnu' [21:06, 17:18]
SYNOPSIS:
-Starting Date/Time: 20240409 07:14:18
-Ending Date/Time: 20240409 08:37:36
-Total Time: 01h:23m:53s
+Starting Date/Time: 20240411 14:17:38
+Ending Date/Time: 20240411 15:43:20
+Total Time: 01h:26m:12s
Compiles Completed: 55/55
Tests Completed: 239/239
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 688cc3c31c..29d8fdf08f 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,18 +1,18 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,244 +48,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3748272
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3990282
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:21, 38:47]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:07, 07:25](1792 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [51:26, 49:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:45](1666 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:13, 22:10](1926 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:13, 10:17](1005 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 23:46](1628 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:21, 38:48]
-PASS -- TEST 'cpld_control_p8_intel' [11:40, 08:09](1825 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:10, 08:11](1834 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:05, 04:19](1711 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:41, 08:12](1840 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 04:31](1737 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:27, 07:49](2271 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:35, 08:11](1822 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:53, 07:01](1777 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:11, 08:07](1825 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:59, 07:35](1791 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:20, 36:13]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 06:13](1661 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:43, 06:08](1720 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:09, 06:00]
-PASS -- TEST 'cpld_debug_p8_intel' [14:10, 10:30](1851 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:26]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:22, 07:14](1680 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:19, 32:50]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:50, 05:41](1718 MB)
-
-PASS -- COMPILE 's2s_intel' [34:19, 32:27]
-PASS -- TEST 'cpld_control_c48_intel' [15:10, 12:43](2792 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:43, 33:11]
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:17](1828 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [49:25, 47:11]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:40, 21:06](1685 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:35, 10:26](1032 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:41, 24:02](1659 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 05:04]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:42, 32:10](1694 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [37:20, 35:06]
-PASS -- TEST 'control_flake_intel' [06:26, 04:28](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:17](599 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:34, 03:37](607 MB)
-PASS -- TEST 'control_latlon_intel' [05:26, 03:21](602 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:37, 03:25](597 MB)
-PASS -- TEST 'control_c48_intel' [12:41, 10:08](844 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:38, 10:08](847 MB)
-PASS -- TEST 'control_c192_intel' [14:52, 12:26](727 MB)
-PASS -- TEST 'control_c384_intel' [18:57, 15:57](896 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:55, 13:39](1018 MB)
-PASS -- TEST 'control_stochy_intel' [04:28, 02:10](604 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:17](436 MB)
-PASS -- TEST 'control_lndp_intel' [04:28, 02:09](602 MB)
-PASS -- TEST 'control_iovr4_intel' [05:29, 03:14](598 MB)
-PASS -- TEST 'control_iovr5_intel' [05:29, 03:22](595 MB)
-PASS -- TEST 'control_p8_intel' [06:30, 03:58](1572 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:44, 04:03](1575 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:47, 03:53](1575 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:05, 02:12](813 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:35, 03:52](1573 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:07, 02:04](843 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:28, 04:03](1566 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:35, 03:41](1659 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:12, 06:59](1577 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:53, 05:12](1636 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:45, 04:02](1590 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:07, 04:41](1588 MB)
-PASS -- TEST 'regional_control_intel' [09:02, 07:02](762 MB)
-PASS -- TEST 'regional_restart_intel' [05:42, 03:43](943 MB)
-PASS -- TEST 'regional_decomp_intel' [10:04, 07:28](762 MB)
-PASS -- TEST 'regional_2threads_intel' [07:03, 04:22](749 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:06, 07:01](758 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:37, 07:02](759 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:19, 32:49]
-PASS -- TEST 'rap_control_intel' [12:57, 09:58](988 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:28](1213 MB)
-PASS -- TEST 'rap_decomp_intel' [12:53, 10:44](984 MB)
-PASS -- TEST 'rap_2threads_intel' [12:16, 09:34](1082 MB)
-PASS -- TEST 'rap_restart_intel' [08:24, 05:31](984 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:28, 09:55](996 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:54, 10:44](988 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:23, 07:52](990 MB)
-PASS -- TEST 'hrrr_control_intel' [07:54, 05:04](988 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:19](977 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:41](1060 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:53](916 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:24, 09:55](987 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:27, 12:19](1941 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:27, 12:12](1936 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:18, 31:09]
-PASS -- TEST 'control_csawmg_intel' [10:47, 08:19](696 MB)
-PASS -- TEST 'control_csawmgt_intel' [10:39, 08:13](696 MB)
-PASS -- TEST 'control_ras_intel' [06:20, 04:39](665 MB)
-
-PASS -- COMPILE 'wam_intel' [31:17, 29:47]
-PASS -- TEST 'control_wam_intel' [04:18, 02:49](495 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:39]
-PASS -- TEST 'control_p8_faster_intel' [06:32, 03:45](1576 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:47, 07:04](765 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:07, 05:48]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 03:23](760 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:28, 03:19](757 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:44](768 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 03:21](757 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:42, 05:13](802 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:43, 05:15](806 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:22, 03:23](767 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:33, 03:26](815 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:37](1598 MB)
-PASS -- TEST 'regional_debug_intel' [24:50, 22:04](775 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:24, 06:00](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:24, 05:52](1142 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 05:58](1151 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:22, 06:04](1156 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:19, 06:01](1154 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:33, 06:22](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:22, 06:10](1149 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:22, 06:09](1149 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:23, 06:06](1152 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:00](1155 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:24, 05:54](1151 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:24, 06:11](1149 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:27, 09:52](1141 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:27, 06:01](1144 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:23](1152 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:27, 05:58](1152 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:34, 10:23](1153 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:08, 04:02]
-PASS -- TEST 'control_wam_debug_intel' [08:22, 06:10](443 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:12]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:02, 05:17](1066 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:03, 08:24](896 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:09, 04:23](865 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:03, 08:04](942 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:09, 04:02](907 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:11, 04:39](850 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:11, 06:16](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](849 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:41]
-PASS -- TEST 'conus13km_control_intel' [06:02, 02:58](1106 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:20](1056 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:00, 01:35](1027 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:17, 30:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:02, 05:39](907 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:03]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:25, 05:58](1033 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 05:50](1026 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:03, 18:11](1168 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:03, 18:28](849 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:53, 10:32](1084 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:13](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:17]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:02](1071 MB)
-
-PASS -- COMPILE 'hafsw_intel' [37:20, 35:10]
-PASS -- TEST 'hafs_regional_atm_intel' [10:17, 07:31](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:53](1087 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:39, 09:53](778 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [20:30, 17:21](799 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:44, 18:40](825 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:26, 06:15](772 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:18, 31:37]
-PASS -- TEST 'hafs_regional_docn_intel' [11:26, 08:45](767 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:29, 09:04](752 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:09, 07:51]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:38](1063 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:18, 02:18](1034 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:20, 03:31](925 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 03:33](925 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:35](925 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:20, 03:37](1065 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:38](1052 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:19, 03:32](922 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 07:58](883 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:46](851 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:38](1069 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:01](2353 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:22, 05:10](2355 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:27]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 07:58](1006 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:09, 07:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:33](1064 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:07, 01:40]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:34, 02:03](229 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:26, 01:31](252 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:49](254 MB)
-
-PASS -- COMPILE 'atml_intel' [36:19, 34:10]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:06, 08:20](1605 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:02, 08:02](1611 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 03:57](870 MB)
-
-PASS -- COMPILE 'atmw_intel' [34:18, 32:25]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 02:26](1607 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:18, 30:55]
-PASS -- TEST 'control_atmwav_intel' [05:12, 02:14](612 MB)
-
-PASS -- COMPILE 'atmaero_intel' [32:18, 30:22]
-PASS -- TEST 'atmaero_control_p8_intel' [08:25, 05:07](1694 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:26, 06:28](1716 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 06:46](1731 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:39]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:17](1795 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:31, 54:32]
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:35](1661 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:33, 22:22](1885 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:17, 10:45](991 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:44, 23:52](1630 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:24, 39:12]
+PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:16](1805 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:48, 07:54](1822 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:43, 04:20](1713 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:31, 07:50](1842 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:35, 04:26](1726 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:34, 07:39](2270 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:21, 08:05](1806 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:34, 07:06](1762 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 08:04](1812 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [17:43, 07:14](1767 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:23, 36:11]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 06:02](1663 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 05:57](1720 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:25]
+PASS -- TEST 'cpld_debug_p8_intel' [13:57, 10:32](1851 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:07, 05:05]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:11](1679 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [34:18, 32:58]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:49, 05:45](1704 MB)
+
+PASS -- COMPILE 's2s_intel' [34:18, 32:45]
+PASS -- TEST 'cpld_control_c48_intel' [15:11, 12:45](2805 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [35:42, 33:38]
+PASS -- TEST 'cpld_control_p8_faster_intel' [54:25, 07:22](1827 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [48:24, 46:54]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:34, 21:03](1675 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:46, 10:47](1028 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:36, 24:09](1661 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:09, 05:07]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 32:11](1685 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:34]
+PASS -- TEST 'control_flake_intel' [17:34, 04:29](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [19:41, 03:19](600 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:40, 03:34](605 MB)
+PASS -- TEST 'control_latlon_intel' [16:34, 03:15](594 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:40, 03:26](598 MB)
+PASS -- TEST 'control_c48_intel' [12:36, 10:09](846 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [15:45, 10:10](848 MB)
+PASS -- TEST 'control_c192_intel' [23:55, 12:23](730 MB)
+PASS -- TEST 'control_c384_intel' [27:09, 16:36](889 MB)
+PASS -- TEST 'control_c384gdas_intel' [28:07, 14:32](1017 MB)
+PASS -- TEST 'control_stochy_intel' [17:35, 02:12](603 MB)
+PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:21](433 MB)
+PASS -- TEST 'control_lndp_intel' [18:37, 02:10](603 MB)
+PASS -- TEST 'control_iovr4_intel' [17:38, 03:16](593 MB)
+PASS -- TEST 'control_iovr5_intel' [19:39, 03:21](594 MB)
+PASS -- TEST 'control_p8_intel' [20:54, 04:03](1571 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [17:36, 04:01](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [13:29, 03:53](1577 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:17, 02:08](810 MB)
+PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:52](1570 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 02:05](845 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:01, 04:03](1565 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:06, 03:40](1663 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:55, 06:58](1579 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 05:07](1631 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:28, 03:55](1589 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:47, 04:34](1573 MB)
+PASS -- TEST 'regional_control_intel' [13:51, 07:19](762 MB)
+PASS -- TEST 'regional_restart_intel' [11:46, 03:45](933 MB)
+PASS -- TEST 'regional_decomp_intel' [13:46, 07:47](754 MB)
+PASS -- TEST 'regional_2threads_intel' [07:48, 04:16](754 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [12:52, 07:20](764 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [12:41, 07:18](758 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:18, 32:57]
+PASS -- TEST 'rap_control_intel' [13:08, 10:16](988 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:46, 05:39](1213 MB)
+PASS -- TEST 'rap_decomp_intel' [13:08, 10:43](990 MB)
+PASS -- TEST 'rap_2threads_intel' [12:37, 09:43](1082 MB)
+PASS -- TEST 'rap_restart_intel' [11:28, 05:24](989 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [13:18, 10:15](991 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:18, 10:57](988 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [12:27, 07:46](986 MB)
+PASS -- TEST 'hrrr_control_intel' [08:38, 05:17](984 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [18:13, 05:22](978 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [17:34, 04:48](1062 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:46](925 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:46, 10:00](978 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 12:29](1939 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:39, 12:01](1940 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:17, 31:23]
+PASS -- TEST 'control_csawmg_intel' [12:43, 08:13](691 MB)
+PASS -- TEST 'control_csawmgt_intel' [13:40, 08:07](692 MB)
+PASS -- TEST 'control_ras_intel' [09:25, 04:30](664 MB)
+
+PASS -- COMPILE 'wam_intel' [31:16, 30:05]
+PASS -- TEST 'control_wam_intel' [07:22, 02:43](497 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:54]
+PASS -- TEST 'control_p8_faster_intel' [06:35, 03:41](1570 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:45, 06:49](763 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:09, 06:09]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:27, 03:28](754 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:33, 03:29](759 MB)
+PASS -- TEST 'control_stochy_debug_intel' [10:26, 03:47](764 MB)
+PASS -- TEST 'control_lndp_debug_intel' [08:23, 03:31](756 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [09:41, 05:19](805 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [09:43, 05:08](811 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:24, 03:24](769 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:35, 03:29](818 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:56, 03:32](1587 MB)
+PASS -- TEST 'regional_debug_intel' [26:50, 21:43](774 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:21, 06:04](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:21, 05:57](1143 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:27, 05:59](1148 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:26, 06:03](1149 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 06:03](1155 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:27](1228 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:20, 06:08](1148 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:09](1148 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:12](1147 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:06](1150 MB)
+PASS -- TEST 'rap_noah_debug_intel' [09:23, 05:56](1150 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 06:04](1145 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 09:52](1149 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [11:24, 05:58](1143 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [12:30, 07:23](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [11:27, 06:01](1147 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:33, 10:28](1152 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [12:09, 04:17]
+PASS -- TEST 'control_wam_debug_intel' [10:20, 06:06](437 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [34:19, 30:22]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:45, 05:16](1087 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 08:21](896 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:24](867 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 07:58](944 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:09](909 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 04:42](858 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 06:25](900 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:30, 02:34](844 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:22, 42:59]
+PASS -- TEST 'conus13km_control_intel' [49:19, 03:05](1107 MB)
+PASS -- TEST 'conus13km_2threads_intel' [09:53, 01:22](1058 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [09:51, 01:35](1027 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:19, 30:44]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [53:15, 05:36](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 04:12]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [20:35, 06:02](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [25:39, 05:56](1028 MB)
+PASS -- TEST 'conus13km_debug_intel' [44:17, 18:22](1140 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [03:23, 18:43](854 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:56, 10:41](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [00:18, 18:40](1210 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:20]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:53, 06:10](1072 MB)
+
+PASS -- COMPILE 'hafsw_intel' [39:21, 34:44]
+PASS -- TEST 'hafs_regional_atm_intel' [37:50, 07:09](725 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:40, 06:49](1087 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:02, 09:39](774 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [50:45, 16:28](801 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:08, 18:11](824 MB)
+PASS -- TEST 'gnv1_nested_intel' [39:55, 06:21](786 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [36:20, 32:13]
+PASS -- TEST 'hafs_regional_docn_intel' [38:44, 08:53](773 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:59, 09:12](752 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [49:24, 08:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [26:34, 03:38](1055 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:16](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [26:32, 03:38](937 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [27:30, 03:36](922 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:27, 03:35](929 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:31, 03:42](1065 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:33, 03:44](1051 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 03:33](924 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [31:27, 07:52](885 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:28, 07:53](843 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:26, 03:40](1061 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:28, 05:08](2400 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 05:25](2279 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [43:23, 03:19]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:27, 08:01](1015 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [50:24, 07:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 03:48](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [33:19, 01:40]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:40, 01:47](229 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:32, 01:29](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:25, 00:59](251 MB)
+
+PASS -- COMPILE 'atml_intel' [08:32, 38:50]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 09:08](1613 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:44, 08:55](1612 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:49, 05:09](872 MB)
+
+PASS -- COMPILE 'atmw_intel' [48:24, 31:51]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:21](1612 MB)
+
+PASS -- COMPILE 'atmwm_intel' [38:20, 31:14]
+PASS -- TEST 'control_atmwav_intel' [05:11, 02:15](611 MB)
+
+PASS -- COMPILE 'atmaero_intel' [38:19, 30:49]
+PASS -- TEST 'atmaero_control_p8_intel' [08:25, 05:16](1697 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:25](1718 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 06:40](1735 MB)
SYNOPSIS:
-Starting Date/Time: 20240409 05:13:52
-Ending Date/Time: 20240409 08:46:15
-Total Time: 03h:33m:09s
+Starting Date/Time: 20240411 19:42:09
+Ending Date/Time: 20240412 00:07:36
+Total Time: 04h:26m:09s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 0f638d49eb..ba251e694f 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,18 +1,18 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6c889ca5e60cf18461c19eca4cb1ae4cc2acaa2b
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (heads/develop)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,277 +48,276 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_390197
+COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_198648
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:31]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:57, 06:18](3174 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:08, 16:20]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:50, 16:30](1742 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:01, 17:24](2021 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 08:02](1109 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 18:37](1646 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:17]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:56, 23:07](1684 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:07, 14:55]
-PASS -- TEST 'cpld_control_p8_intel' [10:37, 05:39](3214 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:37](3210 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:57, 03:23](3259 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:37, 05:40](3233 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:22](3268 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:37, 06:11](3555 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:37, 05:38](3201 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 04:47](3055 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:50, 05:43](3207 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:52, 10:06](3340 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:10, 06:18](3628 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 10:52](4127 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:07, 06:50](4365 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:39, 05:22](3172 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:07, 14:25]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:25, 04:27](1731 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 04:27](1778 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:14]
-PASS -- TEST 'cpld_debug_p8_intel' [11:35, 08:40](3246 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:58]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:54](1752 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:07, 12:49]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:22](1786 MB)
-
-PASS -- COMPILE 's2s_intel' [15:07, 13:12]
-PASS -- TEST 'cpld_control_c48_intel' [10:49, 08:02](2832 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:08, 18:00]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:47, 05:21](3214 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:19]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 16:45](1771 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:18, 08:12](1169 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 18:43](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:18]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:29](1717 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:14]
-PASS -- TEST 'control_flake_intel' [06:20, 03:26](699 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:24](653 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:28, 02:29](662 MB)
-PASS -- TEST 'control_latlon_intel' [05:20, 02:26](648 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:29, 02:28](646 MB)
-PASS -- TEST 'control_c48_intel' [08:24, 05:54](861 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:25, 05:54](875 MB)
-PASS -- TEST 'control_c192_intel' [11:33, 09:06](858 MB)
-PASS -- TEST 'control_c384_intel' [13:47, 10:03](1241 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:06, 09:00](1349 MB)
-PASS -- TEST 'control_stochy_intel' [04:17, 01:39](653 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:22, 01:01](503 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:37](651 MB)
-PASS -- TEST 'control_iovr4_intel' [04:19, 02:31](656 MB)
-PASS -- TEST 'control_iovr5_intel' [04:18, 02:37](645 MB)
-PASS -- TEST 'control_p8_intel' [08:07, 03:02](1638 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:14, 02:57](1631 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:35, 02:51](1633 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:17, 01:44](892 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:14, 02:50](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:09, 01:37](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:15, 03:03](1615 MB)
-PASS -- TEST 'control_2threads_p8_intel' [08:30, 03:02](1719 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:50, 05:13](1636 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:38, 03:57](1695 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:33, 02:57](1630 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:53, 03:28](1646 MB)
-PASS -- TEST 'regional_control_intel' [10:43, 05:06](856 MB)
-PASS -- TEST 'regional_restart_intel' [04:36, 02:47](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [10:35, 05:27](854 MB)
-PASS -- TEST 'regional_2threads_intel' [06:38, 03:43](846 MB)
-PASS -- TEST 'regional_noquilt_intel' [09:38, 05:05](1362 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:42, 05:04](855 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 05:13](857 MB)
-PASS -- TEST 'regional_wofs_intel' [09:35, 06:34](1923 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:07, 11:47]
-PASS -- TEST 'rap_control_intel' [10:21, 07:44](1097 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:43](1294 MB)
-PASS -- TEST 'rap_decomp_intel' [11:00, 08:06](1026 MB)
-PASS -- TEST 'rap_2threads_intel' [10:08, 07:52](1176 MB)
-PASS -- TEST 'rap_restart_intel' [07:16, 04:05](1092 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:18, 07:49](1109 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:00, 08:15](1030 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 05:51](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [06:16, 04:02](1032 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:07](1020 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:51, 03:22](1104 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:12](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:17, 07:36](1098 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:20, 09:08](1996 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:18, 09:01](2074 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:06, 11:01]
-PASS -- TEST 'control_csawmg_intel' [08:36, 06:02](749 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:36, 05:59](750 MB)
-PASS -- TEST 'control_ras_intel' [05:18, 03:18](743 MB)
-
-PASS -- COMPILE 'wam_intel' [12:06, 10:34]
-PASS -- TEST 'control_wam_intel' [04:18, 02:07](655 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:06, 10:59]
-PASS -- TEST 'control_p8_faster_intel' [06:23, 02:39](1621 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:40, 04:43](850 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:30]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:23, 02:49](814 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:47](809 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:16, 03:07](825 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:15, 02:51](821 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:09](862 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:04](870 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:20, 02:51](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:24, 02:50](874 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:40, 02:56](1640 MB)
-PASS -- TEST 'regional_debug_intel' [19:38, 17:05](852 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:20, 04:50](1200 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:17, 05:01](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:16, 05:00](1196 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:50](1198 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:54](1198 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:26, 05:09](1285 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:18, 05:05](1197 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:03](1202 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:19, 05:04](1199 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:17, 04:57](1198 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:17, 04:53](1196 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 04:53](1205 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:20, 07:45](1201 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:19, 04:52](1201 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 05:53](1203 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:17, 05:01](1200 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 08:15](1207 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:06, 03:06]
-PASS -- TEST 'control_wam_debug_intel' [08:16, 04:46](506 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 10:50]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:50, 04:26](1162 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:12, 06:29](1049 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:38, 03:23](985 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:49, 06:41](1096 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:19, 02:56](960 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:08, 03:37](930 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:18, 04:46](1031 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:22, 01:50](931 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:07, 13:30]
-PASS -- TEST 'conus13km_control_intel' [04:52, 02:05](1196 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:39, 00:59](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:16](1106 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:07, 10:55]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:19](996 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:25]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:49](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:18, 04:41](1073 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:45, 13:56](1225 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:49](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:35, 08:13](1151 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:36, 14:15](1296 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:18]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 04:59](1119 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:06, 13:08]
-PASS -- TEST 'hafs_regional_atm_intel' [09:07, 05:30](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:22, 06:00](1120 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:24, 06:52](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:09, 12:51](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 14:29](883 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:57, 06:07](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:23, 07:23](515 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:07](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:28, 07:59](478 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:07](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:02](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:51, 05:23](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:23, 01:23](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:56, 04:31](797 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:11, 04:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:18](573 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:07, 13:41]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 09:46](671 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:02, 09:38](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:17, 13:28]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:55, 06:56](690 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:07, 12:13]
-PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:26](827 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:10, 06:21](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:53, 16:05](1211 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:07, 07:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1128 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:42](1088 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:30](1014 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:13, 02:36](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:12, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:12, 02:39](1124 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:42](1120 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:34](1014 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 05:59](1050 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 05:56](1043 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:35](1135 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:38](2432 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:40](2487 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:23]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:13, 06:09](1055 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:35](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:51](254 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:34](322 MB)
-
-PASS -- COMPILE 'atml_intel' [14:07, 12:29]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:32, 05:16](1610 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:21, 04:14](1601 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 02:20](894 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:07, 12:17]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:11, 01:45](1664 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:07, 12:17]
-PASS -- TEST 'control_atmwav_intel' [04:03, 01:43](678 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:06, 11:39]
-PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:59](3022 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:47](3090 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:53, 05:06](3112 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 10:17]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:14]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 20:45](4580 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:07, 15:40]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:04, 05:11](3180 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:02]
+PASS -- TEST 'cpld_control_gfsv17_intel' [44:05, 16:36](1738 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:15, 18:28](2023 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [18:01, 08:09](1110 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:20, 18:49](1642 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:09]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:42, 23:00](1692 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:07, 15:27]
+PASS -- TEST 'cpld_control_p8_intel' [36:08, 05:41](3213 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:18, 05:41](3206 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:31](3252 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [37:05, 05:46](3235 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:38, 03:32](3277 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [37:05, 06:10](3559 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [37:05, 05:44](3200 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [34:52, 04:44](3066 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:26, 05:39](3211 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [38:28, 10:18](3263 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:18](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [45:42, 10:53](4115 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:10, 06:53](4374 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [36:02, 05:23](3178 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:06, 13:28]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [32:23, 04:30](1737 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:44, 04:32](1773 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20]
+PASS -- TEST 'cpld_debug_p8_intel' [11:48, 08:27](3253 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 05:57](1750 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:06, 12:43]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:45, 04:30](1782 MB)
+
+PASS -- COMPILE 's2s_intel' [15:06, 12:38]
+PASS -- TEST 'cpld_control_c48_intel' [33:08, 08:10](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06]
+PASS -- TEST 'cpld_control_p8_faster_intel' [32:58, 05:24](3211 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [28:08, 26:56]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:30, 16:29](1779 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:51, 08:10](1174 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 18:41](1683 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:51]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:28, 24:28](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:43]
+PASS -- TEST 'control_flake_intel' [28:29, 03:30](704 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [27:31, 02:29](653 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:34, 02:36](660 MB)
+PASS -- TEST 'control_latlon_intel' [27:27, 02:32](654 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:37, 02:34](652 MB)
+PASS -- TEST 'control_c48_intel' [30:36, 05:58](874 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [30:36, 05:58](879 MB)
+PASS -- TEST 'control_c192_intel' [33:45, 09:04](850 MB)
+PASS -- TEST 'control_c384_intel' [35:49, 10:02](1251 MB)
+PASS -- TEST 'control_c384gdas_intel' [36:10, 09:02](1360 MB)
+PASS -- TEST 'control_stochy_intel' [15:22, 01:42](659 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:01](502 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:42](617 MB)
+PASS -- TEST 'control_iovr4_intel' [04:26, 02:33](649 MB)
+PASS -- TEST 'control_iovr5_intel' [04:22, 02:29](654 MB)
+PASS -- TEST 'control_p8_intel' [05:12, 03:02](1630 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:04](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:52](1630 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:16, 01:46](890 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:13, 02:57](1574 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:05, 01:46](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:11, 03:11](1617 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:04, 03:06](1719 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:37, 05:22](1633 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 04:06](1695 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:08](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:46, 03:32](1593 MB)
+PASS -- TEST 'regional_control_intel' [07:46, 05:06](858 MB)
+PASS -- TEST 'regional_restart_intel' [04:35, 02:47](1018 MB)
+PASS -- TEST 'regional_decomp_intel' [07:46, 05:36](848 MB)
+PASS -- TEST 'regional_2threads_intel' [05:45, 03:47](851 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:47, 05:16](1362 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 05:14](857 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:12](858 MB)
+PASS -- TEST 'regional_wofs_intel' [08:51, 06:39](1919 MB)
+
+PASS -- COMPILE 'rrfs_intel' [21:10, 11:27]
+PASS -- TEST 'rap_control_intel' [10:27, 07:55](1111 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:58, 04:52](1293 MB)
+PASS -- TEST 'rap_decomp_intel' [11:11, 08:07](1027 MB)
+PASS -- TEST 'rap_2threads_intel' [10:30, 07:55](1176 MB)
+PASS -- TEST 'rap_restart_intel' [13:26, 04:01](1101 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:34, 07:47](1101 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:21, 08:03](1032 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [19:27, 05:51](1131 MB)
+PASS -- TEST 'hrrr_control_intel' [08:29, 03:59](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:08, 04:05](1023 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:23, 03:24](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [15:29, 02:12](998 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:20, 07:38](1035 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:05](1993 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 08:58](2079 MB)
+
+PASS -- COMPILE 'csawmg_intel' [19:10, 11:33]
+PASS -- TEST 'control_csawmg_intel' [07:40, 05:59](751 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:42, 06:00](747 MB)
+PASS -- TEST 'control_ras_intel' [05:21, 03:18](738 MB)
+
+PASS -- COMPILE 'wam_intel' [18:09, 10:46]
+PASS -- TEST 'control_wam_intel' [04:19, 02:08](660 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:10, 11:20]
+PASS -- TEST 'control_p8_faster_intel' [05:31, 02:40](1631 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:42, 04:42](850 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:08, 04:46]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:40](812 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:49](813 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:05](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [09:16, 02:49](818 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [14:40, 04:11](859 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [14:40, 04:04](865 MB)
+PASS -- TEST 'control_ras_debug_intel' [11:29, 02:45](833 MB)
+PASS -- TEST 'control_diag_debug_intel' [11:24, 02:51](869 MB)
+PASS -- TEST 'control_debug_p8_intel' [16:55, 02:59](1636 MB)
+PASS -- TEST 'regional_debug_intel' [30:51, 17:25](841 MB)
+PASS -- TEST 'rap_control_debug_intel' [13:20, 05:05](1211 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [12:26, 04:51](1200 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [17:26, 04:44](1207 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [17:24, 04:59](1205 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:20, 04:56](1203 MB)
+PASS -- TEST 'rap_diag_debug_intel' [17:29, 05:16](1292 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:33, 05:10](1203 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:35, 05:29](1197 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [13:41, 05:07](1202 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:40, 04:55](1205 MB)
+PASS -- TEST 'rap_noah_debug_intel' [13:33, 04:58](1206 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [12:32, 04:54](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:36, 08:09](1202 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [14:39, 05:06](1190 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [16:34, 06:01](1201 MB)
+PASS -- TEST 'rap_flake_debug_intel' [14:33, 05:03](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:40, 08:27](1203 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:08, 03:57]
+PASS -- TEST 'control_wam_debug_intel' [09:36, 05:18](514 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 11:05]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:20, 04:41](1161 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:14, 06:42](1055 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:20, 03:37](978 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 06:40](1090 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:37, 03:05](976 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:24, 03:49](925 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 04:49](1035 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:30, 01:54](933 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 13:13]
+PASS -- TEST 'conus13km_control_intel' [02:11, 02:07](1204 MB)
+PASS -- TEST 'conus13km_2threads_intel' [12:49, 01:01](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [11:50, 01:17](1112 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:08, 10:55]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 04:23](996 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:35]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:35, 04:57](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:48](1077 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:11, 14:36](1227 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:00, 14:21](930 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:52, 08:09](1154 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:09](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 03:37]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [02:30, 05:05](1120 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:07, 14:06]
+PASS -- TEST 'hafs_regional_atm_intel' [00:18, 05:32](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:26, 05:52](1117 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:28, 07:00](829 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [24:17, 13:19](859 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:19, 14:37](883 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [17:00, 06:12](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:24, 07:33](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:10](377 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:21, 07:54](482 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:09](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:55, 03:54](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:59, 05:22](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:23, 01:26](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [14:55, 04:32](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:09, 03:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:52, 13:21](569 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:09, 13:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:03, 09:35](634 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:36](723 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 13:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:05, 07:01](789 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:08, 12:43]
+PASS -- TEST 'hafs_regional_docn_intel' [13:18, 06:19](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:13, 06:26](817 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:53, 15:56](1207 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:07, 08:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:44](1084 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:32](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:39](1020 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:42](1025 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:45](1135 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:42](1128 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:06](1047 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:55](1031 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:37](1133 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:41](2435 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:37](2493 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [08:07, 03:47]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:18](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:07, 07:27]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:38](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:08]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:48](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 00:48](325 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:34](308 MB)
+
+PASS -- COMPILE 'atml_intel' [19:06, 13:17]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:19](1606 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:28, 04:10](1608 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:22](894 MB)
+
+PASS -- COMPILE 'atmw_intel' [18:09, 13:31]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 01:49](1673 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:08, 12:00]
+PASS -- TEST 'control_atmwav_intel' [04:08, 01:39](679 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:07, 11:34]
+PASS -- TEST 'atmaero_control_p8_intel' [09:18, 03:53](3027 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:45](3096 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 05:02](3113 MB)
+
+PASS -- COMPILE 'atmaq_intel' [13:07, 11:05]
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:41]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:45, 20:45](4578 MB)
SYNOPSIS:
-Starting Date/Time: 20240409 08:07:51
-Ending Date/Time: 20240409 09:40:37
-Total Time: 01h:33m:37s
+Starting Date/Time: 20240411 14:18:10
+Ending Date/Time: 20240411 17:26:58
+Total Time: 03h:09m:32s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index d2bba3fe98..48a4d36a3a 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,18 +1,18 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-5efb5c1c91c717f5e8713bca35ebf642fd679681
+ffacfb6d50c9803809d458a42c634f89aaec8861
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (remotes/origin/HEAD)
- f060e857f184a4e8e988d8563794066525357336 FV3/atmos_cubed_sphere (201912_public_release-387-gf060e85)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -29,10 +29,10 @@ Submodule hashes used in testing:
7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- f36559256eb08272cdfe0706c45e0824e00fb37b CICE-interface/CICE (CICE6.0.0-506-gf365592)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 383687ef8752af2408d882c47a4f3cbb4d3121ee FV3 (remotes/origin/HEAD)
+ cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -48,235 +48,235 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_240137
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_227744
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:52, 16:19]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [46:17, 01:26](2975 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:10, 24:26]
-PASS -- TEST 'cpld_control_gfsv17_intel' [37:59, 02:10](1591 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:44, 01:58](1718 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:46, 01:22](848 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:59, 01:18](1579 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 05:06]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [57:49, 02:11](1604 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:40, 11:01]
-PASS -- TEST 'cpld_control_p8_intel' [51:28, 01:13](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:28, 01:25](3001 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [42:57, 01:54](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [51:28, 01:13](3029 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:48](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [51:28, 01:45](3312 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [51:28, 01:16](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [51:29, 01:30](2928 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:28, 01:34](3005 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 04:11](3955 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:52, 03:51](4252 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [51:28, 01:45](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:01, 20:35]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [42:08, 00:47](1588 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:08, 02:10](1637 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:38, 09:59]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [52:30, 01:52](1637 MB)
-
-PASS -- COMPILE 's2s_intel' [29:19, 28:21]
-PASS -- TEST 'cpld_control_c48_intel' [33:24, 00:45](2656 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:54, 16:40]
-PASS -- TEST 'cpld_control_p8_faster_intel' [45:15, 01:34](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:43, 11:49]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:26, 01:20](1601 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:20, 01:47](904 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:19, 01:00](1589 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [29:20, 28:43]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:26, 01:04](1612 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [22:57, 21:43]
-PASS -- TEST 'control_flake_intel' [34:50, 00:21](572 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [34:50, 00:46](521 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:50, 00:41](528 MB)
-PASS -- TEST 'control_latlon_intel' [34:50, 00:39](524 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:50, 00:48](524 MB)
-PASS -- TEST 'control_c48_intel' [34:49, 00:57](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [34:49, 00:53](719 MB)
-PASS -- TEST 'control_c192_intel' [34:50, 00:25](637 MB)
-PASS -- TEST 'control_c384_intel' [34:54, 02:01](954 MB)
-PASS -- TEST 'control_c384gdas_intel' [34:54, 01:42](1095 MB)
-PASS -- TEST 'control_stochy_intel' [34:50, 00:27](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [32:12, 01:01](338 MB)
-PASS -- TEST 'control_lndp_intel' [34:50, 00:29](531 MB)
-PASS -- TEST 'control_iovr4_intel' [34:50, 00:44](523 MB)
-PASS -- TEST 'control_iovr5_intel' [34:50, 00:44](524 MB)
-PASS -- TEST 'control_p8_intel' [34:28, 02:00](1497 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [34:20, 01:56](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [33:22, 01:57](1504 MB)
-PASS -- TEST 'control_restart_p8_intel' [28:54, 00:42](690 MB)
-PASS -- TEST 'control_noqr_p8_intel' [32:18, 01:35](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [27:07, 01:05](701 MB)
-PASS -- TEST 'control_decomp_p8_intel' [32:17, 01:28](1496 MB)
-PASS -- TEST 'control_2threads_p8_intel' [32:17, 01:03](1602 MB)
-PASS -- TEST 'control_p8_lndp_intel' [32:14, 01:15](1512 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [32:13, 01:02](1563 MB)
-PASS -- TEST 'control_p8_mynn_intel' [32:12, 01:48](1508 MB)
-PASS -- TEST 'merra2_thompson_intel' [31:11, 01:32](1509 MB)
-PASS -- TEST 'regional_control_intel' [31:09, 00:21](608 MB)
-PASS -- TEST 'regional_restart_intel' [25:22, 00:26](780 MB)
-PASS -- TEST 'regional_decomp_intel' [31:06, 01:05](609 MB)
-PASS -- TEST 'regional_2threads_intel' [31:07, 01:02](664 MB)
-PASS -- TEST 'regional_noquilt_intel' [31:06, 00:30](1140 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [31:04, 00:29](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [30:58, 00:22](608 MB)
-PASS -- TEST 'regional_wofs_intel' [30:06, 00:41](1585 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:32, 09:52]
-PASS -- TEST 'rap_control_intel' [41:58, 02:14](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:59, 01:04](1097 MB)
-PASS -- TEST 'rap_decomp_intel' [41:58, 02:04](919 MB)
-PASS -- TEST 'rap_2threads_intel' [41:58, 01:43](1010 MB)
-PASS -- TEST 'rap_restart_intel' [29:45, 01:15](790 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [41:58, 02:19](914 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:58, 02:03](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [28:51, 01:43](788 MB)
-PASS -- TEST 'hrrr_control_intel' [41:58, 01:07](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [41:58, 01:01](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [41:59, 01:25](997 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [36:49, 01:02](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [41:58, 01:15](910 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [41:58, 01:06](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:58, 01:21](1860 MB)
-
-PASS -- COMPILE 'csawmg_intel' [27:15, 26:32]
-PASS -- TEST 'control_csawmg_intel' [23:47, 00:36](602 MB)
-PASS -- TEST 'control_csawmgt_intel' [23:38, 00:39](598 MB)
-PASS -- TEST 'control_ras_intel' [23:20, 00:55](559 MB)
-
-PASS -- COMPILE 'wam_intel' [12:39, 12:08]
-PASS -- TEST 'control_wam_intel' [37:46, 00:56](273 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:45, 12:20]
-PASS -- TEST 'control_p8_faster_intel' [28:00, 00:59](1501 MB)
-PASS -- TEST 'regional_control_faster_intel' [27:52, 00:19](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [17:54, 17:12]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [27:09, 01:18](687 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [26:50, 01:27](686 MB)
-PASS -- TEST 'control_stochy_debug_intel' [26:47, 00:53](691 MB)
-PASS -- TEST 'control_lndp_debug_intel' [26:24, 01:06](689 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [25:53, 00:45](731 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [25:31, 00:49](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [25:21, 01:08](705 MB)
-PASS -- TEST 'control_diag_debug_intel' [25:20, 01:13](745 MB)
-PASS -- TEST 'control_debug_p8_intel' [25:13, 01:08](1525 MB)
-PASS -- TEST 'regional_debug_intel' [25:12, 01:06](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [25:08, 00:57](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [24:51, 00:57](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [24:21, 01:01](1075 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [24:18, 00:59](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [22:37, 00:55](1076 MB)
-PASS -- TEST 'rap_diag_debug_intel' [22:18, 00:53](1162 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [22:14, 00:52](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [22:12, 00:51](1077 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [22:09, 00:57](1076 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [22:05, 00:59](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [21:57, 01:08](1069 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [21:44, 00:55](1070 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [21:43, 00:51](1071 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [21:24, 00:59](1066 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [21:19, 01:09](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [21:16, 00:59](1073 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:54, 01:23](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [17:56, 17:00]
-PASS -- TEST 'control_wam_debug_intel' [20:47, 00:57](298 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:49, 16:19]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:25, 01:25](955 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [20:11, 01:11](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [19:46, 02:05](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:32, 01:17](855 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:11, 02:02](842 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:07, 01:36](790 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:49, 01:39](690 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:07, 00:17](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:08, 22:15]
-PASS -- TEST 'conus13km_control_intel' [14:43, 01:01](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [10:55, 00:52](1006 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [10:13, 00:39](879 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:39, 11:49]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:42, 01:27](809 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:28, 04:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:51, 01:02](950 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:51, 01:08](953 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:40, 00:41](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 00:37](708 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [15:57, 00:43](1038 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 00:42](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:37, 08:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:39, 01:01](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:56, 18:20]
-PASS -- TEST 'hafs_regional_atm_intel' [14:54, 01:57](616 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:54, 00:26](968 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:52, 01:50](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 01:35](698 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:53, 01:22](710 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:52, 01:05](389 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:53, 02:06](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [14:18, 01:30](314 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:20, 02:26](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:44, 01:39](426 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:00, 00:49](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:01, 00:56](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:34, 01:24](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:19, 03:25]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:42, 00:55](504 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:47, 13:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 00:49](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:58, 00:46](712 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:54, 17:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:18, 01:03](710 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:44, 12:51]
-PASS -- TEST 'hafs_regional_docn_intel' [11:42, 01:22](662 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:36, 01:18](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:02, 00:42](881 MB)
-
-PASS -- COMPILE 'atml_intel' [15:49, 15:32]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:59, 01:18](1550 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:47, 01:24](1552 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:09, 00:24](748 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:43, 12:54]
-PASS -- TEST 'atmaero_control_p8_intel' [08:11, 01:26](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:07, 00:52](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:04, 01:42](2926 MB)
-
-PASS -- COMPILE 'atmaq_intel' [20:05, 19:20]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:43, 11:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [07:46, 00:52](4436 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:38, 11:00]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:48, 01:19](2976 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:37, 11:25]
+PASS -- TEST 'cpld_control_gfsv17_intel' [57:49, 01:27](1591 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:25, 01:31](1711 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [34:20, 01:36](849 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [57:50, 01:46](1574 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:00, 17:24]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [51:27, 01:33](1602 MB)
+
+PASS -- COMPILE 's2swa_intel' [31:18, 29:28]
+PASS -- TEST 'cpld_control_p8_intel' [35:59, 02:13](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:19, 01:49](3000 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [25:04, 01:57](3061 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [34:19, 01:42](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [23:41, 01:18](3081 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [34:09, 01:15](3315 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [33:18, 01:37](3001 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [33:16, 01:16](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:13, 01:43](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [33:22, 04:30](3954 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:13, 04:34](4246 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [33:11, 01:55](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:37, 11:31]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [57:49, 01:14](1586 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:49, 01:23](1639 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:35, 09:58]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:52, 01:12](1632 MB)
+
+PASS -- COMPILE 's2s_intel' [25:07, 23:46]
+PASS -- TEST 'cpld_control_c48_intel' [45:18, 00:50](2648 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [32:25, 30:58]
+PASS -- TEST 'cpld_control_p8_faster_intel' [32:38, 01:17](3005 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:16]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:49, 00:50](1607 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:38, 01:00](906 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:39, 01:18](1573 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:37, 00:44](1614 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:52, 12:39]
+PASS -- TEST 'control_flake_intel' [40:59, 00:45](574 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [40:59, 01:11](520 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:59, 01:16](528 MB)
+PASS -- TEST 'control_latlon_intel' [40:59, 00:40](523 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:59, 00:44](521 MB)
+PASS -- TEST 'control_c48_intel' [40:58, 00:53](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [40:58, 00:52](714 MB)
+PASS -- TEST 'control_c192_intel' [40:59, 00:51](640 MB)
+PASS -- TEST 'control_c384_intel' [41:03, 01:37](955 MB)
+PASS -- TEST 'control_c384gdas_intel' [41:03, 02:41](1090 MB)
+PASS -- TEST 'control_stochy_intel' [40:59, 01:19](534 MB)
+PASS -- TEST 'control_stochy_restart_intel' [32:38, 00:17](330 MB)
+PASS -- TEST 'control_lndp_intel' [40:59, 00:56](529 MB)
+PASS -- TEST 'control_iovr4_intel' [40:59, 01:10](524 MB)
+PASS -- TEST 'control_iovr5_intel' [40:59, 01:07](525 MB)
+PASS -- TEST 'control_p8_intel' [40:59, 01:06](1505 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [40:59, 01:29](1502 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [40:59, 01:30](1510 MB)
+PASS -- TEST 'control_restart_p8_intel' [32:20, 01:43](695 MB)
+PASS -- TEST 'control_noqr_p8_intel' [40:59, 01:10](1500 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [32:18, 01:37](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [40:59, 00:56](1495 MB)
+PASS -- TEST 'control_2threads_p8_intel' [40:59, 01:23](1595 MB)
+PASS -- TEST 'control_p8_lndp_intel' [40:59, 00:41](1501 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [32:15, 01:34](1558 MB)
+PASS -- TEST 'control_p8_mynn_intel' [32:13, 01:21](1509 MB)
+PASS -- TEST 'merra2_thompson_intel' [31:00, 02:15](1507 MB)
+PASS -- TEST 'regional_control_intel' [30:59, 01:06](608 MB)
+PASS -- TEST 'regional_restart_intel' [24:04, 00:34](782 MB)
+PASS -- TEST 'regional_decomp_intel' [30:54, 00:47](607 MB)
+PASS -- TEST 'regional_2threads_intel' [30:51, 00:50](661 MB)
+PASS -- TEST 'regional_noquilt_intel' [30:07, 00:44](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [30:01, 00:18](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [29:59, 00:15](609 MB)
+PASS -- TEST 'regional_wofs_intel' [27:43, 00:19](1581 MB)
+
+PASS -- COMPILE 'rrfs_intel' [23:03, 17:34]
+PASS -- TEST 'rap_control_intel' [27:44, 01:44](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:54, 00:34](1093 MB)
+PASS -- TEST 'rap_decomp_intel' [26:42, 01:29](919 MB)
+PASS -- TEST 'rap_2threads_intel' [26:02, 00:56](1007 MB)
+PASS -- TEST 'rap_restart_intel' [18:10, 01:49](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [25:35, 01:55](917 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 01:30](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [16:04, 02:05](783 MB)
+PASS -- TEST 'hrrr_control_intel' [24:57, 01:10](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [24:54, 01:06](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [24:45, 01:14](995 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [19:41, 01:06](744 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [24:13, 01:58](910 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [24:05, 00:39](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:44, 00:29](1864 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:47, 10:08]
+PASS -- TEST 'control_csawmg_intel' [42:01, 00:54](602 MB)
+PASS -- TEST 'control_csawmgt_intel' [42:01, 00:59](601 MB)
+PASS -- TEST 'control_ras_intel' [42:01, 01:03](558 MB)
+
+PASS -- COMPILE 'wam_intel' [20:59, 15:30]
+PASS -- TEST 'control_wam_intel' [23:41, 01:12](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [24:12, 19:15]
+PASS -- TEST 'control_p8_faster_intel' [23:39, 01:37](1506 MB)
+PASS -- TEST 'regional_control_faster_intel' [23:33, 01:01](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [26:10, 16:14]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:32, 00:39](688 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:02](688 MB)
+PASS -- TEST 'control_stochy_debug_intel' [23:09, 00:39](689 MB)
+PASS -- TEST 'control_lndp_debug_intel' [23:04, 00:58](693 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [22:06, 00:26](731 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [21:59, 00:27](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [20:40, 01:11](703 MB)
+PASS -- TEST 'control_diag_debug_intel' [19:53, 00:23](749 MB)
+PASS -- TEST 'control_debug_p8_intel' [19:41, 01:15](1521 MB)
+PASS -- TEST 'regional_debug_intel' [19:40, 01:06](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [19:22, 01:05](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [19:13, 01:00](1070 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [18:58, 00:20](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [18:37, 01:12](1072 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:36, 00:31](1073 MB)
+PASS -- TEST 'rap_diag_debug_intel' [18:36, 01:05](1163 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:14, 01:14](1075 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:08, 00:16](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [17:45, 00:57](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:35, 01:01](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [17:17, 00:24](1075 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [16:47, 00:38](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:24, 01:00](1068 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 00:57](1066 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [16:09, 01:06](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [15:50, 01:16](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:22, 01:57](1083 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [17:50, 05:23]
+PASS -- TEST 'control_wam_debug_intel' [15:13, 00:44](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:51, 11:18]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:57, 01:02](957 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:50, 01:29](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 02:02](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:19, 01:13](850 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:07, 01:54](837 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:00, 01:26](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:14, 01:59](686 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:44, 01:10](670 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:47, 10:18]
+PASS -- TEST 'conus13km_control_intel' [12:52, 00:44](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [07:58, 00:39](1005 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [07:56, 00:28](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:43, 08:21]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:44, 01:10](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:47, 11:04]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:45, 01:10](955 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 00:24](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [10:14, 00:33](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [09:58, 00:55](709 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:32, 00:59](1042 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:30, 01:08](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:46, 10:45]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:54, 00:48](983 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:59, 14:11]
+PASS -- TEST 'hafs_regional_atm_intel' [08:50, 01:32](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 01:24](965 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:34, 02:02](662 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [08:08, 02:20](699 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [08:07, 02:00](713 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:41, 00:52](388 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 02:02](403 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:08, 01:46](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:49, 02:05](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 01:23](418 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 00:46](410 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 00:49](490 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 00:28](323 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [16:57, 14:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:17, 01:06](499 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:01, 21:06]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:33, 01:04](537 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [03:53, 01:23](708 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:48, 14:24]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:14, 01:21](712 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:35, 09:07]
+PASS -- TEST 'hafs_regional_docn_intel' [03:10, 02:23](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:01, 02:11](645 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:40, 00:15](880 MB)
+
+PASS -- COMPILE 'atml_intel' [19:54, 18:35]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [02:06, 01:59](1553 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [01:09, 01:32](1542 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:21, 00:57](747 MB)
+
+PASS -- COMPILE 'atmaero_intel' [18:54, 18:06]
+PASS -- TEST 'atmaero_control_p8_intel' [00:47, 01:35](2854 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [00:12, 01:23](2910 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:57, 01:26](2921 MB)
+
+PASS -- COMPILE 'atmaq_intel' [17:52, 16:26]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:19, 04:00]
+PASS -- TEST 'regional_atmaq_debug_intel' [59:39, 00:45](4438 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 10:56:31
-Ending Date/Time: 20240411 12:18:07
-Total Time: 01h:22m:18s
+Starting Date/Time: 20240411 18:49:14
+Ending Date/Time: 20240411 20:32:17
+Total Time: 01h:43m:42s
Compiles Completed: 31/31
Tests Completed: 157/157
diff --git a/tests/test_changes.list b/tests/test_changes.list
index c37e12ad66..e69de29bb2 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,9 +0,0 @@
-cpld_control_gfsv17_iau intel
-cpld_control_ciceC_p8 intel
-cpld_control_c192_p8 intel
-cpld_restart_c192_p8 intel
-cpld_control_c48 intel
-datm_cdeps_ciceC_cfsr intel
-datm_cdeps_mx025_cfsr intel
-datm_cdeps_mx025_gefs intel
-cpld_control_nowave_noaero_p8 gnu
From ac4445dba611e1d6cbb2566a42b22734982218e5 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 15 Apr 2024 08:59:42 -0400
Subject: [PATCH 21/33] Bump idna from 3.6 to 3.7 in /doc/UsersGuide (#2234)
*doc/UserGuide
*requirements.txt - updates inda version from 3.6 to 3.7
---
doc/UsersGuide/requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt
index b4642f5872..3888acb016 100644
--- a/doc/UsersGuide/requirements.txt
+++ b/doc/UsersGuide/requirements.txt
@@ -18,7 +18,7 @@ docutils==0.20.1
# sphinx
# sphinx-rtd-theme
# sphinxcontrib-bibtex
-idna==3.6
+idna==3.7
# via requests
imagesize==1.4.1
# via sphinx
From 4f32a4b5e6b17c85c6abf52ffd5b44a38d250c3b Mon Sep 17 00:00:00 2001
From: Rick Grubin <152905742+rickgrubin-tomorrow@users.noreply.github.com>
Date: Mon, 15 Apr 2024 07:21:08 -0600
Subject: [PATCH 22/33] Document ATMW / ATMAERO / HAFS WM configurations
(#2160)
* UFSWM
* doc/Userguide
* source
* conf.py
* Configurations.rst
* FAQ.rst
* InputsOutputs.rst
* Introduction.rst
---
doc/UsersGuide/source/Configurations.rst | 629 ++++++++++++++++++++++-
doc/UsersGuide/source/FAQ.rst | 26 +-
doc/UsersGuide/source/InputsOutputs.rst | 2 +-
doc/UsersGuide/source/Introduction.rst | 4 +-
doc/UsersGuide/source/conf.py | 9 +-
5 files changed, 647 insertions(+), 23 deletions(-)
diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst
index 7ac2cf6034..69d659ffa5 100644
--- a/doc/UsersGuide/source/Configurations.rst
+++ b/doc/UsersGuide/source/Configurations.rst
@@ -13,7 +13,7 @@ Configurations
The UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric
model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, and
mediator). This chapter documents a few of the currently supported configurations. For a full list of
-supported configurations, view the `rt.conf `__ file.
+supported configurations, view the `rt.conf `__ file.
.. attention::
@@ -31,12 +31,18 @@ supported configurations, view the `rt.conf `
- Standalone Atmospheric Model (:term:`ATM`)
+ * - :ref:`ATMW `
+ - Coupled :term:`ATM` and :term:`WW3`
+ * - :ref:`ATMAERO `
+ - Coupled :term:`ATM` and :term:`GOCART`
* - :ref:`ATML `
- Coupled :term:`ATM` and :term:`LND`
* - :ref:`LND `
- Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS`
* - :ref:`RRFS `
- :term:`ATM` with :term:`data assimilation`
+ * - :ref:`HAFS `
+ - Coupled components may include :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`MOM6` - :term:`CMEPS`
This chapter details the supported build/run options for each supported configuration.
Click on the configuration category in :numref:`Table %s `
@@ -200,16 +206,132 @@ Information on ``ufs.configure`` files is available in :numref:`Section %s `__.
+.. _atmw-documented:
ATMW
=======
-**COMING SOON!**
+The ATMW configuration couples :term:`ATM` with :term:`WaveWatch III`.
+These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``.
+
+.. list-table:: *ATMW regression test descriptions*
+ :widths: 50 10 30 50 10 10 10 10 10
+ :header-rows: 1
+
+ * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|
+ - Description
+ - General Physics Parameters
+ - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions)
+ - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp|
+ - Fcst Length (hours)
+ - Output Grid
+ - Configuration Files
+ - Other
+ * - `atmwav_control_noaero_p8 `__
+ - Compare global control results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_GFS_v16" :raw-html:`
`
+
+ **Microphysics:** IMP_PHYSICS=8 :raw-html:`
`
+
+ **Time Step:** DT_ATMOS=720 :raw-html:`
`
+
+ - **Set to FALSE:** LHEATSTRG, DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, MULTIGRID, USE_CICE_ALB, DO_RRTMGP :raw-html:`
`
+ **Set to TRUE:** USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, CPL, CPLWAV, CPLWAV2ATM, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF :raw-html:`
`
+ **Set to VALUE:** IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, IAER=1011, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DNATS=0, DZ_MIN=6, cap_dbug_flag=0, MIN_SEAICE=0.15,
+ - 2021-03-22 06:00:00
+ - 12
+ - OUTPUT_GRID=gaussian_grid :raw-html:`
`
+ **Grid Parameters**: INPES=$INPES_cpl_atmw, JNPES=$JNPES_cpl_atmw, NPZ=127, NPZP=128
+ - FIELD_TABLE=field_table_thompson_noaero_tke
+ DIAG_TABLE=diag_table_p8_template
+ INPUT_NML=cpld_control.nml.IN
+ UFS_CONFIGURE=ufs.configure.atmw.IN
+ FV3_RUN=control_run.IN
+ - RUNTYPE=startup, med_model=cmeps, atm_model=fv3, wav_model=ww3
+
+.. _atmaero-documented:
ATMAERO
=========
-**COMING SOON!**
+The ATMAERO configuration couples :term:`ATM` with :term:`GOCART`.
+These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``.
+
+.. attention::
+
+ Certain physics-related settings are common to all of the supported RRFS configurations. These values are set in each test's configuration file because they differ from the ``default_vars.sh`` values:
+
+ General Physics Parameters:
+ * **Suite:** CCPP_SUITE= `FV3_GFS_v17_p8 `__
+ * **Microphysics:** IMP_PHYSICS=8
+ * **Time Step:** DT_ATMOS=720
+
+ Detailed Physics Parameters:
+ * **Set to FALSE:** DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, USE_CICE_ALB, DO_RRTMGP
+ * **Set to TRUE:** WRITE_DOPOST, CPL, CPLCHM, USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF
+ * **Set to VALUE:** NSTF_NAME='2,0,0,0,0', atm_model='fv3', chm_model='gocart', DOMAINS_STACK_SIZE=8000000, IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, GWD_OPT=2, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DZ_MIN=6, MIN_SEAICE=0.15
+
+ The "Detailed Physics Parameters" column in :numref:`Table %s ` details physics settings that differ from both the ``default_vars.sh`` values and these ATMAERO-specific defaults.
+
+.. _atmaero-rts:
+
+.. list-table:: *ATMAERO regression test descriptions*
+ :widths: 50 10 50 10 10 10 10 10
+ :header-rows: 1
+
+ * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|
+ - Description
+ - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions)
+ - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp|
+ - Fcst Length (hours)
+ - Output Grid
+ - Configuration Files
+ - Other
+ * - `atmaero_control_p8 `__
+ - Compare global results for prognostic aerosols with previous trunk version
+ - **Set to FALSE:** LHEATSTRG :raw-html:`
`
+ **Set to TRUE:** ATMAERO default values only :raw-html:`
`
+ **Set to VALUE:** IAER=1011, DNATS=2
+ - 2021-03-22 06:00:00
+ - 24
+ - OUTPUT_GRID=gaussian_grid :raw-html:`
`
+ **Grid Parameters**: INPES=${INPES_atmaero}, JNPES=${JNPES_atmaero}, NPZ=127, NPZP=128
+ - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
+ DIAG_TABLE=diag_table_cpld.IN
+ INPUT_NML=ufs.configure.atmaero_esmf.IN
+ UFS_CONFIGURE=ufs.configure.atmaero.IN
+ FV3_RUN=control_run.IN
+ - RESTART_INTERVAL=12 -1
+ * - `atmaero_control_p8_rad `__
+ - Compare global results for prognostic aerosols with previous trunk version
+ - **Set to FALSE:** ATMAERO values only :raw-html:`
`
+ **Set to TRUE:** LHEATSTRG :raw-html:`
`
+ **Set to VALUE:** IAER=2011, DNATS=2
+ - 2021-03-22 06:00:00
+ - 24
+ - OUTPUT_GRID=gaussian_grid :raw-html:`
`
+ **Grid Parameters**: NPZ=127, NPZP=128
+ - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
+ DIAG_TABLE=diag_table_cpld.IN
+ INPUT_NML=cpld_control.nml.IN
+ UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN
+ FV3_RUN=control_run.IN
+ - RESTART_INTERVAL=12 -1
+ * - `atmaero_control_p8_rad_micro `__
+ - Compare global results for prognostic aerosols with previous trunk version
+ - **Set to FALSE:** :raw-html:`
`
+ **Set to TRUE:** LHEATSTRG :raw-html:`
`
+ **Set to VALUE:** IAER=2011, DNATS=4
+ - 2021-03-22 06:00:00
+ - 24
+ - OUTPUT_GRID=gaussian_grid :raw-html:`
`
+ **Grid Parameters**: NPZ=127, NPZP=128
+ - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
+ DIAG_TABLE=diag_table_p8_gocart_micro
+ INPUT_NML=merra2_thompson.nml.IN
+ UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN
+ FV3_RUN=control_run.IN
+ - RESTART_INTERVAL='12 -1'
ATMAQ
=======
@@ -335,7 +457,7 @@ Each test file lists the input files required for a given test. Input files requ
Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__.
-Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files.
+Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files.
.. _lnd-documented:
@@ -397,13 +519,510 @@ NG-GODAS
**COMING SOON!**
+.. _hafs-documented:
+
========================================================
Hurricane Analysis and Reforecast System Configurations
========================================================
-**COMING SOON!**
+The HAFS configuration uses an :term:`DATM`-only configuration.
+
+These tests use the default values set in the ``export_fv3``, ``export_hafs``, ``export_hafs_regional``, ``export_hafs_datm_cdeps``, and ``export_hafs_docn_cdeps`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first.
+
+.. note::
+
+ ``export_hafs`` calls ``export_hafs_regional``, which calls ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_hafs``, ``export_hafs_regional``, and then values in ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``.
+
+
+.. list-table:: *Default physics-related variables used in the HAFS configurations below*
+ :widths: 10 50
+ :header-rows: 1
+ * - Export Function
+ - Variables
+ * - export_hafs
+ - **Set to FALSE:** S2S, AQM, DATM_CDEPS, DOCN_CDEPS, HYBEDMF, CNVGWD, LTAEROSOL, LHEATSTRG, IS_MOVING_NEST :raw-html:`
`
+ **Set to TRUE:** FV3, HAFS, SATMEDMF, HURR_PBL, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_SS, DO_GSL_DRAG_TOFD, LRADAR, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:** NTILES=1, IMFSHALCNV=2, IMFDEEPCNV=2, MONINQ_FAC=-1.0, ISATMEDMF=1, IOPT_SFC=1, IOPT_DVEG=2, IOPT_CRS=1, IOPT_RAD=1, IOPT_ALB=2, IOPT_STC=1, LSM=1, IMP_PHYSICS=11, IAER=111, CDMBWD=1.0,1.0,1.0,1.0, FV_CORE_TAU=5., RF_CUTOFF=30.e2, RF_CUTOFF_NEST=50.e2, VORTEX_TRACKER=0, NTRACK=0, MOVE_CD_X=0, MOVE_CD_Y=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, NSOUT=-1, OUTPUT_FH=-1
+ * - export_hafs_regional
+ - **Set to FALSE:** S2S, AQM, DOCN_CDEPS, WRITE_DOPOST, USE_COLDSTART, MULTIGRID :raw-html:`
`
+ **Set to TRUE:** FV3, HAFS, CPL, QUILTING, OUTPUT_HISTORY, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:** NTILES=1, FHMAX=6, ENS_NUM=1, DT_ATMOS=900, RESTART_INTERVAL=0, FHROT=0, coupling_interval_fast_sec=0, WRITE_GROUP=1, WRTTASK_PER_GROUP=6, NUM_FILES=2, FILENAME_BASE="'atm' 'sfc'", OUTPUT_GRID="'regional_latlon'", OUTPUT_FILE="'netcdf'", IDEFLATE=0, QUANTIZE_NSD=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, CEN_LON=-62.0, CEN_LAT=25.0, LON1=-114.5, LAT1=-5.0, LON2=-9.5, LAT2=55.0, DLON=0.03, DLAT=0.03, DIAG_TABLE=diag_table_hafs, FIELD_TABLE=field_table_hafs, WW3OUTDTHR=3, OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP", WAV_CUR='C', med_model=cmeps, pio_rearranger=box, CAP_DBUG_FLAG=0, CPLMODE=hafs, RUNTYPE=startup, MESH_WAV=mesh.hafs.nc, MODDEF_WAV=mod_def.natl_6m
+ * - export_hafs_datm_cdeps
+ - **Set to FALSE:** FV3, S2S, AQM, DOCN_CDEPS :raw-html:`
`
+ **Set to TRUE:** HAFS, DATM_CDEPS :raw-html:`
`
+ **Set to VALUE:** NTILES=1, atm_model=datm, DATM_IN_CONFIGURE=datm_in, DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN
+ * - export_hafs_docn_cdeps
+ - **Set to FALSE:** S2S, AQM :raw-html:`
`
+ **Set to TRUE:** FV3, HAFS, DOCN_CDEPS :raw-html:`
`
+ **Set to VALUE:** NTILES=1, ocn_model=docn, ocn_datamode=sstdata, pio_rearranger=box, DOCN_IN_CONFIGURE=docn_in, DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN
+
+.. _hafs-rts:
+
+.. list-table:: *HAFS regression test descriptions*
+ :widths: 50 10 30 50 10 10 10 10 10
+ :header-rows: 1
+
+ * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|
+ - Description
+ - General Physics Parameters
+ - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions)
+ - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp|
+ - Fcst Length (hours)
+ - Output Grid
+ - Configuration Files
+ - Other
+ * - `rhafs_global_1nest_atm `__
+ - Compare HAFS global with 1 nest and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=90
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`
`
+ **Set to VALUE:**
+ See ``export_hafs`` default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_global_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_global_multiple_4nests_atm `__
+ - Compare HAFS global with 4 multiple nests and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=90
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=regional_latlon, OUTPUT_GRID_3=rotated_latlon, OUTPUT_GRID_4=rotated_latlon, OUTPUT_GRID_5=rotated_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=241, NPY_NEST03=241, INPES_NEST04=6, JNPES_NEST04=10, NPX_NEST04=361, NPY_NEST04=361, INPES_NEST05=6, JNPES_NEST05=10, NPX_NEST05=361, NPY_NEST05=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_global_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ INPUT_NEST03_NML=input_nest_hafs.nml.IN
+ INPUT_NEST04_NML=input_nest_hafs.nml.IN
+ INPUT_NEST05_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_global_storm_following_1nest_atm `__
+ - Compare HAFS global with 1 storm-following moving nest and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=73, NPY_NEST02=73
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_global_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_1nest_atm `__
+ - Compare HAFS regional with 1 nest and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=90
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM, NESTED :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_atm `__
+ - Compare HAFS regional atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_atm_ocn `__
+ - Compare HAFS regional atmosphere-ocean coupled HYCOM results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_atm_ocn_wav `__
+ - Compare HAFS regional atmosphere-ocean-wave coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV2ATM, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_atm_thompson_gfdlsf `__
+ - Compare the results from HAFS regional atmosphere only using the Thompson microphysics scheme and GFDL surface layer scheme with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_thompson_tedmf_gfdlsf"
+
+ **Microphysics:** IMP_PHYSICS=8
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, DO_SAT_ADJ, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=cubed_sphere_grid :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs_thompson
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_atm_wav `__
+ - Compare HAFS regional atmosphere-wave coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLOCN2ATM, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_wav.IN"
+ FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_datm_cdeps `__
+ - Compare HAFS regional coupled CDEPS data atmosphere from ERA5 with regional HYCOM results with previous trunk version
+ - N/A: No active atmospheric component
+ - **Set to FALSE:** CPLWAV, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_datm_cdeps then export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 24
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=$INPES_dflt, JNPES=$JNPES_dflt
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN"
+ FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN"
+ DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_docn `__
+ - Compare HAFS regional coupled with regional data ocean from MOM6 results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 24
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN"
+ FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_mom6.IN"
+ DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_docn_oisst `__
+ - Compare HAFS regional coupled with global data ocean from OISST results with previous trunk version
+ - **Suite:** CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values.
+ - 2019-08-29 00:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN"
+ FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_oisst.IN"
+ DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_specified_moving_1nest_atm `__
+ - Compare HAFS regional with 1 specified moving nest and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_storm_following_1nest_atm `__
+ - Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_storm_following_1nest_atm_ocn `__
+ - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional default values then export_hafs.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__
+ - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional default values then export_hafs.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__
+ - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional default values then export_hafs.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`
`
+ **Grid Parameters**: INPES=$INPES_thrd, JNPES=$JNPES_thrd, INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1))
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_storm_following_1nest_atm_ocn_wav `__
+ - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=180
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs_regional default values then export_hafs.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN"
+ FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ * - `hafs_regional_telescopic_2nests_atm `__
+ - Compare HAFS regional with two telescopic nests and atmosphere only results with previous trunk version
+ - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf"
+
+ **Microphysics:** IMP_PHYSICS=11
+
+ **Time Step:** DT_ATMOS=90
+ - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CMEPS, USE_COLDSTART :raw-html:`
`
+ **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`
`
+ **Set to VALUE:**
+ Also, see export_hafs default values.
+ - 2020-08-25 12:00:00
+ - 6
+ - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=lambert_conformal, OUTPUT_GRID_3=regional_latlon :raw-html:`
`
+ **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=361, NPY_NEST03=361
+ - FIELD_TABLE=field_table_hafs
+ DIAG_TABLE=diag_table_hafs_template
+ INPUT_NML=input_regional_hafs.nml.IN
+ INPUT_NEST02_NML=input_nest_hafs.nml.IN
+ INPUT_NEST03_NML=input_nest_hafs.nml.IN
+ MODEL_CONFIGURE="model_configure_hafs.IN"
+ UFS_CONFIGURE="ufs.configure.hafs_atm.IN"
+ FV3_RUN="hafs_fv3_run.IN"
+ - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+**Sample** ``CMAKE_FLAGS`` **Setting**
+.. code-block:: console
+
+ export CMAKE_FLAGS="-DAPP=HAFS"
+**Supported Physics Suites**
+
+.. list-table:: *Physics suites used in the HAFS configurations above*
+ :widths: 10 50
+ :header-rows: 1
+
+ * - Physics Suite
+ - Description
+ * - FV3_HAFS_v1_gfdlmp_tedmf
+ - The FV3_HAFS_v1_gfdlmp_tedmf physics suite is described in the :term:`CCPP` documentation `here `__.
+ * - FV3_HAFS_v1_gfdlmp_tedmf_nonsst
+ - The FV3_HAFS_v1_gfdlmp_tedmf_nonsst physics suite is described in the CCPP documentation `here `__.
+ * - FV3_HAFS_v1_thompson_tedmf_gfdlsf
+ - The FV3_HAFS_v1_thompson_tedmf_gfdlsf physics suite is described in the CCPP documentation `here `__.
diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst
index 236faec8e7..939f057bd6 100644
--- a/doc/UsersGuide/source/FAQ.rst
+++ b/doc/UsersGuide/source/FAQ.rst
@@ -166,7 +166,7 @@ options:
MOM6, CICE6 and CMEPS restart files
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-In ``nems.configure``, set the ALLCOMP_attribute ``restart_n`` to a
+In ``ufs.configure``, set the ALLCOMP_attribute ``restart_n`` to a
value greater than the forecast length.
MOM6 history files
@@ -229,11 +229,11 @@ How do I set the total number of tasks for my job?
In the UFS WM, each component's MPI task information, including the
starting and ending tasks and the number of threads, are specified
using the component-specific ``petlist_bounds`` and
-``omp_num_threads`` in ``nems.configure``. In general, the total
+``omp_num_threads`` in ``ufs.configure``. In general, the total
number of MPI tasks required is the sum of all the sub-component
tasks, as long as those components do not overlap (i.e., share the
same PETs). An example of a global 5 component coupled configuration
-nems.configure at the end of this section.
+ufs.configure at the end of this section.
FV3atm
^^^^^^
@@ -286,7 +286,7 @@ If ESMF-managed threading is used, the total number of PETs for the
atmosphere component is given by the product of the number of threads
requested and the total number of MPI ranks (both forecast and write
grid component). If ``num_threads_atm`` is the number of threads
-specified for the FV3atm component, in ``nems.configure`` the ATM PET
+specified for the FV3atm component, in ``ufs.configure`` the ATM PET
bounds are given by
::
@@ -295,7 +295,7 @@ bounds are given by
ATM_omp_num_threads num_threads_atm
Note that in UWM, the ATM component is normally listed first in
-``nems.configure`` so that the starting PET for the ATM is 0.
+``ufs.configure`` so that the starting PET for the ATM is 0.
GOCART
^^^^^^
@@ -330,7 +330,7 @@ MPI tasks for CMEPS is given by
total_tasks_med = smaller of (300, FV3atm forecast tasks)
-and in ``nems.configure``
+and in ``ufs.configure``
::
@@ -342,7 +342,7 @@ MOM6
For MOM6 the only restriction currently on the number of MPI ranks
used by MOM6 is that it is divisible by 2. The starting PET in
-``nems.configure`` will be the last PET of the preceding component,
+``ufs.configure`` will be the last PET of the preceding component,
incremented by one. Threading in MOM6 is not recommended at this time.
::
@@ -388,14 +388,14 @@ For the 1-deg CICE domain for example, ``ice_in`` would be
In UFS, only a single thread is used for CICE so for ``nprocs`` set in
-``ice_in``, the tasks in ``nems.configure`` are set as:
+``ice_in``, the tasks in ``ufs.configure`` are set as:
::
ICE_petlist_bounds: starting_ICE_PET nprocs+starting_ICE_PET-1
ICE_omp_num_threads: 1
-The starting ICE PET in ``nems.configure`` will be the last PET of the
+The starting ICE PET in ``ufs.configure`` will be the last PET of the
preceding component, incremented by one.
WW3
@@ -409,20 +409,20 @@ for WW3 and the number of threads to be used.
WAV_petlist_bounds: starting_WAV_PET num_tasks_wav*num_threads_wav+starting_WAV_PET-1
WAV_omp_num_threads: num_threads_wav
-The starting WAV PET in ``nems.configure`` will be the last PET of the
+The starting WAV PET in ``ufs.configure`` will be the last PET of the
preceding component, incremented by one.
-Example: 5-component nems.configure
+Example: 5-component ufs.configure
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-For the fully coupled S2SWA application, a sample ``nems.configure`` is shown below :
+For the fully coupled S2SWA application, a sample ``ufs.configure`` is shown below :
.. code-block:: console
#############################################
- #### NEMS Run-Time Configuration File #####
+ #### UFS Run-Time Configuration File #####
#############################################
# ESMF #
diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst
index b3b7567fda..fbf767c263 100644
--- a/doc/UsersGuide/source/InputsOutputs.rst
+++ b/doc/UsersGuide/source/InputsOutputs.rst
@@ -2288,7 +2288,7 @@ on the monthly, daily, hourly, yearly or timestep intervals set by the *histfreq
*0* for both monthly and daily frequencies and neither yearly nor per-timestep output is requested, only 6-hour
mean history files will be produced.
-Further details of the configuration of CICE model output can be found in the CICE documentation `Section 3.1.4 `__.
+Further details of the configuration of CICE model output can be found in the CICE documentation `Section 3.1.4 `__.
.. _ww3-out:
diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst
index 0da2908b2a..b2d86b08c1 100644
--- a/doc/UsersGuide/source/Introduction.rst
+++ b/doc/UsersGuide/source/Introduction.rst
@@ -47,7 +47,7 @@ The UFS WM code is portable and can be used with Linux or Mac operating systems
Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `__ to make sure no inadvertent changes to the results have been introduced during the development process.
-Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community.
+Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community.
This WM User's Guide is organized as follows:
@@ -57,6 +57,8 @@ This WM User's Guide is organized as follows:
* :numref:`Chapter %s ` (Data: Input, Model Configuration, and Output Files) lists the model inputs and outputs and has a description of the key files.
+ * :numref:`Chapter %s ` (Configurations) lists the currently supported configurations for the UFS WM.
+
* :numref:`Chapter %s ` (Configuration Parameters) lists the purpose and valid values for various configuration parameters.
* :numref:`Chapter %s ` (Automated Testing) describes UFS WM automated testing options.
diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py
index e7c00bd318..546afb385f 100644
--- a/doc/UsersGuide/source/conf.py
+++ b/doc/UsersGuide/source/conf.py
@@ -69,9 +69,12 @@
# The master toctree document.
master_doc = 'index'
-# The language for content autogenerated by Sphinx.
-# Not set because default is 'en'.
-# language = 'en'
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#
+# This is also used if you do content translation via gettext catalogs.
+# Usually you set "language" from the command line for these cases.
+language = 'en'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
From 47c00995706380f9827a7e98bd242ffc6e4a7f01 Mon Sep 17 00:00:00 2001
From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com>
Date: Wed, 17 Apr 2024 15:59:48 -0400
Subject: [PATCH 23/33] Add bash linting to CI. Cleanup .sh scripts a bit.
Address .sh bugs. Adds -v Verbose option. (#2218) Remove nowarn Intel
compiler flag (#2225)
* UFSWM
- Add bash linting to CI:
- uses superlinter to check for consistent bash code writing
- Cleans up .sh scripts to comply with superlinter
- Cleans up .sh scripts to be more consistent, easier to read.
- Add's -v verbose option if debugging outputs needed, otherwise simplifies rt.sh run echo's.
- Addresses smaller bugs
- quota/timeout search logic adjusted.
- check for dirs existing (DISKNM, STMP, PTMP) before starting.
- adjustments/cleanup to ecflow/rocoto sections
- rt.sh will attempt to start ecflow, and only stop ecflow if it started from rt.sh.
- fix for issue where run_dir will not delete properly.
* FV3: Address compiler warnings
* atmos_cubed_sphere: Address compiler warnings.
---
.github/workflows/superlinter.yml | 37 +
.shellcheckrc | 16 +
FV3 | 2 +-
build.sh | 24 +-
cmake/Intel.cmake | 8 +-
stochastic_physics | 2 +-
tests/compile.sh | 97 +-
tests/default_vars.sh | 3034 +++++++++--------
tests/fv3_conf/compile_slurm.IN_hera | 17 +-
tests/fv3_conf/fv3_slurm.IN_hera | 22 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_derecho.log | 592 ++--
tests/logs/RegressionTests_gaea.log | 546 ++-
tests/logs/RegressionTests_hera.log | 720 ++--
tests/logs/RegressionTests_hercules.log | 725 ++--
tests/logs/RegressionTests_jet.log | 480 ++-
tests/logs/RegressionTests_orion.log | 547 ++-
tests/logs/RegressionTests_wcoss2.log | 464 ++-
tests/module-setup.sh | 22 +-
tests/opnReqTest | 2 +-
tests/rt.conf | 2 +-
tests/rt.sh | 1352 ++++----
tests/rt_utils.sh | 663 ++--
tests/run_compile.sh | 69 +-
tests/run_test.sh | 306 +-
27 files changed, 5135 insertions(+), 4710 deletions(-)
create mode 100644 .github/workflows/superlinter.yml
create mode 100644 .shellcheckrc
diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml
new file mode 100644
index 0000000000..4b1ffea8d2
--- /dev/null
+++ b/.github/workflows/superlinter.yml
@@ -0,0 +1,37 @@
+---
+name: Super-Linter
+
+on:
+ push: null
+ pull_request: null
+
+jobs:
+ build:
+ name: Lint
+ runs-on: ubuntu-latest
+
+ permissions:
+ contents: read
+ packages: read
+ statuses: write
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: Super-Linter
+ uses: super-linter/super-linter@v6.3.0
+ env:
+ LINTER_RULES_PATH: /
+ DEFAULT_BRANCH: origin/develop
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ FILTER_REGEX_EXCLUDE: .*(tests/fv3_conf/.*|tests/ci/.*|tests/auto/.*|tests/auto-jenkins/.*|tests/opnReqTests/.*|tests/opnReqTest|tests/atparse.bash).*
+ VALIDATE_BASH: true
+ BASH_SEVERITY: style
+ #VALIDATE_GITHUB_ACTIONS: true
+ #VALIDATE_LUA: true
+ #VALIDATE_MARKDOWN: true
+ #VALIDATE_PYTHON_PYLINT: true
+ #VALIDATE_YAML: true
diff --git a/.shellcheckrc b/.shellcheckrc
new file mode 100644
index 0000000000..95525eb590
--- /dev/null
+++ b/.shellcheckrc
@@ -0,0 +1,16 @@
+# Global settings for Shellcheck (https://github.com/koalaman/shellcheck)
+enable=all
+
+external-sources=true
+
+# Disable variable referenced but not assigned
+disable=SC2154
+
+# Disable following non-constant source
+disable=SC1090
+
+# Disable non-existent binary
+disable=SC1091
+
+# Disable -p -m only applies to deepest directory
+disable=SC2174
\ No newline at end of file
diff --git a/FV3 b/FV3
index 37e7d4859d..979bcab28f 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 37e7d4859db4eb75472091abc650831060037715
+Subproject commit 979bcab28f63b37411698cd9d23d04d0b0fe3a7e
diff --git a/build.sh b/build.sh
index 6b6e5e1249..a92ee521f2 100755
--- a/build.sh
+++ b/build.sh
@@ -1,21 +1,29 @@
#!/bin/bash
set -eu
-
-if [[ $(uname -s) == Darwin ]]; then
- readonly UFS_MODEL_DIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
+uname_s=$(uname -s)
+if [[ ${uname_s} == Darwin ]]; then
+ UFS_MODEL_DIR=$(greadlink -f -n "${BASH_SOURCE[0]}")
+ UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}")
+ UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P)
else
- readonly UFS_MODEL_DIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
+ UFS_MODEL_DIR=$(readlink -f -n "${BASH_SOURCE[0]}")
+ UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}")
+ UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P)
fi
+echo "UFS MODEL DIR: ${UFS_MODEL_DIR}"
+readonly UFS_MODEL_DIR
export CC=${CC:-mpicc}
export CXX=${CXX:-mpicxx}
export FC=${FC:-mpif90}
BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build}
-mkdir -p ${BUILD_DIR}
+mkdir -p "${BUILD_DIR}"
-cd ${BUILD_DIR}
-cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS}
+cd "${BUILD_DIR}"
+ARR_CMAKE_FLAGS=()
+for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done
+cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}"
# Turn off OpenMP threading for parallel builds
# to avoid exhausting the number of user processes
-OMP_NUM_THREADS=1 make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-}
+OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-1}"
\ No newline at end of file
diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake
index 0982761bfe..a18ff15fc2 100644
--- a/cmake/Intel.cmake
+++ b/cmake/Intel.cmake
@@ -1,6 +1,12 @@
-set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align")
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox -align array64byte -qno-opt-dynamic-align")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align -sox -fp-model source")
+# warning #5462: Global name too long.
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462")
+
+# remark #7712: This variable has not been used.
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712")
+
if(CMAKE_Platform STREQUAL "derecho.intel")
set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries")
endif()
diff --git a/stochastic_physics b/stochastic_physics
index 7dc4d9ba48..31e4e3e57b 160000
--- a/stochastic_physics
+++ b/stochastic_physics
@@ -1 +1 @@
-Subproject commit 7dc4d9ba48dea57f88f4f10091c8c2042105954e
+Subproject commit 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a
diff --git a/tests/compile.sh b/tests/compile.sh
index 3cf536428b..458d985a88 100755
--- a/tests/compile.sh
+++ b/tests/compile.sh
@@ -7,73 +7,82 @@ function trim {
var="${var#"${var%%[![:space:]]*}"}"
# remove trailing whitespace characters
var="${var%"${var##*[![:space:]]}"}"
- echo -n "$var"
+ echo -n "${var}"
}
SECONDS=0
-if [[ $(uname -s) == Darwin ]]; then
- readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
+uname_s=$(uname -s)
+if [[ ${uname_s} == Darwin ]]; then
+ greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" )
+ MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P)
else
- readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P)
+ readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" )
+ MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P)
fi
+readonly MYDIR
# ----------------------------------------------------------------------
# Parse arguments.
readonly ARGC=$#
-if [[ $ARGC -lt 2 ]]; then
- echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]"
+if [[ ${ARGC} -lt 2 ]]; then
+ echo "Usage: $0 MACHINE_ID [ MAKE_OPT ] [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ]"
echo Valid MACHINE_IDs:
- echo $( ls -1 ../cmake/configure_* | sed s:.*configure_::g | sed s:\.cmake:: ) | fold -sw72
+ echostuff=$( ls -1 ../cmake/configure_* )
+ echostuff=${echostuff/:.*configure_::g}
+ echostuff=${echostuff/:\.cmake::}
+ echostuff=$( fold -sw72 <<< "${echostuff}" )
exit 1
else
MACHINE_ID=$1
MAKE_OPT=${2:-}
- COMPILE_ID=${3:+_$3}
+ COMPILE_ID=${3:+$3}
RT_COMPILER=${4:-intel}
clean_before=${5:-YES}
clean_after=${6:-YES}
fi
-BUILD_NAME=fv3${COMPILE_ID}
+BUILD_NAME=fv3_${COMPILE_ID}
-PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )}
+PATHTR=${PATHTR:-$( cd "${MYDIR}/.." && pwd )}
BUILD_DIR=${BUILD_DIR:-$(pwd)/build_${BUILD_NAME}}
# ----------------------------------------------------------------------
# Make sure we have reasonable number of threads.
-if [[ $MACHINE_ID == derecho ]]; then
+if [[ ${MACHINE_ID} == derecho ]]; then
BUILD_JOBS=${BUILD_JOBS:-3}
fi
BUILD_JOBS=${BUILD_JOBS:-8}
-hostname
+#hostname
set +x
-if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then
- source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}
-else
- # Activate lua environment for gaea c5
- if [[ $MACHINE_ID == gaea ]]; then
- module reset
- fi
- # Load fv3 module
- module use $PATHTR/modulefiles
- modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}"
- module load $modulefile
- module list
-fi
+case ${MACHINE_ID} in
+ macosx|linux)
+ source "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}"
+ ;;
+ *)
+ # Activate lua environment for gaea c5
+ if [[ ${MACHINE_ID} == gaea ]]; then
+ module reset
+ fi
+ # Load fv3 module
+ module use "${PATHTR}/modulefiles"
+ modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}"
+ module load "${modulefile}"
+ module list
+esac
set -x
-echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID"
+echo "Compiling ${MAKE_OPT} into ${BUILD_NAME}.exe on ${MACHINE_ID}"
# set CMAKE_FLAGS based on $MAKE_OPT
-CMAKE_FLAGS=$MAKE_OPT
+CMAKE_FLAGS=${MAKE_OPT}
CMAKE_FLAGS+=" -DMPI=ON"
if [[ ${MAKE_OPT} == *-DDEBUG=ON* ]]; then
@@ -87,15 +96,11 @@ fi
# Check if suites argument is provided or not
set +ex
-TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" )
-if [[ $? -eq 0 ]]; then
- SUITES=$( echo $MAKE_OPT | sed 's/.*-DCCPP_SUITES=//' | sed 's/ .*//' )
- echo "Compiling suites ${SUITES}"
-fi
+SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}")
+export SUITES
set -ex
# Valid applications
-
if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then
CMAKE_FLAGS+=" -DMOM6SOLO=ON"
fi
@@ -104,31 +109,27 @@ if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then
CMAKE_FLAGS+=" -DMOM6SOLO=ON"
fi
-CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}")
+CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}")
echo "CMAKE_FLAGS = ${CMAKE_FLAGS}"
-if [ $clean_before = YES ] ; then
- rm -rf ${BUILD_DIR}
-fi
+[[ ${clean_before} = YES ]] && rm -rf "${BUILD_DIR}"
export BUILD_VERBOSE=1
export BUILD_DIR
export BUILD_JOBS
export CMAKE_FLAGS
-bash -x ${PATHTR}/build.sh
+bash -x "${PATHTR}/build.sh"
-mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe
-if [[ $MACHINE_ID == linux ]]; then
- cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} ${PATHTR}/tests/modules.${BUILD_NAME}
+mv "${BUILD_DIR}/ufs_model" "${PATHTR}/tests/${BUILD_NAME}.exe"
+if [[ ${MACHINE_ID} == linux ]]; then
+ cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}" "${PATHTR}/tests/modules.${BUILD_NAME}"
else
- cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua
+ cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua" "${PATHTR}/tests/modules.${BUILD_NAME}.lua"
fi
-if [ $clean_after = YES ] ; then
- rm -rf ${BUILD_DIR}
-fi
+[[ ${clean_after} == YES ]] && rm -rf "${BUILD_DIR}"
-elapsed=$SECONDS
-echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished"
-echo "Compile ${COMPILE_ID/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_ID}_time.log
+elapsed=${SECONDS}
+echo "Elapsed time ${elapsed} seconds. Compiling ${CMAKE_FLAGS} finished"
+echo "Compile ${COMPILE_ID} elapsed time ${elapsed} seconds. ${CMAKE_FLAGS}" > "compile_${COMPILE_ID}_time.log"
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index 3f969d191d..7bbbd3652f 100755
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -1,4 +1,4 @@
-
+#!/bin/bash
###############################################################################
#
# Export variables to the default values
@@ -9,291 +9,400 @@
THRD=1
- INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6
-
- THRD_cpl_atmw=1
- INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6
- WAV_tasks_cpl_atmw=30
- WAV_thrds_cpl_atmw=1
-
- THRD_cpl_c48=1
- INPES_cpl_c48=1; JNPES_cpl_c48=1; WPG_cpl_c48=6
- OCN_tasks_cpl_c48=4
- ICE_tasks_cpl_c48=4
-
- THRD_cpl_dflt=1
- INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6
- OCN_tasks_cpl_dflt=20
- ICE_tasks_cpl_dflt=10
- WAV_tasks_cpl_dflt=20
-
- THRD_cpl_thrd=2
- INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6
- OCN_tasks_cpl_thrd=20
- OCN_thrds_cpl_thrd=1
- ICE_tasks_cpl_thrd=10
- ICE_thrds_cpl_thrd=1
- WAV_tasks_cpl_thrd=12
- WAV_thrds_cpl_thrd=2
-
- THRD_cpl_dcmp=1
- INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6
- OCN_tasks_cpl_dcmp=20
- ICE_tasks_cpl_dcmp=10
- WAV_tasks_cpl_dcmp=20
-
- THRD_cpl_mpi=1
- INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6
- OCN_tasks_cpl_mpi=34
- ICE_tasks_cpl_mpi=20
- WAV_tasks_cpl_mpi=28
-
- THRD_cpl_bmrk=2
- INPES_cpl_bmrk=8; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48
- OCN_tasks_cpl_bmrk=120
- OCN_thrds_cpl_bmrk=1
- ICE_tasks_cpl_bmrk=48
- ICE_thrds_cpl_bmrk=1
- WAV_tasks_cpl_bmrk=80
- WAV_thrds_cpl_bmrk=2
-
- THRD_cpl_c192=2
- INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12
- OCN_tasks_cpl_c192=60
- ICE_tasks_cpl_c192=24
- WAV_tasks_cpl_c192=80
-
- ATM_compute_tasks_cdeps_100=12
- OCN_tasks_cdeps_100=16
- ICE_tasks_cdeps_100=12
-
- ATM_compute_tasks_cdeps_025=40
- OCN_tasks_cdeps_025=120
- ICE_tasks_cdeps_025=48
-
- INPES_aqm=33; JNPES_aqm=8
-
- THRD_cpl_unstr=1
- INPES_cpl_unstr=3; JNPES_cpl_unstr=8; WPG_cpl_unstr=6
- OCN_tasks_cpl_unstr=20
- ICE_tasks_cpl_unstr=10
- WAV_tasks_cpl_unstr=60
-
- THRD_cpl_unstr_mpi=1
- INPES_cpl_unstr_mpi=4; JNPES_cpl_unstr_mpi=8; WPG_cpl_unstr_mpi=6
- OCN_tasks_cpl_unstr_mpi=34
- ICE_tasks_cpl_unstr_mpi=20
- WAV_tasks_cpl_unstr_mpi=50
-
- aqm_omp_num_threads=1
- atm_omp_num_threads=1
- chm_omp_num_threads=1
- ice_omp_num_threads=1
- lnd_omp_num_threads=1
- med_omp_num_threads=1
- ocn_omp_num_threads=1
- wav_omp_num_threads=1
-
-if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then
-
- TPN=128
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
-elif [[ $MACHINE_ID = orion ]]; then
-
- TPN=40
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
-elif [[ $MACHINE_ID = hercules ]]; then
-
- TPN=80
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
-
-elif [[ $MACHINE_ID = hera ]]; then
-
- TPN=40
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=4
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
-elif [[ $MACHINE_ID = linux ]]; then
-
- TPN=40
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
-
- THRD_cpl_dflt=1
- INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6
- OCN_tasks_cpl_dflt=20
- ICE_tasks_cpl_dflt=10
- WAV_tasks_cpl_dflt=20
-
- THRD_cpl_thrd=2
- INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6
- OCN_tasks_cpl_thrd=20
- ICE_tasks_cpl_thrd=10
- WAV_tasks_cpl_thrd=12
-
-elif [[ $MACHINE_ID = jet ]]; then
-
- TPN=24
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
- WRTTASK_PER_GROUP_c384=84
- WRTTASK_PER_GROUP_c384gdas=88
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=240
+ export INPES_atmaero=4
+ export JNPES_atmaero=8
+ export WPG_atmaero=6
+
+ export THRD_cpl_atmw=1
+ export INPES_cpl_atmw=3
+ export JNPES_cpl_atmw=8
+ export WPG_cpl_atmw=6
+ export WAV_tasks_cpl_atmw=30
+ export WAV_thrds_cpl_atmw=1
+
+ export THRD_cpl_c48=1
+ export INPES_cpl_c48=1
+ export JNPES_cpl_c48=1
+ export WPG_cpl_c48=6
+ export OCN_tasks_cpl_c48=4
+ export ICE_tasks_cpl_c48=4
+
+ export THRD_cpl_dflt=1
+ export INPES_cpl_dflt=3
+ export JNPES_cpl_dflt=8;
+ export WPG_cpl_dflt=6
+ export OCN_tasks_cpl_dflt=20
+ export ICE_tasks_cpl_dflt=10
+ export WAV_tasks_cpl_dflt=20
+
+ export THRD_cpl_thrd=2
+ export INPES_cpl_thrd=3
+ export JNPES_cpl_thrd=4
+ export WPG_cpl_thrd=6
+ export OCN_tasks_cpl_thrd=20
+ export OCN_thrds_cpl_thrd=1
+ export ICE_tasks_cpl_thrd=10
+ export ICE_thrds_cpl_thrd=1
+ export WAV_tasks_cpl_thrd=12
+ export WAV_thrds_cpl_thrd=2
+
+ export THRD_cpl_dcmp=1
+ export INPES_cpl_dcmp=4
+ export JNPES_cpl_dcmp=6
+ export WPG_cpl_dcmp=6
+ export OCN_tasks_cpl_dcmp=20
+ export ICE_tasks_cpl_dcmp=10
+ export WAV_tasks_cpl_dcmp=20
+
+ export THRD_cpl_mpi=1
+ export INPES_cpl_mpi=4
+ export JNPES_cpl_mpi=8
+ export WPG_cpl_mpi=6
+ export OCN_tasks_cpl_mpi=34
+ export ICE_tasks_cpl_mpi=20
+ export WAV_tasks_cpl_mpi=28
+
+ export THRD_cpl_bmrk=2
+ export INPES_cpl_bmrk=8
+ export JNPES_cpl_bmrk=8
+ export WPG_cpl_bmrk=48
+ export OCN_tasks_cpl_bmrk=120
+ export OCN_thrds_cpl_bmrk=1
+ export ICE_tasks_cpl_bmrk=48
+ export ICE_thrds_cpl_bmrk=1
+ export WAV_tasks_cpl_bmrk=80
+ export WAV_thrds_cpl_bmrk=2
+
+ export THRD_cpl_c192=2
+ export INPES_cpl_c192=6
+ export JNPES_cpl_c192=8
+ export WPG_cpl_c192=12
+ export OCN_tasks_cpl_c192=60
+ export ICE_tasks_cpl_c192=24
+ export WAV_tasks_cpl_c192=80
+
+ export ATM_compute_tasks_cdeps_100=12
+ export OCN_tasks_cdeps_100=16
+ export ICE_tasks_cdeps_100=12
+
+ export ATM_compute_tasks_cdeps_025=40
+ export OCN_tasks_cdeps_025=120
+ export ICE_tasks_cdeps_025=48
+
+ export INPES_aqm=33
+ export JNPES_aqm=8
+
+ export THRD_cpl_unstr=1
+ export INPES_cpl_unstr=3
+ export JNPES_cpl_unstr=8
+ export WPG_cpl_unstr=6
+ export OCN_tasks_cpl_unstr=20
+ export ICE_tasks_cpl_unstr=10
+ export WAV_tasks_cpl_unstr=60
+
+ export THRD_cpl_unstr_mpi=1
+ export INPES_cpl_unstr_mpi=4
+ export JNPES_cpl_unstr_mpi=8
+ export WPG_cpl_unstr_mpi=6
+ export OCN_tasks_cpl_unstr_mpi=34
+ export ICE_tasks_cpl_unstr_mpi=20
+ export WAV_tasks_cpl_unstr_mpi=50
+
+ export aqm_omp_num_threads=1
+ export atm_omp_num_threads=1
+ export chm_omp_num_threads=1
+ export ice_omp_num_threads=1
+ export lnd_omp_num_threads=1
+ export med_omp_num_threads=1
+ export ocn_omp_num_threads=1
+ export wav_omp_num_threads=1
+
+if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then
+
+ export TPN=128
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=8
+ export JNPES_c384=6
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+elif [[ ${MACHINE_ID} = orion ]]; then
+
+ export TPN=40
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=8
+ export JNPES_c384=6
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+elif [[ ${MACHINE_ID} = hercules ]]; then
+
+ export TPN=80
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=8
+ export JNPES_c384=6
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+
+elif [[ ${MACHINE_ID} = hera ]]; then
+
+ export TPN=40
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=6
+ export JNPES_c384=8
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=4
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+elif [[ ${MACHINE_ID} = linux ]]; then
+
+ export TPN=40
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+
+ export THRD_cpl_dflt=1
+ export INPES_cpl_dflt=3
+ export JNPES_cpl_dflt=8
+ export WPG_cpl_dflt=6
+ export OCN_tasks_cpl_dflt=20
+ export ICE_tasks_cpl_dflt=10
+ export WAV_tasks_cpl_dflt=20
+
+ export THRD_cpl_thrd=2
+ export INPES_cpl_thrd=3
+ export JNPES_cpl_thrd=4
+ export WPG_cpl_thrd=6
+ export OCN_tasks_cpl_thrd=20
+ export ICE_tasks_cpl_thrd=10
+ export WAV_tasks_cpl_thrd=12
+
+elif [[ ${MACHINE_ID} = jet ]]; then
+
+ export TPN=24
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=6
+ export JNPES_c384=12
+ export THRD_c384=1
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+ export WRTTASK_PER_GROUP_c384=84
+ export WRTTASK_PER_GROUP_c384gdas=88
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=240
# run only in weekly test
- THRD_cpl_bmrk=2
- INPES_cpl_bmrk=16; JNPES_cpl_bmrk=16; WPG_cpl_bmrk=48
- OCN_tasks_cpl_bmrk=100
- ICE_tasks_cpl_bmrk=48
- WAV_tasks_cpl_bmrk=100
- WLCLK_cpl_bmrk=120
+ export THRD_cpl_bmrk=2
+ export INPES_cpl_bmrk=16
+ export JNPES_cpl_bmrk=16
+ export WPG_cpl_bmrk=48
+ export OCN_tasks_cpl_bmrk=100
+ export ICE_tasks_cpl_bmrk=48
+ export WAV_tasks_cpl_bmrk=100
+ export WLCLK_cpl_bmrk=120
# run only in weekly test
- THRD_cpl_c192=2
- INPES_cpl_c192=12; JNPES_cpl_c192=16; WPG_cpl_c192=24
- OCN_tasks_cpl_c192=100
- ICE_tasks_cpl_c192=48
- WAV_tasks_cpl_c192=80
- WLCLK_cpl_c192=120
-
-elif [[ $MACHINE_ID = s4 ]]; then
-
- TPN=32
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
- THRD_cpl_bmrk=2
- INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=24
- OCN_tasks_cpl_bmrk=120
- ICE_tasks_cpl_bmrk=48
- WAV_tasks_cpl_bmrk=80
-
-elif [[ $MACHINE_ID = gaea ]]; then
-
- TPN=128
-
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_atmw_gdas=3
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=264
-
-elif [[ $MACHINE_ID = derecho ]]; then
-
- TPN=128
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
- INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_atmw_gdas=2
- INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24
- WAV_tasks_atmw_gdas=248
-
-elif [[ $MACHINE_ID = stampede ]]; then
+ export THRD_cpl_c192=2
+ export INPES_cpl_c192=12
+ export JNPES_cpl_c192=16
+ export WPG_cpl_c192=24
+ export OCN_tasks_cpl_c192=100
+ export ICE_tasks_cpl_c192=48
+ export WAV_tasks_cpl_c192=80
+ export WLCLK_cpl_c192=120
+
+elif [[ ${MACHINE_ID} = s4 ]]; then
+
+ export TPN=32
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=6
+ export JNPES_c384=8
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=1
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+ export THRD_cpl_bmrk=2
+ export INPES_cpl_bmrk=6;
+ export JNPES_cpl_bmrk=8
+ export WPG_cpl_bmrk=24
+ export OCN_tasks_cpl_bmrk=120
+ export ICE_tasks_cpl_bmrk=48
+ export WAV_tasks_cpl_bmrk=80
+
+elif [[ ${MACHINE_ID} = gaea ]]; then
+
+ export TPN=128
+
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=6
+ export JNPES_c384=8
+ export THRD_c384=1
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_atmw_gdas=3
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=264
+
+elif [[ ${MACHINE_ID} = derecho ]]; then
+
+ export TPN=128
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+ export INPES_c384=8
+ export JNPES_c384=6
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_atmw_gdas=2
+ export INPES_cpl_atmw_gdas=6
+ export JNPES_cpl_atmw_gdas=8
+ export WPG_cpl_atmw_gdas=24
+ export WAV_tasks_atmw_gdas=248
+
+elif [[ ${MACHINE_ID} = stampede ]]; then
echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh"
exit 1
- TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8
- TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4
- TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6
- TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16
- TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4
+ # TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8
+ # TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4
+ # TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6
+ # TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16
+ # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4
- TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8
- THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559"
+ # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8
+ # THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559"
elif [[ ${MACHINE_ID} = noaacloud ]] ; then
- if [[ $PW_CSP == aws ]]; then
- TPN=36
- elif [[ $PW_CSP == azure ]]; then
- TPN=44
- elif [[ $PW_CSP == google ]]; then
- TPN=30
+ if [[ ${PW_CSP} == aws ]]; then
+ export TPN=36
+ elif [[ ${PW_CSP} == azure ]]; then
+ export TPN=44
+ elif [[ ${PW_CSP} == google ]]; then
+ export TPN=30
fi
- INPES_dflt=3 ; JNPES_dflt=8
- INPES_thrd=3 ; JNPES_thrd=4
-
- INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2
- INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2
-
- THRD_cpl_dflt=1
- INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6
- OCN_tasks_cpl_dflt=20
- ICE_tasks_cpl_dflt=10
- WAV_tasks_cpl_dflt=20
-
- THRD_cpl_thrd=2
- INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6
- OCN_tasks_cpl_thrd=20
- ICE_tasks_cpl_thrd=10
- WAV_tasks_cpl_thrd=12
-
-elif [[ $MACHINE_ID = expanse ]]; then
+ export INPES_dflt=3
+ export JNPES_dflt=8
+ export INPES_thrd=3
+ export JNPES_thrd=4
+
+ export INPES_c384=8
+ export JNPES_c384=6
+ export THRD_c384=2
+ export INPES_c768=8
+ export JNPES_c768=16
+ export THRD_c768=2
+
+ export THRD_cpl_dflt=1
+ export INPES_cpl_dflt=3
+ export JNPES_cpl_dflt=8
+ export WPG_cpl_dflt=6
+ export OCN_tasks_cpl_dflt=20
+ export ICE_tasks_cpl_dflt=10
+ export WAV_tasks_cpl_dflt=20
+
+ export THRD_cpl_thrd=2
+ export INPES_cpl_thrd=3
+ export JNPES_cpl_thrd=4;
+ export WPG_cpl_thrd=6
+ export OCN_tasks_cpl_thrd=20
+ export ICE_tasks_cpl_thrd=10
+ export WAV_tasks_cpl_thrd=12
+
+elif [[ ${MACHINE_ID} = expanse ]]; then
echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh"
exit 1
- TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8
- TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4
- TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4
+ # TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8
+ # TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4
+ # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4
- TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8
- THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559"
+ # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8
+ # THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559"
else
@@ -302,9 +411,9 @@ else
fi
-WLCLK_dflt=30
+export WLCLK_dflt=30
-export WLCLK=$WLCLK_dflt
+export WLCLK=${WLCLK_dflt}
export CMP_DATAONLY=false
# Defaults for ufs.configure
@@ -314,1241 +423,1262 @@ export DumpFields="false"
export_fv3 ()
{
# ufs.configure defaults
-export UFS_CONFIGURE=ufs.configure.atm_esmf.IN
-export MODEL_CONFIGURE=model_configure.IN
-export atm_model=fv3
-
-export FV3=true
-export S2S=false
-export HAFS=false
-export AQM=false
-export DATM_CDEPS=false
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export POSTAPP='global'
-export USE_MERRA2=.false.
-
-export NTILES=6
-export INPES=$INPES_dflt
-export JNPES=$JNPES_dflt
-export RESTART_INTERVAL=0
-export QUILTING=.true.
-export QUILTING_RESTART=.true.
-export WRITE_GROUP=1
-export WRTTASK_PER_GROUP=6
-export ITASKS=1
-export OUTPUT_HISTORY=.true.
-export HISTORY_FILE_ON_NATIVE_GRID=.false.
-export WRITE_DOPOST=.false.
-export NUM_FILES=2
-export FILENAME_BASE="'atm' 'sfc'"
-export OUTPUT_GRID="'cubed_sphere_grid'"
-export OUTPUT_FILE="'netcdf'"
-export ZSTANDARD_LEVEL=0
-export IDEFLATE=0
-export QUANTIZE_NSD=0
-export ICHUNK2D=0
-export JCHUNK2D=0
-export ICHUNK3D=0
-export JCHUNK3D=0
-export KCHUNK3D=0
-export IMO=384
-export JMO=190
-export WRITE_NSFLIP=.false.
-
-#input file
-export DIAG_TABLE=diag_table_gfsv16
-export FIELD_TABLE=field_table_gfsv16
-
-export DOMAINS_STACK_SIZE=3000000
-
-# Coldstart/warmstart
-#rt script for ICs
-export MODEL_INITIALIZATION=false
-#namelist variable
-export WARM_START=.false.
-export READ_INCREMENT=.false.
-export RES_LATLON_DYNAMICS="''"
-export NGGPS_IC=.true.
-export EXTERNAL_IC=.true.
-export MAKE_NH=.true.
-export MOUNTAIN=.false.
-export NA_INIT=1
-
-# Radiation
-export DO_RRTMGP=.false.
-export DOGP_CLDOPTICS_LUT=.false.
-export DOGP_LWSCAT=.false.
-export USE_LW_JACOBIAN=.false.
-export DAMP_LW_FLUXADJ=.false.
-export RRTMGP_LW_PHYS_BLKSZ=2
-export ICLOUD=0
-export IAER=111
-export ICLIQ_SW=1
-export IOVR=1
-export LFNC_K=-999
-export LFNC_P0=-999
-
-# Microphysics
-export IMP_PHYSICS=11
-export NWAT=6
-# GFDL MP
-export DNATS=1
-export DO_SAT_ADJ=.true.
-export LHEATSTRG=.true.
-export LSEASPRAY=.false.
-export LGFDLMPRAD=.false.
-export EFFR_IN=.false.
-# Thompson MP
-export LRADAR=.true.
-export LTAEROSOL=.true.
-export EXT_DIAG_THOMPSON=.false.
-export SEDI_SEMI=.true.
-export DECFL=10
-# NSSL MP
-export NSSL_CCCN=0.6e9
-export NSSL_ALPHAH=0.0
-export NSSL_ALPHAHL=1.0
-export NSSL_HAIL_ON=.false.
-export NSSL_CCN_ON=.true.
-export NSSL_INVERTCCN=.true.
-
-# Smoke
-export RRFS_SMOKE=.false.
-export SMOKE_FORECAST=0
-export RRFS_RESTART=NO
-export SEAS_OPT=2
-
-# GWD
-export LDIAG_UGWP=.false.
-export DO_UGWP=.false.
-export DO_TOFD=.false.
-export GWD_OPT=1
-export DO_UGWP_V0=.false.
-export DO_UGWP_V1_W_GSLDRAG=.false.
-export DO_UGWP_V0_OROG_ONLY=.false.
-export DO_GSL_DRAG_LS_BL=.false.
-export DO_GSL_DRAG_SS=.false.
-export DO_GSL_DRAG_TOFD=.false.
-export DO_UGWP_V1=.false.
-export DO_UGWP_V1_OROG_ONLY=.false.
-export KNOB_UGWP_DOKDIS=1
-export KNOB_UGWP_NDX4LH=1
-export KNOB_UGWP_VERSION=0
-export KNOB_UGWP_PALAUNCH=500.e2
-export KNOB_UGWP_NSLOPE=1
-
-# resolution dependent settings
-export CDMBWD_c48='0.071,2.1,1.0,1.0'
-export CDMBWD_c96='0.14,1.8,1.0,1.0'
-export CDMBWD_c192='0.23,1.5,1.0,1.0'
-export CDMBWD_c384='1.1,0.72,1.0,1.0'
-export CDMBWD_c768='4.0,0.15,1.0,1.0'
-
-#DT_INNER=(Time step)/2
-export DT_INNER_c96=360
-export DT_INNER_c192=300
-export DT_INNER_c384=150
-export DT_INNER_c768=75
-
-# set default
-export CDMBWD=${CDMBWD_c96}
-export DT_INNER=${DT_INNER_c96}
-
-# PBL
-export SATMEDMF=.false.
-export ISATMEDMF=0
-export HYBEDMF=.true.
-export SHINHONG=.false.
-export DO_YSU=.false.
-export DO_MYNNEDMF=.false.
-export HURR_PBL=.false.
-export MONINQ_FAC=1.0
-export SFCLAY_COMPUTE_FLUX=.false.
-
-# Shallow/deep convection
-export DO_DEEP=.true.
-export SHAL_CNV=.true.
-export IMFSHALCNV=2
-export HWRF_SAMFSHAL=.false.
-export IMFDEEPCNV=2
-export HWRF_SAMFDEEP=.false.
-export RAS=.false.
-export RANDOM_CLDS=.false.
-export CNVCLD=.true.
-export PROGSIGMA=.false.
-export BETASCU=8.0
-export BETAMCU=1.0
-export BETADCU=2.0
-
-# Aerosol convective scavenging
-export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"'
-
-# SFC
-export DO_MYJSFC=.false.
-export DO_MYNNSFCLAY=.false.
-export BL_MYNN_TKEADVECT=.false.
-
-# LSM
-export LSM=1
-export LSOIL_LSM=4
-export LANDICE=.true.
-export KICE=2
-export IALB=1
-export IEMS=1
-
-# Ozone / stratospheric H2O
-export OZ_PHYS_OLD=.true.
-export OZ_PHYS_NEW=.false.
-export H2O_PHYS=.false.
-
-# Lake models
-export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points
-export IOPT_LAKE=2 # 1=flake, 2=clm lake
-export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it
-export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it
-export FRAC_ICE=.true. # should be false for flake, true for clm_lake
-
-export CPL=.false.
-export CPLCHM=.false.
-export CPLFLX=.false.
-export CPLICE=.false.
-export CPLWAV=.false.
-export CPLWAV2ATM=.false.
-export CPLLND=.false.
-export CPLLND2ATM=.false.
-export USE_MED_FLUX=.false.
-export DAYS=1
-export NPX=97
-export NPY=97
-export NPZ=64
-export NPZP=65
-export NSTF_NAME=2,1,1,0,5
-export OUTPUT_FH="12 -1"
-export FHZERO=6
-export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'"
-export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'"
-export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'"
-export FNSOCC="''"
-export FNSMCC="'global_soilmgldas.t126.384.190.grb'"
-export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
-export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
-export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'"
-
-# Dynamical core
-export FV_CORE_TAU=0.
-export RF_CUTOFF=30.0
-export FAST_TAU_W_SEC=0.0
-
-# Tiled Fix files
-export ATMRES=C96
-export TILEDFIX=.false.
-
-export ENS_NUM=1
-export SYEAR=2016
-export SMONTH=10
-export SDAY=03
-export SHOUR=00
-export SECS=`expr $SHOUR \* 3600`
-export FHMAX=$(( DAYS*24 ))
-export DT_ATMOS=1800
-export FHCYC=24
-export FHROT=0
-export LDIAG3D=.false.
-export QDIAG3D=.false.
-export PRINT_DIFF_PGR=.false.
-export MAX_OUTPUT_FIELDS=310
-
-# Stochastic physics
-export STOCHINI=.false.
-export DO_SPPT=.false.
-export DO_SHUM=.false.
-export DO_SKEB=.false.
-export LNDP_TYPE=0
-export N_VAR_LNDP=0
-export SKEB=-999.
-export SPPT=-999.
-export SHUM=-999.
-export LNDP_VAR_LIST="'XXX'"
-export LNDP_PRT_LIST=-999
-export LNDP_MODEL_TYPE=0
-
-#IAU
-export IAU_INC_FILES="''"
-export IAU_DELTHRS=0
-export IAUFHRS=-1
-export IAU_OFFSET=0
-
-export FH_DFI_RADAR='-2e10'
-
-#Cellular automata
-export DO_CA=.false.
-export CA_SGS=.false.
-export CA_GLOBAL=.false.
-
-#waves
-export WW3_RSTDTHR=12
-export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))"
-export WW3_OUTDTHR=1
-export WW3_DTFLD="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))"
-export WW3_DTPNT="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))"
-export DTRST=0
-export RSTTYPE=T
-export GOFILETYPE=1
-export POFILETYPE=1
-export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR"
-export CPLILINE='$'
-export ICELINE='$'
-export WINDLINE='$'
-export CURRLINE='$'
-export NFGRIDS=0
-export NMGRIDS=1
-export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F"
-export FUNIPNT=T
-export IOSRV=1
-export FPNTPROC=T
-export FGRDPROC=T
-export UNIPOINTS='points'
-export FLAGMASKCOMP=' F'
-export FLAGMASKOUT=' F'
-export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000"
-export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000"
-export OUT_BEG=$RUN_BEG
-export OUT_END=$RUN_END
-export RST_BEG=$RUN_BEG
-export RST_2_BEG=$RUN_BEG
-export RST_END=$RUN_END
-export RST_2_END=$RUN_END
-export WW3_CUR='F'
-export WW3_ICE='F'
-export WW3_IC1='F'
-export WW3_IC5='F'
-# ATMW
-export WW3_MULTIGRID=true
-export WW3_MODDEF=mod_def.glo_1deg
-export MESH_WAV=mesh.glo_1deg.nc
-
-# ATMA
-export AOD_FRQ=060000
-
-# Regional
-export WRITE_RESTART_WITH_BCS=.false.
-
-# Diagnostics
-export PRINT_DIFF_PGR=.false.
-
-# Coupling
-export coupling_interval_fast_sec=0
-export CHOUR=06
-export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
+ export UFS_CONFIGURE=ufs.configure.atm_esmf.IN
+ export MODEL_CONFIGURE=model_configure.IN
+ export atm_model=fv3
+
+ export FV3=true
+ export S2S=false
+ export HAFS=false
+ export AQM=false
+ export DATM_CDEPS=false
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export POSTAPP='global'
+ export USE_MERRA2=.false.
+
+ export NTILES=6
+ export INPES=${INPES_dflt}
+ export JNPES=${JNPES_dflt}
+ export RESTART_INTERVAL=0
+ export QUILTING=.true.
+ export QUILTING_RESTART=.true.
+ export WRITE_GROUP=1
+ export WRTTASK_PER_GROUP=6
+ export ITASKS=1
+ export OUTPUT_HISTORY=.true.
+ export HISTORY_FILE_ON_NATIVE_GRID=.false.
+ export WRITE_DOPOST=.false.
+ export NUM_FILES=2
+ export FILENAME_BASE="'atm' 'sfc'"
+ export OUTPUT_GRID="'cubed_sphere_grid'"
+ export OUTPUT_FILE="'netcdf'"
+ export ZSTANDARD_LEVEL=0
+ export IDEFLATE=0
+ export QUANTIZE_NSD=0
+ export ICHUNK2D=0
+ export JCHUNK2D=0
+ export ICHUNK3D=0
+ export JCHUNK3D=0
+ export KCHUNK3D=0
+ export IMO=384
+ export JMO=190
+ export WRITE_NSFLIP=.false.
+
+ #input file
+ export DIAG_TABLE=diag_table_gfsv16
+ export FIELD_TABLE=field_table_gfsv16
+
+ export DOMAINS_STACK_SIZE=3000000
+
+ # Coldstart/warmstart
+ #rt script for ICs
+ export MODEL_INITIALIZATION=false
+ #namelist variable
+ export WARM_START=.false.
+ export READ_INCREMENT=.false.
+ export RES_LATLON_DYNAMICS="''"
+ export NGGPS_IC=.true.
+ export EXTERNAL_IC=.true.
+ export MAKE_NH=.true.
+ export MOUNTAIN=.false.
+ export NA_INIT=1
+
+ # Radiation
+ export DO_RRTMGP=.false.
+ export DOGP_CLDOPTICS_LUT=.false.
+ export DOGP_LWSCAT=.false.
+ export USE_LW_JACOBIAN=.false.
+ export DAMP_LW_FLUXADJ=.false.
+ export RRTMGP_LW_PHYS_BLKSZ=2
+ export ICLOUD=0
+ export IAER=111
+ export ICLIQ_SW=1
+ export IOVR=1
+ export LFNC_K=-999
+ export LFNC_P0=-999
+
+ # Microphysics
+ export IMP_PHYSICS=11
+ export NWAT=6
+ # GFDL MP
+ export DNATS=1
+ export DO_SAT_ADJ=.true.
+ export LHEATSTRG=.true.
+ export LSEASPRAY=.false.
+ export LGFDLMPRAD=.false.
+ export EFFR_IN=.false.
+ # Thompson MP
+ export LRADAR=.true.
+ export LTAEROSOL=.true.
+ export EXT_DIAG_THOMPSON=.false.
+ export SEDI_SEMI=.true.
+ export DECFL=10
+ # NSSL MP
+ export NSSL_CCCN=0.6e9
+ export NSSL_ALPHAH=0.0
+ export NSSL_ALPHAHL=1.0
+ export NSSL_HAIL_ON=.false.
+ export NSSL_CCN_ON=.true.
+ export NSSL_INVERTCCN=.true.
+
+ # Smoke
+ export RRFS_SMOKE=.false.
+ export SMOKE_FORECAST=0
+ export RRFS_RESTART=NO
+ export SEAS_OPT=2
+
+ # GWD
+ export LDIAG_UGWP=.false.
+ export DO_UGWP=.false.
+ export DO_TOFD=.false.
+ export GWD_OPT=1
+ export DO_UGWP_V0=.false.
+ export DO_UGWP_V1_W_GSLDRAG=.false.
+ export DO_UGWP_V0_OROG_ONLY=.false.
+ export DO_GSL_DRAG_LS_BL=.false.
+ export DO_GSL_DRAG_SS=.false.
+ export DO_GSL_DRAG_TOFD=.false.
+ export DO_UGWP_V1=.false.
+ export DO_UGWP_V1_OROG_ONLY=.false.
+ export KNOB_UGWP_DOKDIS=1
+ export KNOB_UGWP_NDX4LH=1
+ export KNOB_UGWP_VERSION=0
+ export KNOB_UGWP_PALAUNCH=500.e2
+ export KNOB_UGWP_NSLOPE=1
+
+ # resolution dependent settings
+ export CDMBWD_c48='0.071,2.1,1.0,1.0'
+ export CDMBWD_c96='0.14,1.8,1.0,1.0'
+ export CDMBWD_c192='0.23,1.5,1.0,1.0'
+ export CDMBWD_c384='1.1,0.72,1.0,1.0'
+ export CDMBWD_c768='4.0,0.15,1.0,1.0'
+
+ #DT_INNER=(Time step)/2
+ export DT_INNER_c96=360
+ export DT_INNER_c192=300
+ export DT_INNER_c384=150
+ export DT_INNER_c768=75
+
+ # set default
+ export CDMBWD=${CDMBWD_c96}
+ export DT_INNER=${DT_INNER_c96}
+
+ # PBL
+ export SATMEDMF=.false.
+ export ISATMEDMF=0
+ export HYBEDMF=.true.
+ export SHINHONG=.false.
+ export DO_YSU=.false.
+ export DO_MYNNEDMF=.false.
+ export HURR_PBL=.false.
+ export MONINQ_FAC=1.0
+ export SFCLAY_COMPUTE_FLUX=.false.
+
+ # Shallow/deep convection
+ export DO_DEEP=.true.
+ export SHAL_CNV=.true.
+ export IMFSHALCNV=2
+ export HWRF_SAMFSHAL=.false.
+ export IMFDEEPCNV=2
+ export HWRF_SAMFDEEP=.false.
+ export RAS=.false.
+ export RANDOM_CLDS=.false.
+ export CNVCLD=.true.
+ export PROGSIGMA=.false.
+ export BETASCU=8.0
+ export BETAMCU=1.0
+ export BETADCU=2.0
+
+ # Aerosol convective scavenging
+ export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"'
+
+ # SFC
+ export DO_MYJSFC=.false.
+ export DO_MYNNSFCLAY=.false.
+ export BL_MYNN_TKEADVECT=.false.
+
+ # LSM
+ export LSM=1
+ export LSOIL_LSM=4
+ export LANDICE=.true.
+ export KICE=2
+ export IALB=1
+ export IEMS=1
+
+ # Ozone / stratospheric H2O
+ export OZ_PHYS_OLD=.true.
+ export OZ_PHYS_NEW=.false.
+ export H2O_PHYS=.false.
+
+ # Lake models
+ export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points
+ export IOPT_LAKE=2 # 1=flake, 2=clm lake
+ export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it
+ export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it
+ export FRAC_ICE=.true. # should be false for flake, true for clm_lake
+
+ export CPL=.false.
+ export CPLCHM=.false.
+ export CPLFLX=.false.
+ export CPLICE=.false.
+ export CPLWAV=.false.
+ export CPLWAV2ATM=.false.
+ export CPLLND=.false.
+ export CPLLND2ATM=.false.
+ export USE_MED_FLUX=.false.
+ export DAYS=1
+ export NPX=97
+ export NPY=97
+ export NPZ=64
+ export NPZP=65
+ export NSTF_NAME=2,1,1,0,5
+ export OUTPUT_FH="12 -1"
+ export FHZERO=6
+ export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'"
+ export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'"
+ export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'"
+ export FNSOCC="''"
+ export FNSMCC="'global_soilmgldas.t126.384.190.grb'"
+ export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
+ export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
+ export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'"
+
+ # Dynamical core
+ export FV_CORE_TAU=0.
+ export RF_CUTOFF=30.0
+ export FAST_TAU_W_SEC=0.0
+
+ # Tiled Fix files
+ export ATMRES=C96
+ export TILEDFIX=.false.
+
+ export ENS_NUM=1
+ export SYEAR=2016
+ export SMONTH=10
+ export SDAY=03
+ export SHOUR=00
+ export SECS=$(( SHOUR*600 ))
+ export FHMAX=$(( DAYS*24 ))
+ export DT_ATMOS=1800
+ export FHCYC=24
+ export FHROT=0
+ export LDIAG3D=.false.
+ export QDIAG3D=.false.
+ export PRINT_DIFF_PGR=.false.
+ export MAX_OUTPUT_FIELDS=310
+
+ # Stochastic physics
+ export STOCHINI=.false.
+ export DO_SPPT=.false.
+ export DO_SHUM=.false.
+ export DO_SKEB=.false.
+ export LNDP_TYPE=0
+ export N_VAR_LNDP=0
+ export SKEB=-999.
+ export SPPT=-999.
+ export SHUM=-999.
+ export LNDP_VAR_LIST="'XXX'"
+ export LNDP_PRT_LIST=-999
+ export LNDP_MODEL_TYPE=0
+
+ #IAU
+ export IAU_INC_FILES="''"
+ export IAU_DELTHRS=0
+ export IAUFHRS=-1
+ export IAU_OFFSET=0
+
+ export FH_DFI_RADAR='-2e10'
+
+ #Cellular automata
+ export DO_CA=.false.
+ export CA_SGS=.false.
+ export CA_GLOBAL=.false.
+
+ #waves
+ export WW3_RSTDTHR=12
+ WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))"
+ export WW3_DT_2_RST
+ export WW3_OUTDTHR=1
+ WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
+ export WW3_DTFLD
+ WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
+ export WW3_DTPNT
+ export DTRST=0
+ export RSTTYPE=T
+ export GOFILETYPE=1
+ export POFILETYPE=1
+ export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR"
+ export CPLILINE='$'
+ export ICELINE='$'
+ export WINDLINE='$'
+ export CURRLINE='$'
+ export NFGRIDS=0
+ export NMGRIDS=1
+ export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F"
+ export FUNIPNT=T
+ export IOSRV=1
+ export FPNTPROC=T
+ export FGRDPROC=T
+ export UNIPOINTS='points'
+ export FLAGMASKCOMP=' F'
+ export FLAGMASKOUT=' F'
+ RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
+ export RUN_BEG
+ RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
+ export RUN_END
+ export OUT_BEG=${RUN_BEG}
+ export OUT_END=${RUN_END}
+ export RST_BEG=${RUN_BEG}
+ export RST_2_BEG=${RUN_BEG}
+ export RST_END=${RUN_END}
+ export RST_2_END=${RUN_END}
+ export WW3_CUR='F'
+ export WW3_ICE='F'
+ export WW3_IC1='F'
+ export WW3_IC5='F'
+ # ATMW
+ export WW3_MULTIGRID=true
+ export WW3_MODDEF=mod_def.glo_1deg
+ export MESH_WAV=mesh.glo_1deg.nc
+
+ # ATMA
+ export AOD_FRQ=060000
+
+ # Regional
+ export WRITE_RESTART_WITH_BCS=.false.
+
+ # Diagnostics
+ export PRINT_DIFF_PGR=.false.
+
+ # Coupling
+ export coupling_interval_fast_sec=0
+ export CHOUR=06
+ export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
}
# Defaults for the CICE6 model namelist, mx100
export_cice6() {
-export SECS=`expr $SHOUR \* 3600`
-export DT_CICE=${DT_ATMOS}
-export CICE_NPT=999
-export CICE_RUNTYPE=initial
-export CICE_RUNID=unknown
-export CICE_USE_RESTART_TIME=.false.
-export CICE_RESTART_DIR=./RESTART/
-export CICE_RESTART_FILE=iced
-
-export CICE_RESTART_FORMAT='pnetcdf2'
-export CICE_RESTART_IOTASKS=-99
-export CICE_RESTART_REARR='box'
-export CICE_RESTART_ROOT=-99
-export CICE_RESTART_STRIDE=-99
-export CICE_RESTART_CHUNK=0,0
-export CICE_RESTART_DEFLATE=0
-
-export CICE_HISTORY_FORMAT='pnetcdf2'
-if [[ ${MACHINE_ID} == wcoss2 ]]; then
- export CICE_RESTART_FORMAT='hdf5'
- export CICE_HISTORY_FORMAT='hdf5'
-fi
-export CICE_HISTORY_IOTASKS=-99
-export CICE_HISTORY_REARR='box'
-export CICE_HISTORY_ROOT=-99
-export CICE_HISTORY_STRIDE=-99
-export CICE_HISTORY_CHUNK=0,0
-export CICE_HISTORY_DEFLATE=0
-export CICE_HISTORY_PREC=4
-
-export CICE_DUMPFREQ=d
-export CICE_DUMPFREQ_N=1000
-export CICE_DIAGFREQ=`expr $FHMAX \* 3600 / $DT_CICE`
-export CICE_HISTFREQ_N="0, 0, 6, 1, 1"
-export CICE_HIST_AVG=.true.
-export CICE_HISTORY_DIR=./history/
-export CICE_INCOND_DIR=./history/
-export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc
-export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc
-export CICE_GRIDATM=A
-export CICE_GRIDOCN=A
-export CICE_GRIDICE=B
-export CICE_TR_POND_LVL=.true.
-export CICE_RESTART_POND_LVL=.false.
-# setting to true will allow Frazil FW and Salt to be included in fluxes sent to ocean
-export CICE_FRAZIL_FWSALT=.true.
-export CICE_KTHERM=2
-export CICE_TFREEZE_OPTION=mushy
-# SlenderX2
-export CICE_NPROC=$ICE_tasks
-export np2=`expr $CICE_NPROC / 2`
-export CICE_BLCKX=`expr $NX_GLB / $np2`
-export CICE_BLCKY=`expr $NY_GLB / 2`
-export CICE_DECOMP=slenderX2
+ SECS=$((SHOUR*3600))
+ export SECS
+ export DT_CICE=${DT_ATMOS}
+ export CICE_NPT=999
+ export CICE_RUNTYPE=initial
+ export CICE_RUNID=unknown
+ export CICE_USE_RESTART_TIME=.false.
+ export CICE_RESTART_DIR=./RESTART/
+ export CICE_RESTART_FILE=iced
+
+ export CICE_RESTART_FORMAT='pnetcdf2'
+ export CICE_RESTART_IOTASKS=-99
+ export CICE_RESTART_REARR='box'
+ export CICE_RESTART_ROOT=-99
+ export CICE_RESTART_STRIDE=-99
+ export CICE_RESTART_CHUNK=0,0
+ export CICE_RESTART_DEFLATE=0
+
+ export CICE_HISTORY_FORMAT='pnetcdf2'
+ if [[ ${MACHINE_ID} == wcoss2 ]]; then
+ export CICE_RESTART_FORMAT='hdf5'
+ export CICE_HISTORY_FORMAT='hdf5'
+ fi
+ export CICE_HISTORY_IOTASKS=-99
+ export CICE_HISTORY_REARR='box'
+ export CICE_HISTORY_ROOT=-99
+ export CICE_HISTORY_STRIDE=-99
+ export CICE_HISTORY_CHUNK=0,0
+ export CICE_HISTORY_DEFLATE=0
+ export CICE_HISTORY_PREC=4
+
+ export CICE_DUMPFREQ=d
+ export CICE_DUMPFREQ_N=1000
+ CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE ))
+ export CICE_DIAGFREQ
+ export CICE_HISTFREQ_N="0, 0, 6, 1, 1"
+ export CICE_HIST_AVG=.true.
+ export CICE_HISTORY_DIR=./history/
+ export CICE_INCOND_DIR=./history/
+ export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc
+ export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc
+ export CICE_GRIDATM=A
+ export CICE_GRIDOCN=A
+ export CICE_GRIDICE=B
+ export CICE_TR_POND_LVL=.true.
+ export CICE_RESTART_POND_LVL=.false.
+ # setting to true will allow Frazil FW and Salt to be included in fluxes sent to ocean
+ export CICE_FRAZIL_FWSALT=.true.
+ export CICE_KTHERM=2
+ export CICE_TFREEZE_OPTION=mushy
+ # SlenderX2
+ export CICE_NPROC=${ICE_tasks}
+ np2=$((CICE_NPROC/2))
+ CICE_BLCKX=$((NX_GLB/np2))
+ CICE_BLCKY=$((NY_GLB/2))
+ export np2
+ export CICE_BLCKX
+ export CICE_BLCKY
+ export CICE_DECOMP=slenderX2
}
# Defaults for the MOM6 model namelist, mx100
export_mom6() {
-export DT_DYNAM_MOM6=1800
-export DT_THERM_MOM6=3600
-export MOM6_INPUT=MOM_input_100.IN
-export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
-export MOM6_RESTART_DIR=./RESTART/
-export MOM6_RESTART_SETTING=n
-export MOM6_RIVER_RUNOFF=False
-export MOM6_FRUNOFF=''
-export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc
-export MOM6_USE_LI2016=True
-export MOM6_TOPOEDITS=''
-# since CPL_SLOW is set to DT_THERM, this should be always be false
-export MOM6_THERMO_SPAN=False
-export MOM6_USE_WAVES=True
-export MOM6_ALLOW_LANDMASK_CHANGES=False
-# MOM6 diag
-export MOM6_DIAG_COORD_DEF_Z_FILE=interpolate_zgrid_40L.nc
-export MOM6_DIAG_MISVAL='-1e34'
-# MOM6 IAU
-export ODA_INCUPD=False
-export ODA_INCUPD_NHOURS=6
-export ODA_TEMPINC_VAR="'pt_inc'"
-export ODA_SALTINC_VAR="'s_inc'"
-export ODA_THK_VAR="'h_fg'"
-export ODA_INCUPD_UV=False
-export ODA_UINC_VAR="'u_inc'"
-export ODA_VINC_VAR="'v_inc'"
-# MOM6 stochastics
-export DO_OCN_SPPT=False
-export PERT_EPBL=False
-export OCN_SPPT=-999.
-export EPBL=-999.
+ export DT_DYNAM_MOM6=1800
+ export DT_THERM_MOM6=3600
+ export MOM6_INPUT=MOM_input_100.IN
+ export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
+ export MOM6_RESTART_DIR=./RESTART/
+ export MOM6_RESTART_SETTING=n
+ export MOM6_RIVER_RUNOFF=False
+ export MOM6_FRUNOFF=''
+ export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc
+ export MOM6_USE_LI2016=True
+ export MOM6_TOPOEDITS=''
+ # since CPL_SLOW is set to DT_THERM, this should be always be false
+ export MOM6_THERMO_SPAN=False
+ export MOM6_USE_WAVES=True
+ export MOM6_ALLOW_LANDMASK_CHANGES=False
+ # MOM6 diag
+ export MOM6_DIAG_COORD_DEF_Z_FILE=interpolate_zgrid_40L.nc
+ export MOM6_DIAG_MISVAL='-1e34'
+ # MOM6 IAU
+ export ODA_INCUPD=False
+ export ODA_INCUPD_NHOURS=6
+ export ODA_TEMPINC_VAR="'pt_inc'"
+ export ODA_SALTINC_VAR="'s_inc'"
+ export ODA_THK_VAR="'h_fg'"
+ export ODA_INCUPD_UV=False
+ export ODA_UINC_VAR="'u_inc'"
+ export ODA_VINC_VAR="'v_inc'"
+ # MOM6 stochastics
+ export DO_OCN_SPPT=False
+ export PERT_EPBL=False
+ export OCN_SPPT=-999.
+ export EPBL=-999.
}
# Defaults for the WW3 global model
export_ww3() {
-export WW3_DOMAIN=mx${OCNRES}
-export WW3_MODDEF=mod_def.mx${OCNRES}
-export WW3_RSTDTHR=3
-export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))"
-export WW3_OUTDTHR=3
-export WW3_DTFLD="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))"
-export WW3_DTPNT="$(printf "%02d" $(( ${WW3_OUTDTHR}*3600 )))"
-export WW3_CUR='C'
-export WW3_ICE='C'
-export WW3_IC1='F'
-export WW3_IC5='F'
-export WW3_user_sets_restname="true"
+ export WW3_DOMAIN=mx${OCNRES}
+ export WW3_MODDEF=mod_def.mx${OCNRES}
+ export WW3_RSTDTHR=3
+ WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )) )"
+ export WW3_DT_2_RST
+ export WW3_OUTDTHR=3
+ WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )"
+ WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )"
+ export WW3_DTFLD
+ export WW3_DTPNT
+ export WW3_CUR='C'
+ export WW3_ICE='C'
+ export WW3_IC1='F'
+ export WW3_IC5='F'
+ export WW3_user_sets_restname="true"
}
# Defaults for the coupled 5-component
export_cmeps() {
-export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN
-export med_model=cmeps
-export atm_model=fv3
-export chm_model=gocart
-export ocn_model=mom6
-export ice_model=cice6
-export wav_model=ww3
-export lnd_model=noahmp
-export coupling_interval_slow_sec=${DT_THERM_MOM6}
-export coupling_interval_fast_sec=${DT_ATMOS}
-export MESH_OCN=mesh.mx${OCNRES}.nc
-export MESH_ICE=mesh.mx${OCNRES}.nc
-export MESH_WAV=mesh.${WW3_DOMAIN}.nc
-export CPLMODE=ufs.frac
-export pio_rearranger=box
-export RUNTYPE=startup
-export RESTART_N=${FHMAX}
-export CMEPS_RESTART_DIR=./RESTART/
-export cap_dbug_flag=0
-# MOM6 attributes
-export use_coldstart=false
-export use_mommesh=true
-# CICE attributes
-export eps_imesh=1.0e-1
-# mediator AO flux
-export flux_convergence=0.0
-export flux_iteration=2
-export flux_scheme=0
-# mediator ocean albedo
-export ocean_albedo_limit=0.06
-export use_mean_albedos=.false.
-# WW3 (used in run_test only)
-export WW3_MULTIGRID=false
+ export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN
+ export med_model=cmeps
+ export atm_model=fv3
+ export chm_model=gocart
+ export ocn_model=mom6
+ export ice_model=cice6
+ export wav_model=ww3
+ export lnd_model=noahmp
+ export coupling_interval_slow_sec=${DT_THERM_MOM6}
+ export coupling_interval_fast_sec=${DT_ATMOS}
+ export MESH_OCN=mesh.mx${OCNRES}.nc
+ export MESH_ICE=mesh.mx${OCNRES}.nc
+ export MESH_WAV=mesh.${WW3_DOMAIN}.nc
+ export CPLMODE=ufs.frac
+ export pio_rearranger=box
+ export RUNTYPE=startup
+ export RESTART_N=${FHMAX}
+ export CMEPS_RESTART_DIR=./RESTART/
+ export cap_dbug_flag=0
+ # MOM6 attributes
+ export use_coldstart=false
+ export use_mommesh=true
+ # CICE attributes
+ export eps_imesh=1.0e-1
+ # mediator AO flux
+ export flux_convergence=0.0
+ export flux_iteration=2
+ export flux_scheme=0
+ # mediator ocean albedo
+ export ocean_albedo_limit=0.06
+ export use_mean_albedos=.false.
+ # WW3 (used in run_test only)
+ export WW3_MULTIGRID=false
}
export_cpl ()
{
-export FV3=true
-export S2S=true
-export HAFS=false
-export AQM=false
-export DATM_CDEPS=false
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export FV3BMIC='p8c'
-export BMIC=.false.
-export DAYS=1
-
-#model configure
-export MODEL_CONFIGURE=model_configure.IN
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export CHOUR=06
-export FHMAX=24
-export FHROT=0
-export DT_ATMOS=720
-export QUILTING_RESTART=.false.
-export WRTTASK_PER_GROUP=$WPG_cpl_dflt
-export WRITE_NSFLIP=.true.
-export OUTPUT_FH='6 -1'
-
-# default atm/ocn/ice resolution
-export ATMRES=C96
-export OCNRES=100
-export ICERES=1.00
-export NX_GLB=360
-export NY_GLB=320
-export NPZ=127
-export NPZP=128
-
-# default resources
-export DOMAINS_STACK_SIZE=8000000
-export INPES=$INPES_cpl_dflt
-export JNPES=$JNPES_cpl_dflt
-export THRD=$THRD_cpl_dflt
-OCN_tasks=$OCN_tasks_cpl_dflt
-ICE_tasks=$ICE_tasks_cpl_dflt
-WAV_tasks=$WAV_tasks_cpl_dflt
-
-# Set CICE6 component defaults
-export_cice6
-
-# Set MOM6 component defaults
-export_mom6
-
-# Set WW3 component defaults
-export_ww3
-
-# Set CMEPS component defauls
-export_cmeps
-
-# FV3 defaults
-export FRAC_GRID=.true.
-export CCPP_SUITE=FV3_GFS_v17_coupled_p8
-export INPUT_NML=cpld_control.nml.IN
-export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
-export DIAG_TABLE=diag_table_cpld.IN
-export DIAG_TABLE_ADDITIONAL=''
-
-export FHZERO=6
-export DT_INNER=${DT_ATMOS}
-
-# P7 default
-export IALB=2
-export IEMS=2
-export LSM=2
-export IOPT_DVEG=4
-export IOPT_CRS=2
-export IOPT_RAD=3
-export IOPT_ALB=1
-export IOPT_STC=3
-# P8
-export IOPT_SFC=3
-export IOPT_TRS=2
-export IOPT_DIAG=2
-
-# FV3 P7 settings
-export D2_BG_K1=0.20
-export D2_BG_K2=0.04
-#export DZ_MIN=2
-export PSM_BC=1
-export DDDMP=0.1
-
-#P8
-export DZ_MIN=6
-
-# P7 Merra2 Aerosols & NSST
-export USE_MERRA2=.true.
-export IAER=1011
-export NSTF_NAME=2,0,0,0,0
-
-export LHEATSTRG=.false.
-export LSEASPRAY=.true.
-
-# P7 UGWP1
-export GWD_OPT=2
-export KNOB_UGWP_NSLOPE=1
-export DO_GSL_DRAG_LS_BL=.true.
-export DO_GSL_DRAG_SS=.true.
-export DO_UGWP_V1_OROG_ONLY=.false.
-export DO_UGWP_V0_NST_ONLY=.false.
-export LDIAG_UGWP=.false.
-#P8
-export DO_GSL_DRAG_TOFD=.false.
-export CDMBWD=${CDMBWD_c96}
-
-# P8 RRTMGP
-export DO_RRTMGP=.false.
-export DOGP_CLDOPTICS_LUT=.true.
-export DOGP_LWSCAT=.true.
-export DOGP_SGS_CNV=.true.
-
-#P8 UGWD
-export DO_UGWP_V0=.true.
-export DO_UGWP_V1=.false.
-export DO_GSL_DRAG_LS_BL=.false.
-export KNOB_UGWP_VERSION=0
-
-# P7 CA
-export DO_CA=.true.
-export CA_SGS=.true.
-export CA_GLOBAL=.false.
-export NCA=1
-export NCELLS=5
-export NLIVES=12
-export NTHRESH=18
-export NSEED=1
-export NFRACSEED=0.5
-export CA_TRIGGER=.true.
-export NSPINUP=1
-export ISEED_CA=12345
-
-# P7 settings
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-#P8
-export FSICL=0
-export FSICS=0
-
-# P8
-export USE_CICE_ALB=.true.
-export MIN_SEAICE=1.0e-6
-export DNATS=2
-export IMP_PHYSICS=8
-export LGFDLMPRAD=.false.
-export DO_SAT_ADJ=.false.
-export SATMEDMF=.true.
-
-# P7 default
-export CPLFLX=.true.
-export CPLICE=.true.
-export CPL=.true.
-export CPLWAV=.true.
-export CPLWAV2ATM=.true.
-export USE_MED_FLUX=.false.
-export CPLCHM=.true.
-export CPLLND=.false.
-
-# for FV3: default values will be changed if doing a warm-warm restart
-export WARM_START=.false.
-export MAKE_NH=.true.
-export NA_INIT=1
-export EXTERNAL_IC=.true.
-export NGGPS_IC=.true.
-export MOUNTAIN=.false.
-# gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory
-export AOD_FRQ=060000
-
-# checkpoint restarts
-export RESTART_FILE_PREFIX=''
-export RESTART_FILE_SUFFIX_SECS=''
-export RT35D=''
+ export FV3=true
+ export S2S=true
+ export HAFS=false
+ export AQM=false
+ export DATM_CDEPS=false
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export FV3BMIC='p8c'
+ export BMIC=.false.
+ export DAYS=1
+
+ #model configure
+ export MODEL_CONFIGURE=model_configure.IN
+ export SYEAR=2021
+ export SMONTH=03
+ export SDAY=22
+ export SHOUR=06
+ export CHOUR=06
+ export FHMAX=24
+ export FHROT=0
+ export DT_ATMOS=720
+ export QUILTING_RESTART=.false.
+ export WRTTASK_PER_GROUP=${WPG_cpl_dflt}
+ export WRITE_NSFLIP=.true.
+ export OUTPUT_FH='6 -1'
+
+ # default atm/ocn/ice resolution
+ export ATMRES=C96
+ export OCNRES=100
+ export ICERES=1.00
+ export NX_GLB=360
+ export NY_GLB=320
+ export NPZ=127
+ export NPZP=128
+
+ # default resources
+ export DOMAINS_STACK_SIZE=8000000
+ export INPES=${INPES_cpl_dflt}
+ export JNPES=${JNPES_cpl_dflt}
+ export THRD=${THRD_cpl_dflt}
+ export OCN_tasks=${OCN_tasks_cpl_dflt}
+ export ICE_tasks=${ICE_tasks_cpl_dflt}
+ export WAV_tasks=${WAV_tasks_cpl_dflt}
+
+ # Set CICE6 component defaults
+ export_cice6
+
+ # Set MOM6 component defaults
+ export_mom6
+
+ # Set WW3 component defaults
+ export_ww3
+
+ # Set CMEPS component defauls
+ export_cmeps
+
+ # FV3 defaults
+ export FRAC_GRID=.true.
+ export CCPP_SUITE=FV3_GFS_v17_coupled_p8
+ export INPUT_NML=cpld_control.nml.IN
+ export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
+ export DIAG_TABLE=diag_table_cpld.IN
+ export DIAG_TABLE_ADDITIONAL=''
+
+ export FHZERO=6
+ export DT_INNER=${DT_ATMOS}
+
+ # P7 default
+ export IALB=2
+ export IEMS=2
+ export LSM=2
+ export IOPT_DVEG=4
+ export IOPT_CRS=2
+ export IOPT_RAD=3
+ export IOPT_ALB=1
+ export IOPT_STC=3
+ # P8
+ export IOPT_SFC=3
+ export IOPT_TRS=2
+ export IOPT_DIAG=2
+
+ # FV3 P7 settings
+ export D2_BG_K1=0.20
+ export D2_BG_K2=0.04
+ #export DZ_MIN=2
+ export PSM_BC=1
+ export DDDMP=0.1
+
+ #P8
+ export DZ_MIN=6
+
+ # P7 Merra2 Aerosols & NSST
+ export USE_MERRA2=.true.
+ export IAER=1011
+ export NSTF_NAME=2,0,0,0,0
+
+ export LHEATSTRG=.false.
+ export LSEASPRAY=.true.
+
+ # P7 UGWP1
+ export GWD_OPT=2
+ export KNOB_UGWP_NSLOPE=1
+ export DO_GSL_DRAG_LS_BL=.true.
+ export DO_GSL_DRAG_SS=.true.
+ export DO_UGWP_V1_OROG_ONLY=.false.
+ export DO_UGWP_V0_NST_ONLY=.false.
+ export LDIAG_UGWP=.false.
+ #P8
+ export DO_GSL_DRAG_TOFD=.false.
+ export CDMBWD=${CDMBWD_c96}
+
+ # P8 RRTMGP
+ export DO_RRTMGP=.false.
+ export DOGP_CLDOPTICS_LUT=.true.
+ export DOGP_LWSCAT=.true.
+ export DOGP_SGS_CNV=.true.
+
+ #P8 UGWD
+ export DO_UGWP_V0=.true.
+ export DO_UGWP_V1=.false.
+ export DO_GSL_DRAG_LS_BL=.false.
+ export KNOB_UGWP_VERSION=0
+
+ # P7 CA
+ export DO_CA=.true.
+ export CA_SGS=.true.
+ export CA_GLOBAL=.false.
+ export NCA=1
+ export NCELLS=5
+ export NLIVES=12
+ export NTHRESH=18
+ export NSEED=1
+ export NFRACSEED=0.5
+ export CA_TRIGGER=.true.
+ export NSPINUP=1
+ export ISEED_CA=12345
+
+ # P7 settings
+ export FNALBC="'C96.snowfree_albedo.tileX.nc'"
+ export FNALBC2="'C96.facsf.tileX.nc'"
+ export FNTG3C="'C96.substrate_temperature.tileX.nc'"
+ export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
+ export FNVETC="'C96.vegetation_type.tileX.nc'"
+ export FNSOTC="'C96.soil_type.tileX.nc'"
+ export FNSOCC="'C96.soil_color.tileX.nc'"
+ export FNSMCC=${FNSMCC_control}
+ export FNMSKH=${FNMSKH_control}
+ export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
+ export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
+ export FNSLPC="'C96.slope_type.tileX.nc'"
+ export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
+ export LANDICE=".false."
+ #P8
+ export FSICL=0
+ export FSICS=0
+
+ # P8
+ export USE_CICE_ALB=.true.
+ export MIN_SEAICE=1.0e-6
+ export DNATS=2
+ export IMP_PHYSICS=8
+ export LGFDLMPRAD=.false.
+ export DO_SAT_ADJ=.false.
+ export SATMEDMF=.true.
+
+ # P7 default
+ export CPLFLX=.true.
+ export CPLICE=.true.
+ export CPL=.true.
+ export CPLWAV=.true.
+ export CPLWAV2ATM=.true.
+ export USE_MED_FLUX=.false.
+ export CPLCHM=.true.
+ export CPLLND=.false.
+
+ # for FV3: default values will be changed if doing a warm-warm restart
+ export WARM_START=.false.
+ export MAKE_NH=.true.
+ export NA_INIT=1
+ export EXTERNAL_IC=.true.
+ export NGGPS_IC=.true.
+ export MOUNTAIN=.false.
+ # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory
+ export AOD_FRQ=060000
+
+ # checkpoint restarts
+ export RESTART_FILE_PREFIX=''
+ export RESTART_FILE_SUFFIX_SECS=''
+ export RT35D=''
}
export_35d_run ()
{
-export CNTL_DIR=""
-export LIST_FILES=""
+ export CNTL_DIR=""
+ export LIST_FILES=""
}
export_datm_cdeps ()
{
-export FV3=false
-export S2S=false
-export HAFS=false
-export AQM=false
-export DATM_CDEPS=true
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export DAYS=1
-
-# model configure
-export MODEL_CONFIGURE=datm_cdeps_configure.IN
-export SYEAR=2011
-export SMONTH=10
-export SDAY=01
-export SHOUR=00
-export FHMAX=24
-export DT_ATMOS=900
-export FHROT=0
-
-# required but unused
-export WARM_START=.false.
-export CPLWAV=.false.
-export CPLCHM=.false.
-
-# atm/ocn/ice resolution
-export IATM=1760
-export JATM=880
-export ATM_NX_GLB=$IATM
-export ATM_NY_GLB=$JATM
-export ATMRES=${IATM}x${JATM}
-export OCNRES=100
-export ICERES=1.00
-export NX_GLB=360
-export NY_GLB=320
-
-# default resources
-export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100
-export OCN_tasks=$OCN_tasks_cdeps_100
-export ICE_tasks=$ICE_tasks_cdeps_100
-
-# Set CICE6 component defaults
-export_cice6
-# default non-mushy thermo for CICE
-export CICE_KTHERM=1
-export CICE_TFREEZE_OPTION=linear_salt
-
-# Set MOM6 component defaults
-export_mom6
-# default no waves
-export MOM6_USE_LI2016=False
-export MOM6_USE_WAVES=False
-export WW3_DOMAIN=''
-
-# Set CMEPS component defauls
-export_cmeps
-# default configure
-export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN
-export atm_model=datm
-export CPLMODE=ufs.nfrac.aoflux
-
-# datm defaults
-export INPUT_NML=input.mom6.nml.IN
-export DIAG_TABLE=diag_table_template
-export DATM_SRC=CFSR
-export FILENAME_BASE=cfsr.
-export MESH_ATM=${FILENAME_BASE//.}_mesh.nc
-export atm_datamode=${DATM_SRC}
-export stream_files=INPUT/${FILENAME_BASE}201110.nc
-export EXPORT_ALL=.false.
-export STREAM_OFFSET=0
-
-export BL_SUFFIX=""
-export RT_SUFFIX=""
+ export FV3=false
+ export S2S=false
+ export HAFS=false
+ export AQM=false
+ export DATM_CDEPS=true
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export DAYS=1
+
+ # model configure
+ export MODEL_CONFIGURE=datm_cdeps_configure.IN
+ export SYEAR=2011
+ export SMONTH=10
+ export SDAY=01
+ export SHOUR=00
+ export FHMAX=24
+ export DT_ATMOS=900
+ export FHROT=0
+
+ # required but unused
+ export WARM_START=.false.
+ export CPLWAV=.false.
+ export CPLCHM=.false.
+
+ # atm/ocn/ice resolution
+ export IATM=1760
+ export JATM=880
+ export ATM_NX_GLB=${IATM}
+ export ATM_NY_GLB=${JATM}
+ export ATMRES="${IATM}x${JATM}"
+ export OCNRES=100
+ export ICERES=1.00
+ export NX_GLB=360
+ export NY_GLB=320
+
+ # default resources
+ export ATM_compute_tasks=${ATM_compute_tasks_cdeps_100}
+ export OCN_tasks=${OCN_tasks_cdeps_100}
+ export ICE_tasks=${ICE_tasks_cdeps_100}
+
+ # Set CICE6 component defaults
+ export_cice6
+ # default non-mushy thermo for CICE
+ export CICE_KTHERM=1
+ export CICE_TFREEZE_OPTION=linear_salt
+
+ # Set MOM6 component defaults
+ export_mom6
+ # default no waves
+ export MOM6_USE_LI2016=False
+ export MOM6_USE_WAVES=False
+ export WW3_DOMAIN=''
+
+ # Set CMEPS component defauls
+ export_cmeps
+ # default configure
+ export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN
+ export atm_model=datm
+ export CPLMODE=ufs.nfrac.aoflux
+
+ # datm defaults
+ export INPUT_NML=input.mom6.nml.IN
+ export DIAG_TABLE=diag_table_template
+ export DATM_SRC=CFSR
+ export FILENAME_BASE=cfsr.
+ export MESH_ATM=${FILENAME_BASE//.}_mesh.nc
+ export atm_datamode=${DATM_SRC}
+ export stream_files=INPUT/${FILENAME_BASE}201110.nc
+ export EXPORT_ALL=.false.
+ export STREAM_OFFSET=0
+
+ export BL_SUFFIX=""
+ export RT_SUFFIX=""
}
+
export_hafs_datm_cdeps ()
{
-export FV3=false
-export S2S=false
-export HAFS=true
-export AQM=false
-export DATM_CDEPS=true
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export INPES=$INPES_dflt
-export JNPES=$JNPES_dflt
-export NTILES=1
-
-export atm_model=datm
-export DATM_IN_CONFIGURE=datm_in.IN
-export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN
-export EXPORT_ALL=.false.
+ export FV3=false
+ export S2S=false
+ export HAFS=true
+ export AQM=false
+ export DATM_CDEPS=true
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export INPES=${INPES_dflt}
+ export JNPES=${JNPES_dflt}
+ export NTILES=1
+
+ export atm_model=datm
+ export DATM_IN_CONFIGURE=datm_in.IN
+ export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN
+ export EXPORT_ALL=.false.
}
+
export_hafs_docn_cdeps ()
{
-export FV3=true
-export S2S=false
-export HAFS=true
-export AQM=false
-export DOCN_CDEPS=true
-export CDEPS_INLINE=false
-export INPES=$INPES_dflt
-export JNPES=$JNPES_dflt
-export NTILES=1
-
-export ocn_model=docn
-export ocn_datamode=sstdata
-export pio_rearranger=box
-export DOCN_IN_CONFIGURE=docn_in.IN
-export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN
+ export FV3=true
+ export S2S=false
+ export HAFS=true
+ export AQM=false
+ export DOCN_CDEPS=true
+ export CDEPS_INLINE=false
+ export INPES=${INPES_dflt}
+ export JNPES=${JNPES_dflt}
+ export NTILES=1
+
+ export ocn_model=docn
+ export ocn_datamode=sstdata
+ export pio_rearranger=box
+ export DOCN_IN_CONFIGURE=docn_in.IN
+ export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN
}
+
export_hafs_regional ()
{
-export FV3=true
-export S2S=false
-export HAFS=true
-export AQM=false
-export DATM_CDEPS=false
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export INPES=$INPES_dflt
-export JNPES=$JNPES_dflt
-export NTILES=1
-
-# model_configure
-export SYEAR=2019
-export SMONTH=08
-export SDAY=29
-export SHOUR=00
-export SECS=`expr $SHOUR \* 3600`
-export FHMAX=6
-export ENS_NUM=1
-export DT_ATMOS=900
-export CPL=.true.
-export RESTART_INTERVAL=0
-export FHROT=0
-export coupling_interval_fast_sec=0
-export QUILTING=.true.
-export WRITE_GROUP=1
-export WRTTASK_PER_GROUP=6
-export OUTPUT_HISTORY=.true.
-export WRITE_DOPOST=.false.
-export NUM_FILES=2
-export FILENAME_BASE="'atm' 'sfc'"
-export OUTPUT_GRID="'regional_latlon'"
-export OUTPUT_FILE="'netcdf'"
-export IDEFLATE=0
-export QUANTIZE_NSD=0
-export CEN_LON=-62.0
-export CEN_LAT=25.0
-export LON1=-114.5
-export LAT1=-5.0
-export LON2=-9.5
-export LAT2=55.0
-export DLON=0.03
-export DLAT=0.03
-
-# shel.inp
-# input.nml
-export CPL_IMP_MRG=.true.
-export DIAG_TABLE=diag_table_hafs
-export FIELD_TABLE=field_table_hafs
-
-export OCNRES=''
-export ICERES=''
-export DT_THERM_MOM6=''
-
-# Set WW3 component defaults
-export_ww3
-# default hafs with no ice
-export WW3_DOMAIN=natl_6m
-export WW3_MODDEF=mod_def.${WW3_DOMAIN}
-export WW3_ICE='F'
-export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP"
-
-# Set CMEPS component defaults
-export_cmeps
-# default hafs
-export ocn_model=hycom
-export CPLMODE=hafs
-export MESH_WAV=mesh.hafs.nc
+ export FV3=true
+ export S2S=false
+ export HAFS=true
+ export AQM=false
+ export DATM_CDEPS=false
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export INPES=${INPES_dflt}
+ export JNPES=${JNPES_dflt}
+ export NTILES=1
+
+ # model_configure
+ export SYEAR=2019
+ export SMONTH=08
+ export SDAY=29
+ export SHOUR=00
+ export SECS=$((SHOUR*3600))
+ export FHMAX=6
+ export ENS_NUM=1
+ export DT_ATMOS=900
+ export CPL=.true.
+ export RESTART_INTERVAL=0
+ export FHROT=0
+ export coupling_interval_fast_sec=0
+ export QUILTING=.true.
+ export WRITE_GROUP=1
+ export WRTTASK_PER_GROUP=6
+ export OUTPUT_HISTORY=.true.
+ export WRITE_DOPOST=.false.
+ export NUM_FILES=2
+ export FILENAME_BASE="'atm' 'sfc'"
+ export OUTPUT_GRID="'regional_latlon'"
+ export OUTPUT_FILE="'netcdf'"
+ export IDEFLATE=0
+ export QUANTIZE_NSD=0
+ export CEN_LON=-62.0
+ export CEN_LAT=25.0
+ export LON1=-114.5
+ export LAT1=-5.0
+ export LON2=-9.5
+ export LAT2=55.0
+ export DLON=0.03
+ export DLAT=0.03
+
+ # shel.inp
+ # input.nml
+ export CPL_IMP_MRG=.true.
+ export DIAG_TABLE=diag_table_hafs
+ export FIELD_TABLE=field_table_hafs
+
+ export OCNRES=''
+ export ICERES=''
+ export DT_THERM_MOM6=''
+
+ # Set WW3 component defaults
+ export_ww3
+ # default hafs with no ice
+ export WW3_DOMAIN=natl_6m
+ export WW3_MODDEF=mod_def.${WW3_DOMAIN}
+ export WW3_ICE='F'
+ export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP"
+
+ # Set CMEPS component defaults
+ export_cmeps
+ # default hafs
+ export ocn_model=hycom
+ export CPLMODE=hafs
+ export MESH_WAV=mesh.hafs.nc
}
export_hafs ()
{
-export FV3=true
-export S2S=false
-export HAFS=true
-export AQM=false
-export DATM_CDEPS=false
-export DOCN_CDEPS=false
-export CDEPS_INLINE=false
-export INPES=$INPES_dflt
-export JNPES=$JNPES_dflt
-export NTILES=1
-export IMFSHALCNV=2
-export IMFDEEPCNV=2
-export HYBEDMF=.false.
-export SATMEDMF=.true.
-export MONINQ_FAC=-1.0
-export HURR_PBL=.true.
-export ISATMEDMF=1
-export IOPT_SFC=1
-export IOPT_DVEG=2
-export IOPT_CRS=1
-export IOPT_RAD=1
-export IOPT_ALB=2
-export IOPT_STC=1
-export LSM=1
-export DO_GSL_DRAG_LS_BL=.true.
-export DO_GSL_DRAG_SS=.true.
-export DO_GSL_DRAG_TOFD=.true.
-export IMP_PHYSICS=11
-export IAER=111
-export CNVGWD=.false.
-export LTAEROSOL=.false.
-export CDMBWD=1.0,1.0,1.0,1.0
-export LHEATSTRG=.false.
-export LRADAR=.true.
-
-export FV_CORE_TAU=5.
-export RF_CUTOFF=30.e2
-export RF_CUTOFF_NEST=50.e2
-
-export IS_MOVING_NEST=".false."
-export VORTEX_TRACKER=0
-export NTRACK=0
-export MOVE_CD_X=0
-export MOVE_CD_Y=0
-export CPL_IMP_MRG=.true.
-
-export OUTPUT_GRID=''
-export IMO=''
-export JMO=''
-export CEN_LON=''
-export CEN_LAT=''
-export LON1=''
-export LAT1=''
-export LON2=''
-export LAT2=''
-export DLON=''
-export DLAT=''
-export STDLAT1=''
-export STDLAT2=''
-export NX=''
-export NY=''
-export DX=''
-export DY=''
-
-export OUTPUT_GRID_2=''
-export IMO_2=''
-export JMO_2=''
-export CEN_LON_2=''
-export CEN_LAT_2=''
-export LON1_2=''
-export LAT1_2=''
-export LON2_2=''
-export LAT2_2=''
-export DLON_2=''
-export DLAT_2=''
-export STDLAT1_2=''
-export STDLAT2_2=''
-export NX_2=''
-export NY_2=''
-export DX_2=''
-export DY_2=''
-
-export OUTPUT_GRID_3=''
-export IMO_3=''
-export JMO_3=''
-export CEN_LON_3=''
-export CEN_LAT_3=''
-export LON1_3=''
-export LAT1_3=''
-export LON2_3=''
-export LAT2_3=''
-export DLON_3=''
-export DLAT_3=''
-export STDLAT1_3=''
-export STDLAT2_3=''
-export NX_3=''
-export NY_3=''
-export DX_3=''
-export DY_3=''
-
-export OUTPUT_GRID_4=''
-export IMO_4=''
-export JMO_4=''
-export CEN_LON_4=''
-export CEN_LAT_4=''
-export LON1_4=''
-export LAT1_4=''
-export LON2_4=''
-export LAT2_4=''
-export DLON_4=''
-export DLAT_4=''
-export STDLAT1_4=''
-export STDLAT2_4=''
-export NX_4=''
-export NY_4=''
-export DX_4=''
-export DY_4=''
-
-export OUTPUT_GRID_5=''
-export IMO_5=''
-export JMO_5=''
-export CEN_LON_5=''
-export CEN_LAT_5=''
-export LON1_5=''
-export LAT1_5=''
-export LON2_5=''
-export LAT2_5=''
-export DLON_5=''
-export DLAT_5=''
-export STDLAT1_5=''
-export STDLAT2_5=''
-export NX_5=''
-export NY_5=''
-export DX_5=''
-export DY_5=''
-
-export OUTPUT_GRID_6=''
-export IMO_6=''
-export JMO_6=''
-export CEN_LON_6=''
-export CEN_LAT_6=''
-export LON1_6=''
-export LAT1_6=''
-export LON2_6=''
-export LAT2_6=''
-export DLON_6=''
-export DLAT_6=''
-export STDLAT1_6=''
-export STDLAT2_6=''
-export NX_6=''
-export NY_6=''
-export DX_6=''
-export DY_6=''
-
-export OUTPUT_FH='3 -1'
+ export FV3=true
+ export S2S=false
+ export HAFS=true
+ export AQM=false
+ export DATM_CDEPS=false
+ export DOCN_CDEPS=false
+ export CDEPS_INLINE=false
+ export INPES=${INPES_dflt}
+ export JNPES=${JNPES_dflt}
+ export NTILES=1
+ export IMFSHALCNV=2
+ export IMFDEEPCNV=2
+ export HYBEDMF=.false.
+ export SATMEDMF=.true.
+ export MONINQ_FAC=-1.0
+ export HURR_PBL=.true.
+ export ISATMEDMF=1
+ export IOPT_SFC=1
+ export IOPT_DVEG=2
+ export IOPT_CRS=1
+ export IOPT_RAD=1
+ export IOPT_ALB=2
+ export IOPT_STC=1
+ export LSM=1
+ export DO_GSL_DRAG_LS_BL=.true.
+ export DO_GSL_DRAG_SS=.true.
+ export DO_GSL_DRAG_TOFD=.true.
+ export IMP_PHYSICS=11
+ export IAER=111
+ export CNVGWD=.false.
+ export LTAEROSOL=.false.
+ export CDMBWD=1.0,1.0,1.0,1.0
+ export LHEATSTRG=.false.
+ export LRADAR=.true.
+
+ export FV_CORE_TAU=5.
+ export RF_CUTOFF=30.e2
+ export RF_CUTOFF_NEST=50.e2
+
+ export IS_MOVING_NEST=".false."
+ export VORTEX_TRACKER=0
+ export NTRACK=0
+ export MOVE_CD_X=0
+ export MOVE_CD_Y=0
+ export CPL_IMP_MRG=.true.
+
+ export OUTPUT_GRID=''
+ export IMO=''
+ export JMO=''
+ export CEN_LON=''
+ export CEN_LAT=''
+ export LON1=''
+ export LAT1=''
+ export LON2=''
+ export LAT2=''
+ export DLON=''
+ export DLAT=''
+ export STDLAT1=''
+ export STDLAT2=''
+ export NX=''
+ export NY=''
+ export DX=''
+ export DY=''
+
+ export OUTPUT_GRID_2=''
+ export IMO_2=''
+ export JMO_2=''
+ export CEN_LON_2=''
+ export CEN_LAT_2=''
+ export LON1_2=''
+ export LAT1_2=''
+ export LON2_2=''
+ export LAT2_2=''
+ export DLON_2=''
+ export DLAT_2=''
+ export STDLAT1_2=''
+ export STDLAT2_2=''
+ export NX_2=''
+ export NY_2=''
+ export DX_2=''
+ export DY_2=''
+
+ export OUTPUT_GRID_3=''
+ export IMO_3=''
+ export JMO_3=''
+ export CEN_LON_3=''
+ export CEN_LAT_3=''
+ export LON1_3=''
+ export LAT1_3=''
+ export LON2_3=''
+ export LAT2_3=''
+ export DLON_3=''
+ export DLAT_3=''
+ export STDLAT1_3=''
+ export STDLAT2_3=''
+ export NX_3=''
+ export NY_3=''
+ export DX_3=''
+ export DY_3=''
+
+ export OUTPUT_GRID_4=''
+ export IMO_4=''
+ export JMO_4=''
+ export CEN_LON_4=''
+ export CEN_LAT_4=''
+ export LON1_4=''
+ export LAT1_4=''
+ export LON2_4=''
+ export LAT2_4=''
+ export DLON_4=''
+ export DLAT_4=''
+ export STDLAT1_4=''
+ export STDLAT2_4=''
+ export NX_4=''
+ export NY_4=''
+ export DX_4=''
+ export DY_4=''
+
+ export OUTPUT_GRID_5=''
+ export IMO_5=''
+ export JMO_5=''
+ export CEN_LON_5=''
+ export CEN_LAT_5=''
+ export LON1_5=''
+ export LAT1_5=''
+ export LON2_5=''
+ export LAT2_5=''
+ export DLON_5=''
+ export DLAT_5=''
+ export STDLAT1_5=''
+ export STDLAT2_5=''
+ export NX_5=''
+ export NY_5=''
+ export DX_5=''
+ export DY_5=''
+
+ export OUTPUT_GRID_6=''
+ export IMO_6=''
+ export JMO_6=''
+ export CEN_LON_6=''
+ export CEN_LAT_6=''
+ export LON1_6=''
+ export LAT1_6=''
+ export LON2_6=''
+ export LAT2_6=''
+ export DLON_6=''
+ export DLAT_6=''
+ export STDLAT1_6=''
+ export STDLAT2_6=''
+ export NX_6=''
+ export NY_6=''
+ export DX_6=''
+ export DY_6=''
+
+ export OUTPUT_FH='3 -1'
}
+
export_hrrr() {
-export_fv3
-export NPZ=127
-export NPZP=128
-export DT_ATMOS=300
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export OUTPUT_GRID='gaussian_grid'
-export NSTF_NAME='2,0,0,0,0'
-export WRITE_DOPOST=.true.
-export IAER=5111
-export FHMAX=12
-
-export FRAC_GRID=.false.
-export FRAC_ICE=.true.
-
-export FV_CORE_TAU=10.
-export RF_CUTOFF=7.5e2
-
-export FV3_RUN=lake_control_run.IN
-export CCPP_SUITE=FV3_HRRR
-export INPUT_NML=rap.nml.IN
-export FIELD_TABLE=field_table_thompson_aero_tke
-export NEW_DIAGTABLE=diag_table_rap
-
-export SFCLAY_COMPUTE_FLUX=.true.
-
-export LKM=1
-export IOPT_LAKE=2
-export IMP_PHYSICS=8
-export DNATS=0
-export DO_SAT_ADJ=.false.
-export LRADAR=.true.
-export LTAEROSOL=.true.
-export IALB=2
-export IEMS=2
-export HYBEDMF=.false.
-export DO_MYNNEDMF=.true.
-export DO_MYNNSFCLAY=.true.
-export DO_DEEP=.false.
-export SHAL_CNV=.false.
-export IMFSHALCNV=-1
-export IMFDEEPCNV=-1
-export LHEATSTRG=.false.
-export LSM=3
-export LSOIL_LSM=9
-export KICE=9
-
-export GWD_OPT=3
-export DO_UGWP_V0=.false.
-export DO_UGWP_V0_OROG_ONLY=.false.
-export DO_GSL_DRAG_LS_BL=.true.
-export DO_GSL_DRAG_SS=.true.
-export DO_GSL_DRAG_TOFD=.true.
-export DO_UGWP_V1=.false.
-export DO_UGWP_V1_OROG_ONLY=.false.
+ export_fv3
+ export NPZ=127
+ export NPZP=128
+ export DT_ATMOS=300
+ export SYEAR=2021
+ export SMONTH=03
+ export SDAY=22
+ export SHOUR=06
+ export OUTPUT_GRID='gaussian_grid'
+ export NSTF_NAME='2,0,0,0,0'
+ export WRITE_DOPOST=.true.
+ export IAER=5111
+ export FHMAX=12
+
+ export FRAC_GRID=.false.
+ export FRAC_ICE=.true.
+
+ export FV_CORE_TAU=10.
+ export RF_CUTOFF=7.5e2
+
+ export FV3_RUN=lake_control_run.IN
+ export CCPP_SUITE=FV3_HRRR
+ export INPUT_NML=rap.nml.IN
+ export FIELD_TABLE=field_table_thompson_aero_tke
+ export NEW_DIAGTABLE=diag_table_rap
+
+ export SFCLAY_COMPUTE_FLUX=.true.
+
+ export LKM=1
+ export IOPT_LAKE=2
+ export IMP_PHYSICS=8
+ export DNATS=0
+ export DO_SAT_ADJ=.false.
+ export LRADAR=.true.
+ export LTAEROSOL=.true.
+ export IALB=2
+ export IEMS=2
+ export HYBEDMF=.false.
+ export DO_MYNNEDMF=.true.
+ export DO_MYNNSFCLAY=.true.
+ export DO_DEEP=.false.
+ export SHAL_CNV=.false.
+ export IMFSHALCNV=-1
+ export IMFDEEPCNV=-1
+ export LHEATSTRG=.false.
+ export LSM=3
+ export LSOIL_LSM=9
+ export KICE=9
+
+ export GWD_OPT=3
+ export DO_UGWP_V0=.false.
+ export DO_UGWP_V0_OROG_ONLY=.false.
+ export DO_GSL_DRAG_LS_BL=.true.
+ export DO_GSL_DRAG_SS=.true.
+ export DO_GSL_DRAG_TOFD=.true.
+ export DO_UGWP_V1=.false.
+ export DO_UGWP_V1_OROG_ONLY=.false.
}
+
export_hrrr_conus13km()
{
-export_fv3
-export SYEAR=2021
-export SMONTH=05
-export SDAY=12
-export SHOUR=16
-export FHMAX=2
-export DT_ATMOS=120
-export RESTART_INTERVAL=1
-export QUILTING=.true.
-export WRITE_GROUP=1
-export WRTTASK_PER_GROUP=6
-export NTILES=1
-export WRITE_DOPOST=.false.
-export OUTPUT_HISTORY=.true.
-export OUTPUT_GRID=lambert_conformal
-export OUTPUT_FILE="'netcdf'"
-
-# Revert these two to GFS_typedefs defaults to avoid a crash:
-export SEDI_SEMI=.false.
-export DECFL=8
-
-export RRFS_SMOKE=.true.
-export SEAS_OPT=0
-
-export LKM=1
-export SFCLAY_COMPUTE_FLUX=.true.
-export IALB=2
-export ICLIQ_SW=2
-export IEMS=2
-export IOVR=3
-export KICE=9
-export LSM=3
-export LSOIL_LSM=9
-export DO_MYNNSFCLAY=.true.
-export DO_MYNNEDMF=.true.
-export HYBEDMF=.false.
-export SHAL_CNV=.false.
-export DO_SAT_ADJ=.false.
-export DO_DEEP=.false.
-export CCPP_SUITE='FV3_HRRR'
-export INPES=12
-export JNPES=12
-export NPX=397
-export NPY=233
-export NPZ=65
-export MAKE_NH=.false.
-export NA_INIT=0
-export DNATS=0
-export EXTERNAL_IC=.false.
-export NGGPS_IC=.false.
-export MOUNTAIN=.true.
-export WARM_START=.true.
-export READ_INCREMENT=.false.
-export RES_LATLON_DYNAMICS="'fv3_increment.nc'"
-export NPZP=66
-export FHZERO=1.0
-export IMP_PHYSICS=8
-export LDIAG3D=.false.
-export QDIAG3D=.false.
-export PRINT_DIFF_PGR=.true.
-export FHCYC=0.0
-export IAER=1011
-export LHEATSTRG=.false.
-export RANDOM_CLDS=.false.
-export CNVCLD=.false.
-export IMFSHALCNV=-1
-export IMFDEEPCNV=-1
-export CDMBWD='3.5,1.0'
-export DO_SPPT=.false.
-export DO_SHUM=.false.
-export DO_SKEB=.false.
-export LNDP_TYPE=0
-export N_VAR_LNDP=0
-
-export GWD_OPT=3
-export DO_UGWP_V0=.false.
-export DO_UGWP_V0_OROG_ONLY=.false.
-export DO_GSL_DRAG_LS_BL=.true.
-export DO_GSL_DRAG_SS=.true.
-export DO_GSL_DRAG_TOFD=.true.
-export DO_UGWP_V1=.false.
-export DO_UGWP_V1_OROG_ONLY=.false.
-
-export FV3_RUN=rrfs_warm_run.IN
-export INPUT_NML=rrfs_conus13km_hrrr.nml.IN
-export FIELD_TABLE=field_table_thompson_aero_tke_smoke
-export DIAG_TABLE=diag_table_hrrr
-export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN
-export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke
-export FRAC_ICE=.true.
+ export_fv3
+ export SYEAR=2021
+ export SMONTH=05
+ export SDAY=12
+ export SHOUR=16
+ export FHMAX=2
+ export DT_ATMOS=120
+ export RESTART_INTERVAL=1
+ export QUILTING=.true.
+ export WRITE_GROUP=1
+ export WRTTASK_PER_GROUP=6
+ export NTILES=1
+ export WRITE_DOPOST=.false.
+ export OUTPUT_HISTORY=.true.
+ export OUTPUT_GRID=lambert_conformal
+ export OUTPUT_FILE="'netcdf'"
+
+ # Revert these two to GFS_typedefs defaults to avoid a crash:
+ export SEDI_SEMI=.false.
+ export DECFL=8
+
+ export RRFS_SMOKE=.true.
+ export SEAS_OPT=0
+
+ export LKM=1
+ export SFCLAY_COMPUTE_FLUX=.true.
+ export IALB=2
+ export ICLIQ_SW=2
+ export IEMS=2
+ export IOVR=3
+ export KICE=9
+ export LSM=3
+ export LSOIL_LSM=9
+ export DO_MYNNSFCLAY=.true.
+ export DO_MYNNEDMF=.true.
+ export HYBEDMF=.false.
+ export SHAL_CNV=.false.
+ export DO_SAT_ADJ=.false.
+ export DO_DEEP=.false.
+ export CCPP_SUITE='FV3_HRRR'
+ export INPES=12
+ export JNPES=12
+ export NPX=397
+ export NPY=233
+ export NPZ=65
+ export MAKE_NH=.false.
+ export NA_INIT=0
+ export DNATS=0
+ export EXTERNAL_IC=.false.
+ export NGGPS_IC=.false.
+ export MOUNTAIN=.true.
+ export WARM_START=.true.
+ export READ_INCREMENT=.false.
+ export RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+ export NPZP=66
+ export FHZERO=1.0
+ export IMP_PHYSICS=8
+ export LDIAG3D=.false.
+ export QDIAG3D=.false.
+ export PRINT_DIFF_PGR=.true.
+ export FHCYC=0.0
+ export IAER=1011
+ export LHEATSTRG=.false.
+ export RANDOM_CLDS=.false.
+ export CNVCLD=.false.
+ export IMFSHALCNV=-1
+ export IMFDEEPCNV=-1
+ export CDMBWD='3.5,1.0'
+ export DO_SPPT=.false.
+ export DO_SHUM=.false.
+ export DO_SKEB=.false.
+ export LNDP_TYPE=0
+ export N_VAR_LNDP=0
+
+ export GWD_OPT=3
+ export DO_UGWP_V0=.false.
+ export DO_UGWP_V0_OROG_ONLY=.false.
+ export DO_GSL_DRAG_LS_BL=.true.
+ export DO_GSL_DRAG_SS=.true.
+ export DO_GSL_DRAG_TOFD=.true.
+ export DO_UGWP_V1=.false.
+ export DO_UGWP_V1_OROG_ONLY=.false.
+
+ export FV3_RUN=rrfs_warm_run.IN
+ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN
+ export FIELD_TABLE=field_table_thompson_aero_tke_smoke
+ export DIAG_TABLE=diag_table_hrrr
+ export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN
+ export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke
+ export FRAC_ICE=.true.
}
+
export_rap_common()
{
export_fv3
-export NPZ=127
-export NPZP=128
-export DT_ATMOS=300
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export OUTPUT_GRID='gaussian_grid'
-export NSTF_NAME='2,0,0,0,0'
-export WRITE_DOPOST=.true.
-export IAER=5111
-
-export FV_CORE_TAU=10.
-export RF_CUTOFF=7.5e2
-
-export FV3_RUN=control_run.IN
-export INPUT_NML=rap.nml.IN
-export FIELD_TABLE=field_table_thompson_aero_tke
-
-export LHEATSTRG=.false.
-export IMP_PHYSICS=8
-export DNATS=0
-export DO_SAT_ADJ=.false.
-export LRADAR=.true.
-export LTAEROSOL=.true.
-export IALB=2
-export IEMS=2
-export HYBEDMF=.false.
-export DO_MYNNEDMF=.true.
-export DO_MYNNSFCLAY=.true.
+ export NPZ=127
+ export NPZP=128
+ export DT_ATMOS=300
+ export SYEAR=2021
+ export SMONTH=03
+ export SDAY=22
+ export SHOUR=06
+ export OUTPUT_GRID='gaussian_grid'
+ export NSTF_NAME='2,0,0,0,0'
+ export WRITE_DOPOST=.true.
+ export IAER=5111
+
+ export FV_CORE_TAU=10.
+ export RF_CUTOFF=7.5e2
+
+ export FV3_RUN=control_run.IN
+ export INPUT_NML=rap.nml.IN
+ export FIELD_TABLE=field_table_thompson_aero_tke
+
+ export LHEATSTRG=.false.
+ export IMP_PHYSICS=8
+ export DNATS=0
+ export DO_SAT_ADJ=.false.
+ export LRADAR=.true.
+ export LTAEROSOL=.true.
+ export IALB=2
+ export IEMS=2
+ export HYBEDMF=.false.
+ export DO_MYNNEDMF=.true.
+ export DO_MYNNSFCLAY=.true.
}
+
export_rap()
{
-export_rap_common
-
-export DIAG_TABLE=diag_table_rap
-export CCPP_SUITE=FV3_RAP
-
-export IMFSHALCNV=3
-export IMFDEEPCNV=3
-export LSM=3
-export LSOIL_LSM=9
-export KICE=9
-
-export GWD_OPT=3
-export DO_UGWP_V0=.false.
-export DO_UGWP_V0_OROG_ONLY=.false.
-export DO_GSL_DRAG_LS_BL=.true.
-export DO_GSL_DRAG_SS=.true.
-export DO_GSL_DRAG_TOFD=.true.
-export DO_UGWP_V1=.false.
-export DO_UGWP_V1_OROG_ONLY=.false.
+ export_rap_common
+
+ export DIAG_TABLE=diag_table_rap
+ export CCPP_SUITE=FV3_RAP
+
+ export IMFSHALCNV=3
+ export IMFDEEPCNV=3
+ export LSM=3
+ export LSOIL_LSM=9
+ export KICE=9
+
+ export GWD_OPT=3
+ export DO_UGWP_V0=.false.
+ export DO_UGWP_V0_OROG_ONLY=.false.
+ export DO_GSL_DRAG_LS_BL=.true.
+ export DO_GSL_DRAG_SS=.true.
+ export DO_GSL_DRAG_TOFD=.true.
+ export DO_UGWP_V1=.false.
+ export DO_UGWP_V1_OROG_ONLY=.false.
}
+
export_rrfs_v1()
{
-export_rap_common
-
-export CCPP_SUITE=FV3_RRFS_v1beta
-export DIAG_TABLE=diag_table_rap_noah
-
-export DO_DEEP=.false.
-export SHAL_CNV=.false.
-export IMFSHALCNV=-1
-export IMFDEEPCNV=-1
-export LHEATSTRG=.false.
-export LSM=2
-export LSOIL_LSM=4
+ export_rap_common
+
+ export CCPP_SUITE=FV3_RRFS_v1beta
+ export DIAG_TABLE=diag_table_rap_noah
+
+ export DO_DEEP=.false.
+ export SHAL_CNV=.false.
+ export IMFSHALCNV=-1
+ export IMFDEEPCNV=-1
+ export LHEATSTRG=.false.
+ export LSM=2
+ export LSOIL_LSM=4
}
diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera
index aa84ba5b00..f146fcbe15 100644
--- a/tests/fv3_conf/compile_slurm.IN_hera
+++ b/tests/fv3_conf/compile_slurm.IN_hera
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#SBATCH -e err
#SBATCH -o out
#SBATCH --account=@[ACCNR]
@@ -9,11 +9,14 @@
#SBATCH --job-name="@[JBNME]"
set -eux
+date_s_start=$(date +%s)
+date_start=$(date)
+echo -n "${date_s_start}," > job_timestamp.txt
+echo "Compile started: ${date_start}"
-echo -n " $( date +%s )," > job_timestamp.txt
-echo "Compile started: " `date`
+"@[PATHRT]/compile.sh" "@[MACHINE_ID]" "@[MAKE_OPT]" "@[COMPILE_ID]" "@[RT_COMPILER]"
-@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER]
-
-echo "Compile ended: " `date`
-echo -n " $( date +%s )," >> job_timestamp.txt
+date_end=$(date)
+echo "Compile ended: ${date_end}"
+date_s_end=$(date +%s)
+echo -n "${date_s_end}," >> job_timestamp.txt
diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera
index 225acbd192..94c3827525 100644
--- a/tests/fv3_conf/fv3_slurm.IN_hera
+++ b/tests/fv3_conf/fv3_slurm.IN_hera
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#SBATCH -e err
#SBATCH -o out
#SBATCH --account=@[ACCNR]
@@ -11,21 +11,23 @@
### #SBATCH --exclusive
set -eux
-echo -n " $( date +%s )," > job_timestamp.txt
+date_s_start=$(date +%s)
+echo -n "${date_s_start}," > job_timestamp.txt
set +x
-MACHINE_ID=hera
+#MACHINE_ID=hera
source ./module-setup.sh
-module use $PWD/modulefiles
+module use "@[PWD]/modulefiles"
module load modules.fv3
module list
set -x
-echo "Model started: " `date`
+date_start=$(date)
+echo "Model started: ${date_start}"
export MPI_TYPE_DEPTH=20
export OMP_STACKSIZE=512M
-export OMP_NUM_THREADS=@[THRD]
+export OMP_NUM_THREADS="@[THRD]"
export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4
export ESMF_RUNTIME_PROFILE=ON
export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY"
@@ -35,7 +37,9 @@ export PSM_SHAREDCONTEXTS=1
# Avoid job errors because of filesystem synchronization delays
sync && sleep 1
-srun --label -n @[TASKS] ./fv3.exe
+srun --label -n "@[TASKS]" ./fv3.exe
-echo "Model ended: " `date`
-echo -n " $( date +%s )," >> job_timestamp.txt
+date_end=$(date)
+echo "Model ended: ${date_end}"
+date_s_end=$(date +%s)
+echo -n "${date_s_end}," >> job_timestamp.txt
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 644a6cfef2..afd7aa49d4 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Apr 12 15:33:44 UTC 2024
+Tue Apr 16 13:22:38 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 268.779052
- 0: The maximum resident set size (KB) = 1266844
+ 0: The total amount of wall time = 272.948924
+ 0: The maximum resident set size (KB) = 1272740
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 954.578049
- 0: The maximum resident set size (KB) = 1253880
+ 0: The total amount of wall time = 982.571241
+ 0: The maximum resident set size (KB) = 1255996
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 246.936524
- 0: The maximum resident set size (KB) = 1247528
+ 0: The total amount of wall time = 236.873154
+ 0: The maximum resident set size (KB) = 1244612
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.865330
- 0: The maximum resident set size (KB) = 1248864
+ 0: The total amount of wall time = 237.434427
+ 0: The maximum resident set size (KB) = 1248872
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.898069
- 0: The maximum resident set size (KB) = 1246768
+ 0: The total amount of wall time = 243.270533
+ 0: The maximum resident set size (KB) = 1247316
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.211758
- 0: The maximum resident set size (KB) = 1248264
+ 0: The total amount of wall time = 238.823501
+ 0: The maximum resident set size (KB) = 1249892
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3669664/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 244.451475
- 0: The maximum resident set size (KB) = 1243996
+ 0: The total amount of wall time = 243.670791
+ 0: The maximum resident set size (KB) = 1247032
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Apr 12 16:48:07 UTC 2024
-Elapsed time: 01h:14m:24s. Have a nice day!
+Tue Apr 16 14:27:37 UTC 2024
+Elapsed time: 01h:05m:00s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 04c54bdef2..98e918adf8 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 8 19:23:40 UTC 2024
+Tue Apr 16 14:29:26 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1341.650023
- 0: The maximum resident set size (KB) = 1370360
+ 0: The total amount of wall time = 1353.491600
+ 0: The maximum resident set size (KB) = 1367696
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 389.411111
- 0: The maximum resident set size (KB) = 1359432
+ 0: The total amount of wall time = 392.059951
+ 0: The maximum resident set size (KB) = 1358372
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2519701/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 388.613517
- 0: The maximum resident set size (KB) = 1359920
+ 0: The total amount of wall time = 392.603751
+ 0: The maximum resident set size (KB) = 1359360
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 8 20:26:41 UTC 2024
-Elapsed time: 01h:03m:01s. Have a nice day!
+Tue Apr 16 15:32:41 UTC 2024
+Elapsed time: 01h:03m:16s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 40a305b301..b529e6123d 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Tue Apr 9 12:15:38 UTC 2024
+Tue Apr 16 16:39:38 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2173.644877
- 0: The maximum resident set size (KB) = 560340
+ 0: The total amount of wall time = 2110.742228
+ 0: The maximum resident set size (KB) = 556616
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2203.053030
- 0: The maximum resident set size (KB) = 550920
+ 0: The total amount of wall time = 2222.730378
+ 0: The maximum resident set size (KB) = 556012
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_654296/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2229.689107
- 0: The maximum resident set size (KB) = 558500
+ 0: The total amount of wall time = 2141.980290
+ 0: The maximum resident set size (KB) = 556516
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 9 14:19:17 UTC 2024
-Elapsed time: 02h:03m:40s. Have a nice day!
+Tue Apr 16 18:36:16 UTC 2024
+Elapsed time: 01h:56m:39s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index f6ad401817..eca5c613b4 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+d43ccd1b047697197e01c095515d268a6e53270f
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,325 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_119149
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:07]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:54, 04:59](3078 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:59]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 13:53](1692 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:16](1828 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 07:26](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:05, 15:48](1662 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:13, 09:32]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:26](1711 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:15, 19:40]
+PASS -- TEST 'cpld_control_p8_intel' [10:53, 05:44](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:53, 05:41](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:23, 03:19](3152 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:18, 05:41](3129 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:11, 03:22](3181 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:04, 05:36](3095 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:22, 04:36](3398 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 05:38](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:03, 08:52](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [18:16, 06:04](3614 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [41:36, 10:07](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:57, 07:35](4648 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:53, 05:20](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:16, 19:11]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:59, 04:16](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:17, 04:15](1736 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:16]
+FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_p8_intel' [, ]( MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:54]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:15](1708 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:24]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 04:20](1735 MB)
+
+PASS -- COMPILE 's2s_intel' [15:15, 14:25]
+PASS -- TEST 'cpld_control_c48_intel' [08:42, 06:37](2673 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:07]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:31](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:15, 19:32]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 14:04](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:27](1016 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:02](1669 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:56]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:23, 23:00](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:17, 12:37]
+PASS -- TEST 'control_flake_intel' [05:10, 03:26](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:05](621 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:11](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:00, 02:05](619 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:08](622 MB)
+PASS -- TEST 'control_c48_intel' [06:53, 05:18](734 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 05:19](737 MB)
+PASS -- TEST 'control_c192_intel' [11:08, 07:57](738 MB)
+PASS -- TEST 'control_c384_intel' [16:40, 08:20](1062 MB)
+PASS -- TEST 'control_c384gdas_intel' [21:25, 07:27](1196 MB)
+PASS -- TEST 'control_stochy_intel' [03:00, 01:26](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:56, 00:53](440 MB)
+PASS -- TEST 'control_lndp_intel' [03:01, 01:23](629 MB)
+PASS -- TEST 'control_iovr4_intel' [04:21, 02:08](624 MB)
+PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](622 MB)
+PASS -- TEST 'control_p8_intel' [05:07, 02:31](1593 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:29](1604 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:28](1601 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:35, 01:27](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:29, 02:31](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](803 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:25, 02:35](1601 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:20, 04:23](1604 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 03:20](1654 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:28, 02:33](1605 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:25, 03:02](1610 MB)
+PASS -- TEST 'regional_control_intel' [06:33, 04:33](632 MB)
+PASS -- TEST 'regional_restart_intel' [04:14, 02:36](802 MB)
+PASS -- TEST 'regional_decomp_intel' [07:11, 04:46](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:09, 04:30](1163 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 04:32](625 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:13, 04:32](628 MB)
+PASS -- TEST 'regional_wofs_intel' [09:07, 05:38](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:13, 11:15]
+PASS -- TEST 'rap_control_intel' [09:24, 06:06](1004 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:07, 03:45](1193 MB)
+PASS -- TEST 'rap_decomp_intel' [09:20, 06:23](1005 MB)
+PASS -- TEST 'rap_restart_intel' [05:36, 03:18](879 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:06](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:23](1007 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:35](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:59, 03:15](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:20](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 02:49](1088 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:46](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:02](999 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:00, 07:24](1961 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1952 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:13, 10:20]
+PASS -- TEST 'control_csawmg_intel' [08:30, 05:51](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:24, 05:46](692 MB)
+PASS -- TEST 'control_ras_intel' [04:48, 02:54](658 MB)
+
+PASS -- COMPILE 'wam_intel' [10:13, 09:16]
+PASS -- TEST 'control_wam_intel' [03:40, 01:54](380 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:24, 12:53]
+PASS -- TEST 'control_p8_faster_intel' [05:12, 02:24](1599 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:30, 04:17](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:35](796 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:33](792 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:51](797 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:36](797 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:01](842 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 03:56](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:49, 02:39](807 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:22, 02:47](855 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:27, 02:40](1627 MB)
+PASS -- TEST 'regional_debug_intel' [18:18, 16:16](669 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:49, 04:47](1181 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:38](1180 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_gf_debug_intel' [, ]( MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:38](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:46](1183 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:22, 05:00](1270 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:52](1183 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:48, 04:52](1183 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1184 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:40, 04:40](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:36](1181 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:49](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:43](1181 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:36](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:52, 05:24](1186 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:49, 04:42](1183 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:08](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:38, 05:30]
+PASS -- TEST 'control_wam_debug_intel' [05:38, 04:35](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 09:54]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 03:40](1059 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 05:15](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 02:49](886 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 02:55](888 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 03:53](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:32](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 12:01]
+PASS -- TEST 'conus13km_control_intel' [07:02, 01:56](1088 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:00, 01:01](1087 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:57, 01:09](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:02]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:42](912 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:49]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:35](1056 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:33](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:36, 13:48](1135 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:38](819 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:31](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:16, 05:33]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:36](1085 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:23, 15:59]
+PASS -- TEST 'hafs_regional_atm_intel' [08:08, 04:40](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:09](1065 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:01, 06:32](782 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:49, 10:58](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:08](810 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 04:42](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:50](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:24](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 06:24](452 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:22](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:02, 03:12](514 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 03:53](590 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:18](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:53, 03:27](790 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:17, 06:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:06](614 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:19, 19:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:05, 07:12](636 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:36, 07:16](693 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:21](683 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:14, 14:17]
+PASS -- TEST 'hafs_regional_docn_intel' [09:00, 05:38](756 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 05:40](741 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:43, 16:14](896 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:17, 07:41]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 02:31](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:02, 01:36](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:49, 02:27](648 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:27](649 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:30](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:23](644 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:44, 05:47](690 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:55, 05:46](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 03:59](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:06, 04:01](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:16, 04:57]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:56, 05:06](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:42, 02:31](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:24]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:15](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:08](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](450 MB)
+
+PASS -- COMPILE 'atml_intel' [14:18, 13:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 07:38](1632 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:42](1627 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmw_intel' [14:18, 12:51]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:34](1631 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:18, 12:59]
+PASS -- TEST 'control_atmwav_intel' [03:28, 01:29](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 11:11]
+PASS -- TEST 'atmaero_control_p8_intel' [07:28, 03:48](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 04:19](2997 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 04:32](3015 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:27]
+PASS -- TEST 'regional_atmaq_debug_intel' [33:27, 21:57](4534 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240416 14:22:27
+Ending Date/Time: 20240416 16:12:18
+Total Time: 01h:50m:38s
+Compiles Completed: 38/38
+Tests Completed: 172/175
+Failed Tests:
+* TEST cpld_debug_p8_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_cpld_debug_p8_intel.log
+* TEST hrrr_gf_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_hrrr_gf_debug_intel.log
+* TEST control_restart_p8_atmlnd_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_control_restart_p8_atmlnd_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d43ccd1b047697197e01c095515d268a6e53270f
+
+Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,271 +354,29 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_92899
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_55240
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:24, 20:18]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 05:02](3078 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:27, 20:57]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:04, 13:49](1690 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:24, 15:16](1822 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:22](964 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:04, 15:50](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:24, 10:03]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:25, 21:27](1704 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:24, 20:06]
-PASS -- TEST 'cpld_control_p8_intel' [09:42, 05:42](3094 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:51, 05:45](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:21, 03:23](3151 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:42, 05:45](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 03:29](3177 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3092 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:12, 04:42](3385 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:41](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:15, 09:03](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:47, 06:12](3616 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [30:56, 10:11](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [25:44, 07:28](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 05:23](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:26, 19:30]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:17, 04:16](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:22](1735 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:16, 10:02]
-PASS -- TEST 'cpld_debug_p8_intel' [10:17, 07:53](3155 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:24, 09:22]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:21](1709 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:24, 14:39]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 04:24](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [15:18, 15:03]
-PASS -- TEST 'cpld_control_c48_intel' [08:21, 06:44](2666 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:58]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 05:38](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [21:23, 20:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:08, 14:11](1708 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 07:30](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:15, 16:03](1670 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:25, 09:29]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:18, 22:53](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:27, 13:29]
-PASS -- TEST 'control_flake_intel' [04:56, 03:31](671 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 02:08](623 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:14](626 MB)
-PASS -- TEST 'control_latlon_intel' [03:47, 02:11](619 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:14](624 MB)
-PASS -- TEST 'control_c48_intel' [06:54, 05:17](736 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:55, 05:15](734 MB)
-PASS -- TEST 'control_c192_intel' [10:08, 07:56](740 MB)
-PASS -- TEST 'control_c384_intel' [15:37, 08:31](1058 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:02, 07:43](1199 MB)
-PASS -- TEST 'control_stochy_intel' [02:46, 01:28](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:44, 01:00](441 MB)
-PASS -- TEST 'control_lndp_intel' [02:50, 01:25](628 MB)
-PASS -- TEST 'control_iovr4_intel' [03:53, 02:11](623 MB)
-PASS -- TEST 'control_iovr5_intel' [03:42, 02:08](621 MB)
-PASS -- TEST 'control_p8_intel' [04:43, 02:34](1595 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:37](1599 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:59, 02:31](1603 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:35, 01:29](798 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:56, 02:36](1586 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:25](805 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:37](1595 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:26](1601 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:48, 03:24](1656 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:57, 02:44](1608 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:55, 03:06](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:12, 04:36](629 MB)
-PASS -- TEST 'regional_restart_intel' [04:17, 02:31](799 MB)
-PASS -- TEST 'regional_decomp_intel' [06:12, 04:51](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:09, 04:31](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:19, 04:35](626 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:05, 04:36](632 MB)
-PASS -- TEST 'regional_wofs_intel' [07:06, 05:40](1603 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:19, 11:39]
-PASS -- TEST 'rap_control_intel' [08:35, 06:07](1006 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:58](1193 MB)
-PASS -- TEST 'rap_decomp_intel' [08:41, 06:28](1006 MB)
-PASS -- TEST 'rap_restart_intel' [05:28, 03:12](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:26, 06:07](1003 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:24, 06:26](1009 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:31, 04:33](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:31, 03:18](1002 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:28, 03:21](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 02:50](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:00, 01:48](833 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:14, 05:59](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:42, 07:19](1960 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:56, 07:07](1953 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:24, 10:45]
-PASS -- TEST 'control_csawmg_intel' [08:26, 05:54](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:20, 05:50](696 MB)
-PASS -- TEST 'control_ras_intel' [03:56, 02:53](657 MB)
-
-PASS -- COMPILE 'wam_intel' [11:19, 09:56]
-PASS -- TEST 'control_wam_intel' [03:36, 01:54](387 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:20, 13:05]
-PASS -- TEST 'control_p8_faster_intel' [05:00, 02:23](1597 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:04, 04:22](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:25, 09:05]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:34](798 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:37](794 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:49, 02:52](801 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:35](802 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:20, 04:03](839 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:54](839 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:44, 02:40](807 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:39, 02:40](858 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:16, 02:37](1623 MB)
-PASS -- TEST 'regional_debug_intel' [17:14, 16:02](665 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:39, 04:45](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:36](1179 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 04:45](1184 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:47, 04:42](1182 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:35, 04:42](1183 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:12, 04:54](1262 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:44](1184 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:40, 04:55](1185 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:48](1182 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:44, 04:49](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:54, 04:42](1177 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:39, 04:40](1184 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:40](1181 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:51, 04:36](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:45, 05:36](1185 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:43](1179 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:25, 08:00](1181 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:20, 06:02]
-PASS -- TEST 'control_wam_debug_intel' [05:43, 04:40](426 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:20, 10:13]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:26, 03:37](1056 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:09](885 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:48](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 02:57](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:19, 03:54](797 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:36](778 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:15, 12:12]
-PASS -- TEST 'conus13km_control_intel' [04:16, 01:52](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:06](1085 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:10](978 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:14, 10:24]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:19, 03:39](911 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:18, 06:24]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:48, 04:37](1058 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:29](1057 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:53, 13:22](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:52, 13:30](821 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 13:47](1207 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:57]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:46](1081 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:23, 16:46]
-PASS -- TEST 'hafs_regional_atm_intel' [07:07, 04:42](720 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 05:18](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:00, 06:42](779 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:21, 11:03](796 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:33, 12:08](820 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 04:37](479 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:53, 05:51](491 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:15, 02:28](393 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:17, 06:21](459 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:18, 03:19](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:15](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:04](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:20](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:37, 03:29](786 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:14, 07:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:04](612 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:48, 07:07](634 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:09, 07:13](692 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:21, 17:28]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:17, 05:26](676 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:22, 14:46]
-PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:43](755 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:53, 05:41](739 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:35, 16:16](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:18, 08:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:43, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:36](737 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:39, 02:30](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:29](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:43, 02:30](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:37, 02:30](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:39](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:37, 02:21](643 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:51, 05:49](689 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:44, 05:46](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:59](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:46, 04:04](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:27]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:07](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](750 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:28]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:56, 01:20](311 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:49, 01:11](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:35, 00:47](453 MB)
-
-PASS -- COMPILE 'atml_intel' [14:20, 13:30]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:39, 07:40](1631 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:34, 07:20](1639 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:42](855 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:20, 13:13]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:40, 01:34](1633 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:25, 13:11]
-PASS -- TEST 'control_atmwav_intel' [03:01, 01:30](639 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:20, 11:39]
-PASS -- TEST 'atmaero_control_p8_intel' [05:54, 03:40](2950 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:27](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 04:40](3009 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:20, 11:12]
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:23, 06:46]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:02, 22:21](4532 MB)
+PASS -- COMPILE 's2swa_debug_intel' [10:18, 09:13]
+PASS -- TEST 'cpld_debug_p8_intel' [11:29, 07:46](3155 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:25]
+PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:38](1183 MB)
+
+PASS -- COMPILE 'atml_intel' [14:19, 12:54]
+PASS -- TEST 'control_p8_atmlnd_intel' [10:09, 06:20](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:54](850 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 14:32:19
-Ending Date/Time: 20240411 16:01:58
-Total Time: 01h:30m:40s
-Compiles Completed: 39/39
-Tests Completed: 175/175
+Starting Date/Time: 20240416 16:43:55
+Ending Date/Time: 20240416 17:16:53
+Total Time: 00h:33m:08s
+Compiles Completed: 3/3
+Tests Completed: 4/4
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index a23e9e8eff..8416413b47 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+684ddd65adbf26b3a8003e05c8af6c4e19be63f8
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,277 +36,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_65366
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100835
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [23:11, 21:40]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 08:34](3071 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:16, 25:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:34, 14:27](1696 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:39, 14:50](1811 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:07, 06:59](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:31, 15:52](1663 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:11, 14:45]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:39, 24:32](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [41:15, 39:34]
-PASS -- TEST 'cpld_control_p8_intel' [12:04, 08:40](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:06, 08:58](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [10:40, 06:13](3155 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:53, 09:18](3122 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:53, 06:20](3176 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:44, 07:18](3410 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:05, 08:43](3094 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:16, 08:00](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:14, 08:43](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:14, 11:09](3270 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:30, 07:58](3607 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:08, 13:41](4035 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:42, 09:38](4343 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:18, 08:39](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:13, 19:59]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 05:13](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 05:46](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [17:09, 15:29]
-PASS -- TEST 'cpld_debug_p8_intel' [13:51, 10:16](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:26, 08:45]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 06:28](1697 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:28, 14:31]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:03, 05:53](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [19:13, 18:01]
-PASS -- TEST 'cpld_control_c48_intel' [09:31, 06:56](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [26:12, 24:13]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:50, 08:48](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:03]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:42, 15:14](1705 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:04, 08:18](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:56, 18:36](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:13, 13:42]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:37, 28:01](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:14, 16:43]
-PASS -- TEST 'control_flake_intel' [09:34, 04:06](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:00, 02:57](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:36, 03:07](626 MB)
-PASS -- TEST 'control_latlon_intel' [07:36, 02:36](623 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:01, 03:06](623 MB)
-PASS -- TEST 'control_c48_intel' [11:24, 05:42](722 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:22, 05:38](722 MB)
-PASS -- TEST 'control_c192_intel' [15:14, 09:08](739 MB)
-PASS -- TEST 'control_c384_intel' [23:29, 17:00](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [23:01, 14:52](1183 MB)
-PASS -- TEST 'control_stochy_intel' [07:36, 02:15](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:37, 01:35](430 MB)
-PASS -- TEST 'control_lndp_intel' [07:23, 02:09](628 MB)
-PASS -- TEST 'control_iovr4_intel' [08:47, 03:01](623 MB)
-PASS -- TEST 'control_iovr5_intel' [08:48, 03:05](623 MB)
-PASS -- TEST 'control_p8_intel' [10:18, 03:22](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:37, 03:49](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [11:25, 03:51](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:16, 01:48](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:18, 03:23](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:30, 01:50](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [12:10, 04:01](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [11:22, 03:13](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [12:37, 05:58](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 04:13](1659 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:36, 03:55](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:25, 04:11](1615 MB)
-PASS -- TEST 'regional_control_intel' [10:21, 05:11](615 MB)
-PASS -- TEST 'regional_restart_intel' [05:07, 02:56](789 MB)
-PASS -- TEST 'regional_decomp_intel' [09:56, 04:58](615 MB)
-PASS -- TEST 'regional_2threads_intel' [06:09, 03:07](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:17, 04:49](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:18, 04:54](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 05:12](615 MB)
-PASS -- TEST 'regional_wofs_intel' [09:06, 06:17](1590 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:11, 15:17]
-PASS -- TEST 'rap_control_intel' [10:04, 07:31](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:07, 04:22](1186 MB)
-PASS -- TEST 'rap_decomp_intel' [10:09, 07:24](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:16, 06:19](1099 MB)
-PASS -- TEST 'rap_restart_intel' [06:29, 03:34](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:55, 06:57](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 07:12](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:13](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:59, 04:05](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:19, 03:54](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 03:16](1081 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:16](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:49, 07:15](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:39, 08:21](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:39, 08:00](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:12, 14:02]
-PASS -- TEST 'control_csawmg_intel' [08:58, 06:49](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:56, 06:50](691 MB)
-PASS -- TEST 'control_ras_intel' [05:47, 03:33](657 MB)
-
-PASS -- COMPILE 'wam_intel' [16:14, 14:11]
-PASS -- TEST 'control_wam_intel' [05:00, 02:10](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 18:30]
-PASS -- TEST 'control_p8_faster_intel' [06:46, 03:50](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:51, 05:06](615 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [14:11, 12:32]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:05, 03:14](778 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:12, 03:36](783 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:43, 03:37](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:40, 03:29](790 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:46, 04:39](826 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:44, 05:03](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:31, 03:36](796 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:35, 03:24](844 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:58, 04:14](1622 MB)
-PASS -- TEST 'regional_debug_intel' [20:29, 16:47](637 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:46, 05:16](1170 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:52, 05:15](1166 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 05:27](1169 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:23, 05:38](1168 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:09, 05:31](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:01, 05:20](1253 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:53, 05:13](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:44, 05:10](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:41, 05:07](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:58, 05:28](1168 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:12, 05:04](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:57, 05:11](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:16](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:33, 05:38](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:47, 06:16](1170 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:44, 05:29](1168 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:20, 08:56](1171 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [12:08, 10:08]
-PASS -- TEST 'control_wam_debug_intel' [09:54, 05:30](394 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:24]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:21, 03:49](1050 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 05:55](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:18, 03:28](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:19, 05:24](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:59](937 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:06, 03:41](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:06, 04:34](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 01:45](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:13, 17:47]
-PASS -- TEST 'conus13km_control_intel' [06:20, 03:18](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:51, 01:15](1075 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:45, 01:59](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:14, 13:56]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:20, 04:44](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 09:36]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:36](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 04:59](1046 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:47, 14:21](1127 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:47, 14:21](802 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:18, 08:24](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:30, 14:22](1193 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:12, 10:43]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:56, 05:09](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [21:10, 19:52]
-PASS -- TEST 'hafs_regional_atm_intel' [08:37, 05:27](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:43](1061 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:54, 07:58](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:22, 11:50](790 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:46, 12:56](804 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:30, 05:24](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:45](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:25, 02:55](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:10, 08:19](434 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:56, 03:57](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:40](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:07, 04:50](576 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:39, 01:49](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:51, 04:27](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [17:10, 15:21]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:25, 13:25](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:35]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 07:46](614 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:31, 08:06](788 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:18, 19:51]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:35, 06:07](789 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:11, 18:27]
-PASS -- TEST 'hafs_regional_docn_intel' [11:08, 06:34](748 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:02, 06:32](729 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:16](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:27, 01:39](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:29, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:29, 02:27](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:29](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:35, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 02:26](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:02](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:09, 06:17](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:26, 02:38](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 04:43](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:00, 04:37](2012 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [14:09, 12:26]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:22, 05:40](741 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [15:11, 13:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:29, 02:43](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [07:11, 05:14]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:08, 04:45](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:23, 02:26](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:51, 01:20](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:09, 15:52]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:28, 08:50](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:45, 09:02](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:00, 04:46](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:14, 15:33]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:30, 03:13](1650 MB)
-
-PASS -- COMPILE 'atmwm_intel' [53:19, 51:58]
-PASS -- TEST 'control_atmwav_intel' [04:02, 02:02](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:11, 15:53]
-PASS -- TEST 'atmaero_control_p8_intel' [10:37, 07:24](2942 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [10:55, 07:57](3010 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:46](3017 MB)
-
-PASS -- COMPILE 'atmaq_intel' [15:23, 14:01]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:08, 10:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:45, 19:14](4480 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [25:06, 24:37]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 08:17](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 24:03]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:28, 13:41](1687 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:24](1810 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:29, 06:48](947 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:23, 14:53](1671 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:10, 14:56]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:53](1709 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:06, 19:37]
+PASS -- TEST 'cpld_control_p8_intel' [12:33, 08:41](3101 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:53, 08:38](3099 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:13, 05:53](3157 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:33, 08:34](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:13, 05:52](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:02, 07:03](3410 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [12:19, 08:28](3101 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:02, 07:41](3022 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:39](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:06, 10:58](3275 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:09](3605 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 13:19](4043 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:04, 09:47](4343 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 08:29](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:06, 18:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 05:21](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 05:30](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:10, 14:46]
+PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:26](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [20:06, 19:11]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:11](1701 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:06, 17:51]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:10, 05:33](1729 MB)
+
+PASS -- COMPILE 's2s_intel' [24:06, 23:42]
+PASS -- TEST 'cpld_control_c48_intel' [09:56, 06:56](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:06, 23:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:29](3099 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:10, 24:54]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:26](1703 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:59, 07:32](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:50, 18:26](1682 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:06, 13:57]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 26:53](1720 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:07, 15:52]
+PASS -- TEST 'control_flake_intel' [05:03, 03:48](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:35](619 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:40](627 MB)
+PASS -- TEST 'control_latlon_intel' [04:02, 02:39](622 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:43](623 MB)
+PASS -- TEST 'control_c48_intel' [07:24, 05:39](721 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:38](721 MB)
+PASS -- TEST 'control_c192_intel' [11:21, 08:51](738 MB)
+PASS -- TEST 'control_c384_intel' [18:43, 16:51](1042 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:32, 14:32](1181 MB)
+PASS -- TEST 'control_stochy_intel' [04:02, 01:57](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:13, 01:26](429 MB)
+PASS -- TEST 'control_lndp_intel' [04:02, 01:51](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:45, 02:42](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:39, 02:39](623 MB)
+PASS -- TEST 'control_p8_intel' [06:07, 03:22](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:39](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:07, 03:39](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:27, 01:51](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:24, 03:46](1595 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:37, 02:34](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:53, 03:17](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:34](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:23, 04:13](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:59](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:47, 04:15](1616 MB)
+PASS -- TEST 'regional_control_intel' [06:50, 04:54](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:10, 02:37](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:38, 04:58](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:50, 02:59](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:52, 04:36](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:54](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:53](615 MB)
+PASS -- TEST 'regional_wofs_intel' [11:03, 06:48](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:06, 16:37]
+PASS -- TEST 'rap_control_intel' [09:23, 07:09](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:08](1185 MB)
+PASS -- TEST 'rap_decomp_intel' [09:22, 07:17](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:17, 06:20](1100 MB)
+PASS -- TEST 'rap_restart_intel' [05:14, 03:41](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:55](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:14, 07:22](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:54, 05:28](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:10, 03:54](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 04:28](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:29](1086 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:32](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:47](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:38, 08:23](1963 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:40, 08:29](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:06, 12:56]
+PASS -- TEST 'control_csawmg_intel' [07:50, 06:39](695 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:50, 06:37](691 MB)
+PASS -- TEST 'control_ras_intel' [04:37, 03:25](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:07, 13:10]
+PASS -- TEST 'control_wam_intel' [03:40, 02:31](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:08, 17:06]
+PASS -- TEST 'control_p8_faster_intel' [06:02, 03:53](1608 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:00, 04:38](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [14:06, 13:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:16](777 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 03:19](781 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:19](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:58](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:29](823 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 04:22](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:26, 02:57](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:36, 03:00](842 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:43, 03:22](1620 MB)
+PASS -- TEST 'regional_debug_intel' [19:24, 17:01](634 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:31, 05:14](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:25](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:06](1167 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:47, 05:27](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:10, 05:25](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:33, 05:24](1255 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:03, 05:29](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:32](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:52, 05:09](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 05:28](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:59](1165 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 05:27](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:11](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:48, 05:19](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:32](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:11](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:51](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:07, 09:24]
+PASS -- TEST 'control_wam_debug_intel' [07:33, 05:27](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:06, 15:33]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 04:12](1052 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:00](889 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 03:52](886 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:31](947 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:07](938 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:58, 04:12](887 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:35](783 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:03](765 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:06, 16:50]
+PASS -- TEST 'conus13km_control_intel' [04:58, 03:02](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:41](1073 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:40](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:53]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 04:35](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 10:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:15](1047 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 05:26](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:00, 15:05](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:59](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:15, 08:28](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:08, 14:26](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:05, 10:45]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:23](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:07, 18:27]
+PASS -- TEST 'hafs_regional_atm_intel' [07:33, 05:20](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:46](1057 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:57](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 12:09](784 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 13:08](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:36](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:00](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:27, 03:03](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 08:20](444 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:06](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:39](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:38](575 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:45](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:16, 04:10](763 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [19:06, 18:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:17](587 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:07, 22:44]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:26, 07:53](622 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 07:49](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:10, 20:40]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:08, 06:13](788 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:06, 18:46]
+PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:21](748 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:33](729 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:13](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:09, 13:26]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:53, 02:38](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:45](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:35](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:42](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:35](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:38](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:40](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:41](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:14, 06:31](691 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:15, 06:32](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:21, 02:47](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:30, 04:38](1952 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [16:28, 04:48](2012 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 09:14]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:26, 06:01](739 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [15:10, 14:14]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:26, 02:53](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 04:10]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:04, 04:17](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:55, 02:47](455 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:04, 01:24](456 MB)
+
+PASS -- COMPILE 'atml_intel' [16:10, 16:01]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:56, 08:37](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [22:57, 07:41](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:10](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [19:10, 18:08]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:25, 03:18](1648 MB)
+
+PASS -- COMPILE 'atmwm_intel' [17:10, 16:58]
+PASS -- TEST 'control_atmwav_intel' [14:20, 02:58](640 MB)
+
+PASS -- COMPILE 'atmaero_intel' [22:10, 21:21]
+PASS -- TEST 'atmaero_control_p8_intel' [14:33, 06:48](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [15:27, 07:33](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:12, 08:01](3019 MB)
+
+PASS -- COMPILE 'atmaq_intel' [16:10, 15:21]
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:10, 11:16]
+PASS -- TEST 'regional_atmaq_debug_intel' [32:42, 18:39](4477 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 15:48:21
-Ending Date/Time: 20240411 17:57:51
-Total Time: 02h:10m:38s
+Starting Date/Time: 20240415 16:40:32
+Ending Date/Time: 20240415 18:27:41
+Total Time: 01h:47m:54s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index bf7ba55e79..a7d21eb746 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+684ddd65adbf26b3a8003e05c8af6c4e19be63f8
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,13 +9,13 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -25,371 +25,371 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_569665
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3831458
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:10, 13:08]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 05:34](3109 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 16:37]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:07, 17:03](1732 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 17:42](2004 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:10, 08:03](1121 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:18](1629 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:07, 04:44]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:11, 22:52](1656 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:10, 13:08]
-PASS -- TEST 'cpld_control_p8_intel' [08:11, 05:47](3198 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 05:51](3189 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:30](3236 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:11, 05:52](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:27](3253 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:30](3519 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:47](3190 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:12, 04:45](3054 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:22, 05:53](3190 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:16, 10:15](3321 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:39, 06:20](3593 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:55, 09:29](4146 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 06:04](4348 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:12, 05:21](3149 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:09, 12:33]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:52, 04:45](1718 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:00, 04:22](1761 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:43]
-PASS -- TEST 'cpld_debug_p8_intel' [11:13, 08:19](3188 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:15]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:45](1728 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:09, 11:34]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 04:17](1774 MB)
-
-PASS -- COMPILE 's2s_intel' [13:10, 11:51]
-PASS -- TEST 'cpld_control_c48_intel' [11:42, 09:28](2804 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:00]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:14, 05:25](3201 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 15:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:13, 17:13](1761 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:10, 08:22](1148 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:08, 19:50](1632 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:08, 04:12]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:58, 25:13](1674 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:09, 11:42]
-PASS -- TEST 'control_flake_intel' [05:18, 03:19](661 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:27](640 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:27, 02:30](646 MB)
-PASS -- TEST 'control_latlon_intel' [04:19, 02:28](634 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:29](634 MB)
-PASS -- TEST 'control_c48_intel' [08:23, 06:20](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:27](847 MB)
-PASS -- TEST 'control_c192_intel' [11:37, 09:12](834 MB)
-PASS -- TEST 'control_c384_intel' [12:31, 09:10](1278 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:38, 07:59](1381 MB)
-PASS -- TEST 'control_stochy_intel' [03:18, 01:39](618 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:22, 00:58](469 MB)
-PASS -- TEST 'control_lndp_intel' [03:19, 01:33](639 MB)
-PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](615 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:26](630 MB)
-PASS -- TEST 'control_p8_intel' [06:56, 03:01](1610 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:03, 02:58](1619 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:54](1618 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:47, 01:35](877 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:56](1603 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:35](916 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:52, 03:11](1579 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:52, 02:49](1697 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:40, 05:12](1611 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:48, 03:55](1673 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:51, 02:59](1618 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:50, 03:27](1592 MB)
-PASS -- TEST 'regional_control_intel' [07:35, 05:11](808 MB)
-PASS -- TEST 'regional_restart_intel' [08:38, 02:45](1001 MB)
-PASS -- TEST 'regional_decomp_intel' [07:38, 05:29](822 MB)
-PASS -- TEST 'regional_2threads_intel' [05:39, 03:13](821 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:41, 05:06](1339 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:10](829 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:07](829 MB)
-PASS -- TEST 'regional_wofs_intel' [08:36, 06:41](1888 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:10, 10:30]
-PASS -- TEST 'rap_control_intel' [09:36, 07:55](1094 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:59, 04:05](1282 MB)
-PASS -- TEST 'rap_decomp_intel' [10:35, 08:13](1018 MB)
-PASS -- TEST 'rap_2threads_intel' [09:30, 07:17](1133 MB)
-PASS -- TEST 'rap_restart_intel' [07:40, 04:02](1084 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:42](1090 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:10](1023 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:43, 05:46](1117 MB)
-PASS -- TEST 'hrrr_control_intel' [06:32, 04:01](1020 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:31, 04:06](1013 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:36](1099 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:26, 02:09](979 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:38](1076 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [16:25, 09:14](1948 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:27, 09:01](2040 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:09, 10:32]
-PASS -- TEST 'control_csawmg_intel' [12:43, 06:03](738 MB)
-PASS -- TEST 'control_csawmgt_intel' [12:40, 05:55](730 MB)
-PASS -- TEST 'control_ras_intel' [09:22, 03:17](704 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:07, 03:54]
-PASS -- TEST 'control_csawmg_gnu' [10:41, 08:20](534 MB)
-PASS -- TEST 'control_csawmgt_gnu' [10:41, 08:08](525 MB)
-
-PASS -- COMPILE 'wam_intel' [12:09, 10:19]
-PASS -- TEST 'control_wam_intel' [08:19, 02:05](636 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 10:45]
-PASS -- TEST 'control_p8_faster_intel' [08:47, 02:41](1613 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:37, 04:47](832 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:08, 05:28]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:22, 02:45](789 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:25, 02:48](783 MB)
-PASS -- TEST 'control_stochy_debug_intel' [07:18, 03:02](789 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:19, 02:44](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:36, 04:14](832 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:37, 04:03](835 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:19, 02:53](791 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:25, 02:49](843 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:39, 02:53](1610 MB)
-PASS -- TEST 'regional_debug_intel' [19:40, 17:03](811 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:18, 04:52](1173 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:18, 04:44](1142 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:52](1173 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:18, 04:49](1172 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:58](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:06](1256 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:49](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:59](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:55](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:19, 04:56](1170 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:46](1176 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:18, 04:51](1174 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1176 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:44](1171 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 06:04](1178 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:48](1172 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:23](1176 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:08, 02:42]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:06](509 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [04:36, 02:07](506 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:08, 03:13]
-PASS -- TEST 'control_wam_debug_intel' [07:19, 05:06](474 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:09, 10:08]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:51](1146 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:33, 06:24](1033 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 03:23](970 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:06](1069 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 03:09](946 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:35](898 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:34, 04:51](1026 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:22, 01:52](917 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:24]
-PASS -- TEST 'conus13km_control_intel' [04:54, 02:05](1181 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:38, 00:53](1104 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:15](1092 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 10:09]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:37, 04:15](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:08, 03:32]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:50](1046 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1051 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:51, 14:37](1192 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 13:59](882 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:02](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:21](1260 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:08, 03:24]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:54](1092 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:10, 11:43]
-PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:00](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:49](1095 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 07:01](817 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:12](843 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:29, 15:04](873 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:33](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](512 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:39](351 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:38, 07:18](463 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:47](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:31](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:47, 04:06](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:14](387 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:54, 04:04](778 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:09, 03:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:49, 12:48](531 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:11, 12:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:59, 08:43](650 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:57, 08:48](720 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:10, 12:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:01, 06:22](707 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:10, 11:06]
-PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:31](815 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:19, 06:30](808 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:13](1222 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:08, 06:25]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:45](1136 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:37](1092 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:34](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:35](1008 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:35](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:39](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1141 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:32](1007 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:41](1048 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:12, 06:14](1034 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:40](1139 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 03:49](2486 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:58](2425 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:04]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:11](1052 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:09, 05:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:38](1157 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [07:08, 00:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:46](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:51](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:33](319 MB)
-
-PASS -- COMPILE 'atml_intel' [18:12, 11:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 04:10](1587 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 04:12](1598 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 02:14](884 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:11, 11:16]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:44](1658 MB)
-
-PASS -- COMPILE 'atmwm_intel' [16:10, 11:15]
-PASS -- TEST 'control_atmwav_intel' [03:30, 01:43](655 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:10, 10:57]
-PASS -- TEST 'atmaero_control_p8_intel' [05:56, 04:01](3009 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:52, 04:52](3072 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:11](3086 MB)
-
-PASS -- COMPILE 'atmaq_intel' [14:10, 10:16]
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:07, 03:37]
-PASS -- TEST 'regional_atmaq_debug_intel' [31:13, 27:46](4449 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:07, 04:02]
-PASS -- TEST 'control_c48_gnu' [12:26, 10:36](750 MB)
-PASS -- TEST 'control_stochy_gnu' [05:20, 03:25](492 MB)
-PASS -- TEST 'control_ras_gnu' [06:19, 04:49](499 MB)
-PASS -- TEST 'control_p8_gnu' [06:55, 04:39](1251 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:51, 04:33](1253 MB)
-PASS -- TEST 'control_flake_gnu' [12:21, 10:23](536 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:07, 03:40]
-PASS -- TEST 'rap_control_gnu' [12:31, 10:42](843 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:29, 10:52](851 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:37, 09:41](925 MB)
-PASS -- TEST 'rap_restart_gnu' [07:38, 05:23](569 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:47](848 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:31, 10:47](847 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:38, 07:58](574 MB)
-PASS -- TEST 'hrrr_control_gnu' [07:32, 05:38](842 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:28](830 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:26, 05:04](921 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [07:26, 05:39](842 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:52](555 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:49](654 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [12:39, 10:28](840 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:07, 03:39]
-PASS -- TEST 'control_diag_debug_gnu' [03:27, 01:38](530 MB)
-PASS -- TEST 'regional_debug_gnu' [12:41, 10:40](547 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:17, 02:39](849 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:35](848 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:35](852 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:39](853 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:30, 02:45](938 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 04:01](847 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:17, 02:36](849 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:16, 02:41](840 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:32](484 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:45](480 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:39](1242 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [04:17, 02:37](848 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:48](852 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:32, 04:20](854 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:08, 01:53]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:07, 03:42]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:28, 09:28](701 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 04:55](697 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 08:36](749 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:26, 04:32](738 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:26, 04:55](701 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:34, 06:48](547 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:22, 02:34](536 MB)
-PASS -- TEST 'conus13km_control_gnu' [05:48, 03:15](871 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [07:37, 05:34](877 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:37, 01:47](543 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:08, 05:23]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:35, 05:51](726 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:07, 03:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:32](703 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:28](701 MB)
-PASS -- TEST 'conus13km_debug_gnu' [08:45, 06:58](868 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [08:41, 07:04](562 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [09:36, 07:18](875 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:37, 06:56](936 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:07, 03:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:18, 02:36](721 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:11, 14:42]
-
-PASS -- COMPILE 's2s_gnu' [16:10, 14:27]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 06:34](1345 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:07, 02:47]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 14:39]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:59, 21:52](1308 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:07, 02:20]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:55, 12:41](1308 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 14:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:13, 03:01](690 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:41]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:31, 05:42](3190 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 17:08]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1760 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:11, 17:52](2026 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:05](1123 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 19:17](1648 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:07, 04:35]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 22:40](1695 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:07, 12:42]
+PASS -- TEST 'cpld_control_p8_intel' [12:25, 06:09](3213 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 05:56](3228 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:28](3239 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:29, 05:58](3247 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:28](3282 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:22, 05:42](3537 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:22, 05:57](3201 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:20, 04:57](3060 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 05:56](3223 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:28](3357 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:05, 06:08](3632 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:39, 09:54](4165 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:16, 06:15](4361 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 05:36](3175 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:07, 12:22]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:16, 04:55](1749 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 04:27](1788 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:35]
+PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:33](3241 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:06]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:44](1761 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:06, 11:28]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:25](1790 MB)
+
+PASS -- COMPILE 's2s_intel' [12:06, 11:29]
+PASS -- TEST 'cpld_control_c48_intel' [11:37, 09:27](2834 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:23]
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:34](3231 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:01]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:00, 17:19](1777 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:04](1175 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:59, 19:44](1685 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:02]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 25:27](1729 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:18]
+PASS -- TEST 'control_flake_intel' [04:21, 03:19](711 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:23](664 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:29](659 MB)
+PASS -- TEST 'control_latlon_intel' [03:18, 02:25](662 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:27](655 MB)
+PASS -- TEST 'control_c48_intel' [07:22, 06:22](877 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 06:22](878 MB)
+PASS -- TEST 'control_c192_intel' [10:39, 09:09](855 MB)
+PASS -- TEST 'control_c384_intel' [11:30, 09:14](1297 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:21, 07:58](1404 MB)
+PASS -- TEST 'control_stochy_intel' [02:18, 01:36](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:59](503 MB)
+PASS -- TEST 'control_lndp_intel' [02:17, 01:34](661 MB)
+PASS -- TEST 'control_iovr4_intel' [03:19, 02:26](656 MB)
+PASS -- TEST 'control_iovr5_intel' [04:18, 02:25](659 MB)
+PASS -- TEST 'control_p8_intel' [04:51, 02:57](1636 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:56](1637 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:53](1631 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:45, 01:36](891 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:51, 02:56](1617 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:36](933 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:59](1619 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:51, 02:46](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:45, 05:13](1634 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 03:57](1707 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:00](1619 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:53, 03:34](1623 MB)
+PASS -- TEST 'regional_control_intel' [08:38, 05:12](852 MB)
+PASS -- TEST 'regional_restart_intel' [03:35, 02:45](1022 MB)
+PASS -- TEST 'regional_decomp_intel' [08:35, 05:32](850 MB)
+PASS -- TEST 'regional_2threads_intel' [05:36, 03:18](848 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:37, 05:12](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:10](855 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](853 MB)
+PASS -- TEST 'regional_wofs_intel' [09:35, 06:43](1915 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:09, 10:37]
+PASS -- TEST 'rap_control_intel' [08:35, 07:42](1102 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:09](1302 MB)
+PASS -- TEST 'rap_decomp_intel' [10:30, 08:07](1043 MB)
+PASS -- TEST 'rap_2threads_intel' [09:31, 07:14](1180 MB)
+PASS -- TEST 'rap_restart_intel' [04:41, 04:02](1111 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:36, 07:40](1105 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 08:06](1041 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:38, 05:47](1140 MB)
+PASS -- TEST 'hrrr_control_intel' [05:31, 03:55](1043 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:05](1034 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:37](1112 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:09](1006 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:41, 07:33](1098 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 09:19](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 08:59](2068 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:06, 10:17]
+PASS -- TEST 'control_csawmg_intel' [06:36, 06:01](761 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:37, 05:58](760 MB)
+PASS -- TEST 'control_ras_intel' [04:18, 03:18](748 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:05, 03:38]
+PASS -- TEST 'control_csawmg_gnu' [09:44, 08:17](548 MB)
+PASS -- TEST 'control_csawmgt_gnu' [09:43, 08:18](552 MB)
+
+PASS -- COMPILE 'wam_intel' [11:06, 09:37]
+PASS -- TEST 'control_wam_intel' [04:18, 02:04](655 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:44]
+PASS -- TEST 'control_p8_faster_intel' [04:47, 02:36](1645 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:43]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:39](817 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 02:37](802 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:57](820 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:16, 02:39](822 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:05](877 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:34, 04:04](868 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:17, 02:43](823 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:27, 02:42](878 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:41, 02:53](1623 MB)
+PASS -- TEST 'regional_debug_intel' [18:37, 17:16](840 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:19, 04:53](1212 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:18, 04:51](1206 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:49](1210 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:47](1215 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:49](1212 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:07](1292 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 05:04](1211 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 05:03](1165 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:56](1206 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:50](1215 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:18, 04:43](1214 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:18, 04:50](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:00](1207 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1209 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:05](1214 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:16, 04:44](1207 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:26](1217 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 02:51]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:10](533 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:32, 02:10](531 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:06, 03:09]
+PASS -- TEST 'control_wam_debug_intel' [06:17, 05:01](518 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:05, 10:08]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:58, 03:56](1167 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 06:24](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:32, 03:23](993 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:07](1070 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:08](966 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:37](932 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 04:57](1021 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:51](929 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 12:27]
+PASS -- TEST 'conus13km_control_intel' [03:51, 02:04](1210 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:52](1125 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:13](1111 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:05, 10:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:11](987 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:21]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:52](1093 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 04:39](1087 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:44, 14:23](1244 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:39](926 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:07](1159 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:52](1308 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:25]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 05:00](1132 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:07, 11:52]
+PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:56](736 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 06:01](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:21, 06:54](830 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 13:26](873 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:25, 15:00](890 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:26](497 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:38](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:43](378 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:10](485 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:44, 03:40](536 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:58, 03:32](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:04](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:13](409 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:50, 04:06](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:44](577 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:06, 12:02]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:52, 08:42](677 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:57, 08:41](742 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 11:43]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:29](742 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:06, 11:02]
+PASS -- TEST 'hafs_regional_docn_intel' [08:07, 06:26](831 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 06:33](833 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:40](1211 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:43](1166 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:37](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:39](1035 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 02:39](1017 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:12, 02:36](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:12, 02:41](1160 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:12, 02:44](1160 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1024 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:28, 06:11](1064 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 06:15](1044 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:42](1146 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:48](2373 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 04:09](2490 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 02:59]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:11](1080 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:55]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:43](1151 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:03]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:49](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:52](325 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:31](330 MB)
+
+PASS -- COMPILE 'atml_intel' [12:07, 12:00]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:08](1612 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 04:06](1621 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:14](907 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:07, 10:35]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:45](1680 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:07, 10:42]
+PASS -- TEST 'control_atmwav_intel' [03:25, 01:42](679 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:06, 10:45]
+PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:58](3039 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:52](3107 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 05:04](3116 MB)
+
+PASS -- COMPILE 'atmaq_intel' [11:06, 10:07]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:07, 03:33]
+PASS -- TEST 'regional_atmaq_debug_intel' [50:41, 21:09](4521 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:06, 03:36]
+PASS -- TEST 'control_c48_gnu' [11:19, 10:46](765 MB)
+PASS -- TEST 'control_stochy_gnu' [04:16, 03:25](509 MB)
+PASS -- TEST 'control_ras_gnu' [05:16, 04:46](517 MB)
+PASS -- TEST 'control_p8_gnu' [07:50, 04:46](1267 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:32](1267 MB)
+PASS -- TEST 'control_flake_gnu' [12:17, 10:26](553 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:06, 03:42]
+PASS -- TEST 'rap_control_gnu' [13:27, 10:58](864 MB)
+PASS -- TEST 'rap_decomp_gnu' [13:27, 10:58](861 MB)
+PASS -- TEST 'rap_2threads_gnu' [12:31, 09:47](942 MB)
+PASS -- TEST 'rap_restart_gnu' [08:34, 05:24](587 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [13:26, 10:53](861 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:02](862 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:36, 08:04](587 MB)
+PASS -- TEST 'hrrr_control_gnu' [07:23, 05:37](859 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:38](842 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [06:24, 05:04](933 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [08:25, 05:41](864 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:53](573 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:21, 02:52](666 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:22](859 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:06, 03:34]
+PASS -- TEST 'control_diag_debug_gnu' [02:25, 01:37](552 MB)
+PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](566 MB)
+PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:35](872 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [07:16, 02:37](873 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [07:16, 02:41](875 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [07:15, 02:35](875 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [07:31, 02:54](956 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:18, 04:07](869 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 02:36](872 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:19, 02:37](864 MB)
+PASS -- TEST 'control_ras_debug_gnu' [05:15, 01:32](508 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [05:14, 01:48](496 MB)
+PASS -- TEST 'control_debug_p8_gnu' [04:34, 01:39](1256 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:35](871 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:57](874 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:31, 04:23](876 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:07, 01:49]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:06, 03:34]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:25, 09:31](716 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:59](714 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:36, 08:44](766 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:23, 04:33](757 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:22, 05:00](719 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 06:57](562 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 02:37](545 MB)
+PASS -- TEST 'conus13km_control_gnu' [09:48, 03:16](886 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:36, 05:33](896 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:38, 01:47](567 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:26]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 05:44](746 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:06, 03:34]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 02:30](724 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:15, 02:33](727 MB)
+PASS -- TEST 'conus13km_debug_gnu' [12:45, 06:59](901 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [12:41, 06:54](589 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [12:40, 07:21](903 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:39, 06:52](972 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:40]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [08:17, 02:38](743 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:07, 14:38]
+
+PASS -- COMPILE 's2s_gnu' [16:07, 14:12]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 06:38](1354 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:29]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 14:21]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 27:13](1327 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:07, 02:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [23:51, 18:18](1324 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:14, 03:11](702 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 19:38:17
-Ending Date/Time: 20240411 21:19:50
-Total Time: 01h:41m:49s
+Starting Date/Time: 20240415 20:36:04
+Ending Date/Time: 20240415 23:17:26
+Total Time: 02h:41m:40s
Compiles Completed: 55/55
Tests Completed: 244/244
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index dbc0dc694c..4cd5a52970 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+684ddd65adbf26b3a8003e05c8af6c4e19be63f8
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,365 +36,366 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1950397
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1998392
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:06, 13:11]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:58, 07:34](1893 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:38]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:05, 13:43](1774 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:24, 14:27](2174 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:28](1173 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:50, 15:18](1684 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:31]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:03, 20:23](1727 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:06, 11:57]
-PASS -- TEST 'cpld_control_p8_intel' [09:45, 07:42](2078 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:59, 07:34](2059 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:09, 04:15](1981 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:47, 07:52](1976 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 04:31](1738 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:44, 09:04](2489 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:43, 07:43](2058 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:56, 06:27](1890 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:59, 07:43](2079 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:34, 15:28](2814 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:01, 05:51](2922 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:14, 09:04](3625 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:44, 06:16](3624 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:54, 05:11](2052 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:06, 12:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:02](1780 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:52, 03:58](1819 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:05, 06:04]
-PASS -- TEST 'cpld_debug_p8_intel' [10:00, 06:52](2068 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:05, 05:51]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:57, 04:43](1788 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:45]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:50, 04:07](1811 MB)
-
-PASS -- COMPILE 's2s_intel' [11:06, 09:33]
-PASS -- TEST 'cpld_control_c48_intel' [09:37, 07:23](2838 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 07:15](2066 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:54]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:50, 13:54](1816 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:59, 06:39](1291 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:53, 15:18](1739 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:07, 03:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:50, 21:40](1769 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:05, 08:03]
-PASS -- TEST 'control_flake_intel' [04:15, 02:55](719 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:18, 02:09](661 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:14](669 MB)
-PASS -- TEST 'control_latlon_intel' [04:15, 02:09](659 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:22, 02:12](653 MB)
-PASS -- TEST 'control_c48_intel' [07:19, 05:49](859 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:21, 05:47](855 MB)
-PASS -- TEST 'control_c192_intel' [09:24, 07:55](979 MB)
-PASS -- TEST 'control_c384_intel' [11:03, 08:11](1444 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:40, 07:23](1524 MB)
-PASS -- TEST 'control_stochy_intel' [03:15, 01:29](675 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:53](533 MB)
-PASS -- TEST 'control_lndp_intel' [03:15, 01:23](664 MB)
-PASS -- TEST 'control_iovr4_intel' [04:17, 02:11](668 MB)
-PASS -- TEST 'control_iovr5_intel' [04:15, 02:06](662 MB)
-PASS -- TEST 'control_p8_intel' [04:46, 02:34](1641 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:54, 02:37](1642 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:29](1650 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:54, 01:27](914 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:30](1628 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:56, 01:26](985 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:33](1628 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:42, 02:21](1734 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:27, 04:30](1635 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:49, 03:31](1715 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:34](1661 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:53, 02:57](1658 MB)
-PASS -- TEST 'regional_control_intel' [06:24, 04:41](959 MB)
-PASS -- TEST 'regional_restart_intel' [04:24, 02:31](1109 MB)
-PASS -- TEST 'regional_decomp_intel' [06:23, 04:49](951 MB)
-PASS -- TEST 'regional_2threads_intel' [04:22, 02:58](920 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:25, 04:22](1490 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:31](957 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:31](958 MB)
-PASS -- TEST 'regional_wofs_intel' [07:23, 05:41](2092 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:06, 07:12]
-PASS -- TEST 'rap_control_intel' [08:48, 06:30](1199 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:41, 03:37](1390 MB)
-PASS -- TEST 'rap_decomp_intel' [08:31, 06:52](1129 MB)
-PASS -- TEST 'rap_2threads_intel' [08:29, 06:20](1373 MB)
-PASS -- TEST 'rap_restart_intel' [05:40, 03:23](1149 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:35](1195 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 07:03](1134 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 04:54](1193 MB)
-PASS -- TEST 'hrrr_control_intel' [05:42, 03:25](1079 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:36, 03:26](1042 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:11](1120 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:17, 01:53](1024 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:25](1181 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:15, 07:51](2003 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 07:26](2206 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:05, 06:58]
-PASS -- TEST 'control_csawmg_intel' [07:28, 05:22](833 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:22, 05:19](848 MB)
-PASS -- TEST 'control_ras_intel' [04:12, 02:51](808 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:05, 03:59]
-PASS -- TEST 'control_csawmg_gnu' [08:28, 06:35](810 MB)
-PASS -- TEST 'control_csawmgt_gnu' [08:28, 06:31](810 MB)
-
-PASS -- COMPILE 'wam_intel' [08:06, 06:41]
-PASS -- TEST 'control_wam_intel' [03:25, 01:53](782 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:45]
-PASS -- TEST 'control_p8_faster_intel' [04:47, 02:21](1643 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:23, 04:00](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:41]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:15](819 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:18, 02:14](833 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:12, 02:30](838 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:12, 02:16](829 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:21, 03:32](875 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:21, 03:21](881 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:12, 02:15](839 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:17, 02:20](884 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:31, 02:21](1659 MB)
-PASS -- TEST 'regional_debug_intel' [15:24, 14:04](901 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:12, 03:58](1225 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:12, 03:57](1220 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:12, 03:54](1218 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:12, 03:57](1228 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:12, 04:07](1216 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:21, 04:12](1301 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:13, 04:11](1216 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:12, 04:05](1219 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:13, 04:03](1211 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:12, 04:03](1213 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:12, 03:56](1217 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:12, 04:02](1228 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:13, 06:36](1227 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 04:02](1216 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:12, 05:13](1222 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:13, 04:01](1209 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:43, 06:53](1222 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:06, 03:34]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:48](795 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:24, 01:48](791 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 02:54]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:05, 06:49]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:18](1276 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:23](1137 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:50, 02:51](1018 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:11](1280 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:38](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 03:06](973 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:46, 04:06](1094 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:36](959 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:05, 09:00]
-PASS -- TEST 'conus13km_control_intel' [03:31, 01:45](1297 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:22, 00:52](1208 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:23, 01:06](1147 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:00]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:26, 03:49](1062 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 02:49]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 03:54](1094 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:12, 03:50](1100 MB)
-PASS -- TEST 'conus13km_debug_intel' [13:25, 11:48](1343 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [13:23, 11:56](989 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:24, 06:51](1234 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:22, 11:56](1397 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:46]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:13, 03:56](1148 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:06, 09:44]
-PASS -- TEST 'hafs_regional_atm_intel' [09:00, 05:16](873 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:19, 04:58](1286 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:08, 06:32](942 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:58, 14:13](972 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:06, 15:06](990 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:46, 05:36](604 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:04](623 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:57](433 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:54, 08:04](544 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:44, 04:00](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:44, 03:45](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:44, 04:49](680 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:23, 01:28](448 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 11:25](635 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:47, 16:49](735 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:54, 16:47](809 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 10:32]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:49, 10:36](833 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:06, 10:28]
-PASS -- TEST 'hafs_regional_docn_intel' [15:56, 05:32](936 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:58, 05:40](942 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:35, 16:36](1345 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:25]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:10, 02:14](1152 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:20](1098 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:09, 02:07](1010 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:10, 02:09](1016 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:09, 02:11](1015 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:10, 02:13](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:10, 02:14](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:09, 02:09](1007 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:47, 04:59](1151 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:42, 04:53](1144 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:08, 02:12](1150 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:10, 03:09](2378 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:11, 03:04](2437 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:58]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:11, 05:12](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:05, 06:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:09, 02:10](1147 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 00:51](334 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:48](563 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:15, 00:31](557 MB)
-
-PASS -- COMPILE 'atml_intel' [09:06, 07:51]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 05:22](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:52, 05:36](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:44, 02:44](945 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:06, 09:17]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:36](1708 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:06, 09:26]
-PASS -- TEST 'control_atmwav_intel' [03:38, 01:30](692 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:06, 07:22]
-PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:31](1796 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:20](1826 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:29](1817 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:06, 07:14]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 02:43]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:19, 16:23](4609 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:05, 05:01]
-PASS -- TEST 'control_c48_gnu' [11:22, 09:30](878 MB)
-PASS -- TEST 'control_stochy_gnu' [04:13, 02:16](725 MB)
-PASS -- TEST 'control_ras_gnu' [05:12, 03:39](736 MB)
-PASS -- TEST 'control_p8_gnu' [05:44, 03:39](1514 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:37, 03:34](1524 MB)
-PASS -- TEST 'control_flake_gnu' [06:14, 04:27](812 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:05, 04:37]
-PASS -- TEST 'rap_control_gnu' [09:35, 07:46](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:34, 07:53](1084 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:29, 07:09](1129 MB)
-PASS -- TEST 'rap_restart_gnu' [06:34, 03:53](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:40, 07:48](1084 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:25, 07:49](1084 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:34, 05:47](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:42, 04:03](1073 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:29, 04:03](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:29, 03:36](1044 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:27, 04:03](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:14, 02:05](882 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:01](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:45, 07:35](1081 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:05, 08:52]
-PASS -- TEST 'control_diag_debug_gnu' [03:17, 01:15](777 MB)
-PASS -- TEST 'regional_debug_gnu' [08:23, 06:23](927 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:15, 01:56](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:12, 02:01](1094 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:58](1099 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:54](1102 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:18, 02:06](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:13, 03:07](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:12, 02:00](1099 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:14, 01:59](1091 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:15](729 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:14](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:30, 01:20](1506 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:13, 02:04](1100 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:12, 02:07](1102 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 03:14](1105 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:05, 03:39]
-PASS -- TEST 'control_wam_debug_gnu' [03:18, 02:00](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:05, 05:39]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:35, 07:17](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:44](956 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:26, 06:44](969 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:30, 03:33](889 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 03:52](946 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 05:37](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 02:00](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:35, 02:30](1264 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [03:20, 01:07](1171 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:27](937 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:05, 12:58]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:24, 04:16](992 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:05, 09:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:12, 01:55](977 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:12, 01:56](973 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:25](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:23, 05:36](975 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [05:21, 03:14](1192 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:22, 05:18](1349 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:06, 11:48]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:12, 01:56](1003 MB)
-
-PASS -- COMPILE 's2swa_gnu' [20:06, 18:10]
-
-PASS -- COMPILE 's2s_gnu' [18:06, 16:38]
-
-PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:00]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [18:06, 16:07]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:06, 12:03]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [21:06, 17:18]
+PASS -- COMPILE 's2swa_32bit_intel' [12:06, 11:19]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:40](1895 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 16:44]
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:09, 13:25](1765 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:22, 14:03](2161 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:17, 06:26](1183 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 15:03](1692 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:09]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:03, 20:26](1724 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:06, 11:26]
+PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:35](2074 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:41](2065 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:05, 04:13](1985 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:48, 07:42](1982 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:06, 04:16](1739 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:46, 09:11](2495 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 07:32](2064 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:57, 06:16](1892 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:45](2058 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:38, 15:36](2803 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:19, 05:56](2926 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:37, 09:20](3629 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 06:10](3621 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 04:54](2051 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:06, 10:30]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:46, 07:09](1769 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:01](1821 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:44]
+PASS -- TEST 'cpld_debug_p8_intel' [08:01, 06:51](2059 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:50]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:47](1793 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:06, 08:20]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:01](1821 MB)
+
+PASS -- COMPILE 's2s_intel' [09:06, 08:56]
+PASS -- TEST 'cpld_control_c48_intel' [08:35, 07:15](2838 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:06, 12:24]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:59, 07:20](2079 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:52, 13:48](1808 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:20, 06:45](1268 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:53](1730 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 04:38]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:37](1779 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:14]
+PASS -- TEST 'control_flake_intel' [03:16, 02:54](712 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:19, 02:07](664 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:22, 02:14](685 MB)
+PASS -- TEST 'control_latlon_intel' [03:16, 02:10](665 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:23, 02:12](662 MB)
+PASS -- TEST 'control_c48_intel' [06:18, 05:48](853 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 05:44](850 MB)
+PASS -- TEST 'control_c192_intel' [08:24, 07:55](968 MB)
+PASS -- TEST 'control_c384_intel' [10:01, 08:18](1433 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:50, 07:16](1519 MB)
+PASS -- TEST 'control_stochy_intel' [02:15, 01:29](670 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:51](537 MB)
+PASS -- TEST 'control_lndp_intel' [02:15, 01:24](668 MB)
+PASS -- TEST 'control_iovr4_intel' [03:18, 02:11](659 MB)
+PASS -- TEST 'control_iovr5_intel' [03:17, 02:05](671 MB)
+PASS -- TEST 'control_p8_intel' [03:43, 02:34](1637 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:41](1642 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:36](1629 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:48, 01:24](918 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:35, 02:34](1624 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](990 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:42](1621 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:28](1732 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:27, 04:31](1632 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:29](1718 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:42, 02:36](1644 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:51, 02:57](1655 MB)
+PASS -- TEST 'regional_control_intel' [05:23, 04:38](959 MB)
+PASS -- TEST 'regional_restart_intel' [03:23, 02:29](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [05:20, 04:40](945 MB)
+PASS -- TEST 'regional_2threads_intel' [03:20, 02:54](921 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:22, 04:18](1489 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 04:27](956 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 04:32](958 MB)
+PASS -- TEST 'regional_wofs_intel' [06:21, 05:35](2102 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:06, 07:44]
+PASS -- TEST 'rap_control_intel' [07:43, 06:30](1198 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:39, 03:25](1421 MB)
+PASS -- TEST 'rap_decomp_intel' [07:37, 06:46](1164 MB)
+PASS -- TEST 'rap_2threads_intel' [07:37, 06:10](1357 MB)
+PASS -- TEST 'rap_restart_intel' [04:53, 03:32](1156 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:38, 06:32](1201 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:57](1128 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:57](1190 MB)
+PASS -- TEST 'hrrr_control_intel' [04:41, 03:23](1089 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 03:26](1037 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 03:06](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:55](1026 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:20](1216 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:43](2009 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:27](2175 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:06, 07:37]
+PASS -- TEST 'control_csawmg_intel' [06:28, 05:24](801 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:29, 05:22](806 MB)
+PASS -- TEST 'control_ras_intel' [03:14, 02:51](808 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:06, 04:25]
+PASS -- TEST 'control_csawmg_gnu' [07:28, 06:31](810 MB)
+PASS -- TEST 'control_csawmgt_gnu' [07:23, 06:26](813 MB)
+
+PASS -- COMPILE 'wam_intel' [07:06, 06:59]
+PASS -- TEST 'control_wam_intel' [02:19, 01:51](793 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:08]
+PASS -- TEST 'control_p8_faster_intel' [03:52, 02:19](1637 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:22, 04:09](954 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 04:08]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:15, 02:16](828 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 02:14](826 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:13, 02:27](829 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:12, 02:15](825 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:21, 03:23](876 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:28, 03:21](874 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:13, 02:16](841 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:19, 02:18](880 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:34, 02:21](1653 MB)
+PASS -- TEST 'regional_debug_intel' [17:29, 16:33](887 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1210 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:14, 03:51](1221 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:13, 03:57](1220 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:13, 03:59](1226 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:03](1221 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:12](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:13, 04:08](1222 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:08](1215 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:13, 04:00](1214 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1213 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:13, 03:56](1215 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:05](1226 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 06:28](1210 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:02](1209 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:12, 04:50](1217 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:12, 03:57](1214 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 06:50](1219 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 03:48]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:52](787 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:21, 01:46](788 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 07:16]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 03:20](1274 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 05:25](1145 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:44, 02:54](1026 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 05:10](1278 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 02:44](1045 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 03:05](985 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:04](1091 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:23, 01:35](963 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 09:54]
+PASS -- TEST 'conus13km_control_intel' [02:34, 01:48](1294 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:27, 00:43](1200 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:22, 01:00](1164 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:32]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 03:46](1089 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:18]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:55](1097 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:15, 03:51](1096 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:31, 11:34](1328 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 11:57](987 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:38](1239 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:31](1407 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:28]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:16, 04:02](1147 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:06, 10:47]
+PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:18](878 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:05](1277 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:21](948 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:59, 13:59](988 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:00](1019 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:36](603 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:59](616 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:50](434 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 08:11](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:45, 04:02](611 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:42, 03:51](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:58](677 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:31](452 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:24](633 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:27]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:45, 17:13](727 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 15:48](811 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 10:11]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:53, 10:32](796 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:08, 09:56]
+PASS -- TEST 'hafs_regional_docn_intel' [11:00, 05:45](961 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 05:39](953 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:41, 16:27](1336 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:05, 06:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:12, 02:10](1153 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:22](1088 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:05](1012 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:11, 02:06](1013 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1004 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:16](1157 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:10](1018 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 05:00](1146 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:54](1144 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:13](1151 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:10, 03:03](2434 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:05](2441 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:24]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:12, 05:12](1077 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 05:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:10, 02:09](1119 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 00:42]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 01:07](335 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:57](560 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:16, 00:34](561 MB)
+
+PASS -- COMPILE 'atml_intel' [09:05, 08:24]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:06, 05:46](1646 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 05:52](1650 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:35, 03:03](940 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:07, 10:08]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:40](1687 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:16, 10:19]
+PASS -- TEST 'control_atmwav_intel' [03:39, 01:39](693 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:05, 07:41]
+PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:39](1785 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:24](1825 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:40, 04:34](1815 MB)
+
+PASS -- COMPILE 'atmaq_intel' [08:05, 07:08]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:05, 03:15]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 17:14](4574 MB)
+
+PASS -- COMPILE 'atm_gnu' [06:08, 05:45]
+PASS -- TEST 'control_c48_gnu' [10:26, 09:33](881 MB)
+PASS -- TEST 'control_stochy_gnu' [03:13, 02:15](730 MB)
+PASS -- TEST 'control_ras_gnu' [04:13, 03:41](732 MB)
+PASS -- TEST 'control_p8_gnu' [04:49, 03:38](1511 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:31](1514 MB)
+PASS -- TEST 'control_flake_gnu' [05:12, 04:22](806 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:05, 04:22]
+PASS -- TEST 'rap_control_gnu' [09:44, 07:45](1090 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:32, 07:42](1086 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:31, 07:18](1128 MB)
+PASS -- TEST 'rap_restart_gnu' [05:41, 04:07](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:34, 07:41](1087 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:54](1089 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:37, 05:52](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:29, 04:02](1076 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:44, 04:02](1139 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:36](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1077 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:07](879 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:07](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:48, 07:43](1085 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 06:38]
+PASS -- TEST 'control_diag_debug_gnu' [02:19, 01:15](775 MB)
+PASS -- TEST 'regional_debug_gnu' [07:26, 06:26](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:01](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:14, 01:57](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:11, 02:01](1098 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:12, 02:01](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:21, 02:05](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:12, 03:10](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:13, 01:59](1097 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 01:59](1093 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:13, 01:14](727 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:12, 01:16](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:29, 01:16](1505 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:13, 01:58](1099 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:12, 02:16](1099 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:43, 03:20](1103 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:06, 02:58]
+PASS -- TEST 'control_wam_debug_gnu' [02:18, 02:00](501 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 05:32]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:42, 07:21](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:52, 03:54](959 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:30, 07:00](968 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:33](873 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 03:54](953 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 05:29](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:07](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:35, 02:43](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:21, 01:10](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:40](948 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:05, 08:47]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 04:28](989 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:05, 11:39]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:13, 01:59](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:13, 02:01](969 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:36](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:47](963 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:18](1191 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:22, 05:33](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 12:07]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 02:01](1003 MB)
+
+PASS -- COMPILE 's2swa_gnu' [17:05, 16:14]
+
+PASS -- COMPILE 's2s_gnu' [17:07, 16:10]
+
+PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:15]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 16:57]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:07, 11:13]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 17:47]
SYNOPSIS:
-Starting Date/Time: 20240411 14:17:38
-Ending Date/Time: 20240411 15:43:20
-Total Time: 01h:26m:12s
+Starting Date/Time: 20240415 18:42:06
+Ending Date/Time: 20240415 19:56:08
+Total Time: 01h:14m:28s
Compiles Completed: 55/55
Tests Completed: 239/239
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 29d8fdf08f..2f7f41cd46 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+684ddd65adbf26b3a8003e05c8af6c4e19be63f8
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,244 +36,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3990282
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3732077
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:24, 38:39]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:17](1795 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [56:31, 54:32]
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:00, 20:35](1661 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:33, 22:22](1885 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:17, 10:45](991 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:44, 23:52](1630 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:24, 39:12]
-PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:16](1805 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:48, 07:54](1822 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:43, 04:20](1713 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:31, 07:50](1842 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:35, 04:26](1726 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:34, 07:39](2270 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:21, 08:05](1806 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:34, 07:06](1762 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:47, 08:04](1812 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [17:43, 07:14](1767 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:23, 36:11]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 06:02](1663 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:01, 05:57](1720 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:25]
-PASS -- TEST 'cpld_debug_p8_intel' [13:57, 10:32](1851 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:07, 05:05]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:23, 07:11](1679 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [34:18, 32:58]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:49, 05:45](1704 MB)
-
-PASS -- COMPILE 's2s_intel' [34:18, 32:45]
-PASS -- TEST 'cpld_control_c48_intel' [15:11, 12:45](2805 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [35:42, 33:38]
-PASS -- TEST 'cpld_control_p8_faster_intel' [54:25, 07:22](1827 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [48:24, 46:54]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:34, 21:03](1675 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:46, 10:47](1028 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:36, 24:09](1661 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:09, 05:07]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:42, 32:11](1685 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:19, 34:34]
-PASS -- TEST 'control_flake_intel' [17:34, 04:29](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [19:41, 03:19](600 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:40, 03:34](605 MB)
-PASS -- TEST 'control_latlon_intel' [16:34, 03:15](594 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:40, 03:26](598 MB)
-PASS -- TEST 'control_c48_intel' [12:36, 10:09](846 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [15:45, 10:10](848 MB)
-PASS -- TEST 'control_c192_intel' [23:55, 12:23](730 MB)
-PASS -- TEST 'control_c384_intel' [27:09, 16:36](889 MB)
-PASS -- TEST 'control_c384gdas_intel' [28:07, 14:32](1017 MB)
-PASS -- TEST 'control_stochy_intel' [17:35, 02:12](603 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:21](433 MB)
-PASS -- TEST 'control_lndp_intel' [18:37, 02:10](603 MB)
-PASS -- TEST 'control_iovr4_intel' [17:38, 03:16](593 MB)
-PASS -- TEST 'control_iovr5_intel' [19:39, 03:21](594 MB)
-PASS -- TEST 'control_p8_intel' [20:54, 04:03](1571 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [17:36, 04:01](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [13:29, 03:53](1577 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:17, 02:08](810 MB)
-PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:52](1570 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 02:05](845 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:01, 04:03](1565 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:06, 03:40](1663 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:55, 06:58](1579 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 05:07](1631 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:28, 03:55](1589 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:47, 04:34](1573 MB)
-PASS -- TEST 'regional_control_intel' [13:51, 07:19](762 MB)
-PASS -- TEST 'regional_restart_intel' [11:46, 03:45](933 MB)
-PASS -- TEST 'regional_decomp_intel' [13:46, 07:47](754 MB)
-PASS -- TEST 'regional_2threads_intel' [07:48, 04:16](754 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [12:52, 07:20](764 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [12:41, 07:18](758 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:18, 32:57]
-PASS -- TEST 'rap_control_intel' [13:08, 10:16](988 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [17:46, 05:39](1213 MB)
-PASS -- TEST 'rap_decomp_intel' [13:08, 10:43](990 MB)
-PASS -- TEST 'rap_2threads_intel' [12:37, 09:43](1082 MB)
-PASS -- TEST 'rap_restart_intel' [11:28, 05:24](989 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [13:18, 10:15](991 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:18, 10:57](988 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [12:27, 07:46](986 MB)
-PASS -- TEST 'hrrr_control_intel' [08:38, 05:17](984 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [18:13, 05:22](978 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [17:34, 04:48](1062 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:30, 02:46](925 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:46, 10:00](978 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 12:29](1939 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:39, 12:01](1940 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:17, 31:23]
-PASS -- TEST 'control_csawmg_intel' [12:43, 08:13](691 MB)
-PASS -- TEST 'control_csawmgt_intel' [13:40, 08:07](692 MB)
-PASS -- TEST 'control_ras_intel' [09:25, 04:30](664 MB)
-
-PASS -- COMPILE 'wam_intel' [31:16, 30:05]
-PASS -- TEST 'control_wam_intel' [07:22, 02:43](497 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [33:18, 31:54]
-PASS -- TEST 'control_p8_faster_intel' [06:35, 03:41](1570 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:45, 06:49](763 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:09, 06:09]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:27, 03:28](754 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:33, 03:29](759 MB)
-PASS -- TEST 'control_stochy_debug_intel' [10:26, 03:47](764 MB)
-PASS -- TEST 'control_lndp_debug_intel' [08:23, 03:31](756 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [09:41, 05:19](805 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [09:43, 05:08](811 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:24, 03:24](769 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:35, 03:29](818 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:56, 03:32](1587 MB)
-PASS -- TEST 'regional_debug_intel' [26:50, 21:43](774 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:21, 06:04](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:21, 05:57](1143 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:27, 05:59](1148 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [09:26, 06:03](1149 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:24, 06:03](1155 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:38, 06:27](1228 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:20, 06:08](1148 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:20, 06:09](1148 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:25, 06:12](1147 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 06:06](1150 MB)
-PASS -- TEST 'rap_noah_debug_intel' [09:23, 05:56](1150 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [09:22, 06:04](1145 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:26, 09:52](1149 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [11:24, 05:58](1143 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [12:30, 07:23](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [11:27, 06:01](1147 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:33, 10:28](1152 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [12:09, 04:17]
-PASS -- TEST 'control_wam_debug_intel' [10:20, 06:06](437 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [34:19, 30:22]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:45, 05:16](1087 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:23, 08:21](896 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:24](867 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 07:58](944 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:45, 04:09](909 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 04:42](858 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 06:25](900 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:30, 02:34](844 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:22, 42:59]
-PASS -- TEST 'conus13km_control_intel' [49:19, 03:05](1107 MB)
-PASS -- TEST 'conus13km_2threads_intel' [09:53, 01:22](1058 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [09:51, 01:35](1027 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:19, 30:44]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [53:15, 05:36](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 04:12]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [20:35, 06:02](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [25:39, 05:56](1028 MB)
-PASS -- TEST 'conus13km_debug_intel' [44:17, 18:22](1140 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [03:23, 18:43](854 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [13:56, 10:41](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [00:18, 18:40](1210 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:08, 04:20]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:53, 06:10](1072 MB)
-
-PASS -- COMPILE 'hafsw_intel' [39:21, 34:44]
-PASS -- TEST 'hafs_regional_atm_intel' [37:50, 07:09](725 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:40, 06:49](1087 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:02, 09:39](774 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [50:45, 16:28](801 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [55:08, 18:11](824 MB)
-PASS -- TEST 'gnv1_nested_intel' [39:55, 06:21](786 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [36:20, 32:13]
-PASS -- TEST 'hafs_regional_docn_intel' [38:44, 08:53](773 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [38:59, 09:12](752 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [49:24, 08:03]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [26:34, 03:38](1055 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:16](1032 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [26:32, 03:38](937 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [27:30, 03:36](922 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:27, 03:35](929 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:31, 03:42](1065 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:33, 03:44](1051 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [27:31, 03:33](924 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [31:27, 07:52](885 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:28, 07:53](843 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:26, 03:40](1061 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:28, 05:08](2400 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 05:25](2279 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [43:23, 03:19]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [21:27, 08:01](1015 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [50:24, 07:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [11:21, 03:48](1056 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [33:19, 01:40]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [10:40, 01:47](229 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [09:32, 01:29](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:25, 00:59](251 MB)
-
-PASS -- COMPILE 'atml_intel' [08:32, 38:50]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 09:08](1613 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:44, 08:55](1612 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:49, 05:09](872 MB)
-
-PASS -- COMPILE 'atmw_intel' [48:24, 31:51]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:21](1612 MB)
-
-PASS -- COMPILE 'atmwm_intel' [38:20, 31:14]
-PASS -- TEST 'control_atmwav_intel' [05:11, 02:15](611 MB)
-
-PASS -- COMPILE 'atmaero_intel' [38:19, 30:49]
-PASS -- TEST 'atmaero_control_p8_intel' [08:25, 05:16](1697 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:25](1718 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 06:40](1735 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:09, 38:13]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:43, 06:59](1795 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:09, 47:30]
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:35, 20:47](1664 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:24, 22:19](1892 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [47:58, 10:20](996 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:54, 23:54](1629 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:12, 38:37]
+PASS -- TEST 'cpld_control_p8_intel' [45:42, 07:28](1831 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:05, 07:26](1825 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [53:54, 04:29](1716 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [20:44, 07:38](1841 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [16:31, 04:41](1726 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [05:52, 07:05](2277 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [29:36, 07:38](1823 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 06:19](1774 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:01, 07:27](1834 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 07:03](1796 MB)
+
+PASS -- COMPILE 's2sw_intel' [36:08, 35:07]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [23:43, 05:51](1668 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:54, 05:42](1713 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [41:09, 05:02]
+PASS -- TEST 'cpld_debug_p8_intel' [43:47, 10:28](1843 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:07, 04:50]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:28, 07:12](1680 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [41:10, 32:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:05, 05:45](1717 MB)
+
+PASS -- COMPILE 's2s_intel' [56:11, 32:30]
+PASS -- TEST 'cpld_control_c48_intel' [24:03, 12:42](2796 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [09:16, 32:58]
+PASS -- TEST 'cpld_control_p8_faster_intel' [48:59, 07:08](1834 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [52:15, 52:26]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:44, 20:58](1682 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:35, 10:19](1030 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 22:25](1651 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [34:08, 05:05]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:16, 32:09](1690 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [02:10, 34:28]
+PASS -- TEST 'control_flake_intel' [31:42, 04:43](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [29:46, 03:15](595 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:52, 03:43](607 MB)
+PASS -- TEST 'control_latlon_intel' [30:38, 03:31](597 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:48, 03:24](593 MB)
+PASS -- TEST 'control_c48_intel' [18:38, 10:09](843 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [18:39, 10:09](845 MB)
+PASS -- TEST 'control_c192_intel' [40:02, 12:43](730 MB)
+PASS -- TEST 'control_c384_intel' [43:40, 15:57](897 MB)
+PASS -- TEST 'control_c384gdas_intel' [43:15, 13:51](1020 MB)
+PASS -- TEST 'control_stochy_intel' [26:38, 02:15](603 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:22](435 MB)
+PASS -- TEST 'control_lndp_intel' [29:42, 02:21](603 MB)
+PASS -- TEST 'control_iovr4_intel' [30:42, 03:34](594 MB)
+PASS -- TEST 'control_iovr5_intel' [26:41, 03:21](594 MB)
+PASS -- TEST 'control_p8_intel' [32:33, 04:09](1575 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 04:10](1571 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [31:58, 04:03](1581 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:14, 02:34](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [31:48, 04:04](1571 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 02:17](832 MB)
+PASS -- TEST 'control_decomp_p8_intel' [30:37, 04:15](1562 MB)
+PASS -- TEST 'control_2threads_p8_intel' [23:29, 03:52](1663 MB)
+PASS -- TEST 'control_p8_lndp_intel' [16:05, 07:21](1570 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [09:06, 05:21](1634 MB)
+PASS -- TEST 'control_p8_mynn_intel' [01:02, 04:03](1575 MB)
+PASS -- TEST 'merra2_thompson_intel' [40:04, 04:50](1590 MB)
+PASS -- TEST 'regional_control_intel' [32:49, 07:22](758 MB)
+PASS -- TEST 'regional_restart_intel' [04:36, 03:52](931 MB)
+PASS -- TEST 'regional_decomp_intel' [09:36, 07:31](759 MB)
+PASS -- TEST 'regional_2threads_intel' [05:34, 04:28](752 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 07:05](766 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:03](761 MB)
+
+PASS -- COMPILE 'rrfs_intel' [48:09, 32:19]
+PASS -- TEST 'rap_control_intel' [12:12, 10:04](991 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:49](1213 MB)
+PASS -- TEST 'rap_decomp_intel' [12:02, 10:44](989 MB)
+PASS -- TEST 'rap_2threads_intel' [11:54, 09:43](1084 MB)
+PASS -- TEST 'rap_restart_intel' [07:31, 05:13](993 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:17, 10:14](990 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 10:55](992 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:24, 07:28](1002 MB)
+PASS -- TEST 'hrrr_control_intel' [07:17, 05:28](989 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 05:27](977 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:57, 05:05](1063 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:48](916 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:26, 10:18](986 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:31, 12:27](1942 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 12:19](1931 MB)
+
+PASS -- COMPILE 'csawmg_intel' [04:11, 30:57]
+PASS -- TEST 'control_csawmg_intel' [08:38, 08:02](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [08:40, 07:57](699 MB)
+PASS -- TEST 'control_ras_intel' [05:22, 04:28](667 MB)
+
+PASS -- COMPILE 'wam_intel' [38:08, 29:46]
+PASS -- TEST 'control_wam_intel' [03:18, 02:49](502 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [46:09, 31:20]
+PASS -- TEST 'control_p8_faster_intel' [05:34, 03:37](1581 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:36, 06:27](766 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 05:40]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 03:22](764 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:24](758 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:44](759 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:20, 03:22](763 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:34, 05:14](806 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 05:10](805 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:22, 03:24](774 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:26, 03:26](818 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:55, 03:34](1594 MB)
+PASS -- TEST 'regional_debug_intel' [22:44, 21:43](775 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:23, 06:02](1154 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:21, 05:55](1149 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:59](1150 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 06:01](1152 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:01](1157 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:30, 06:17](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 06:07](1151 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 06:07](1149 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:04](1148 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 06:01](1154 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:54](1149 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 06:00](1152 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 09:48](1145 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 05:56](1140 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 07:18](1152 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:18, 06:00](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 10:26](1156 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:06, 03:45]
+PASS -- TEST 'control_wam_debug_intel' [07:20, 06:08](468 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:08, 30:02]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 05:07](1070 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:56, 08:08](900 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:23](868 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:16, 07:49](946 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:01](907 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 04:38](856 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:12](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:20](849 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:10, 42:24]
+PASS -- TEST 'conus13km_control_intel' [04:02, 02:54](1105 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:37, 01:30](1052 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:33](1023 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:08, 30:23]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 05:30](903 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:07, 03:55]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:58](1030 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:51](1027 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:47, 18:22](1139 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:42, 18:35](880 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:38, 10:41](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 18:26](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:53]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 06:03](1071 MB)
+
+PASS -- COMPILE 'hafsw_intel' [39:08, 34:41]
+PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:59](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:23, 06:24](1085 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 09:12](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 16:07](800 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 17:54](830 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:09, 05:32](776 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [02:10, 31:56]
+PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:35](766 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:34](755 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [33:08, 08:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:37](1060 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 02:11](1031 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 03:31](920 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 03:37](927 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 03:40](925 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:37](1056 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 03:39](1063 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 03:31](927 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 07:52](885 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 07:47](848 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 03:36](1063 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 05:01](2401 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 05:03](2356 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [24:07, 03:23]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 07:57](1017 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [18:07, 08:15]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:36](1061 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:06]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:34](230 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 01:17](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:49](257 MB)
+
+PASS -- COMPILE 'atml_intel' [35:11, 34:22]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:42, 07:52](1613 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:45](1603 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:09](862 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:08, 32:49]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:24, 02:17](1612 MB)
+
+PASS -- COMPILE 'atmwm_intel' [32:09, 31:12]
+PASS -- TEST 'control_atmwav_intel' [04:10, 02:11](613 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:08, 30:28]
+PASS -- TEST 'atmaero_control_p8_intel' [07:22, 05:08](1702 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:16](1719 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 06:37](1729 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 19:42:09
-Ending Date/Time: 20240412 00:07:36
-Total Time: 04h:26m:09s
+Starting Date/Time: 20240415 20:38:03
+Ending Date/Time: 20240416 01:26:35
+Total Time: 04h:49m:06s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index ba251e694f..e925006e5b 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+684ddd65adbf26b3a8003e05c8af6c4e19be63f8
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,276 +36,277 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_198648
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_215054
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:07, 15:40]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [35:04, 05:11](3180 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:07, 18:02]
-PASS -- TEST 'cpld_control_gfsv17_intel' [44:05, 16:36](1738 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:15, 18:28](2023 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [18:01, 08:09](1110 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:20, 18:49](1642 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:06, 06:09]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:42, 23:00](1692 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:07, 15:27]
-PASS -- TEST 'cpld_control_p8_intel' [36:08, 05:41](3213 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:18, 05:41](3206 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:05, 03:31](3252 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [37:05, 05:46](3235 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:38, 03:32](3277 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [37:05, 06:10](3559 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [37:05, 05:44](3200 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [34:52, 04:44](3066 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:26, 05:39](3211 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [38:28, 10:18](3263 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:18](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [45:42, 10:53](4115 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:10, 06:53](4374 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [36:02, 05:23](3178 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:06, 13:28]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [32:23, 04:30](1737 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:44, 04:32](1773 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:20]
-PASS -- TEST 'cpld_debug_p8_intel' [11:48, 08:27](3253 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 05:57](1750 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:06, 12:43]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:45, 04:30](1782 MB)
-
-PASS -- COMPILE 's2s_intel' [15:06, 12:38]
-PASS -- TEST 'cpld_control_c48_intel' [33:08, 08:10](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:06]
-PASS -- TEST 'cpld_control_p8_faster_intel' [32:58, 05:24](3211 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [28:08, 26:56]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:30, 16:29](1779 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:51, 08:10](1174 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 18:41](1683 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:51]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:28, 24:28](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:43]
-PASS -- TEST 'control_flake_intel' [28:29, 03:30](704 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [27:31, 02:29](653 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:34, 02:36](660 MB)
-PASS -- TEST 'control_latlon_intel' [27:27, 02:32](654 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:37, 02:34](652 MB)
-PASS -- TEST 'control_c48_intel' [30:36, 05:58](874 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [30:36, 05:58](879 MB)
-PASS -- TEST 'control_c192_intel' [33:45, 09:04](850 MB)
-PASS -- TEST 'control_c384_intel' [35:49, 10:02](1251 MB)
-PASS -- TEST 'control_c384gdas_intel' [36:10, 09:02](1360 MB)
-PASS -- TEST 'control_stochy_intel' [15:22, 01:42](659 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:18, 01:01](502 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:42](617 MB)
-PASS -- TEST 'control_iovr4_intel' [04:26, 02:33](649 MB)
-PASS -- TEST 'control_iovr5_intel' [04:22, 02:29](654 MB)
-PASS -- TEST 'control_p8_intel' [05:12, 03:02](1630 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:04](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 02:52](1630 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:16, 01:46](890 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:13, 02:57](1574 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:05, 01:46](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:11, 03:11](1617 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:04, 03:06](1719 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:37, 05:22](1633 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 04:06](1695 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:08](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:46, 03:32](1593 MB)
-PASS -- TEST 'regional_control_intel' [07:46, 05:06](858 MB)
-PASS -- TEST 'regional_restart_intel' [04:35, 02:47](1018 MB)
-PASS -- TEST 'regional_decomp_intel' [07:46, 05:36](848 MB)
-PASS -- TEST 'regional_2threads_intel' [05:45, 03:47](851 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:47, 05:16](1362 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 05:14](857 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:12](858 MB)
-PASS -- TEST 'regional_wofs_intel' [08:51, 06:39](1919 MB)
-
-PASS -- COMPILE 'rrfs_intel' [21:10, 11:27]
-PASS -- TEST 'rap_control_intel' [10:27, 07:55](1111 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:58, 04:52](1293 MB)
-PASS -- TEST 'rap_decomp_intel' [11:11, 08:07](1027 MB)
-PASS -- TEST 'rap_2threads_intel' [10:30, 07:55](1176 MB)
-PASS -- TEST 'rap_restart_intel' [13:26, 04:01](1101 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:34, 07:47](1101 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:21, 08:03](1032 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [19:27, 05:51](1131 MB)
-PASS -- TEST 'hrrr_control_intel' [08:29, 03:59](1041 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:08, 04:05](1023 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:23, 03:24](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [15:29, 02:12](998 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:20, 07:38](1035 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:05](1993 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 08:58](2079 MB)
-
-PASS -- COMPILE 'csawmg_intel' [19:10, 11:33]
-PASS -- TEST 'control_csawmg_intel' [07:40, 05:59](751 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:42, 06:00](747 MB)
-PASS -- TEST 'control_ras_intel' [05:21, 03:18](738 MB)
-
-PASS -- COMPILE 'wam_intel' [18:09, 10:46]
-PASS -- TEST 'control_wam_intel' [04:19, 02:08](660 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:10, 11:20]
-PASS -- TEST 'control_p8_faster_intel' [05:31, 02:40](1631 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:42, 04:42](850 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:08, 04:46]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:40](812 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:49](813 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:05](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [09:16, 02:49](818 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [14:40, 04:11](859 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [14:40, 04:04](865 MB)
-PASS -- TEST 'control_ras_debug_intel' [11:29, 02:45](833 MB)
-PASS -- TEST 'control_diag_debug_intel' [11:24, 02:51](869 MB)
-PASS -- TEST 'control_debug_p8_intel' [16:55, 02:59](1636 MB)
-PASS -- TEST 'regional_debug_intel' [30:51, 17:25](841 MB)
-PASS -- TEST 'rap_control_debug_intel' [13:20, 05:05](1211 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [12:26, 04:51](1200 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [17:26, 04:44](1207 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [17:24, 04:59](1205 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:20, 04:56](1203 MB)
-PASS -- TEST 'rap_diag_debug_intel' [17:29, 05:16](1292 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:33, 05:10](1203 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:35, 05:29](1197 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [13:41, 05:07](1202 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:40, 04:55](1205 MB)
-PASS -- TEST 'rap_noah_debug_intel' [13:33, 04:58](1206 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [12:32, 04:54](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:36, 08:09](1202 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [14:39, 05:06](1190 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [16:34, 06:01](1201 MB)
-PASS -- TEST 'rap_flake_debug_intel' [14:33, 05:03](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:40, 08:27](1203 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:08, 03:57]
-PASS -- TEST 'control_wam_debug_intel' [09:36, 05:18](514 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:09, 11:05]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:20, 04:41](1161 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:14, 06:42](1055 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:20, 03:37](978 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 06:40](1090 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:37, 03:05](976 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:24, 03:49](925 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:24, 04:49](1035 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:30, 01:54](933 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:09, 13:13]
-PASS -- TEST 'conus13km_control_intel' [02:11, 02:07](1204 MB)
-PASS -- TEST 'conus13km_2threads_intel' [12:49, 01:01](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [11:50, 01:17](1112 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:08, 10:55]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 04:23](996 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:35]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:35, 04:57](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:48](1077 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:11, 14:36](1227 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:00, 14:21](930 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:52, 08:09](1154 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:58, 14:09](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:08, 03:37]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [02:30, 05:05](1120 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:07, 14:06]
-PASS -- TEST 'hafs_regional_atm_intel' [00:18, 05:32](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:26, 05:52](1117 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:28, 07:00](829 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [24:17, 13:19](859 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:19, 14:37](883 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [17:00, 06:12](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:24, 07:33](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [12:49, 03:10](377 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:21, 07:54](482 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:09](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:55, 03:54](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:59, 05:22](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:23, 01:26](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [14:55, 04:32](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:09, 03:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [22:52, 13:21](569 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:09, 13:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:03, 09:35](634 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 09:36](723 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:08, 13:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:05, 07:01](789 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:08, 12:43]
-PASS -- TEST 'hafs_regional_docn_intel' [13:18, 06:19](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:13, 06:26](817 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:53, 15:56](1207 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:07, 08:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:44](1084 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:32](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:39](1020 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:13, 02:42](1025 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:45](1135 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:42](1128 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:12, 06:06](1047 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 05:55](1031 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:37](1133 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:41](2435 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:37](2493 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [08:07, 03:47]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:18](1056 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:07, 07:27]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:38](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:07, 01:08]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:23, 00:48](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:19, 00:48](325 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:34](308 MB)
-
-PASS -- COMPILE 'atml_intel' [19:06, 13:17]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:19](1606 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:28, 04:10](1608 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:43, 02:22](894 MB)
-
-PASS -- COMPILE 'atmw_intel' [18:09, 13:31]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 01:49](1673 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:08, 12:00]
-PASS -- TEST 'control_atmwav_intel' [04:08, 01:39](679 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:07, 11:34]
-PASS -- TEST 'atmaero_control_p8_intel' [09:18, 03:53](3027 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:45](3096 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 05:02](3113 MB)
-
-PASS -- COMPILE 'atmaq_intel' [13:07, 11:05]
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:41]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:45, 20:45](4578 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:06, 14:25]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:08](3178 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:06, 21:07]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:32](1749 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:10, 17:26](2033 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 08:23](1114 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 18:34](1647 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:46]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 22:56](1696 MB)
+
+PASS -- COMPILE 's2swa_intel' [17:06, 16:53]
+PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:35](3208 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:58, 05:36](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:54, 03:22](3258 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:41](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:37](3269 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 06:06](3553 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:38, 05:43](3205 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:33, 04:41](3069 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:56, 05:42](3209 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [12:46, 10:00](3338 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:29](3618 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:07, 11:01](4117 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 07:01](4368 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:44, 05:20](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:06, 15:26]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:59, 04:26](1731 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:15, 04:24](1782 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:06, 05:42]
+PASS -- TEST 'cpld_debug_p8_intel' [10:23, 08:36](3251 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:57]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:06, 05:57](1754 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:06, 13:16]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:23, 04:22](1780 MB)
+
+PASS -- COMPILE 's2s_intel' [14:06, 13:16]
+PASS -- TEST 'cpld_control_c48_intel' [08:52, 08:03](2830 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:06, 20:58]
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:24](3215 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 18:17]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 16:40](1773 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:11](1176 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:11, 18:35](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 05:08]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:38](1722 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:06, 13:08]
+PASS -- TEST 'control_flake_intel' [04:23, 03:31](655 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](652 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:28, 02:34](653 MB)
+PASS -- TEST 'control_latlon_intel' [03:21, 02:29](655 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:30](654 MB)
+PASS -- TEST 'control_c48_intel' [06:26, 06:00](874 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:58](871 MB)
+PASS -- TEST 'control_c192_intel' [10:41, 09:10](858 MB)
+PASS -- TEST 'control_c384_intel' [12:35, 10:13](1247 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:04, 09:04](1358 MB)
+PASS -- TEST 'control_stochy_intel' [02:23, 01:47](654 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:02](505 MB)
+PASS -- TEST 'control_lndp_intel' [02:23, 01:37](658 MB)
+PASS -- TEST 'control_iovr4_intel' [03:26, 02:30](650 MB)
+PASS -- TEST 'control_iovr5_intel' [03:20, 02:34](650 MB)
+PASS -- TEST 'control_p8_intel' [04:08, 02:58](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:10, 02:58](1628 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:48](1628 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:07, 01:46](898 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:16, 03:00](1620 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:39](934 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:14, 02:59](1616 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:03](1669 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:15](1624 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1693 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:05](1629 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:40, 03:37](1635 MB)
+PASS -- TEST 'regional_control_intel' [06:46, 05:22](856 MB)
+PASS -- TEST 'regional_restart_intel' [03:37, 02:46](1026 MB)
+PASS -- TEST 'regional_decomp_intel' [06:38, 05:38](852 MB)
+PASS -- TEST 'regional_2threads_intel' [04:41, 03:48](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:42, 05:12](1365 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 05:13](862 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:13](860 MB)
+PASS -- TEST 'regional_wofs_intel' [07:37, 06:32](1924 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:06, 11:51]
+PASS -- TEST 'rap_control_intel' [10:29, 08:03](1108 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 04:47](1290 MB)
+PASS -- TEST 'rap_decomp_intel' [10:25, 08:04](1033 MB)
+PASS -- TEST 'rap_2threads_intel' [10:23, 07:53](1185 MB)
+PASS -- TEST 'rap_restart_intel' [05:19, 04:02](1111 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:44](1104 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:27, 08:07](1037 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:52](1131 MB)
+PASS -- TEST 'hrrr_control_intel' [05:18, 03:59](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 04:11](1015 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:21](1109 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:21, 02:16](1002 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:24, 07:35](1098 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:08](1993 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 08:58](2072 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:06, 11:07]
+PASS -- TEST 'control_csawmg_intel' [07:48, 06:05](743 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:41, 05:59](746 MB)
+PASS -- TEST 'control_ras_intel' [04:20, 03:19](741 MB)
+
+PASS -- COMPILE 'wam_intel' [11:06, 10:40]
+PASS -- TEST 'control_wam_intel' [03:23, 02:06](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 13:13]
+PASS -- TEST 'control_p8_faster_intel' [04:32, 02:42](1621 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:43, 04:40](850 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 04:37]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:51](818 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:45](814 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:09](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:49](815 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:17](867 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [05:35, 04:16](863 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:22, 02:52](831 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:23, 02:47](872 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:43, 03:01](1640 MB)
+PASS -- TEST 'regional_debug_intel' [18:39, 17:40](849 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:20, 05:33](1213 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:20, 05:05](1197 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 05:04](1202 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:57](1207 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1202 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:20](1283 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:04](1197 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:03](1197 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:04](1208 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:56](1201 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:09](1193 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 05:04](1202 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 07:46](1204 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:57](1205 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:45](1209 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:53](1206 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:23, 08:17](1204 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:05, 03:46]
+PASS -- TEST 'control_wam_debug_intel' [05:18, 05:01](511 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:21]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:32](1159 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 06:23](1050 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:24](976 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:46](1095 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:10, 02:59](964 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:15, 03:36](927 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 04:55](972 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:52](941 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 13:34]
+PASS -- TEST 'conus13km_control_intel' [03:58, 02:07](1201 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:04](1120 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:40, 01:19](1111 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 12:38]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:13](993 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:19]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:54](1085 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:51](1090 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:44, 14:22](1228 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:19](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:38, 08:26](1152 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:02](1296 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:01](1130 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:06, 12:57]
+PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:31](736 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1116 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:03](835 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 12:50](866 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 14:41](884 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:51, 06:23](506 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:37](521 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:09](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:20, 08:00](478 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:10](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:56](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 05:19](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:36](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:53, 04:38](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:12](562 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:06, 13:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:36](633 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:11, 09:41](743 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:06, 13:37]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](732 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:06, 12:20]
+PASS -- TEST 'hafs_regional_docn_intel' [10:10, 06:24](829 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:24](819 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:00](1213 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:06, 07:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:40](1132 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:41](1051 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1012 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:34](1016 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:44](1124 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:39](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:31](1016 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:57](1059 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:09, 05:58](1037 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:36](1138 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:32](2496 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 03:37](2495 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:34]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:13](1065 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:06, 09:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:38](1126 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:52](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:18, 00:51](323 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](322 MB)
+
+PASS -- COMPILE 'atml_intel' [13:06, 12:36]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 04:12](1612 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:17](1600 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:31](889 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:06, 11:29]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:46](1663 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:06, 14:04]
+PASS -- TEST 'control_atmwav_intel' [03:06, 01:42](674 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:06, 11:05]
+PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:02](3026 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:49](3100 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:07](3112 MB)
+
+PASS -- COMPILE 'atmaq_intel' [12:06, 11:11]
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:25]
+PASS -- TEST 'regional_atmaq_debug_intel' [23:39, 21:26](4572 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 14:18:10
-Ending Date/Time: 20240411 17:26:58
-Total Time: 03h:09m:32s
+Starting Date/Time: 20240415 18:41:28
+Ending Date/Time: 20240415 20:03:54
+Total Time: 01h:23m:13s
Compiles Completed: 39/39
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 48a4d36a3a..4c318d73a9 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+d5f1957f6d43c8e93bd556e9862958738751400a
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,8 +11,8 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/HEAD-4-g6e1bc3e)
+ b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-396-gb447c63)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
NOTES:
@@ -48,236 +36,234 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_227744
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225418
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:38, 11:00]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:48, 01:19](2976 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:37, 11:25]
-PASS -- TEST 'cpld_control_gfsv17_intel' [57:49, 01:27](1591 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:25, 01:31](1711 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [34:20, 01:36](849 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [57:50, 01:46](1574 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [19:00, 17:24]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [51:27, 01:33](1602 MB)
-
-PASS -- COMPILE 's2swa_intel' [31:18, 29:28]
-PASS -- TEST 'cpld_control_p8_intel' [35:59, 02:13](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [34:19, 01:49](3000 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [25:04, 01:57](3061 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [34:19, 01:42](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [23:41, 01:18](3081 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [34:09, 01:15](3315 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [33:18, 01:37](3001 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [33:16, 01:16](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:13, 01:43](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [33:22, 04:30](3954 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:13, 04:34](4246 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [33:11, 01:55](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:37, 11:31]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [57:49, 01:14](1586 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:49, 01:23](1639 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:35, 09:58]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [58:52, 01:12](1632 MB)
-
-PASS -- COMPILE 's2s_intel' [25:07, 23:46]
-PASS -- TEST 'cpld_control_c48_intel' [45:18, 00:50](2648 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [32:25, 30:58]
-PASS -- TEST 'cpld_control_p8_faster_intel' [32:38, 01:17](3005 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:38, 11:16]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:49, 00:50](1607 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [32:38, 01:00](906 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:39, 01:18](1573 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [53:37, 00:44](1614 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:52, 12:39]
-PASS -- TEST 'control_flake_intel' [40:59, 00:45](574 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [40:59, 01:11](520 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:59, 01:16](528 MB)
-PASS -- TEST 'control_latlon_intel' [40:59, 00:40](523 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:59, 00:44](521 MB)
-PASS -- TEST 'control_c48_intel' [40:58, 00:53](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [40:58, 00:52](714 MB)
-PASS -- TEST 'control_c192_intel' [40:59, 00:51](640 MB)
-PASS -- TEST 'control_c384_intel' [41:03, 01:37](955 MB)
-PASS -- TEST 'control_c384gdas_intel' [41:03, 02:41](1090 MB)
-PASS -- TEST 'control_stochy_intel' [40:59, 01:19](534 MB)
-PASS -- TEST 'control_stochy_restart_intel' [32:38, 00:17](330 MB)
-PASS -- TEST 'control_lndp_intel' [40:59, 00:56](529 MB)
-PASS -- TEST 'control_iovr4_intel' [40:59, 01:10](524 MB)
-PASS -- TEST 'control_iovr5_intel' [40:59, 01:07](525 MB)
-PASS -- TEST 'control_p8_intel' [40:59, 01:06](1505 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [40:59, 01:29](1502 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [40:59, 01:30](1510 MB)
-PASS -- TEST 'control_restart_p8_intel' [32:20, 01:43](695 MB)
-PASS -- TEST 'control_noqr_p8_intel' [40:59, 01:10](1500 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [32:18, 01:37](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [40:59, 00:56](1495 MB)
-PASS -- TEST 'control_2threads_p8_intel' [40:59, 01:23](1595 MB)
-PASS -- TEST 'control_p8_lndp_intel' [40:59, 00:41](1501 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [32:15, 01:34](1558 MB)
-PASS -- TEST 'control_p8_mynn_intel' [32:13, 01:21](1509 MB)
-PASS -- TEST 'merra2_thompson_intel' [31:00, 02:15](1507 MB)
-PASS -- TEST 'regional_control_intel' [30:59, 01:06](608 MB)
-PASS -- TEST 'regional_restart_intel' [24:04, 00:34](782 MB)
-PASS -- TEST 'regional_decomp_intel' [30:54, 00:47](607 MB)
-PASS -- TEST 'regional_2threads_intel' [30:51, 00:50](661 MB)
-PASS -- TEST 'regional_noquilt_intel' [30:07, 00:44](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [30:01, 00:18](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [29:59, 00:15](609 MB)
-PASS -- TEST 'regional_wofs_intel' [27:43, 00:19](1581 MB)
-
-PASS -- COMPILE 'rrfs_intel' [23:03, 17:34]
-PASS -- TEST 'rap_control_intel' [27:44, 01:44](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:54, 00:34](1093 MB)
-PASS -- TEST 'rap_decomp_intel' [26:42, 01:29](919 MB)
-PASS -- TEST 'rap_2threads_intel' [26:02, 00:56](1007 MB)
-PASS -- TEST 'rap_restart_intel' [18:10, 01:49](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [25:35, 01:55](917 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 01:30](915 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [16:04, 02:05](783 MB)
-PASS -- TEST 'hrrr_control_intel' [24:57, 01:10](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [24:54, 01:06](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [24:45, 01:14](995 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [19:41, 01:06](744 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [24:13, 01:58](910 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [24:05, 00:39](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:44, 00:29](1864 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:47, 10:08]
-PASS -- TEST 'control_csawmg_intel' [42:01, 00:54](602 MB)
-PASS -- TEST 'control_csawmgt_intel' [42:01, 00:59](601 MB)
-PASS -- TEST 'control_ras_intel' [42:01, 01:03](558 MB)
-
-PASS -- COMPILE 'wam_intel' [20:59, 15:30]
-PASS -- TEST 'control_wam_intel' [23:41, 01:12](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [24:12, 19:15]
-PASS -- TEST 'control_p8_faster_intel' [23:39, 01:37](1506 MB)
-PASS -- TEST 'regional_control_faster_intel' [23:33, 01:01](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [26:10, 16:14]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:32, 00:39](688 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:02](688 MB)
-PASS -- TEST 'control_stochy_debug_intel' [23:09, 00:39](689 MB)
-PASS -- TEST 'control_lndp_debug_intel' [23:04, 00:58](693 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [22:06, 00:26](731 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [21:59, 00:27](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [20:40, 01:11](703 MB)
-PASS -- TEST 'control_diag_debug_intel' [19:53, 00:23](749 MB)
-PASS -- TEST 'control_debug_p8_intel' [19:41, 01:15](1521 MB)
-PASS -- TEST 'regional_debug_intel' [19:40, 01:06](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [19:22, 01:05](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [19:13, 01:00](1070 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [18:58, 00:20](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [18:37, 01:12](1072 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:36, 00:31](1073 MB)
-PASS -- TEST 'rap_diag_debug_intel' [18:36, 01:05](1163 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:14, 01:14](1075 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:08, 00:16](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [17:45, 00:57](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:35, 01:01](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [17:17, 00:24](1075 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [16:47, 00:38](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:24, 01:00](1068 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 00:57](1066 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [16:09, 01:06](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [15:50, 01:16](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:22, 01:57](1083 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [17:50, 05:23]
-PASS -- TEST 'control_wam_debug_intel' [15:13, 00:44](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:51, 11:18]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:57, 01:02](957 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:50, 01:29](793 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 02:02](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:19, 01:13](850 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:07, 01:54](837 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:00, 01:26](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:14, 01:59](686 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:44, 01:10](670 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:47, 10:18]
-PASS -- TEST 'conus13km_control_intel' [12:52, 00:44](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [07:58, 00:39](1005 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [07:56, 00:28](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:43, 08:21]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:44, 01:10](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [14:47, 11:04]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:45, 01:10](955 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:35, 00:24](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [10:14, 00:33](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [09:58, 00:55](709 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:32, 00:59](1042 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [09:30, 01:08](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:46, 10:45]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:54, 00:48](983 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:59, 14:11]
-PASS -- TEST 'hafs_regional_atm_intel' [08:50, 01:32](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:42, 01:24](965 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:34, 02:02](662 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [08:08, 02:20](699 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [08:07, 02:00](713 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:41, 00:52](388 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 02:02](403 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:08, 01:46](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:49, 02:05](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 01:23](418 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 00:46](410 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 00:49](490 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 00:28](323 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [16:57, 14:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:17, 01:06](499 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:01, 21:06]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:33, 01:04](537 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [03:53, 01:23](708 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:48, 14:24]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:14, 01:21](712 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:35, 09:07]
-PASS -- TEST 'hafs_regional_docn_intel' [03:10, 02:23](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:01, 02:11](645 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:40, 00:15](880 MB)
-
-PASS -- COMPILE 'atml_intel' [19:54, 18:35]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [02:06, 01:59](1553 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [01:09, 01:32](1542 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [53:21, 00:57](747 MB)
-
-PASS -- COMPILE 'atmaero_intel' [18:54, 18:06]
-PASS -- TEST 'atmaero_control_p8_intel' [00:47, 01:35](2854 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [00:12, 01:23](2910 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:57, 01:26](2921 MB)
-
-PASS -- COMPILE 'atmaq_intel' [17:52, 16:26]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:19, 04:00]
-PASS -- TEST 'regional_atmaq_debug_intel' [59:39, 00:45](4438 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:21, 11:33]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:36, 02:10](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:41, 28:12]
+PASS -- TEST 'cpld_control_gfsv17_intel' [40:17, 02:07](1595 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 01:53](1718 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [19:17, 01:38](849 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:18, 01:29](1581 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:14, 04:21]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [04:45, 01:38](1606 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:22, 10:49]
+PASS -- TEST 'cpld_control_p8_intel' [58:36, 01:31](3004 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:36, 01:40](3001 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [48:11, 01:17](3065 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [58:36, 01:02](3030 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [48:11, 01:16](3081 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [58:36, 01:37](3320 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [58:36, 01:22](2999 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [58:37, 01:36](2931 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:35, 01:42](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [58:45, 05:07](3949 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:20, 03:40](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [58:36, 02:02](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:22, 11:03]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [57:35, 00:55](1589 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:35, 01:22](1639 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [22:34, 21:25]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:23, 01:47](1633 MB)
+
+PASS -- COMPILE 's2s_intel' [26:38, 24:44]
+PASS -- TEST 'cpld_control_c48_intel' [43:18, 00:55](2652 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:32, 18:20]
+PASS -- TEST 'cpld_control_p8_faster_intel' [17:20, 01:58](3005 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:21, 11:28]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:36, 01:32](1605 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:09, 01:16](904 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:58, 01:28](1586 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [23:36, 21:54]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:22, 01:10](1613 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [24:34, 22:37]
+PASS -- TEST 'control_flake_intel' [40:09, 00:43](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [40:09, 01:01](522 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:09, 01:04](532 MB)
+PASS -- TEST 'control_latlon_intel' [40:09, 00:56](523 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:09, 01:03](526 MB)
+PASS -- TEST 'control_c48_intel' [40:08, 01:13](714 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [40:08, 01:12](719 MB)
+PASS -- TEST 'control_c192_intel' [40:09, 00:26](637 MB)
+PASS -- TEST 'control_c384_intel' [37:32, 01:06](951 MB)
+PASS -- TEST 'control_c384gdas_intel' [37:32, 02:19](1093 MB)
+PASS -- TEST 'control_stochy_intel' [35:33, 01:14](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [28:04, 00:37](331 MB)
+PASS -- TEST 'control_lndp_intel' [33:45, 00:28](526 MB)
+PASS -- TEST 'control_iovr4_intel' [33:43, 00:22](524 MB)
+PASS -- TEST 'control_iovr5_intel' [33:40, 01:19](525 MB)
+PASS -- TEST 'control_p8_intel' [33:35, 01:29](1512 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 01:37](1506 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [33:00, 01:41](1506 MB)
+PASS -- TEST 'control_restart_p8_intel' [25:16, 01:08](689 MB)
+PASS -- TEST 'control_noqr_p8_intel' [33:00, 01:16](1496 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [19:16, 01:33](701 MB)
+PASS -- TEST 'control_decomp_p8_intel' [32:44, 01:40](1498 MB)
+PASS -- TEST 'control_2threads_p8_intel' [32:05, 01:34](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [31:10, 00:45](1502 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 01:53](1564 MB)
+PASS -- TEST 'control_p8_mynn_intel' [30:30, 01:42](1515 MB)
+PASS -- TEST 'merra2_thompson_intel' [30:27, 01:28](1511 MB)
+PASS -- TEST 'regional_control_intel' [29:44, 00:45](610 MB)
+PASS -- TEST 'regional_restart_intel' [19:57, 00:29](777 MB)
+PASS -- TEST 'regional_decomp_intel' [29:42, 00:31](608 MB)
+PASS -- TEST 'regional_2threads_intel' [29:41, 00:29](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [29:38, 00:51](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [28:58, 00:41](610 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [28:56, 00:34](608 MB)
+PASS -- TEST 'regional_wofs_intel' [28:34, 01:02](1580 MB)
+
+PASS -- COMPILE 'rrfs_intel' [17:26, 15:10]
+PASS -- TEST 'rap_control_intel' [28:12, 01:25](917 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:09, 01:08](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [41:09, 01:48](920 MB)
+PASS -- TEST 'rap_2threads_intel' [41:09, 01:58](1010 MB)
+PASS -- TEST 'rap_restart_intel' [15:50, 01:28](786 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [41:09, 01:22](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:09, 01:52](914 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [27:27, 01:30](785 MB)
+PASS -- TEST 'hrrr_control_intel' [41:09, 01:08](907 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [41:09, 01:06](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [41:10, 01:37](995 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [27:16, 00:55](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [41:09, 01:28](909 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [41:09, 01:15](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:11, 00:30](1860 MB)
+
+PASS -- COMPILE 'csawmg_intel' [21:30, 19:17]
+PASS -- TEST 'control_csawmg_intel' [24:36, 01:07](600 MB)
+PASS -- TEST 'control_csawmgt_intel' [24:33, 01:11](599 MB)
+PASS -- TEST 'control_ras_intel' [23:36, 00:47](562 MB)
+
+PASS -- COMPILE 'wam_intel' [20:29, 18:36]
+PASS -- TEST 'control_wam_intel' [23:05, 01:01](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:26, 14:44]
+PASS -- TEST 'control_p8_faster_intel' [22:32, 01:25](1513 MB)
+PASS -- TEST 'regional_control_faster_intel' [22:10, 00:58](612 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:22, 07:14]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:02, 00:43](686 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 00:49](691 MB)
+PASS -- TEST 'control_stochy_debug_intel' [21:35, 00:24](689 MB)
+PASS -- TEST 'control_lndp_debug_intel' [21:13, 01:08](695 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [21:07, 00:23](733 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [19:58, 00:37](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [19:58, 00:27](700 MB)
+PASS -- TEST 'control_diag_debug_intel' [19:56, 00:31](748 MB)
+PASS -- TEST 'control_debug_p8_intel' [19:54, 00:58](1526 MB)
+PASS -- TEST 'regional_debug_intel' [19:44, 00:47](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [19:10, 01:15](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [18:44, 00:33](1073 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [16:43, 01:20](1072 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [16:00, 01:08](1072 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:12](1077 MB)
+PASS -- TEST 'rap_diag_debug_intel' [15:36, 01:06](1159 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:02, 00:39](1073 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:26, 00:21](1075 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [14:16, 00:32](1075 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 00:37](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [13:52, 00:51](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [13:32, 00:52](1073 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:49, 00:56](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [12:48, 00:58](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [12:44, 01:02](1078 MB)
+PASS -- TEST 'rap_flake_debug_intel' [12:30, 01:04](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:25, 01:28](1079 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [11:19, 06:52]
+PASS -- TEST 'control_wam_debug_intel' [12:23, 01:09](301 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:28, 13:18]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:16, 01:20](953 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 01:17](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:23, 02:06](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:13, 00:59](848 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:13, 02:07](848 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 02:02](791 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:30, 01:28](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:41, 01:11](669 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:31, 13:15]
+PASS -- TEST 'conus13km_control_intel' [09:14, 00:40](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:21, 00:24](1009 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 00:19](882 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 11:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:40, 01:05](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:19, 00:58](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 00:38](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [07:25, 01:06](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [07:16, 00:49](711 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 00:54](1038 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:57, 00:44](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:30, 12:02]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:51, 00:51](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [21:30, 16:17]
+PASS -- TEST 'hafs_regional_atm_intel' [05:47, 01:53](616 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 01:16](967 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:33, 01:25](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [05:26, 02:18](703 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:15, 01:19](711 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:05, 00:59](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:23, 01:46](404 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 01:02](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:02, 02:42](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:42, 01:26](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:18, 01:46](411 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:50, 01:27](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:13](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [18:28, 13:42]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:03, 01:27](502 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:42, 19:16]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:45, 01:42](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:40, 01:24](708 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:39, 15:59]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:52, 01:33](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:34, 16:23]
+PASS -- TEST 'hafs_regional_docn_intel' [01:01, 02:01](659 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:55, 01:58](650 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:14, 01:17](880 MB)
+
+PASS -- COMPILE 'atml_intel' [22:41, 18:42]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [59:59, 01:47](1546 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [59:22, 01:16](1540 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:52, 00:49](741 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:33, 11:08]
+PASS -- TEST 'atmaero_control_p8_intel' [59:11, 01:31](2851 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [58:54, 01:59](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:10, 01:14](2923 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [14:29, 10:39]
+PASS -- TEST 'regional_atmaq_debug_intel' [58:09, 01:40](4435 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 18:49:14
-Ending Date/Time: 20240411 20:32:17
-Total Time: 01h:43m:42s
-Compiles Completed: 31/31
+Starting Date/Time: 20240416 14:49:41
+Ending Date/Time: 20240416 16:29:19
+Total Time: 01h:40m:15s
+Compiles Completed: 30/30
Tests Completed: 157/157
NOTES:
diff --git a/tests/module-setup.sh b/tests/module-setup.sh
index f392a6c084..57e02965c7 100755
--- a/tests/module-setup.sh
+++ b/tests/module-setup.sh
@@ -1,42 +1,42 @@
#!/bin/bash
set -eu
-if [[ $MACHINE_ID = jet ]] ; then
+if [[ ${MACHINE_ID} = jet ]] ; then
# We are on NOAA Jet
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /apps/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = hera ]] ; then
+elif [[ ${MACHINE_ID} = hera ]] ; then
# We are on NOAA Hera
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /apps/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = orion ]] ; then
+elif [[ ${MACHINE_ID} = orion ]] ; then
# We are on Orion
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /apps/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = hercules ]] ; then
+elif [[ ${MACHINE_ID} = hercules ]] ; then
# We are on Hercules
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /apps/other/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = s4 ]] ; then
+elif [[ ${MACHINE_ID} = s4 ]] ; then
# We are on SSEC Wisconsin S4
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /usr/share/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then
+elif [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]] ; then
# We are on NOAA Cactus or Dogwood
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /usr/share/lmod/lmod/init/bash
@@ -44,28 +44,28 @@ elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then
module purge
module reset
-elif [[ $MACHINE_ID = derecho ]] ; then
+elif [[ ${MACHINE_ID} = derecho ]] ; then
# We are on NCAR Derecho
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /usr/share/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = noaacloud ]] ; then
+elif [[ ${MACHINE_ID} = noaacloud ]] ; then
# We are on NOAA Cloud
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /apps/lmod/8.5.2/init/bash
fi
module purge
-elif [[ $MACHINE_ID = stampede ]] ; then
+elif [[ ${MACHINE_ID} = stampede ]] ; then
# We are on TACC Stampede
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /opt/apps/lmod/lmod/init/bash
fi
module purge
-elif [[ $MACHINE_ID = gaea ]] ; then
+elif [[ ${MACHINE_ID} = gaea ]] ; then
# We are on GAEA
if ( ! eval module help > /dev/null 2>&1 ) ; then
# We cannot simply load the module command. The GAEA
@@ -77,7 +77,7 @@ elif [[ $MACHINE_ID = gaea ]] ; then
fi
module reset
-elif [[ $MACHINE_ID = expanse ]]; then
+elif [[ ${MACHINE_ID} = expanse ]]; then
# We are on SDSC Expanse
if ( ! eval module help > /dev/null 2>&1 ) ; then
source /etc/profile.d/modules.sh
diff --git a/tests/opnReqTest b/tests/opnReqTest
index b9a003b706..db44db7c0b 100755
--- a/tests/opnReqTest
+++ b/tests/opnReqTest
@@ -78,7 +78,7 @@ find_build() {
build_opnReqTests() {
rm -f fv3_std.exe fv3_dbg.exe fv3_bit.exe modules.fv3_std modules.fv3_dbg modules.fv3_bit
-
+ export RTVERBOSE=false
model_found=false
base_opt=
find_build
diff --git a/tests/rt.conf b/tests/rt.conf
index 0f99745539..1dc257527b 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -320,7 +320,7 @@ RUN | atmaero_control_p8_rad | - noaacloud
RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline |
### ATM-CMAQ tests ###
-COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 |
+#COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 |
#RUN | regional_atmaq | - jet s4 | baseline |
COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 |
diff --git a/tests/rt.sh b/tests/rt.sh
index e05e8d4636..0b693c1966 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -1,15 +1,17 @@
#!/bin/bash
-set -eux
-
+set -eu
+set -o errexit #Lets trap exit info as error for logging
+echo "******Regression Testing Script Started******"
SECONDS=0
hostname
die() { echo "$@" >&2; exit 1; }
+
usage() {
- set +x
+ set +x #No reason to print out a bunch of echo statements here
echo
- echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w"
+ echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -v | -w"
echo
echo " -a to use on for HPC queue"
echo " -b create new baselines only for tests listed in "
@@ -23,16 +25,16 @@ usage() {
echo " -n run single test "
echo " -o compile only, skip tests"
echo " -r use Rocoto workflow manager"
+ echo " -v verbose output"
echo " -w for weekly_test, skip comparing baseline results"
echo
set -x
- exit 1
}
[[ $# -eq 0 ]] && usage
update_rtconf() {
-
+ echo "rt.sh: Checking & Updating test configuration..."
find_match() {
# This function finds if a test in $TESTS_FILE matches one
# in our list of tests to be run.
@@ -41,13 +43,13 @@ update_rtconf() {
TWC=("$@")
FOUND=false
for i in "${!TWC[@]}"; do
- if [[ "${TWC[$i]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then
+ if [[ "${TWC[${i}]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then
FOUND=true
echo "${i}"
return
fi
done
- if [[ $FOUND == false ]]; then
+ if [[ ${FOUND} == false ]]; then
echo "-1"
fi
}
@@ -56,16 +58,16 @@ update_rtconf() {
# -b or -n options being called/used.
# THE USER CHOSE THE -b OPTION
- if [[ $NEW_BASELINES_FILE != '' ]]; then
- [[ -s "$NEW_BASELINES_FILE" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..."
+ if [[ ${NEW_BASELINES_FILE} != '' ]]; then
+ [[ -s "${NEW_BASELINES_FILE}" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..."
TEST_WITH_COMPILE=()
- readarray -t TEST_WITH_COMPILE < "$NEW_BASELINES_FILE"
+ readarray -t TEST_WITH_COMPILE < "${NEW_BASELINES_FILE}"
# else USER CHOSE THE -l OPTION
- elif [[ $DEFINE_CONF_FILE == true ]]; then
+ elif [[ ${DEFINE_CONF_FILE} == true ]]; then
echo "No update needed to TESTS_FILE"
return
# else USER CHOSE THE -n OPTION
- elif [[ $RUN_SINGLE_TEST == true ]]; then
+ elif [[ ${RUN_SINGLE_TEST} == true ]]; then
TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}")
else
echo "No update needed to rt.conf"
@@ -73,33 +75,36 @@ update_rtconf() {
fi
RT_TEMP_CONF="rt_temp.conf"
- rm -f $RT_TEMP_CONF && touch $RT_TEMP_CONF
+ rm -f "${RT_TEMP_CONF}" && touch "${RT_TEMP_CONF}"
local compile_line=''
-
- while read -r line || [ "$line" ]; do
+ while read -r line || [[ -n "${line}" ]]; do
line="${line#"${line%%[![:space:]]*}"}"
- [[ -n $line ]] || continue
+ [[ -n "${line}" ]] || continue
[[ ${#line} == 0 ]] && continue
- [[ $line == \#* ]] && continue
+ [[ ${line} == \#* ]] && continue
- if [[ $line =~ COMPILE ]] ; then
- MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
- RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
+ if [[ ${line} =~ COMPILE ]] ; then
+ MACHINES=$(cut -d'|' -f5 <<< "${line}")
+ MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}")
+ RT_COMPILER_IN=$(cut -d'|' -f3 <<< "${line}")
+ RT_COMPILER_IN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER_IN}")
if [[ ${MACHINES} == '' ]]; then
- compile_line=$line
- COMPILE_LINE_USED=false
+ compile_line=${line}
+ COMPILE_LINE_USED=false
elif [[ ${MACHINES} == -* ]]; then
- [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=${line}; COMPILE_LINE_USED=false
elif [[ ${MACHINES} == +* ]]; then
- [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line; COMPILE_LINE_USED=false
+ [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=${line}; COMPILE_LINE_USED=false
fi
fi
- if [[ $line =~ RUN ]]; then
+ if [[ ${line} =~ RUN ]]; then
to_run_test=false
- tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
+ tmp_test=$(cut -d'|' -f2 <<< "${line}")
+ tmp_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${tmp_test}")
+ MACHINES=$(cut -d'|' -f3 <<< "${line}")
+ MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}")
if [[ ${MACHINES} == '' ]]; then
to_run_test=true
elif [[ ${MACHINES} == -* ]]; then
@@ -107,49 +112,53 @@ update_rtconf() {
elif [[ ${MACHINES} == +* ]]; then
[[ ${MACHINES} =~ ${MACHINE_ID} ]] && to_run_test=true
fi
- if [[ $to_run_test == true ]]; then
- TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}")
+ if [[ ${to_run_test} == true ]]; then
+ TEST_IDX=$(set -e; find_match "${tmp_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}")
- if [[ $TEST_IDX != -1 ]]; then
- if [[ $COMPILE_LINE_USED == false ]]; then
- echo -en '\n' >> $RT_TEMP_CONF
- echo "$compile_line" >> $RT_TEMP_CONF
+ if [[ ${TEST_IDX} != -1 ]]; then
+ if [[ ${COMPILE_LINE_USED} == false ]]; then
+ echo -en '\n' >> "${RT_TEMP_CONF}"
+ echo "${compile_line}" >> "${RT_TEMP_CONF}"
+
COMPILE_LINE_USED=true
fi
- dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
+ dep_test=$(grep -w "${tmp_test}" <<< "${line}")
+ dep_test=$(cut -d'|' -f5 <<< "${dep_test}")
+ dep_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${dep_test}")
- if [[ $dep_test != '' ]]; then
- if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then
-
- dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test")
+ if [[ ${dep_test} != '' ]]; then
+ find_match_result=$(set -e; find_match "${dep_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}")
+ if [[ ${find_match_result} == -1 ]]; then
+ dep_line=$(grep -w "${dep_test}" rt.conf)
+ dep_line=$(grep -v "${tmp_test}" <<< "${dep_line}")
dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}"
- dep_line=$(echo "${dep_line}" | tr -d '\n')
- CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line")
- CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line")
+ dep_line=$(tr -d '\n' <<< "${dep_line}")
+ CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "${dep_line}")
+ CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "${dep_line}")
- if [[ $RT_COMPILER_IN == "intel" ]]; then
- echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF
- elif [[ $RT_COMPILER_IN == "gnu" ]]; then
- echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF
+ if [[ ${RT_COMPILER_IN} == "intel" ]]; then
+ echo "RUN ${CORRECT_LINE[1]}" >> "${RT_TEMP_CONF}"
+ elif [[ ${RT_COMPILER_IN} == "gnu" ]]; then
+ echo "RUN ${CORRECT_LINE[2]}" >> "${RT_TEMP_CONF}"
fi
fi
fi
- echo "$line" >> $RT_TEMP_CONF
- fi
+ echo "${line}" >> "${RT_TEMP_CONF}"
+ fi
fi
fi
- done < "$TESTS_FILE"
+ done < "${TESTS_FILE}"
- if [[ ! -s $RT_TEMP_CONF ]]; then
- echo "The tests listed/chosen do not exist or cannot be run on $MACHINE_ID"
+ if [[ ! -s ${RT_TEMP_CONF} ]]; then
+ echo "The tests listed/chosen do not exist or cannot be run on ${MACHINE_ID}"
exit 1
else
- TESTS_FILE=$RT_TEMP_CONF
+ TESTS_FILE=${RT_TEMP_CONF}
fi
}
generate_log() {
-
+ echo "rt.sh: Generating Regression Testing Log..."
COMPILE_COUNTER=0
FAILED_COMPILES=()
TEST_COUNTER=0
@@ -159,19 +168,21 @@ generate_log() {
FAILED_TEST_LOGS=()
TEST_CHANGES_LOG="test_changes.list"
TEST_END_TIME="$(date '+%Y%m%d %T')"
+ GIT_HASHES=$(git rev-parse HEAD)
cat << EOF > "${REGRESSIONTEST_LOG}"
====START OF ${MACHINE_ID^^} REGRESSION TESTING LOG====
UFSWM hash used in testing:
-$(git rev-parse HEAD)
+${GIT_HASHES}
Submodule hashes used in testing:
EOF
cd ..
- if [[ $MACHINE_ID != hera ]]; then
- git submodule status --recursive >> "${REGRESSIONTEST_LOG}"
+ if [[ ${MACHINE_ID} != hera ]]; then
+ git submodule status --recursive >> "${REGRESSIONTEST_LOG}"
+ else
+ git submodule status >> "${REGRESSIONTEST_LOG}"
fi
- git submodule status >> "${REGRESSIONTEST_LOG}"
echo; echo >> "${REGRESSIONTEST_LOG}"
cd tests
@@ -189,35 +200,42 @@ COMPARISON DIRECTORY: ${RUNDIR_ROOT}
RT.SH OPTIONS USED:
EOF
- [[ -n $ACCNR ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}"
- [[ -n $NEW_BASELINES_FILE ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}"
- [[ $CREATE_BASELINE == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}"
- [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}"
- [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}"
- [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}"
- [[ $COMPILE_ONLY == true ]]&& echo "* 9 (-o) COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}"
- [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
- [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}"
- [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
- [[ $ROCOTO == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}"
- [[ $ECFLOW == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}"
-
-
- [[ -f "${TEST_CHANGES_LOG}" ]] && rm ${TEST_CHANGES_LOG}
- touch ${TEST_CHANGES_LOG}
- while read -r line || [ "$line" ]; do
+ [[ -n ${ACCNR} ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}"
+ [[ -n ${NEW_BASELINES_FILE} ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}"
+ [[ ${CREATE_BASELINE} == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}"
+ [[ ${DEFINE_CONF_FILE} == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}"
+ [[ ${RTPWD_NEW_BASELINE} == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}"
+ [[ ${RUN_SINGLE_TEST} == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}"
+ [[ ${COMPILE_ONLY} == true ]]&& echo "* (-o) - COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}"
+ [[ ${delete_rundir} == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
+ [[ ${skip_check_results} == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}"
+ [[ ${KEEP_RUNDIR} == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}"
+ [[ ${ROCOTO} == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}"
+ [[ ${ECFLOW} == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}"
+ [[ ${RTVERBOSE} == true ]] && echo "* (-v) - VERBOSE OUTPUT" >> "${REGRESSIONTEST_LOG}"
+
+
+ [[ -f "${TEST_CHANGES_LOG}" ]] && rm "${TEST_CHANGES_LOG}"
+ touch "${TEST_CHANGES_LOG}"
+ while read -r line; do
line="${line#"${line%%[![:space:]]*}"}"
- [[ -n "$line" ]] || continue
+ [[ -n "${line}" ]] || continue
[[ ${#line} == 0 ]] && continue
- [[ $line == \#* ]] && continue
+ [[ ${line} == \#* ]] && continue
local valid_compile=false
local valid_test=false
- if [[ $line == COMPILE* ]] ; then
+ if [[ ${line} == COMPILE* ]] ; then
- CMACHINES=$(echo "$line" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
- COMPILER=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
- COMPILE_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
+ CMACHINES=$(cut -d'|' -f5 <<< "${line}")
+ CMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${CMACHINES}")
+
+ COMPILER=$(cut -d'|' -f3 <<< "${line}")
+ COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILER}")
+
+ COMPILE_NAME=$(cut -d'|' -f2 <<< "${line}")
+ COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}")
+
COMPILE_ID=${COMPILE_NAME}_${COMPILER}
if [[ ${CMACHINES} == '' ]]; then
@@ -228,7 +246,7 @@ EOF
[[ ${CMACHINES} =~ ${MACHINE_ID} ]] && valid_compile=true
fi
- if [[ $valid_compile == true ]]; then
+ if [[ ${valid_compile} == true ]]; then
COMPILE_COUNTER=$((COMPILE_COUNTER+1))
FAIL_LOG=""
COMPILE_RESULT=""
@@ -236,52 +254,55 @@ EOF
COMPILE_TIME=""
RT_COMPILE_TIME=""
if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then
- COMPILE_RESULT="MISSING"
+ COMPILE_RESULT="FAILED: UNABLE TO START COMPILE"
FAIL_LOG="N/A"
elif [[ -f fail_compile_${COMPILE_ID} ]]; then
- COMPILE_RESULT="FAIL TO RUN"
+ COMPILE_RESULT="FAILED: UNABLE TO COMPILE"
FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
- else
if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then
- COMPILE_RESULT="FAIL FROM DISK QUOTA"
+ COMPILE_RESULT="FAILED: DISK QUOTA ISSUE"
FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
elif grep -q "timeout" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then
- COMPILE_RESULT="FAIL FROM TIMEOUT"
+ COMPILE_RESULT="FAILED: TEST TIMED OUT"
FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
- else
- COMPILE_RESULT="PASS"
- TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt"
- if [[ -f "${TIME_FILE}" ]]; then
- while read -r times || [ "$times" ]; do
- times="${times#"${times%%[![:space:]]*}"}"
+ fi
+ else
+ COMPILE_RESULT="PASS"
+ TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt"
+ if [[ -f "${TIME_FILE}" ]]; then
+ while read -r times || [[ -n "${times}" ]]; do
+ times="${times#"${times%%[![:space:]]*}"}"
- DATE1=$(echo "$times" | cut -d ',' -f2 )
- DATE2=$(echo "$times" | cut -d ',' -f3 )
- DATE3=$(echo "$times" | cut -d ',' -f4 )
- DATE4=$(echo "$times" | cut -d ',' -f5 )
+ DATE1=$(cut -d ',' -f2 <<< "${times}")
+ DATE2=$(cut -d ',' -f3 <<< "${times}")
+ DATE3=$(cut -d ',' -f4 <<< "${times}")
+ DATE4=$(cut -d ',' -f5 <<< "${times}")
- COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
- RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
+ COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
+ RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
- done < "$TIME_FILE"
- fi
+ done < "${TIME_FILE}"
+
fi
fi
echo >> "${REGRESSIONTEST_LOG}"
echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}"
- [[ -n $FAIL_LOG ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}")
- [[ -n $FAIL_LOG ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}")
+ [[ -n ${FAIL_LOG} ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}")
+ [[ -n ${FAIL_LOG} ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}")
fi
- elif [[ $line =~ RUN ]]; then
+ elif [[ ${line} =~ RUN ]]; then
- if [[ $COMPILE_ONLY == true ]]; then
+ if [[ ${COMPILE_ONLY} == true ]]; then
continue
fi
- RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
- TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//')
+ RMACHINES=$(cut -d '|' -f3 <<< "${line}")
+ RMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RMACHINES}")
+ TEST_NAME=$(cut -d '|' -f2 <<< "${line}")
+ TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}")
+ GEN_BASELINE=$(cut -d '|' -f4 <<< "${line}")
+ GEN_BASELINE=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${GEN_BASELINE}")
if [[ ${RMACHINES} == '' ]]; then
valid_test=true
@@ -291,7 +312,7 @@ EOF
[[ ${RMACHINES} =~ ${MACHINE_ID} ]] && valid_test=true
fi
- if [[ $valid_test == true ]]; then
+ if [[ ${valid_test} == true ]]; then
TEST_COUNTER=$((TEST_COUNTER+1))
GETMEMFROMLOG=""
FAIL_LOG=""
@@ -300,57 +321,66 @@ EOF
TEST_TIME=""
RT_TEST_TIME=""
RT_TEST_MEM=""
- if [[ $CREATE_BASELINE == true && $GEN_BASELINE != "baseline" ]]; then
+ if [[ ${CREATE_BASELINE} == true && ${GEN_BASELINE} != "baseline" ]]; then
TEST_RESULT="SKIPPED (TEST DOES NOT GENERATE BASELINE)"
elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then
- TEST_RESULT="MISSING"
+ TEST_RESULT="FAILED: UNABLE TO START RUN"
FAIL_LOG="N/A"
elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then
if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then
- TEST_RESULT="FAIL TO COMPARE"
- FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"
+ if grep -q "FAIL" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then
+ TEST_RESULT="FAILED: UNABLE TO RUN COMPARISON"
+ FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
+ # We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists
+ # I'm not sure why this can happen.
+ elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then
+ TEST_RESULT="PASS"
+ else
+ TEST_RESULT="FAILED: BASELINE COMPARISON"
+ FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"
+ fi
else
- TEST_RESULT="FAIL TO RUN"
+ TEST_RESULT="FAILED: RUN DID NOT COMPLETE"
FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
fi
- else
if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then
- TEST_RESULT="FAIL FROM DISK QUOTA"
+ TEST_RESULT="FAILED: DISK QUOTA ISSUE"
FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
elif grep -q "timeout" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then
- TEST_RESULT="FAIL FROM TIMEOUT"
+ TEST_RESULT="FAILED: TEST TIMED OUT"
FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
- else
-
- TEST_RESULT="PASS"
- TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt"
- GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log")
- RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9')
- RT_TEST_MEM=$((RT_TEST_MEM/1000))
- if [[ -f "${TIME_FILE}" ]]; then
- while read -r times || [ "$times" ]; do
- times="${times#"${times%%[![:space:]]*}"}"
-
- DATE1=$(echo "$times" | cut -d ',' -f2 )
- DATE2=$(echo "$times" | cut -d ',' -f3 )
- DATE3=$(echo "$times" | cut -d ',' -f4 )
- DATE4=$(echo "$times" | cut -d ',' -f5 )
-
- TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
- RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
-
- done < "$TIME_FILE"
- fi
+ fi
+ else
+ TEST_RESULT="PASS"
+ fi
+ if [[ ${TEST_RESULT} == "PASS" ]]; then
+ TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt"
+ GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log")
+ RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9')
+ RT_TEST_MEM=$((RT_TEST_MEM/1000))
+ if [[ -f "${TIME_FILE}" ]]; then
+ while read -r times || [[ -n "${times}" ]]; do
+ times="${times#"${times%%[![:space:]]*}"}"
+
+ DATE1=$(cut -d ',' -f2 <<< "${times}")
+ DATE2=$(cut -d ',' -f3 <<< "${times}")
+ DATE3=$(cut -d ',' -f4 <<< "${times}")
+ DATE4=$(cut -d ',' -f5 <<< "${times}")
+
+ TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S')
+ RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
+
+ done < "${TIME_FILE}"
fi
fi
echo "${TEST_RESULT} -- TEST '${TEST_NAME}_${COMPILER}' [${RT_TEST_TIME}, ${TEST_TIME}](${RT_TEST_MEM} MB)" >> "${REGRESSIONTEST_LOG}"
- [[ -n $FAIL_LOG ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}")
- [[ -n $FAIL_LOG ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}")
- [[ -n $FAIL_LOG ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}")
+ [[ -n ${FAIL_LOG} ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}")
+ [[ -n ${FAIL_LOG} ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}")
+ [[ -n ${FAIL_LOG} ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}")
fi
fi
- done < "$TESTS_FILE"
+ done < "${TESTS_FILE}"
elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) )
@@ -367,18 +397,18 @@ EOF
if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then
echo "Failed Compiles:" >> "${REGRESSIONTEST_LOG}"
for i in "${!FAILED_COMPILES[@]}"; do
- echo "* ${FAILED_COMPILES[$i]}" >> "${REGRESSIONTEST_LOG}"
- echo "-- LOG: ${FAILED_COMPILE_LOGS[$i]}" >> "${REGRESSIONTEST_LOG}"
+ echo "* ${FAILED_COMPILES[${i}]}" >> "${REGRESSIONTEST_LOG}"
+ echo "-- LOG: ${FAILED_COMPILE_LOGS[${i}]}" >> "${REGRESSIONTEST_LOG}"
done
fi
# PRINT FAILED TESTS
if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
- echo "Failed Tests:" >> ${REGRESSIONTEST_LOG}
+ echo "Failed Tests:" >> "${REGRESSIONTEST_LOG}"
for j in "${!FAILED_TESTS[@]}"; do
- echo "* ${FAILED_TESTS[$j]}" >> "${REGRESSIONTEST_LOG}"
- echo "-- LOG: ${FAILED_TEST_LOGS[$j]}" >> "${REGRESSIONTEST_LOG}"
+ echo "* ${FAILED_TESTS[${j}]}" >> "${REGRESSIONTEST_LOG}"
+ echo "-- LOG: ${FAILED_TEST_LOGS[${j}]}" >> "${REGRESSIONTEST_LOG}"
done
fi
@@ -386,7 +416,7 @@ EOF
# WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG
if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
for item in "${FAILED_TEST_ID[@]}"; do
- echo "$item" >> "${TEST_CHANGES_LOG}"
+ echo "${item}" >> "${TEST_CHANGES_LOG}"
done
fi
@@ -404,7 +434,7 @@ EOF
echo "Performing Cleanup..."
rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp
[[ ${KEEP_RUNDIR} == false ]] && rm -rf "${RUNDIR_ROOT}" && rm "${PATHRT}/run_dir"
- [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" *_lock.db
+ [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db
[[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20*
echo "REGRESSION TEST RESULT: SUCCESS"
else
@@ -425,9 +455,7 @@ EOF
}
create_or_run_compile_task() {
-
- cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
-export JOB_NR=${JOB_NR}
+ cat << EOF > "${RUNDIR_ROOT}/compile_${COMPILE_ID}.env"
export COMPILE_ID=${COMPILE_ID}
export MACHINE_ID=${MACHINE_ID}
export RT_COMPILER=${RT_COMPILER}
@@ -441,14 +469,17 @@ export ROCOTO=${ROCOTO}
export ECFLOW=${ECFLOW}
export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
export LOG_DIR=${LOG_DIR}
+export RTVERBOSE=${RTVERBOSE}
EOF
- if [[ $ROCOTO == true ]]; then
+ if [[ ${ROCOTO} == true ]]; then
rocoto_create_compile_task
- elif [[ $ECFLOW == true ]]; then
+ elif [[ ${ECFLOW} == true ]]; then
ecflow_create_compile_task
else
- ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_ID} > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1
+ echo "rt.sh: Running compile ${COMPILE_ID}"
+ ./run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1
+ echo "rt.sh: Compile ${COMPILE_ID} completed."
fi
RT_SUFFIX=""
@@ -456,57 +487,77 @@ EOF
}
rt_35d() {
-if [[ $TEST_NAME =~ '35d' ]] ; then
- local sy=$(echo ${DATE_35D} | cut -c 1-4)
- local sm=$(echo ${DATE_35D} | cut -c 5-6)
+ echo "rt.sh: Running 35day Regression Test..."
+ local sy
+ local sm
+if [[ ${TEST_NAME} =~ '35d' ]] ; then
+ sy=$(cut -c 1-4 <<< "${DATE_35D}")
+ sm=$(cut -c 5-6 <<< "${DATE_35D}")
local new_test_name="tests/${TEST_NAME}_${DATE_35D}"
- rm -f $new_test_name
- cp tests/$TEST_NAME $new_test_name
+ rm -f "${new_test_name}"
+ cp tests/"${TEST_NAME}" "${new_test_name}"
- sed -i -e "s/\(export SYEAR\)/\1=\"$sy\"/" $new_test_name
- sed -i -e "s/\(export SMONTH\)/\1=\"$sm\"/" $new_test_name
+ sed -i -e "s/\(export SYEAR\)/\1=\"${sy}\"/" "${new_test_name}"
+ sed -i -e "s/\(export SMONTH\)/\1=\"${sm}\"/" "${new_test_name}"
TEST_NAME=${new_test_name#tests/}
fi
}
+handle_error() {
+ echo "rt.sh: Getting error information..."
+ local exit_code=$1
+ local exit_line=$2
+ echo "Exited at line ${exit_line} having code ${exit_code}"
+ rt_trap
+}
+
rt_trap() {
+ echo "rt.sh: Exited abnormally, killing workflow and cleaning up"
[[ ${ROCOTO:-false} == true ]] && rocoto_kill
[[ ${ECFLOW:-false} == true ]] && ecflow_kill
cleanup
}
cleanup() {
- [[ $(awk '{print $2}' < "${LOCKDIR}/PID") == $$ ]] && rm -rf ${LOCKDIR}
+ echo "rt.sh: Cleaning up..."
+ awk_info=$(awk '{print $2}' < "${LOCKDIR}/PID")
+ [[ ${awk_info} == "$$" ]] && rm -rf "${LOCKDIR}"
[[ ${ECFLOW:-false} == true ]] && ecflow_stop
trap 0
+ echo "rt.sh: Exiting."
exit
}
trap '{ echo "rt.sh interrupted"; rt_trap ; }' INT
trap '{ echo "rt.sh quit"; rt_trap ; }' QUIT
trap '{ echo "rt.sh terminated"; rt_trap ; }' TERM
-trap '{ echo "rt.sh error on line $LINENO"; cleanup ; }' ERR
+trap '{ handle_error $? $LINENO ; }' ERR
trap '{ echo "rt.sh finished"; cleanup ; }' EXIT
+
# PATHRT - Path to regression tests directory
-readonly PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )"
-cd ${PATHRT}
+PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )"
+readonly PATHRT
+cd "${PATHRT}"
# PATHTR - Path to nmmb trunk directory
-readonly PATHTR=$( cd ${PATHRT}/.. && pwd )
+PATHTR=$( cd "${PATHRT}/.." && pwd )
+readonly PATHTR
# make sure only one instance of rt.sh is running
readonly LOCKDIR="${PATHRT}"/lock
+HOSTNAME_IN=$(hostname)
if mkdir "${LOCKDIR}" ; then
- echo $(hostname) $$ > "${LOCKDIR}/PID"
+ echo "${HOSTNAME_IN}" $$ > "${LOCKDIR}/PID"
else
echo "Only one instance of rt.sh can be running at a time"
exit 1
fi
-source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does.
+source detect_machine.sh
source rt_utils.sh
+# shellcheck disable=SC1091
source module-setup.sh
CREATE_BASELINE=false
@@ -516,30 +567,33 @@ KEEP_RUNDIR=false
TEST_35D=false
export skip_check_results=false
export delete_rundir=false
-SKIP_ORDER=false
+
COMPILE_ONLY=false
RTPWD_NEW_BASELINE=false
TESTS_FILE='rt.conf'
NEW_BASELINES_FILE=''
DEFINE_CONF_FILE=false
RUN_SINGLE_TEST=false
+RTVERBOSE=false
+export RTVERBOSE
+export STOP_ECFLOW_AT_END=false
ACCNR=${ACCNR:-""}
-while getopts ":a:b:cl:mn:dwkreoh" opt; do
- case $opt in
+while getopts ":a:b:cl:mn:dwkreovh" opt; do
+ case ${opt} in
a)
- ACCNR=$OPTARG
+ ACCNR=${OPTARG}
;;
b)
- NEW_BASELINES_FILE=$OPTARG
+ NEW_BASELINES_FILE=${OPTARG}
;;
c)
CREATE_BASELINE=true
;;
l)
DEFINE_CONF_FILE=true
- TESTS_FILE=$OPTARG
- grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..."
+ TESTS_FILE=${OPTARG}
+ grep -q '[^[:space:]]' < "${TESTS_FILE}" || die "${TESTS_FILE} empty, exiting..."
;;
o)
COMPILE_ONLY=true
@@ -550,10 +604,10 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do
;;
n)
RUN_SINGLE_TEST=true
- IFS=' ' read -r -a SINGLE_OPTS <<< $OPTARG
+ IFS=' ' read -r -a SINGLE_OPTS <<< "${OPTARG}"
if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then
- die 'The -n option needs AND in quotes, i.e. -n "control_p8 intel"'
+ die 'The -n option needs [testname] AND [compiler] in quotes, i.e. -n "control_p8 intel"'
fi
SRT_NAME="${SINGLE_OPTS[0]}"
@@ -565,7 +619,8 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do
;;
d)
export delete_rundir=true
- awk -F "|" '{print $5}' rt.conf | grep "\S" > keep_tests.tmp
+ AWK_OUT=$(awk -F "|" '{print $5}' rt.conf)
+ grep "\S" <<< "${AWK_OUT}" > keep_tests.tmp
;;
w)
export skip_check_results=true
@@ -581,456 +636,506 @@ while getopts ":a:b:cl:mn:dwkreoh" opt; do
ECFLOW=true
ROCOTO=false
;;
+ v)
+ RTVERBOSE=true
+ ;;
h)
usage
+ die ""
;;
\?)
usage
- die "Invalid option: -$OPTARG"
+ die "Invalid option: -${OPTARG}"
;;
:)
usage
- die "Option -$OPTARG requires an argument."
+ die "Option -${OPTARG} requires an argument."
+ ;;
+ *)
+ usage
+ die "Arguments are required."
;;
esac
done
#Check to error out if incompatible options are chosen together
-[[ $KEEP_RUNDIR == true && $delete_rundir == true ]] && die "-k and -d options cannot be used at the same time"
-[[ $ECFLOW == true && $ROCOTO == true ]] && die "-r and -e options cannot be used at the same time"
-[[ $CREATE_BASELINE == true && $RTPWD_NEW_BASELINE == true ]] && die "-c and -m options cannot be used at the same time"
-
-if [[ -z "$ACCNR" ]]; then
- echo "Please use -a to set group account to use on HPC"
- exit 1
-fi
-
-# Display the machine and account using the format detect_machine.sh used:
-echo "Machine: " $MACHINE_ID " Account: " $ACCNR
-
-if [[ $MACHINE_ID = wcoss2 ]]; then
-
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.6.0.13
- fi
- module load intel/19.1.3.304 python/3.8.6
- if [[ "${ECFLOW:-false}" == true ]] ; then
- ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
- export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
- export ECF_COMDIR=${PATHRT}/ecf_comdir
- rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
- mkdir -p ${ECF_OUTPUTDIR}
- mkdir -p ${ECF_COMDIR}
- fi
- export colonifnco=":output" # hack
-
- DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT
- QUEUE=dev
- COMPILE_QUEUE=dev
- if [[ "${ROCOTO:-false}" == true ]] ; then
- ROCOTO_SCHEDULER=pbs
- fi
- PARTITION=
- STMP=/lfs/h2/emc/ptmp
- PTMP=/lfs/h2/emc/ptmp
- SCHEDULER=pbs
-
-elif [[ $MACHINE_ID = acorn ]]; then
-
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.6.0.13
- fi
- module load intel/19.1.3.304 python/3.8.6
- if [[ "${ECFLOW:-false}" == true ]] ; then
- ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh
- export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir
- export ECF_COMDIR=${PATHRT}/ecf_comdir
- rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR}
- mkdir -p ${ECF_OUTPUTDIR}
- mkdir -p ${ECF_COMDIR}
- fi
- export colonifnco=":output" # hack
-
- DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT
- QUEUE=dev
- COMPILE_QUEUE=dev
- if [[ "${ROCOTO:-false}" == true ]] ; then
- ROCOTO_SCHEDULER=pbs
- fi
- PARTITION=
- STMP=/lfs/h2/emc/ptmp
- PTMP=/lfs/h2/emc/ptmp
- SCHEDULER=pbs
-
-elif [[ $MACHINE_ID = gaea ]]; then
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module use /ncrc/proj/epic/rocoto/modulefiles
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
-
- module load PrgEnv-intel/8.3.3
- module load intel-classic/2023.1.0
- module load cray-mpich/8.1.25
- module load python/3.9.12
- module use /ncrc/proj/epic/spack-stack/modulefiles
- module load gcc/12.2.0
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.8.4
- ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
- fi
-
- DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT
- QUEUE=normal
- COMPILE_QUEUE=normal
- PARTITION=c5
- dprefix=${dprefix:-/gpfs/f5/$ACCNR/scratch/$USER}
- STMP=${STMP:-$dprefix/RT_BASELINE}
- PTMP=${PTMP:-$dprefix/RT_RUNDIRS}
-
- SCHEDULER=slurm
-
-elif [[ $MACHINE_ID = hera ]]; then
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
-
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.11.4
- ECFLOW_START=ecflow_start.sh
- fi
-
- QUEUE=batch
- COMPILE_QUEUE=batch
-
- PARTITION=
- dprefix=/scratch1/NCEPDEV
- DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT
- STMP=$dprefix/stmp4
- PTMP=$dprefix/stmp2
-
- SCHEDULER=slurm
-
-elif [[ $MACHINE_ID = orion ]]; then
-
- module load git/2.28.0
- module load gcc/10.2.0
- module load python/3.9.2
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load contrib rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
+[[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time"
+[[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time"
+[[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time"
- module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.8.4
- ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
- fi
-
- QUEUE=batch
- COMPILE_QUEUE=batch
- PARTITION=orion
- dprefix=/work/noaa/stmp/${USER}
- DISKNM=/work/noaa/epic/UFS-WM_RT
- STMP=$dprefix/stmp
- PTMP=$dprefix/stmp
-
- SCHEDULER=slurm
-
-elif [[ $MACHINE_ID = hercules ]]; then
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load contrib rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
-
- module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.8.4
- ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
- fi
+[[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
- QUEUE=batch
- COMPILE_QUEUE=batch
- PARTITION=hercules
- dprefix=/work2/noaa/stmp/${USER}
- DISKNM=/work/noaa/epic/hercules/UFS-WM_RT
- STMP=$dprefix/stmp
- PTMP=$dprefix/stmp
-
- SCHEDULER=slurm
- cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN
- cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN
+if [[ ${RTVERBOSE} == true ]]; then
+ set -x
+fi
-elif [[ $MACHINE_ID = jet ]]; then
+[[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
- echo "=======Running on $(lsb_release -is)======="
- CurJetOS=$(lsb_release -is)
- if [[ ${CurJetOS} == "CentOS" ]]; then
- echo "=======Please, move to Rocky8 node fe[5-8]======="
+if [[ -z "${ACCNR}" ]]; then
+ echo "Please use -a to set group account to use on HPC"
exit 1
- fi
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load rocoto
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
-
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.11.4
- ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
- fi
-
- module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core
- module load stack-intel/2021.5.0
- module load stack-python/3.10.8
-
- QUEUE=batch
- COMPILE_QUEUE=batch
- PARTITION=xjet
- DISKNM=/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT
- dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER}
- STMP=${STMP:-$dprefix/RT_BASELINE}
- PTMP=${PTMP:-$dprefix/RT_RUNDIRS}
-
- SCHEDULER=slurm
+fi
-elif [[ $MACHINE_ID = s4 ]]; then
+# Display the machine and account using the format detect_machine.sh used:
+echo "Machine: ${MACHINE_ID}"
+echo "Account: ${ACCNR}"
+
+case ${MACHINE_ID} in
+ wcoss2|acorn)
+ echo "rt.sh: Setting up WCOSS2/Acorn"
+ set -x
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.6.0.13
+ fi
+ module load intel/19.1.3.304 python/3.8.6
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ # ECF_ROOT=${ECF_ROOT:-}
+ # ECFLOW_START="${ECF_ROOT}/scripts/server_check.sh"
+ # ECFLOW_STOP="${ECF_ROOT}/bin/ecflow_stop.sh"
+ export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir"
+ export ECF_COMDIR="${PATHRT}/ecf_comdir"
+ rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}"
+ mkdir -p "${ECF_OUTPUTDIR}"
+ mkdir -p "${ECF_COMDIR}"
+ # export ECFLOW_START ECFLOW_STOP
+ fi
+ export colonifnco=":output" # hack
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load rocoto/1.3.2
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.6.0
- fi
- module load miniconda/3.8-s4
+ DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT"
+ QUEUE="dev"
+ COMPILE_QUEUE="dev"
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ ROCOTO_SCHEDULER="pbs"
+ fi
+ PARTITION=
+ STMP="/lfs/h2/emc/ptmp"
+ PTMP="/lfs/h2/emc/ptmp"
+ SCHEDULER="pbs"
+ ;;
+ gaea)
+ echo "rt.sh: Setting up gaea..."
+ set -x
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module use /ncrc/proj/epic/rocoto/modulefiles
+ module load rocoto
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER="slurm"
+ fi
+
+ module load PrgEnv-intel/8.3.3
+ module load intel-classic/2023.1.0
+ module load cray-mpich/8.1.25
+ module load python/3.9.12
+ module use /ncrc/proj/epic/spack-stack/modulefiles
+ module load gcc/12.2.0
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ # ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
+ # ECFLOW_STOP=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh
+ ECF_HOST=$(hostname)
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ export ECF_PORT ECF_HOST
+ fi
- module use /data/prod/jedi/spack-stack/modulefiles
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.8.4
- ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
- fi
+ DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT
+ QUEUE=normal
+ COMPILE_QUEUE=normal
+ PARTITION=c5
+ dprefix=${dprefix:-/gpfs/f5/${ACCNR}/scratch/${USER}}
+ STMP=${STMP:-${dprefix}/RT_BASELINE}
+ PTMP=${PTMP:-${dprefix}/RT_RUNDIRS}
+
+ SCHEDULER="slurm"
+ ;;
+ hera)
+ echo "rt.sh: Setting up hera..."
+ set -x
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
- QUEUE=s4
- COMPILE_QUEUE=s4
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.11.4
+ # ECFLOW_START="$(command -v ecflow_start.sh)"
+ # ECFLOW_STOP="$(command -v ecflow_stop.sh)"
+ # export ECFLOW_START ECFLOW_STOP
+ fi
- PARTITION=s4
- dprefix=/data/prod
- DISKNM=$dprefix/emc.nemspara/RT
- STMP=/scratch/short/users
- PTMP=/scratch/users
+ QUEUE="batch"
+ COMPILE_QUEUE="batch"
+
+ PARTITION=
+ dprefix="/scratch1/NCEPDEV"
+ DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT"
+ STMP="${dprefix}/stmp4"
+ PTMP="${dprefix}/stmp2"
+
+ SCHEDULER=slurm
+ ;;
+ orion)
+ echo "rt.sh: Setting up orion..."
+ set -x
+ module load git/2.28.0
+ module load gcc/10.2.0
+ module load python/3.9.2
+
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load contrib rocoto
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER="slurm"
+ fi
- SCHEDULER=slurm
+ module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh"
+ # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_stop.sh"
+ ECF_HOST=$(hostname)
+ ECF_PORT="$(( $(id -u) + 1500 ))"
+ export ECF_PORT ECF_HOST
+ fi
-elif [[ $MACHINE_ID = derecho ]]; then
+ QUEUE="batch"
+ COMPILE_QUEUE="batch"
+ PARTITION="orion"
+ dprefix="/work/noaa/stmp/${USER}"
+ DISKNM=/"work/noaa/epic/UFS-WM_RT"
+ STMP="${dprefix}/stmp"
+ PTMP="${dprefix}/stmp"
+
+ SCHEDULER="slurm"
+ ;;
+ hercules)
+ echo "rt.sh: Setting up hercules..."
+ set -x
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load contrib rocoto
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER="slurm"
+ fi
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles
- module load rocoto
- fi
- module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles
- if [[ "${ECFLOW:-false}" == true ]] ; then
- module load ecflow/5.8.4
- fi
- module unload ncarcompilers
- module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core
- module load stack-intel/2021.10.0
- module load stack-python/3.10.8
-# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
- if [[ "${ECFLOW:-false}" == true ]] ; then
- ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
- ECF_PORT=$(( $(id -u) + 1500 ))
- fi
+ module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh"
+ # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_stop.sh"
+ ECF_HOST=$(hostname)
+ ECF_PORT="$(( $(id -u) + 1500 ))"
+ export ECF_PORT ECF_HOST
+ fi
- QUEUE=main
- COMPILE_QUEUE=main
- PARTITION=
- dprefix=/glade/derecho/scratch
- DISKNM=/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/
- STMP=$dprefix
- PTMP=$dprefix
- SCHEDULER=pbs
- cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN
- cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN
-
- if [[ "${ROCOTO:-false}" == true ]] ; then
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=pbspro
- fi
+ QUEUE="batch"
+ COMPILE_QUEUE="batch"
+ PARTITION="hercules"
+ dprefix="/work2/noaa/stmp/${USER}"
+ DISKNM="/work/noaa/epic/hercules/UFS-WM_RT"
+ STMP="${dprefix}/stmp"
+ PTMP="${dprefix}/stmp"
+
+ SCHEDULER="slurm"
+ cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN
+ cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN
+ ;;
+ jet)
+ echo "rt.sh: Setting up jet..."
+ set -x
+ CurJetOS=$(lsb_release -is)
+ echo "=======Running on ${CurJetOS}======="
+ if [[ ${CurJetOS} == "CentOS" ]]; then
+ echo "=======Please, move to Rocky8 node fe[5-8]======="
+ exit 1
+ fi
+
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER="slurm"
+ fi
-elif [[ $MACHINE_ID = stampede ]]; then
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.11.4
+ # ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
+ # ECFLOW_STOP=/apps/ecflow/5.11.4/bin/ecflow_stop.sh
+ # export ECFLOW_START ECFLOW_STOP
+ fi
- export PYTHONPATH=
- if [[ "${ECFLOW:-false}" == true ]] ; then
- ECFLOW_START=
- fi
- QUEUE=skx-normal
- COMPILE_QUEUE=skx-dev
- PARTITION=
- dprefix=$SCRATCH/ufs-weather-model/run
- DISKNM=/work2/07736/minsukji/stampede2/ufs-weather-model/RT
- STMP=$dprefix
- PTMP=$dprefix
- SCHEDULER=slurm
- MPIEXEC=ibrun
- MPIEXECOPTS=
-
-elif [[ $MACHINE_ID = expanse ]]; then
-
- export PYTHONPATH=
- if [[ "${ECFLOW:-false}" == true ]] ; then
- ECFLOW_START=
- fi
- QUEUE=compute
- COMPILE_QUEUE=shared
- PARTITION=
- dprefix=/expanse/lustre/scratch/$USER/temp_project/run
- DISKNM=/expanse/lustre/scratch/domh/temp_project/RT
- STMP=$dprefix
- PTMP=$dprefix
- SCHEDULER=slurm
-
- elif [[ $MACHINE_ID = noaacloud ]]; then
-
- export PATH=/contrib/EPIC/bin:$PATH
- module use /apps/modules/modulefiles
- if [[ "${ROCOTO:-false}" == true ]] ; then
- module load rocoto/1.3.3
-
- ROCOTORUN=$(which rocotorun)
- ROCOTOSTAT=$(which rocotostat)
- ROCOTOCOMPLETE=$(which rocotocomplete)
- ROCOTO_SCHEDULER=slurm
- fi
+ module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core
+ module load stack-intel/2021.5.0
+ module load stack-python/3.10.8
+
+ QUEUE="batch"
+ COMPILE_QUEUE="batch"
+ PARTITION="xjet"
+ DISKNM="/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT"
+ dprefix="${dprefix:-/lfs4/HFIP/${ACCNR}/${USER}}"
+ STMP="${STMP:-${dprefix}/RT_BASELINE}"
+ PTMP="${PTMP:-${dprefix}/RT_RUNDIRS}"
+
+ SCHEDULER="slurm"
+ ;;
+ s4)
+ echo "rt.sh: Setting up s4..."
+ set -x
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto/1.3.2
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.6.0
+ fi
+ module load miniconda/3.8-s4
+
+ module use /data/prod/jedi/spack-stack/modulefiles
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ # ECFLOW_START="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh"
+ # ECFLOW_STOP="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh"
+ ECF_HOST=$(hostname)
+ ECF_PORT="$(( $(id -u) + 1500 ))"
+ export ECF_PORT ECF_HOST
+ fi
- QUEUE=batch
- COMPILE_QUEUE=batch
- PARTITION=
- dprefix=/lustre/
- DISKNM=/contrib/ufs-weather-model/RT
- STMP=$dprefix/stmp4
- PTMP=$dprefix/stmp2
- SCHEDULER=slurm
+ QUEUE="s4"
+ COMPILE_QUEUE="s4"
+
+ PARTITION="s4"
+ dprefix="/data/prod"
+ DISKNM="${dprefix}/emc.nemspara/RT"
+ STMP="/scratch/short/users"
+ PTMP="/scratch/users"
+
+ SCHEDULER="slurm"
+ ;;
+ derecho)
+ echo "rt.sh: Setting up derecho..."
+ set -x
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles
+ module load rocoto
+ fi
+ module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ module load ecflow/5.8.4
+ fi
+ module unload ncarcompilers
+ module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core
+ module load stack-intel/2021.10.0
+ module load stack-python/3.10.8
+ # export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ # ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
+ # ECFLOW_STOP=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_stop.sh
+ ECF_HOST=$(hostname)
+ ECF_PORT=$(( $(id -u) + 1500 ))
+ export ECF_PORT ECF_HOST
+ fi
+ QUEUE="main"
+ COMPILE_QUEUE="main"
+ PARTITION=
+ dprefix="/glade/derecho/scratch"
+ DISKNM="/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/"
+ STMP="${dprefix}"
+ PTMP="${dprefix}"
+ SCHEDULER="pbs"
+ cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN
+ cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN
-else
- die "Unknown machine ID, please edit detect_machine.sh file"
-fi
+
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER="pbspro"
+ fi
+ ;;
+ stampede)
+ echo "rt.sh: Setting up stampede..."
+ set -x
+ export PYTHONPATH=
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ ECFLOW_START=
+ fi
+ QUEUE=skx-normal
+ COMPILE_QUEUE=skx-dev
+ PARTITION=
+ dprefix="${SCRATCH}/ufs-weather-model/run"
+ DISKNM="/work2/07736/minsukji/stampede2/ufs-weather-model/RT"
+ STMP="${dprefix}"
+ PTMP="${dprefix}"
+ SCHEDULER="slurm"
+ export MPIEXEC="ibrun"
+ export MPIEXECOPTS=
+ ;;
+ expanse)
+ echo "rt.sh: Setting up expanse..."
+ set -x
+ export PYTHONPATH=
+
+ if [[ "${ECFLOW:-false}" == true ]] ; then
+ export ECFLOW_START=
+ fi
+ QUEUE="compute"
+ COMPILE_QUEUE="shared"
+ PARTITION=
+ dprefix="/expanse/lustre/scratch/${USER}/temp_project/run"
+ DISKNM="/expanse/lustre/scratch/domh/temp_project/RT"
+ STMP="${dprefix}"
+ PTMP="${dprefix}"
+ SCHEDULER="slurm"
+ ;;
+ noaacloud)
+ echo "rt.sh: Setting up noaacloud..."
+ set -x
+ export PATH="/contrib/EPIC/bin:${PATH}"
+ module use /apps/modules/modulefiles
+
+ if [[ "${ROCOTO:-false}" == true ]] ; then
+ module load rocoto/1.3.3
+ # ROCOTORUN=$(command -v rocotorun)
+ # ROCOTOSTAT=$(command -v rocotostat)
+ # ROCOTOCOMPLETE=$(command -v rocotocomplete)
+ ROCOTO_SCHEDULER=slurm
+ fi
-mkdir -p ${STMP}/${USER}
+ QUEUE="batch"
+ COMPILE_QUEUE="batch"
+ PARTITION=
+ dprefix="/lustre/"
+ DISKNM="/contrib/ufs-weather-model/RT"
+ STMP="${dprefix}/stmp4"
+ PTMP="${dprefix}/stmp2"
+ SCHEDULER="slurm"
+ ;;
+ *)
+ die "Unknown machine ID, please edit detect_machine.sh file"
+ ;;
+esac
+eval "${set_x}"
+
+# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST
+[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST"
+[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST"
+[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST"
+
+mkdir -p "${STMP}/${USER}"
NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST
# Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set
RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$
-mkdir -p ${RUNDIR_ROOT}
-if [[ -e ${PATHRT}/run_dir ]]; then
- rm ${PATHRT}/run_dir
+mkdir -p "${RUNDIR_ROOT}"
+if [[ -L "${PATHRT}/run_dir" && -d "${PATHRT}/run_dir" ]]; then
+ rm "${PATHRT}/run_dir"
fi
echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir"
-ln -s ${RUNDIR_ROOT} ${PATHRT}/run_dir
+ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir"
echo "Run regression test in: ${RUNDIR_ROOT}"
update_rtconf
-if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then
+if [[ ${TESTS_FILE} =~ '35d' ]] || [[ ${TESTS_FILE} =~ 'weekly' ]]; then
TEST_35D=true
fi
source bl_date.conf
-if [[ "$RTPWD_NEW_BASELINE" == true ]] ; then
+if [[ "${RTPWD_NEW_BASELINE}" == true ]] ; then
RTPWD=${NEW_BASELINE}
else
- RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}}
+ RTPWD=${RTPWD:-${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}}
fi
-if [[ "$CREATE_BASELINE" == false ]] ; then
- if [[ ! -d "$RTPWD" ]] ; then
+if [[ "${CREATE_BASELINE}" == false ]] ; then
+ EMPTY_CHECK=$(find "${RTPWD}/" -type d -prune -empty)
+ if [[ ! -d "${RTPWD}" ]] ; then
echo "Baseline directory does not exist:"
- echo " $RTPWD"
+ echo " ${RTPWD}"
exit 1
- elif [[ $( ls -1 "$RTPWD/" | wc -l ) -lt 1 ]] ; then
+ elif [[ -n ${EMPTY_CHECK} ]] ; then
echo "Baseline directory is empty:"
- echo " $RTPWD"
+ echo " ${RTPWD}"
exit 1
fi
fi
-INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101}
+INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20221101}
INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214
-INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207}
+INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207}
shift $((OPTIND-1))
-[[ $# -gt 1 ]] && usage
+if [[ $# -gt 1 ]]; then
+ usage
+ die ""
+fi
-if [[ $CREATE_BASELINE == true ]]; then
+if [[ ${CREATE_BASELINE} == true ]]; then
# PREPARE NEW REGRESSION TEST DIRECTORY
+ echo "rt.sh: Preparing RT Directory..."
rm -rf "${NEW_BASELINE}"
mkdir -p "${NEW_BASELINE}"
fi
-if [[ $skip_check_results == true ]]; then
- REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_$MACHINE_ID.log
+if [[ ${skip_check_results} == true ]]; then
+ REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_${MACHINE_ID}.log
else
- REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_$MACHINE_ID.log
+ REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log
fi
-export TEST_START_TIME="$(date '+%Y%m%d %T')"
+TEST_START_TIME="$(date '+%Y%m%d %T')"
+export TEST_START_TIME
source default_vars.sh
-JOB_NR=0
COMPILE_COUNTER=0
rm -f fail_test* fail_compile*
-export LOG_DIR=${PATHRT}/logs/log_$MACHINE_ID
-rm -rf ${LOG_DIR}
-mkdir -p ${LOG_DIR}
+LOG_DIR=${PATHRT}/logs/log_${MACHINE_ID}
+export LOG_DIR
-if [[ $ROCOTO == true ]]; then
+rm -rf "${LOG_DIR}"
+mkdir -p "${LOG_DIR}"
+
+if [[ ${ROCOTO} == true ]]; then
+
+ echo "rt.sh: Verifying ROCOTO support..."
+
+ case ${MACHINE_ID} in
+ wcoss2|acorn|expanse|stampede)
+ die "Rocoto not supported on this machine, please do not use '-r'."
+ ;;
+ *)
+ ;;
+ esac
+ ROCOTORUN="$(command -v rocotorun)"
+ ROCOTOSTAT="$(command -v rocotostat)"
+ ROCOTOCOMPLETE="$(command -v rocotocomplete)"
+ export ROCOTOCOMPLETE ROCOTOSTAT ROCOTORUN
+
ROCOTO_XML=${PATHRT}/rocoto_workflow.xml
ROCOTO_STATE=${PATHRT}/rocoto_workflow.state
ROCOTO_DB=${PATHRT}/rocoto_workflow.db
- rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db
+ rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db
- if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then
- die "Rocoto is not supported on this machine: $MACHINE_ID"
- fi
-
- cat << EOF > $ROCOTO_XML
+ cat << EOF > "${ROCOTO_XML}"
${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ rm -rf "${ECFLOW_RUN}"
+ mkdir -p "${ECFLOW_RUN}/${ECFLOW_SUITE}"
+ cp head.h tail.h "${ECFLOW_RUN}"
+ cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
suite ${ECFLOW_SUITE}
edit ECF_HOME '${ECFLOW_RUN}'
edit ECF_INCLUDE '${ECFLOW_RUN}'
@@ -1084,10 +1207,6 @@ suite ${ECFLOW_SUITE}
limit max_jobs ${MAX_JOBS}
EOF
- if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then
- die "ecFlow is not supported on this machine: $MACHINE_ID"
- fi
-
fi
##
@@ -1098,41 +1217,42 @@ fi
new_compile=false
in_metatask=false
-[[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist"
-
-LAST_COMPILER_NR=-9999
-COMPILE_PREV=''
+[[ -f ${TESTS_FILE} ]] || die "${TESTS_FILE} does not exist"
declare -A compiles
-while read -r line || [ "$line" ]; do
+while read -r line || [[ -n "${line}" ]]; do
line="${line#"${line%%[![:space:]]*}"}"
[[ ${#line} == 0 ]] && continue
- [[ $line == \#* ]] && continue
+ [[ ${line} == \#* ]] && continue
- JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) )
+ if [[ ${line} == COMPILE* ]]; then
- if [[ $line == COMPILE* ]]; then
+ COMPILE_NAME=$(cut -d '|' -f2 <<< "${line}")
+ COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}")
- COMPILE_NAME=$( echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- RT_COMPILER=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
- MAKE_OPT=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//')
- MACHINES=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
- CB=$( echo $line | cut -d'|' -f6)
+ RT_COMPILER=$(cut -d '|' -f3 <<< "${line}")
+ RT_COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER}")
+
+ MAKE_OPT=$(cut -d '|' -f4 <<< "${line}")
+ MAKE_OPT=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MAKE_OPT}")
+
+ MACHINES=$(cut -d '|' -f5 <<< "${line}")
+ MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}")
+
+ CB=$(cut -d '|' -f6 <<< "${line}")
COMPILE_ID=${COMPILE_NAME}_${RT_COMPILER}
- COMPILE_PREV=${COMPILE_ID}
set +u
- if [[ ! -z ${compiles[$COMPILE_ID]} ]] ; then
- echo "Error! Duplicated compilation $COMPILE_NAME for compiler $RT_COMPILER!"
+ if [[ -n ${compiles[${COMPILE_ID}]} ]] ; then
+ echo "Error! Duplicated compilation ${COMPILE_NAME} for compiler ${RT_COMPILER}!"
exit 1
fi
set -u
- compiles[$COMPILE_ID]=$COMPILE_ID
- echo "COMPILING ${compiles[${COMPILE_ID}]}"
+ compiles[${COMPILE_ID}]=${COMPILE_ID}
- [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue
+ [[ ${CREATE_BASELINE} == true && ${CB} != *fv3* ]] && continue
if [[ ${MACHINES} != '' ]]; then
if [[ ${MACHINES} == -* ]]; then
@@ -1146,29 +1266,34 @@ while read -r line || [ "$line" ]; do
fi
create_or_run_compile_task
-
continue
- elif [[ $line == RUN* ]] ; then
+ elif [[ ${line} == RUN* ]]; then
- if [[ $COMPILE_ONLY == true ]]; then
- continue
- fi
+ [[ ${COMPILE_ONLY} == true ]] && continue
- TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//')
- MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//')
- CB=$( echo $line | cut -d'|' -f4)
- DEP_RUN=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//')
- DATE_35D=$( echo $line | cut -d'|' -f6 | sed -e 's/^ *//' -e 's/ *$//')
+ TEST_NAME=$(cut -d'|' -f2 <<< "${line}")
+ TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}")
- if [[ $DEP_RUN != '' ]]; then
+ MACHINES=$(cut -d'|' -f3 <<< "${line}")
+ MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}")
+
+ CB=$(cut -d'|' -f4 <<< "${line}")
+
+ DEP_RUN=$(cut -d'|' -f5 <<< "${line}")
+ DEP_RUN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DEP_RUN}")
+
+ DATE_35D=$(cut -d'|' -f6 <<< "${line}")
+ DATE_35D=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DATE_35D}")
+
+ if [[ ${DEP_RUN} != '' ]]; then
DEP_RUN=${DEP_RUN}_${RT_COMPILER}
fi
export TEST_ID=${TEST_NAME}_${RT_COMPILER}
- [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist"
- [[ $CREATE_BASELINE == true && $CB != *baseline* ]] && continue
+ [[ -e "tests/${TEST_NAME}" ]] || die "run test file tests/${TEST_NAME} does not exist"
+ [[ ${CREATE_BASELINE} == true && ${CB} != *baseline* ]] && continue
if [[ ${MACHINES} != '' ]]; then
if [[ ${MACHINES} == -* ]]; then
@@ -1184,22 +1309,22 @@ while read -r line || [ "$line" ]; do
COMPILE_METATASK_NAME=${COMPILE_ID}
# 35 day tests
- [[ $TEST_35D == true ]] && rt_35d
+ [[ ${TEST_35D} == true ]] && rt_35d
# Avoid uninitialized RT_SUFFIX/BL_SUFFIX (see definition above)
RT_SUFFIX=${RT_SUFFIX:-""}
BL_SUFFIX=${BL_SUFFIX:-""}
- if [[ $ROCOTO == true && $new_compile == true ]]; then
+ if [[ ${ROCOTO} == true && ${new_compile} == true ]]; then
new_compile=false
in_metatask=true
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
0
EOF
fi
(
- source ${PATHRT}/tests/$TEST_NAME
+ source "${PATHRT}/tests/${TEST_NAME}"
compute_petbounds_and_tasks
@@ -1214,8 +1339,7 @@ EOF
PPN=$((PPN + 1))
fi
- cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
-export JOB_NR=${JOB_NR}
+ cat << EOF > "${RUNDIR_ROOT}/run_test_${TEST_ID}.env"
export TEST_ID=${TEST_ID}
export MACHINE_ID=${MACHINE_ID}
export RT_COMPILER=${RT_COMPILER}
@@ -1239,52 +1363,54 @@ export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG}
export LOG_DIR=${LOG_DIR}
export DEP_RUN=${DEP_RUN}
export skip_check_results=${skip_check_results}
+export RTVERBOSE=${RTVERBOSE}
export delete_rundir=${delete_rundir}
export WLCLK=${WLCLK}
EOF
- if [[ $MACHINE_ID = jet ]]; then
- cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
-export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH
+ if [[ ${MACHINE_ID} = jet ]]; then
+ cat << EOF >> "${RUNDIR_ROOT}/run_test_${TEST_ID}.env"
+export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:${PATH}
export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages
EOF
fi
- if [[ $ROCOTO == true ]]; then
+ if [[ ${ROCOTO} == true ]]; then
rocoto_create_run_task
- elif [[ $ECFLOW == true ]]; then
+ elif [[ ${ECFLOW} == true ]]; then
ecflow_create_run_task
else
- ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1
+ echo "rt.sh: Running test ${TEST_ID} using compile ${COMPILE_ID}"
+ ./run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1
+ echo "rt.sh: Run with test ${TEST_ID} completed."
fi
)
-
continue
else
- die "Unknown command $line"
+ die "Unknown command ${line}"
fi
-done < $TESTS_FILE
+done < "${TESTS_FILE}"
##
## run regression test workflow (currently Rocoto or ecFlow are supported)
##
-if [[ $ROCOTO == true ]]; then
- if [[ $in_metatask == true ]]; then
- echo " " >> $ROCOTO_XML
+if [[ ${ROCOTO} == true ]]; then
+ if [[ ${in_metatask} == true ]]; then
+ echo " " >> "${ROCOTO_XML}"
fi
- echo "" >> $ROCOTO_XML
+ echo "" >> "${ROCOTO_XML}"
# run rocoto workflow until done
rocoto_run
fi
-if [[ $ECFLOW == true ]]; then
- echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+if [[ ${ECFLOW} == true ]]; then
+ echo "endsuite" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
# run ecflow workflow until done
ecflow_run
fi
# IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE
-if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then
+if [[ ${CREATE_BASELINE} == true && ${NEW_BASELINES_FILE} != '' ]]; then
for dir in "${RTPWD}"/*/; do
dir=${dir%*/}
[[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue
@@ -1294,3 +1420,5 @@ fi
## Lets verify all tests were run and that they passed
generate_log
+eval "${set_x}"
+echo "******Regression Testing Script Completed******"
\ No newline at end of file
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index a8fb423529..24f8c8d286 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
set -eu
if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then
@@ -9,23 +10,23 @@ fi
# are not dependent on the caller. Most regression test variables
# (such as ACCNR) are not set until after rt.sh sources this file.
-qsub_id=0
-slurm_id=0
-bsub_id=0
+jobid=0
function compute_petbounds_and_tasks() {
-
+ echo "rt_utils.sh: ${TEST_ID}: Computing PET bounds and tasks."
+ [[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
+ set +x
# each test MUST define ${COMPONENT}_tasks variable for all components it is using
# and MUST NOT define those that it's not using or set the value to 0.
# ATM is a special case since it is running on the sum of compute and io tasks.
# CHM component and mediator are running on ATM compute tasks only.
- if [[ $DATM_CDEPS = 'false' ]]; then
+ if [[ ${DATM_CDEPS} = 'false' ]]; then
if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then
ATM_compute_tasks=$((INPES * JNPES * NTILES))
fi
- if [[ $QUILTING = '.true.' ]]; then
+ if [[ ${QUILTING} = '.true.' ]]; then
ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP))
fi
fi
@@ -79,38 +80,45 @@ function compute_petbounds_and_tasks() {
UFS_tasks=${n}
- echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}"
- echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}"
- echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}"
- echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}"
- echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}"
- echo "MED_petlist_bounds: ${med_petlist_bounds:-}"
- echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}"
- echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}"
- echo "UFS_tasks : ${UFS_tasks:-}"
+ if [[ ${RTVERBOSE} == true ]]; then
+ echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}"
+ echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}"
+ echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}"
+ echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}"
+ echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}"
+ echo "MED_petlist_bounds: ${med_petlist_bounds:-}"
+ echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}"
+ echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}"
+ echo "UFS_tasks : ${UFS_tasks:-}"
+ fi
# TASKS is now set to UFS_TASKS
- export TASKS=$UFS_tasks
+ export TASKS=${UFS_tasks}
+ eval "${set_x}"
}
interrupt_job() {
+ echo "rt_utils.sh: Job ${jobid} interupted"
set -x
- if [[ $SCHEDULER = 'pbs' ]]; then
- echo "run_util.sh: interrupt_job qsub_id = ${qsub_id}"
- qdel ${qsub_id}
- elif [[ $SCHEDULER = 'slurm' ]]; then
- echo "run_util.sh: interrupt_job slurm_id = ${slurm_id}"
- scancel ${slurm_id}
- else
- echo "run_util.sh: interrupt_job unknown SCHEDULER $SCHEDULER"
- fi
+ #echo "run_util.sh: interrupt_job called | Job#: ${jobid}"
+ case ${SCHEDULER} in
+ pbs)
+ qdel "${jobid}"
+ ;;
+ slurm)
+ scancel "${jobid}"
+ ;;
+ *)
+ echo "Unsupported scheduler, job may have not terminated properly."
+ ;;
+ esac
}
submit_and_wait() {
-
+ echo "rt_utils.sh: Submitting job on scheduler: ${SCHEDULER}"
[[ -z $1 ]] && exit 1
- [ -o xtrace ] && set_x='set -x' || set_x='set +x'
+ [[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
set +x
local -r job_card=$1
@@ -119,147 +127,137 @@ submit_and_wait() {
ECFLOW=${ECFLOW:-false}
local test_status='PASS'
+ case ${SCHEDULER} in
+ pbs)
+ qsubout=$( qsub "${job_card}" )
+ re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$'
+ [[ "${qsubout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]}
+ ;;
+ slurm)
+ slurmout=$( sbatch "${job_card}" )
+ re='Submitted batch job ([0-9]+)'
+ [[ "${slurmout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]}
+ ;;
+ *)
+ echo "Unsupported scheduler: ${SCHEDULER}"
+ exit 1
+ ;;
+ esac
- if [[ $SCHEDULER = 'pbs' ]]; then
- qsubout=$( qsub $job_card )
- re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$'
- [[ "${qsubout}" =~ $re ]] && qsub_id=${BASH_REMATCH[1]}
- echo "Job id ${qsub_id}"
- elif [[ $SCHEDULER = 'slurm' ]]; then
- slurmout=$( sbatch $job_card )
- re='Submitted batch job ([0-9]+)'
- [[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]}
- echo "Job id ${slurm_id}"
- else
- echo "Unknown SCHEDULER $SCHEDULER"
- exit 1
- fi
-
+ echo "rt_utils.sh: Submitted Job. ID is ${jobid}."
+ sleep 10
# wait for the job to enter the queue
local count=0
- local job_running=0
- until [[ $job_running -eq 1 ]]
+ local job_running=''
+ echo "rt_utils.sh: Job is waiting to enter the queue..."
+ until [[ ${job_running} == 'true' ]]
do
- echo "Job is waiting to enter the queue"
- [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "waiting to enter the queue"
- if [[ $SCHEDULER = 'pbs' ]]; then
- job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l )
- elif [[ $SCHEDULER = 'slurm' ]]; then
- job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l)
+ case ${SCHEDULER} in
+ pbs)
+ set +e
+ job_info=$( qstat "${jobid}" )
+ set -e
+ ;;
+ slurm)
+ job_info=$( squeue -u "${USER}" -j "${jobid}" )
+ ;;
+ *)
+ ;;
+ esac
+ if grep -q "${jobid}" <<< "${job_info}"; then
+ job_running=true
+ continue
else
- echo "Unknown SCHEDULER $SCHEDULER"
- exit 1
+ job_running=false
fi
+
sleep 5
(( count=count+1 ))
- if [[ $count -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi
+ if [[ ${count} -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi
done
-
- # find jobid
- if [[ $SCHEDULER = 'pbs' ]]; then
- jobid=${qsub_id}
- elif [[ $SCHEDULER = 'slurm' ]]; then
- jobid=${slurm_id}
- else
- echo "Unknown SCHEDULER $SCHEDULER"
- exit 1
- fi
- echo "Job is submitted "
- if [[ ${ECFLOW:-false} == true ]]; then
- ecflow_client --label=job_id "${jobid}"
- ecflow_client --label=job_status "submitted"
- fi
+ echo "rt_utils.sh Job (${jobid}) is now in the queue."
# wait for the job to finish and compare results
- job_running=1
local n=1
- until [[ $job_running -eq 0 ]]
+ until [[ ${job_running} == 'false' ]]
do
-
- if [[ $SCHEDULER = 'pbs' ]]; then
- job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l )
- elif [[ $SCHEDULER = 'slurm' ]]; then
- job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l)
- else
- echo "Unknown SCHEDULER $SCHEDULER"
- exit 1
- fi
-
- if [[ $SCHEDULER = 'pbs' ]]; then
-
- status=$( qstat ${qsub_id} | grep ${qsub_id} | awk '{print $5}' ); status=${status:--}
- if [[ $status = 'Q' ]]; then
- status_label='waiting in a queue'
- elif [[ $status = 'H' ]]; then
- status_label='held in a queue'
- elif [[ $status = 'R' ]]; then
- status_label='running'
- elif [[ $status = 'E' ]] || [[ $status = 'C' ]] || [[ $status = '-' ]]; then
- status_label='finished'
- test_status='DONE'
- exit_status=$( qstat ${jobid} -x -f | grep Exit_status | awk '{print $3}')
- if [[ $exit_status != 0 ]]; then
- test_status='FAIL'
- fi
- else
- status_label='finished'
- fi
-
- elif [[ $SCHEDULER = 'slurm' ]]; then
-
- status=$( squeue -u ${USER} -j ${slurm_id} 2>/dev/null | grep ${slurm_id} | awk '{print $5}' ); status=${status:--}
- if [[ $status = 'R' ]]; then
- status_label='running'
- elif [[ $status = 'PD' ]]; then
- status_label='pending'
- elif [[ $status = 'F' ]]; then
- status_label='failed'
- test_status='FAIL'
- elif [[ $status = 'C' ]]; then
- status_label='finished'
- test_status='DONE'
- else
- echo "Slurm unknown status ${status}. Check sacct ..."
- sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20
- status_label=$( sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 | grep "^${slurm_id}" | grep ${JBNME} | awk '{print $2}' )
- if [[ $status_label = 'FAILED' ]] || [[ $status_label = 'TIMEOUT' ]] || [[ $status_label = 'CANCELLED' ]] ; then
- test_status='FAIL'
- fi
- fi
-
+ case ${SCHEDULER} in
+ pbs)
+ set +e
+ job_info=$( qstat "${jobid}" )
+ set -e
+ ;;
+ slurm)
+ job_info=$( squeue -u "${USER}" -j "${jobid}" )
+ ;;
+ *)
+ ;;
+ esac
+
+
+ if grep -q "${jobid}" <<< "${job_info}"; then
+ job_running=true
else
- echo "Unknown SCHEDULER $SCHEDULER"
- exit 1
-
+ job_running=false
+ continue
fi
- echo "$n min. Job is ${status_label}, status: $status jobid ${jobid}"
- [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "$status_label"
-
- if [[ $test_status = 'FAIL' || $test_status = 'DONE' ]]; then
- break
- fi
+ # Getting the status letter from scheduler info
+ status=$( grep "${jobid}" <<< "${job_info}" )
+ status=$( awk '{print $5}' <<< "${status}" )
+
+ case ${status} in
+ #waiting cases
+ #pbs: Q
+ #Slurm: (old: PD, new: PENDING)
+ Q|PD|PENDING)
+ status_label='Job waiting to start'
+ ;;
+ #running cases
+ #pbs: R
+ #slurm: (old: R, new: RUNNING)
+ R|RUNNING)
+ status_label='Job running'
+ ;;
+ #held cases
+ #pbs only: H
+ H)
+ status_label='Job being held'
+ echo "rt_utils.sh: *** WARNING ***: Job in a HELD state. Might want to stop manually."
+ ;;
+ #fail/completed cases
+ #pbs: E
+ #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED
+ E|F|TO|CA|FAILED|TIMEOUT|CANCELLED)
+ echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!"
+ job_running=false #Trip the loop to end with these status flags
+ interrupt_job
+ exit 1
+ ;;
+ #completed
+ #pbs only: C
+ C)
+ status_label='Completed'
+ ;;
+ *)
+ status_label="Unknown"
+ echo "rt_utils.sh: *** WARNING ***: Job status unsupported: ${status}"
+ echo "rt_utils.sh: *** WARNING ***: Status might be non-terminating, please manually stop if needed"
+ ;;
+ esac
+
+ echo "${n} min. ${SCHEDULER^} Job ${jobid} Status: ${status_label} (${status})"
(( n=n+1 ))
sleep 60 & wait $!
done
- if [[ $test_status = 'FAIL' ]]; then
- echo "Job FAIL" >> ${RT_LOG}
- echo;echo;echo >> ${RT_LOG}
- echo "Job FAIL"
-
- if [[ $ROCOTO == true || $ECFLOW == true ]]; then
- exit 1
- fi
- fi
-
- eval "$set_x"
+ eval "${set_x}"
}
check_results() {
-
- [ -o xtrace ] && set_x='set -x' || set_x='set +x'
+ echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}"
+ [[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
set +x
ROCOTO=${ROCOTO:-false}
@@ -270,10 +268,12 @@ check_results() {
# Give one minute for data to show up on file system
#sleep 60
- echo > ${RT_LOG}
- echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" >> ${RT_LOG}
- echo "working dir = ${RUNDIR}" >> ${RT_LOG}
- echo "Checking test ${TEST_ID} results ...." >> ${RT_LOG}
+ {
+ echo
+ echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}"
+ echo "working dir = ${RUNDIR}"
+ echo "Checking test ${TEST_ID} results ...."
+ } > "${RT_LOG}"
echo
echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}"
echo "working dir = ${RUNDIR}"
@@ -284,55 +284,55 @@ check_results() {
# --- regression test comparison
#
for i in ${LIST_FILES} ; do
- printf %s " Comparing " $i " ....." >> ${RT_LOG}
- printf %s " Comparing " $i " ....."
+ printf %s " Comparing ${i} ....." >> "${RT_LOG}"
+ printf %s " Comparing ${i} ....."
- if [[ ! -f ${RUNDIR}/$i ]] ; then
+ if [[ ! -f ${RUNDIR}/${i} ]] ; then
- echo ".......MISSING file" >> ${RT_LOG}
+ echo ".......MISSING file" >> "${RT_LOG}"
echo ".......MISSING file"
test_status='FAIL'
- elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ]] ; then
+ elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then
- echo ".......MISSING baseline" >> ${RT_LOG}
+ echo ".......MISSING baseline" >> "${RT_LOG}"
echo ".......MISSING baseline"
test_status='FAIL'
else
- if [[ ${i##*.} == 'nc' ]] ; then
- if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then
- printf "USING NCCMP.." >> ${RT_LOG}
+ if [[ ${i##*.} == nc* ]] ; then
+ if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then
+ printf "USING NCCMP.." >> "${RT_LOG}"
printf "USING NCCMP.."
- if [[ $CMP_DATAONLY == false ]]; then
- nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$?
+ if [[ ${CMP_DATAONLY} == false ]]; then
+ nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$?
else
- nccmp -d -S -q -f -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$?
+ nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$?
fi
- if [[ $d -ne 0 && $d -ne 1 ]]; then
- printf "....ERROR" >> ${RT_LOG}
+ if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then
+ printf "....ERROR" >> "${RT_LOG}"
printf "....ERROR"
test_status='FAIL'
fi
fi
else
- printf "USING CMP.." >> ${RT_LOG}
+ printf "USING CMP.." >> "${RT_LOG}"
printf "USING CMP.."
- cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$?
- if [[ $d -eq 2 ]]; then
- printf "....ERROR" >> ${RT_LOG}
+ cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$?
+ if [[ ${d} -eq 2 ]]; then
+ printf "....ERROR" >> "${RT_LOG}"
printf "....ERROR"
test_status='FAIL'
fi
fi
- if [[ $d -ne 0 ]]; then
- echo "....NOT IDENTICAL" >> ${RT_LOG}
+ if [[ ${d} -ne 0 ]]; then
+ echo "....NOT IDENTICAL" >> "${RT_LOG}"
echo "....NOT IDENTICAL"
test_status='FAIL'
else
- echo "....OK" >> ${RT_LOG}
+ echo "....OK" >> "${RT_LOG}"
echo "....OK"
fi
@@ -345,72 +345,74 @@ check_results() {
# --- create baselines
#
echo;echo "Moving baseline ${TEST_ID} files ...."
- echo;echo "Moving baseline ${TEST_ID} files ...." >> ${RT_LOG}
+ echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}"
for i in ${LIST_FILES} ; do
- printf %s " Moving " $i " ....."
- printf %s " Moving " $i " ....." >> ${RT_LOG}
- if [[ -f ${RUNDIR}/$i ]] ; then
- mkdir -p ${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname ${i})
- cp ${RUNDIR}/${i} ${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}
- echo "....OK" >>${RT_LOG}
+ printf %s " Moving ${i} ....."
+ printf %s " Moving ${i} ....." >> "${RT_LOG}"
+ if [[ -f ${RUNDIR}/${i} ]] ; then
+ mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")"
+ cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}"
+ echo "....OK" >> "${RT_LOG}"
echo "....OK"
else
- echo "....NOT OK. Missing " ${RUNDIR}/$i >>${RT_LOG}
- echo "....NOT OK. Missing " ${RUNDIR}/$i
+ echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}"
+ echo "....NOT OK. Missing ${RUNDIR}/${i}"
test_status='FAIL'
fi
done
fi
- echo >> ${RT_LOG}
- grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG}
- grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG}
- echo >> ${RT_LOG}
+ {
+ echo
+ grep "The total amount of wall time" "${RUNDIR}/out"
+ grep "The maximum resident set size" "${RUNDIR}/out"
+ echo
+ } >> "${RT_LOG}"
TRIES=''
- if [[ $ECFLOW == true ]]; then
- if [[ $ECF_TRYNO -gt 1 ]]; then
- TRIES=" Tries: $ECF_TRYNO"
+ if [[ ${ECFLOW} == true ]]; then
+ if [[ ${ECF_TRYNO} -gt 1 ]]; then
+ TRIES=" Tries: ${ECF_TRYNO}"
fi
fi
- echo "Test ${TEST_ID} ${test_status}${TRIES}" >> ${RT_LOG}
- echo >> ${RT_LOG}
+ echo "Test ${TEST_ID} ${test_status}${TRIES}" >> "${RT_LOG}"
+ echo >> "${RT_LOG}"
echo "Test ${TEST_ID} ${test_status}${TRIES}"
echo
- if [[ $test_status = 'FAIL' ]]; then
- echo "${TEST_ID} failed in check_result" >> $PATHRT/fail_test_${TEST_ID}
+ if [[ ${test_status} = 'FAIL' ]]; then
+ echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}"
- if [[ $ROCOTO = true || $ECFLOW == true ]]; then
+ if [[ ${ROCOTO} = true || ${ECFLOW} == true ]]; then
exit 1
fi
fi
- eval "$set_x"
+ eval "${set_x}"
}
kill_job() {
-
+ echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..."
[[ -z $1 ]] && exit 1
local -r jobid=$1
- if [[ $SCHEDULER = 'pbs' ]]; then
- qdel ${jobid}
- elif [[ $SCHEDULER = 'slurm' ]]; then
- scancel ${jobid}
+ if [[ ${SCHEDULER} = 'pbs' ]]; then
+ qdel "${jobid}"
+ elif [[ ${SCHEDULER} = 'slurm' ]]; then
+ scancel "${jobid}"
fi
}
rocoto_create_compile_task() {
-
- new_compile=true
- if [[ $in_metatask == true ]]; then
+ echo "rt_utils.sh: ${COMPILE_ID}: Creating ROCOTO compile task."
+ #new_compile=true
+ if [[ ${in_metatask} == true ]]; then
in_metatask=false
- echo " " >> $ROCOTO_XML
+ echo " " >> "${ROCOTO_XML}"
fi
NATIVE=""
@@ -431,12 +433,12 @@ rocoto_create_compile_task() {
if [[ ${MACHINE_ID} == s4 ]]; then
BUILD_WALLTIME="01:00:00"
fi
- if [[ $MACHINE_ID == gaea ]]; then
+ if [[ ${MACHINE_ID} == gaea ]]; then
BUILD_WALLTIME="01:00:00"
fi
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
&PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log
compile_${COMPILE_ID}
@@ -444,18 +446,18 @@ rocoto_create_compile_task() {
${COMPILE_QUEUE}
EOF
- if [[ "$MACHINE_ID" == gaea ]] ; then
- cat << EOF >> $ROCOTO_XML
+ if [[ "${MACHINE_ID}" == gaea ]] ; then
+ cat << EOF >> "${ROCOTO_XML}"
--clusters=es
eslogin_c5
EOF
elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
${PARTITION}
EOF
fi
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
${BUILD_CORES}
${BUILD_WALLTIME}
&RUNDIR_ROOT;/compile_${COMPILE_ID}.log
@@ -465,42 +467,43 @@ EOF
}
rocoto_create_run_task() {
-
- if [[ $DEP_RUN != '' ]]; then
+ echo "rt_utils.sh: ${TEST_ID}: Creating ROCOTO run task."
+ if [[ ${DEP_RUN} != '' ]]; then
DEP_STRING=" "
else
DEP_STRING=""
fi
- CORES=$(( ${TASKS} * ${THRD} ))
+ CORES=$((TASKS*THRD))
if (( TPN > CORES )); then
- TPN=$CORES
+ TPN=${CORES}
fi
NATIVE=""
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
- $DEP_STRING
+ ${DEP_STRING}
&PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log
${TEST_ID}${RT_SUFFIX}
${ACCNR}
- ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE}
+ ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}}
EOF
- if [[ "$MACHINE_ID" == gaea ]] ; then
- cat << EOF >> $ROCOTO_XML
+ if [[ "${MACHINE_ID}" == gaea ]] ; then
+ cat << EOF >> "${ROCOTO_XML}"
--clusters=${PARTITION}
--partition=batch
EOF
+
elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
${QUEUE}
${PARTITION}
EOF
fi
- cat << EOF >> $ROCOTO_XML
+ cat << EOF >> "${ROCOTO_XML}"
${NODES}:ppn=${TPN}
00:${WLCLK}:00
&RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log
@@ -511,23 +514,32 @@ EOF
}
rocoto_kill() {
- for jobid in $( $ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB | grep 197001010000 | grep -E 'QUEUED|RUNNING' | awk -F" " '{print $3}' ); do
- kill_job ${jobid}
+ echo "rt_utils.sh: Killing ROCOTO Workflow..."
+ job_id_in=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" )
+ job_id_in=$(grep 197001010000 <<< "${job_id_in}" )
+ job_id_in=$(grep -E 'QUEUED|RUNNING' <<< "${job_id_in}" )
+ job_id_in=$(awk -F" " '{print $3}' <<< "${job_id_in}" )
+ for jobid in ${job_id_in}; do
+ kill_job "${jobid}"
done
}
rocoto_step() {
+ echo "rt_utils.sh: Runnung one iteration of rocotorun and rocotostat..."
set -e
echo "Unknown" > rocoto_workflow.state
# Run one iteration of rocotorun and rocotostat.
- $ROCOTORUN -v 10 -w $ROCOTO_XML -d $ROCOTO_DB
+ ${ROCOTORUN} -v 10 -w "${ROCOTO_XML}" -d "${ROCOTO_DB}"
sleep 1
# Is it done?
- state=$($ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB -s | grep 197001010000 | awk -F" " '{print $2}')
- echo "$state" > $ROCOTO_STATE
+ state=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" -s )
+ state=$( grep 197001010000 <<< "${state}" )
+ state=$( awk -F" " '{print $2}' <<< "${state}" )
+ echo "${state}" > "${ROCOTO_STATE}"
}
rocoto_run() {
+ echo "rt_utils.sh: Running ROCOTO workflow"
# Run the rocoto workflow until it is complete
local naptime=60
local step_attempts=0
@@ -537,18 +549,18 @@ rocoto_run() {
local max_time=3600 # seconds to wait for Rocoto to start working again
local result=0
state="Active"
- while [[ $state != "Done" ]]; do
+ while [[ ${state} != "Done" ]]; do
# Run one iteration of rocotorun and rocotostat. Use an
# exponential backoff algorithm to handle temporary system
# failures breaking Rocoto.
start_time=$( env TZ=UTC date +%s )
- for step_attempts in $( seq 1 "$max_step_attempts" ) ; do
+ for step_attempts in $( seq 1 "${max_step_attempts}" ) ; do
now_time=$( env TZ=UTC date +%s )
set +e
( rocoto_step )
result=$?
- state=$( cat $ROCOTO_STATE )
+ state=$( cat "${ROCOTO_STATE}" )
set -e
if [[ "${state:-Unknown}" == Done ]] ; then
@@ -556,131 +568,194 @@ rocoto_run() {
echo "Rocoto workflow has completed."
set -x
return 0
- elif [[ $result == 0 ]] ; then
+ elif [[ ${result} == 0 ]] ; then
break # rocoto_step succeeded
elif (( now_time-start_time > max_time || step_attempts >= max_step_attempts )) ; then
set +x
- echo "Rocoto commands have failed $step_attempts times, for $(( (now_time-start_time+30)/60 )) minutes."
- echo "There may be something wrong with the $( hostname ) node or the batch system."
+ hostnamein=$(hostname)
+ echo "Rocoto commands have failed ${step_attempts} times, for $(( (now_time-start_time+30)/60 )) minutes."
+ echo "There may be something wrong with the ${hostnamein} node or the batch system."
echo "I'm giving up. Sorry."
set -x
return 2
fi
sleep $(( naptime * 2**((step_attempts-1)%4) * RANDOM/32767 ))
done
- sleep $naptime
+ sleep "${naptime}"
done
}
ecflow_create_compile_task() {
-
- new_compile=true
+ echo "rt_utils.sh: ${COMPILE_ID}: Creating ECFLOW compile task"
+ export new_compile=true
- cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf
+ cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf"
%include
-$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_ID > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1 &
+${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 &
%include
EOF
-
- echo " task compile_${COMPILE_ID}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " label build_options '${MAKE_OPT}'" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " inlimit max_builds" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ {
+ echo " task compile_${COMPILE_ID}"
+ echo " label build_options '${MAKE_OPT}'"
+ echo " label job_id ''"
+ echo " label job_status ''"
+ echo " inlimit max_builds"
+ } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
}
ecflow_create_run_task() {
-
- cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf
+ echo "rt_utils.sh: ${TEST_ID}: Creating ECFLOW run task"
+ cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf"
%include
-$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1 &
+${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 &
%include
EOF
-
- echo " task ${TEST_ID}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- if [[ $DEP_RUN != '' ]]; then
- echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ {
+ echo " task ${TEST_ID}${RT_SUFFIX}"
+ echo " label job_id ''"
+ echo " label job_status ''"
+ echo " inlimit max_jobs"
+ } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
+ if [[ ${DEP_RUN} != '' ]]; then
+ echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
else
- echo " trigger compile_${COMPILE_ID} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def
+ echo " trigger compile_${COMPILE_ID} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def"
fi
+
}
ecflow_run() {
+ echo "rt_utils.sh: Starting ECFLOW run"
+ # NOTE: ECFLOW IS NOT SAFE TO RUN WITH set -e, PLEASE AVOID
+ #ECF_HOST="${ECF_HOST:-${HOSTNAME}}"
+
+
+ # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an
+ # explicit ecflow node
+ if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then
+ readarray -t ECFHOSTLIST < "${ECF_HOSTFILE}"
+ for ECF_HOST in "${ECFHOSTLIST[@]}"
+ do
+ if ssh -q "${ECF_HOST}" "exit"; then
+ export ECF_HOST
+ break
+ else
+ ECF_HOST=''
+ fi
+ done
+ elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then
+ module load ecflow
+ fi
+ if [[ -z ${ECF_HOST} || -z ${ECF_PORT} ]]; then
+ echo "ERROR: ECF_HOST or ECF_PORT are not set, and rt.sh cannot continue with ECFLOW"
+ exit 1
+ else
+ echo "ECF_HOST: ${ECF_HOST}, ECF_PORT: ${ECF_PORT}"
+ export ECF_HOST
+ export ECF_PORT
+ fi
- ECF_HOST="${ECF_HOST:-$HOSTNAME}"
-
+ # Start the ecflow_server
set +e
- ecflow_client --ping --host=${ECF_HOST} --port=${ECF_PORT}
+ ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}"
not_running=$?
- if [[ $not_running -eq 1 ]]; then
+ set -e
+
+ if [[ ${not_running} -eq 1 ]]; then
echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}"
+
if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then
- if [[ "${HOST::1}" == "a" ]]; then
- export ECF_HOST=aecflow01
- elif [[ "${HOST::1}" == "c" ]]; then
- export ECF_HOST=cdecflow01
- elif [[ "${HOST::1}" == "d" ]]; then
- export ECF_HOST=ddecflow01
- fi
- MYCOMM="bash -l -c \"module load ecflow && ecflow_start.sh -p ${ECF_PORT} \""
- ssh $ECF_HOST "${MYCOMM}"
+ #shellcheck disable=SC2029
+ ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\""
elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then
- module load ecflow
- echo "On ${MACHINE_ID}, start ecFlow server on dedicated node ${ECF_HOST}"
- MYCOMM="bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\""
- ssh $ECF_HOST "${MYCOMM}"
+ #shellcheck disable=SC2029
+ ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\""
else
- ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server
+ ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server"
+ fi
+ echo "Since this script is starting the ecflow_server, we will stop it at the end"
+ export STOP_ECFLOW_AT_END=true
+ # Try pinging ecflow server now, and erroring out if not there.
+ set +e
+ ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}"
+ not_running=$?
+ set -e
+
+ if [[ ${not_running} -eq 1 ]]; then
+ echo "ERROR: Failure to start ecflow, exiting..."
+ exit 1
fi
else
echo "ecflow_server is already running on ${ECF_HOST}:${ECF_PORT}"
fi
- set -e
-
+
ECFLOW_RUNNING=true
-
- export ECF_PORT
- export ECF_HOST
-
- ecflow_client --load=${ECFLOW_RUN}/${ECFLOW_SUITE}.def
- ecflow_client --begin=${ECFLOW_SUITE}
- ecflow_client --restart
+ set +e
+ ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}"
+ ecflow_client --begin="${ECFLOW_SUITE}" --host="${ECF_HOST}" --port="${ECF_PORT}"
+ ecflow_client --restart --host="${ECF_HOST}" --port="${ECF_PORT}"
+ set -e
active_tasks=1
- while [[ $active_tasks -ne 0 ]]
+ sleep 10
+ max_active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" )
+ max_active_tasks=$( grep "task " <<< "${max_active_tasks}" )
+ max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" )
+ while [[ "${active_tasks}" -ne 0 ]]
do
sleep 10 & wait $!
- active_tasks=$( ecflow_client --get_state /${ECFLOW_SUITE} | grep "task " | grep -E 'state:active|state:submitted|state:queued' | wc -l )
- echo "ecflow tasks remaining: ${active_tasks}"
- ${PATHRT}/abort_dep_tasks.py
+ set +e
+ active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" )
+ active_tasks=$( grep "task " <<< "${active_tasks}" )
+ active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${active_tasks}" )
+ set -e
+ echo "ECFLOW Tasks Remaining: ${active_tasks}/${max_active_tasks}"
+ "${PATHRT}/abort_dep_tasks.py"
done
+
sleep 65 # wait one ECF_INTERVAL plus 5 seconds
- ecflow_client --delete=yes /${ECFLOW_SUITE}
+ set +e
+ ecflow_client --delete=force yes "/${ECFLOW_SUITE}"
+ set -e
sleep 5
}
ecflow_kill() {
+ echo "rt_utils.sh: Killing ECFLOW Workflow..."
[[ ${ECFLOW_RUNNING:-false} == true ]] || return
set +e
- ecflow_client --suspend /${ECFLOW_SUITE}
- ecflow_client --kill /${ECFLOW_SUITE}
+ ecflow_client --suspend "/${ECFLOW_SUITE}"
+ ecflow_client --kill "/${ECFLOW_SUITE}"
sleep 20
- ecflow_client --delete=force yes /${ECFLOW_SUITE}
+ ecflow_client --delete=force yes "/${ECFLOW_SUITE}"
+ set -e
}
ecflow_stop() {
- [[ ${ECFLOW_RUNNING:-false} == true ]] || return
- set +e
- SUITES=$( ecflow_client --get | grep "^suite" )
- echo "SUITES=${SUITES}"
- if [ -z "${SUITES}" ]; then
- ecflow_client --halt=yes
- ecflow_client --check_pt
- ecflow_client --terminate=yes
- fi
+ echo "rt_utils.sh: Stopping ECFLOW Workflow..."
+ [[ ${ECFLOW_RUNNING:-false} == true ]] || return
+ set +e
+ SUITES=$( ecflow_client --get )
+ SUITES=$( grep "^suite" <<< "${SUITES}" )
+ echo "SUITES=${SUITES}"
+ if [[ -z "${SUITES}" ]]; then
+ ecflow_client --halt=yes
+ ecflow_client --check_pt
+ ecflow_client --terminate=yes
+ fi
+ if [[ ${STOP_ECFLOW_AT_END} == true ]]; then
+ echo "rt_utils.sh: Stopping ECFLOW Server..."
+ case ${MACHINE_ID} in
+ wcoss2|acorn|hera|jet)
+ #shellcheck disable=SC2029
+ ssh "${ECF_HOST}" "bash -l -c \"${ECFLOW_STOP} -p ${ECF_PORT}\""
+ ;;
+ *)
+ ${ECFLOW_STOP} -p "${ECF_PORT}"
+ ;;
+ esac
+ fi
+ set -e
}
diff --git a/tests/run_compile.sh b/tests/run_compile.sh
index 795353a32a..a9bf0070b6 100755
--- a/tests/run_compile.sh
+++ b/tests/run_compile.sh
@@ -9,19 +9,19 @@ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT
trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM
cleanup() {
- [[ $ROCOTO = 'false' ]] && interrupt_job
+ [[ ${ROCOTO} = 'false' ]] && interrupt_job
trap 0
exit
}
write_fail_test() {
- echo "compile_${COMPILE_ID} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_ID}
+ echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}"
exit 1
}
remove_fail_test() {
- echo "Removing test failure flag file for compile_${COMPILE_ID}"
- rm -f $PATHRT/fail_compile_${COMPILE_ID}
+ echo "Removing test failure flag file for ${JBNME}"
+ rm -f "${PATHRT}/fail_${JBNME}"
}
if [[ $# != 4 ]]; then
@@ -34,76 +34,71 @@ export RUNDIR_ROOT=$2
export MAKE_OPT=$3
export COMPILE_ID=$4
-cd ${PATHRT}
+export JBNME="compile_${COMPILE_ID}"
+
+cd "${PATHRT}"
remove_fail_test
-[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
+[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env"
source default_vars.sh
-[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env
+[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env"
-export JBNME="compile_${COMPILE_ID}"
-export RUNDIR=${RUNDIR_ROOT}/compile_${COMPILE_ID}
-echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
+export RUNDIR=${RUNDIR_ROOT}/${JBNME}
+date_s=$( date +%s )
+echo -n "${JBNME}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt"
-export RT_LOG=${LOG_DIR}/compile_${COMPILE_ID}.log
+export RT_LOG=${LOG_DIR}/${JBNME}.log
source rt_utils.sh
source atparse.bash
-rm -rf ${RUNDIR}
-mkdir -p ${RUNDIR}
-cd $RUNDIR
+rm -rf "${RUNDIR}"
+mkdir -p "${RUNDIR}"
+cd "${RUNDIR}"
-if [[ $SCHEDULER = 'pbs' ]]; then
- if [[ -e $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} > job_card
+if [[ ${SCHEDULER} = 'pbs' ]]; then
+ if [[ -e ${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then
+ atparse < "${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID}" > job_card
else
echo "Looking for fv3_conf/compile_qsub.IN_${MACHINE_ID} but it is not found. Exiting"
exit 1
fi
-elif [[ $SCHEDULER = 'slurm' ]]; then
- if [[ -e $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} > job_card
+elif [[ ${SCHEDULER} = 'slurm' ]]; then
+ if [[ -e ${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then
+ atparse < "${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID}" > job_card
else
echo "Looking for fv3_conf/compile_slurm.IN_${MACHINE_ID} but it is not found. Exiting"
exit 1
fi
-elif [[ $SCHEDULER = 'lsf' ]]; then
- if [[ -e $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} > job_card
- else
- echo "Looking for fv3_conf/compile_bsub.IN_${MACHINE_ID} but it is not found. Exiting"
- exit 1
- fi
fi
################################################################################
# Submit compile job
################################################################################
-if [[ $ROCOTO = 'false' ]]; then
+if [[ ${ROCOTO} = 'false' ]]; then
submit_and_wait job_card
else
chmod u+x job_card
- ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out
+ ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out
# The above shell redirection copies stdout to "out" and stderr to "err"
# while still sending them to stdout and stderr. It does this without
# relying on bash-specific extensions or non-standard OS features.
fi
+#ls -l "${PATHTR}/tests/fv3_${COMPILE_ID}.exe"
-ls -l ${PATHTR}/tests/fv3_${COMPILE_ID}.exe
-
-cp ${RUNDIR}/compile_*_time.log ${LOG_DIR}
-cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
+cp "${RUNDIR}/${JBNME}_time.log" "${LOG_DIR}"
+cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt"
remove_fail_test
################################################################################
# End compile job
################################################################################
+date_s=$( date +%s )
+echo " ${date_s}, 1" >> "${LOG_DIR}/${JBNME}_timestamp.txt"
-echo " $( date +%s ), 1" >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt
-
-elapsed=$SECONDS
-echo "Elapsed time $elapsed seconds. Compile ${COMPILE_ID}"
+elapsed=${SECONDS}
+echo "run_compile.sh: Compile ${COMPILE_ID} Completed."
+echo "run_compile.sh: Compile ${COMPILE_ID} Elapsed time ${elapsed} seconds."
diff --git a/tests/run_test.sh b/tests/run_test.sh
index d4ea64068c..4735a08c4d 100755
--- a/tests/run_test.sh
+++ b/tests/run_test.sh
@@ -9,19 +9,19 @@ trap 'echo "run_test.sh interrupted PID=$$"; cleanup' INT
trap 'echo "run_test.sh terminated PID=$$"; cleanup' TERM
cleanup() {
- [[ $ROCOTO = 'false' ]] && interrupt_job
+ [[ ${ROCOTO} = 'false' ]] && interrupt_job
trap 0
exit
}
write_fail_test() {
- echo "${TEST_ID} failed in run_test" >> $PATHRT/fail_test_${TEST_ID}
+ echo "${TEST_ID} failed in run_test" >> "${PATHRT}/fail_test_${TEST_ID}"
exit 1
}
remove_fail_test() {
echo "Removing test failure flag file for ${TEST_ID}"
- rm -f $PATHRT/fail_test_${TEST_ID}
+ rm -f "${PATHRT}/fail_test_${TEST_ID}"
}
if [[ $# != 5 ]]; then
@@ -41,16 +41,16 @@ echo "TEST_NAME: ${TEST_NAME}"
echo "TEST_ID: ${TEST_ID}"
echo "COMPILE_ID: ${COMPILE_ID}"
-cd ${PATHRT}
+cd "${PATHRT}"
unset MODEL_CONFIGURE
unset UFS_CONFIGURE
-[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
+[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env"
source default_vars.sh
-[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env
-source tests/$TEST_NAME
+[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env"
+source "tests/${TEST_NAME}"
remove_fail_test
@@ -63,9 +63,10 @@ export INPUT_DIR=${CNTL_DIR}
export RUNDIR=${RUNDIR_ROOT}/${TEST_ID}${RT_SUFFIX}
export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX}
-export JBNME=$(basename $RUNDIR_ROOT)_${TEST_ID}
-
-echo -n "${TEST_ID}, $( date +%s )," > ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
+JBNME="run_${TEST_ID}"
+export JBNME
+date_s=$( date +%s )
+echo -n "${TEST_ID}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt"
export RT_LOG=${LOG_DIR}/rt_${TEST_ID}${RT_SUFFIX}.log
echo "Test ${TEST_ID} ${TEST_DESCR}"
@@ -73,58 +74,62 @@ echo "Test ${TEST_ID} ${TEST_DESCR}"
source rt_utils.sh
source atparse.bash
-rm -rf ${RUNDIR}
-mkdir -p ${RUNDIR}
-cd $RUNDIR
+rm -rf "${RUNDIR}"
+mkdir -p "${RUNDIR}"
+cd "${RUNDIR}"
###############################################################################
# Make configure and run files
###############################################################################
# FV3 executable:
-cp ${PATHRT}/fv3_${COMPILE_ID}.exe fv3.exe
+cp "${PATHRT}/fv3_${COMPILE_ID}.exe" "fv3.exe"
# modulefile for FV3 prerequisites:
mkdir -p modulefiles
-if [[ $MACHINE_ID == linux ]]; then
- cp ${PATHRT}/modules.fv3_${COMPILE_ID} ./modulefiles/modules.fv3
+if [[ ${MACHINE_ID} == linux ]]; then
+ cp "${PATHRT}/modules.fv3_${COMPILE_ID}" "./modulefiles/modules.fv3"
else
- cp ${PATHRT}/modules.fv3_${COMPILE_ID}.lua ./modulefiles/modules.fv3.lua
+ cp "${PATHRT}/modules.fv3_${COMPILE_ID}.lua" "./modulefiles/modules.fv3.lua"
fi
-cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/.
+cp "${PATHTR}/modulefiles/ufs_common.lua" "./modulefiles/."
# Get the shell file that loads the "module" command and purges modules:
-cp ${PATHRT}/module-setup.sh module-setup.sh
+cp "${PATHRT}/module-setup.sh" "module-setup.sh"
-# load nccmp module
-if [[ " s4 hera orion hercules gaea jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then
- if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then
+case ${MACHINE_ID} in
+ wcoss2|acorn)
module load intel/19.1.3.304 netcdf/4.7.4
module load nccmp
- elif [[ " s4 " =~ " ${MACHINE_ID} " ]] ; then
+ ;;
+ s4)
module use /data/prod/jedi/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core
module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0
module load miniconda/3.9.12
module load nccmp/1.9.0.1
- elif [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then
+ ;;
+ stampede|expanse|noaacloud)
+ echo "No special nccmp load necessary"
+ ;;
+ gaea)
module use modulefiles
module load modules.fv3
- if [[ " gaea " =~ " ${MACHINE_ID} " ]]; then
- module load gcc/12.2.0
- fi
- else
+ module load gcc/12.2.0
+ ;;
+ derecho)
module load nccmp
- fi
-fi
-
-SRCD="${PATHTR}"
-RUND="${RUNDIR}"
+ ;;
+ *)
+ module use modulefiles
+ module load modules.fv3
+ ;;
+esac
# FV3_RUN could have multiple entry seperated by space
-if [ ! -z "$FV3_RUN" ]; then
+if [[ -n "${FV3_RUN}" ]]; then
for i in ${FV3_RUN}
do
- atparse < ${PATHRT}/fv3_conf/${i} >> fv3_run
+ atparse < "${PATHRT}/fv3_conf/${i}" >> fv3_run
done
else
echo "No FV3_RUN set in test file"
@@ -140,14 +145,14 @@ else
export HIDE_UGWPV1='!'
fi
-if [[ $DATM_CDEPS = 'true' ]] || [[ $FV3 = 'true' ]] || [[ $S2S = 'true' ]]; then
- if [[ $HAFS = 'false' ]] || [[ $FV3 = 'true' && $HAFS = 'true' ]]; then
- atparse < ${PATHRT}/parm/${INPUT_NML:-input.nml.IN} > input.nml
+if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${FV3} = 'true' ]] || [[ ${S2S} = 'true' ]]; then
+ if [[ ${HAFS} = 'false' ]] || [[ ${FV3} = 'true' && ${HAFS} = 'true' ]]; then
+ atparse < "${PATHRT}/parm/${INPUT_NML:-input.nml.IN}" > input.nml
fi
fi
if [[ -f ${PATHRT}/parm/${MODEL_CONFIGURE} ]]; then
- atparse < ${PATHRT}/parm/${MODEL_CONFIGURE} > model_configure
+ atparse < "${PATHRT}/parm/${MODEL_CONFIGURE}" > model_configure
else
echo "Cannot find file ${MODEL_CONFIGURE} set by variable MODEL_CONFIGURE"
exit 1
@@ -156,144 +161,159 @@ fi
compute_petbounds_and_tasks
if [[ -f ${PATHRT}/parm/${UFS_CONFIGURE} ]]; then
- atparse < ${PATHRT}/parm/${UFS_CONFIGURE} > ufs.configure
+ atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure
else
echo "Cannot find file ${UFS_CONFIGURE} set by variable UFS_CONFIGURE"
exit 1
fi
-if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then
- INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02
- NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02
- K_SPLIT_NEST=$K_SPLIT_NEST02; N_SPLIT_NEST=$N_SPLIT_NEST02
- atparse < ${PATHRT}/parm/${INPUT_NEST02_NML} > input_nest02.nml
+if [[ "Q${INPUT_NEST02_NML:-}" != Q ]]; then
+ export INPES_NEST=${INPES_NEST02:-}
+ export JNPES_NEST=${JNPES_NEST02:-}
+ export NPX_NEST=${NPX_NEST02:-}
+ export NPY_NEST=${NPY_NEST02:-}
+ export K_SPLIT_NEST=${K_SPLIT_NEST02:-}
+ export N_SPLIT_NEST=${N_SPLIT_NEST02:-}
+ atparse < "${PATHRT}/parm/${INPUT_NEST02_NML}" > input_nest02.nml
else
sed -i -e "//,/<\/output_grid_02>/d" model_configure
fi
-if [[ "Q${INPUT_NEST03_NML:-}" != Q ]] ; then
- INPES_NEST=$INPES_NEST03; JNPES_NEST=$JNPES_NEST03
- NPX_NEST=$NPX_NEST03; NPY_NEST=$NPY_NEST03
- K_SPLIT_NEST=$K_SPLIT_NEST03; N_SPLIT_NEST=$N_SPLIT_NEST03
- atparse < ${PATHRT}/parm/${INPUT_NEST03_NML} > input_nest03.nml
+if [[ "Q${INPUT_NEST03_NML:-}" != Q ]]; then
+ export INPES_NEST=${INPES_NEST03:-}
+ export JNPES_NEST=${JNPES_NEST03:-}
+ export NPX_NEST=${NPX_NEST03:-}
+ export NPY_NEST=${NPY_NEST03:-}
+ export K_SPLIT_NEST=${K_SPLIT_NEST03:-}
+ export N_SPLIT_NEST=${N_SPLIT_NEST03:-}
+ atparse < "${PATHRT}/parm/${INPUT_NEST03_NML}" > input_nest03.nml
else
sed -i -e "//,/<\/output_grid_03>/d" model_configure
fi
-if [[ "Q${INPUT_NEST04_NML:-}" != Q ]] ; then
- INPES_NEST=$INPES_NEST04; JNPES_NEST=$JNPES_NEST04
- NPX_NEST=$NPX_NEST04; NPY_NEST=$NPY_NEST04
- K_SPLIT_NEST=$K_SPLIT_NEST04; N_SPLIT_NEST=$N_SPLIT_NEST04
- atparse < ${PATHRT}/parm/${INPUT_NEST04_NML} > input_nest04.nml
+if [[ "Q${INPUT_NEST04_NML:-}" != Q ]]; then
+ export INPES_NEST=${INPES_NEST04:-}
+ export JNPES_NEST=${JNPES_NEST04:-}
+ export NPX_NEST=${NPX_NEST04:-}
+ export NPY_NEST=${NPY_NEST04:-}
+ export K_SPLIT_NEST=${K_SPLIT_NEST04:-}
+ export N_SPLIT_NEST=${N_SPLIT_NEST04:-}
+ atparse < "${PATHRT}/parm/${INPUT_NEST04_NML}" > input_nest04.nml
else
sed -i -e "//,/<\/output_grid_04>/d" model_configure
fi
-if [[ "Q${INPUT_NEST05_NML:-}" != Q ]] ; then
- INPES_NEST=$INPES_NEST05; JNPES_NEST=$JNPES_NEST05
- NPX_NEST=$NPX_NEST05; NPY_NEST=$NPY_NEST05
- K_SPLIT_NEST=$K_SPLIT_NEST05; N_SPLIT_NEST=$N_SPLIT_NEST05
- atparse < ${PATHRT}/parm/${INPUT_NEST05_NML} > input_nest05.nml
+if [[ "Q${INPUT_NEST05_NML:-}" != Q ]]; then
+ export INPES_NEST=${INPES_NEST05:-}
+ export JNPES_NEST=${JNPES_NEST05:-}
+ export NPX_NEST=${NPX_NEST05:-}
+ export NPY_NEST=${NPY_NEST05:-}
+ export K_SPLIT_NEST=${K_SPLIT_NEST05:-}
+ export N_SPLIT_NEST=${N_SPLIT_NEST05:-}
+ atparse < "${PATHRT}/parm/${INPUT_NEST05_NML}" > input_nest05.nml
else
sed -i -e "//,/<\/output_grid_05>/d" model_configure
fi
-if [[ "Q${INPUT_NEST06_NML:-}" != Q ]] ; then
- INPES_NEST=$INPES_NEST06; JNPES_NEST=$JNPES_NEST06
- NPX_NEST=$NPX_NEST06; NPY_NEST=$NPY_NEST06
- K_SPLIT_NEST=$K_SPLIT_NEST06; N_SPLIT_NEST=$N_SPLIT_NEST06
- atparse < ${PATHRT}/parm/${INPUT_NEST06_NML} > input_nest06.nml
+if [[ "Q${INPUT_NEST06_NML:-}" != Q ]]; then
+ export INPES_NEST=${INPES_NEST06:-}
+ export JNPES_NEST=${JNPES_NEST06:-}
+ export NPX_NEST=${NPX_NEST06:-}
+ export NPY_NEST=${NPY_NEST06:-}
+ export K_SPLIT_NEST=${K_SPLIT_NEST06:-}
+ export N_SPLIT_NEST=${N_SPLIT_NEST06:-}
+ atparse < "${PATHRT}/parm/${INPUT_NEST06_NML}" > input_nest06.nml
else
sed -i -e "//,/<\/output_grid_06>/d" model_configure
fi
# diag table
-if [[ "Q${DIAG_TABLE:-}" != Q ]] ; then
- atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE} > diag_table
+if [[ "Q${DIAG_TABLE:-}" != Q ]]; then
+ atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE}" > diag_table
fi
# Field table
-if [[ "Q${FIELD_TABLE:-}" != Q ]] ; then
- cp ${PATHRT}/parm/field_table/${FIELD_TABLE} field_table
+if [[ "Q${FIELD_TABLE:-}" != Q ]]; then
+ cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table
fi
# fix files
-if [[ $FV3 == true ]]; then
- cp ${INPUTDATA_ROOT}/FV3_fix/*.txt .
- cp ${INPUTDATA_ROOT}/FV3_fix/*.f77 .
- cp ${INPUTDATA_ROOT}/FV3_fix/*.dat .
- cp ${INPUTDATA_ROOT}/FV3_fix/fix_co2_proj/* .
- if [[ $TILEDFIX != .true. ]]; then
- cp ${INPUTDATA_ROOT}/FV3_fix/*.grb .
+if [[ ${FV3} == true ]]; then
+ cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt .
+ cp "${INPUTDATA_ROOT}"/FV3_fix/*.f77 .
+ cp "${INPUTDATA_ROOT}"/FV3_fix/*.dat .
+ cp "${INPUTDATA_ROOT}"/FV3_fix/fix_co2_proj/* .
+ if [[ ${TILEDFIX} != .true. ]]; then
+ cp "${INPUTDATA_ROOT}"/FV3_fix/*.grb .
fi
fi
# NoahMP table file
- cp ${PATHRT}/parm/noahmptable.tbl .
+ cp "${PATHRT}/parm/noahmptable.tbl" .
# AQM
-if [[ $AQM == .true. ]]; then
- cp ${PATHRT}/parm/aqm/aqm.rc .
+if [[ ${AQM} == .true. ]]; then
+ cp "${PATHRT}/parm/aqm/aqm.rc" .
fi
# Field Dictionary
-cp ${PATHRT}/parm/fd_ufs.yaml fd_ufs.yaml
+cp "${PATHRT}/parm/fd_ufs.yaml" fd_ufs.yaml
# Set up the run directory
source ./fv3_run
-if [[ $CPLWAV == .true. ]]; then
- if [[ $WW3_MULTIGRID = 'true' ]]; then
- atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp
+if [[ ${CPLWAV} == .true. ]]; then
+ if [[ ${WW3_MULTIGRID} = 'true' ]]; then
+ atparse < "${PATHRT}/parm/ww3_multi.inp.IN" > ww3_multi.inp
else
- atparse < ${PATHRT}/parm/ww3_shel.nml.IN > ww3_shel.nml
- cp ${PATHRT}/parm/ww3_points.list .
+ atparse < "${PATHRT}/parm/ww3_shel.nml.IN" > ww3_shel.nml
+ cp "${PATHRT}/parm/ww3_points.list" .
fi
fi
-if [[ $CPLCHM == .true. ]]; then
- cp ${PATHRT}/parm/gocart/*.rc .
- atparse < ${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN > AERO_HISTORY.rc
+if [[ ${CPLCHM} == .true. ]]; then
+ cp "${PATHRT}"/parm/gocart/*.rc .
+ atparse < "${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN" > AERO_HISTORY.rc
fi
#TODO: this logic needs to be cleaned up for datm applications w/o
#ocean or ice
-if [[ $DATM_CDEPS = 'true' ]] || [[ $S2S = 'true' ]]; then
- if [[ $HAFS = 'false' ]]; then
- atparse < ${PATHRT}/parm/ice_in.IN > ice_in
- atparse < ${PATHRT}/parm/${MOM6_INPUT:-MOM_input_$OCNRES.IN} > INPUT/MOM_input
- atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table
- atparse < ${PATHRT}/parm/MOM6_data_table.IN > data_table
+if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${S2S} = 'true' ]]; then
+ if [[ ${HAFS} = 'false' ]]; then
+ atparse < "${PATHRT}/parm/ice_in.IN" > ice_in
+ atparse < "${PATHRT}/parm/${MOM6_INPUT:-MOM_input_${OCNRES}.IN}" > INPUT/MOM_input
+ atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table
+ atparse < "${PATHRT}/parm/MOM6_data_table.IN" > data_table
fi
fi
-if [[ $HAFS = 'true' ]] && [[ $DATM_CDEPS = 'false' ]]; then
- atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table
+if [[ ${HAFS} = 'true' ]] && [[ ${DATM_CDEPS} = 'false' ]]; then
+ atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table
fi
-if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]] ; then
+if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]]; then
# Append diagnostic outputs, to support tests that vary from others
# only by adding diagnostics.
atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table
fi
# ATMAERO
-if [[ $CPLCHM == .true. ]] && [[ $S2S = 'false' ]]; then
- atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table
+if [[ ${CPLCHM} == .true. ]] && [[ ${S2S} = 'false' ]]; then
+ atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table
fi
-if [[ $DATM_CDEPS = 'true' ]]; then
- atparse < ${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in.IN} > datm_in
- atparse < ${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN} > datm.streams
+if [[ ${DATM_CDEPS} = 'true' ]]; then
+ atparse < "${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in.IN}" > datm_in
+ atparse < "${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN}" > datm.streams
fi
-if [[ $DOCN_CDEPS = 'true' ]]; then
- atparse < ${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in.IN} > docn_in
- atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams
+if [[ ${DOCN_CDEPS} = 'true' ]]; then
+ atparse < "${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in.IN}" > docn_in
+ atparse < "${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN}" > docn.streams
fi
-if [[ $CDEPS_INLINE = 'true' ]]; then
- atparse < ${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN} > stream.config
+if [[ ${CDEPS_INLINE} = 'true' ]]; then
+ atparse < "${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN}" > stream.config
fi
TPN=$(( TPN / THRD ))
@@ -319,74 +339,69 @@ fi
export PPN
export UFS_TASKS
-if [[ $SCHEDULER = 'pbs' ]]; then
- if [[ -e $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} > job_card
+if [[ ${SCHEDULER} = 'pbs' ]]; then
+ if [[ -e ${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then
+ atparse < "${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID}" > job_card
else
echo "Looking for fv3_conf/fv3_qsub.IN_${MACHINE_ID} but it is not found. Exiting"
exit 1
fi
-elif [[ $SCHEDULER = 'slurm' ]]; then
- if [[ -e $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} > job_card
+elif [[ ${SCHEDULER} = 'slurm' ]]; then
+ if [[ -e ${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then
+ atparse < "${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID}" > job_card
else
echo "Looking for fv3_conf/fv3_slurm.IN_${MACHINE_ID} but it is not found. Exiting"
exit 1
fi
-elif [[ $SCHEDULER = 'lsf' ]]; then
- if [[ -e $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} ]]; then
- atparse < $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} > job_card
- else
- echo "Looking for fv3_conf/fv3_bsub.IN_${MACHINE_ID} but it is not found. Exiting"
- exit 1
- fi
fi
################################################################################
# Submit test job
################################################################################
export OMP_ENV=${OMP_ENV:-""}
-if [[ $SCHEDULER = 'none' ]]; then
+if [[ ${SCHEDULER} = 'none' ]]; then
ulimit -s unlimited
- if [[ $CI_TEST = 'true' ]]; then
- eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3)
+ if [[ ${CI_TEST} = 'true' ]]; then
+ eval "${OMP_ENV}" mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true)
else
- mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3)
+ mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true)
fi
else
- if [[ $ROCOTO = 'false' ]]; then
+ if [[ ${ROCOTO} = 'false' ]]; then
submit_and_wait job_card
else
chmod u+x job_card
- ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out
+ ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out
# The above shell redirection copies stdout to "out" and stderr to "err"
# while still sending them to stdout and stderr. It does this without
# relying on bash-specific extensions or non-standard OS features.
fi
fi
-
-if [[ $skip_check_results = false ]]; then
+skip_check_results=${skip_check_results:-false}
+if [[ ${skip_check_results} = false ]]; then
check_results || true
# The above call will exit with an error on its own and does
# not need to cause run_test to TRAP the failure and error out itself.
else
- echo >> ${RT_LOG}
- grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG}
- grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG}
- echo >> ${RT_LOG}
- echo "Test ${TEST_ID} RUN_SUCCESS" >> ${RT_LOG}
- echo;echo;echo >> ${RT_LOG}
+ {
+ echo
+ grep "The total amount of wall time" "${RUNDIR}/out"
+ grep "The maximum resident set size" "${RUNDIR}/out"
+ echo
+ echo "Test ${TEST_ID} RUN_SUCCESS"
+ echo;echo;echo
+ } >> "${RT_LOG}"
fi
-if [[ $SCHEDULER != 'none' ]]; then
- cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
+if [[ ${SCHEDULER} != 'none' ]]; then
+ cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt"
fi
-if [[ $ROCOTO = true ]]; then
+if [[ ${ROCOTO} = true ]]; then
remove_fail_test
fi
@@ -394,24 +409,27 @@ fi
# End test
################################################################################
-echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt
+date_s=$( date +%s )
+echo " ${date_s}, ${NODES}" >> "${LOG_DIR}/${JBNME}_timestamp.txt"
################################################################################
# Remove RUN_DIRs if they are no longer needed by other tests
################################################################################
+delete_rundir=${delete_rundir:-false}
if [[ ${delete_rundir} = true ]]; then
keep_run_dir=false
while read -r line; do
- keep_test=$(echo $line| sed -e 's/^ *//' -e 's/ *$//')
- if [[ $TEST_NAME == ${keep_test} ]]; then
+ keep_test=$(echo "${line}" | sed -e 's/^ *//' -e 's/ *$//')
+ if [[ ${TEST_NAME} == "${keep_test}" ]]; then
keep_run_dir=true
fi
- done < ${PATHRT}/keep_tests.tmp
+ done < "${PATHRT}/keep_tests.tmp"
if [[ ${keep_run_dir} == false ]]; then
- rm -rf ${RUNDIR}
+ rm -rf "${RUNDIR}"
fi
fi
-elapsed=$SECONDS
-echo "Elapsed time $elapsed seconds. Test ${TEST_ID}"
+elapsed=${SECONDS}
+echo "run_test.sh: Test ${TEST_ID} Completed."
+echo "run_test.sh: Test ${TEST_ID} Elapsed time ${elapsed} seconds."
From 5d2ca19d0a9ededdfd0199656c2e7fa096bf57a9 Mon Sep 17 00:00:00 2001
From: WenMeng-NOAA <48260754+WenMeng-NOAA@users.noreply.github.com>
Date: Fri, 19 Apr 2024 13:59:12 -0400
Subject: [PATCH 24/33] Update upp submodule (#2213)
* UFSWM - Update inline post
* FV3 - Update upp submodule for inline post
---
FV3 | 2 +-
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 532 +++++++------
tests/logs/RegressionTests_derecho.log | 577 +++++++-------
tests/logs/RegressionTests_hera.log | 722 +++++++++---------
tests/logs/RegressionTests_hercules.log | 718 +++++++++--------
tests/logs/RegressionTests_jet.log | 474 ++++++------
tests/logs/RegressionTests_orion.log | 540 +++++++------
tests/logs/RegressionTests_wcoss2.log | 454 +++++------
tests/rt.sh | 9 +-
tests/test_changes.list | 13 +
14 files changed, 2065 insertions(+), 2074 deletions(-)
diff --git a/FV3 b/FV3
index 979bcab28f..da95cc428d 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 979bcab28f63b37411698cd9d23d04d0b0fe3a7e
+Subproject commit da95cc428d8b626e99250fd57a4279b4980044f8
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index d230802e95..d10f180066 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240408
+export BL_DATE=20240417
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index afd7aa49d4..ca3a06a77c 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Tue Apr 16 13:22:38 UTC 2024
+Thu Apr 18 13:16:52 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 272.948924
- 0: The maximum resident set size (KB) = 1272740
+ 0: The total amount of wall time = 273.642666
+ 0: The maximum resident set size (KB) = 1250952
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 982.571241
- 0: The maximum resident set size (KB) = 1255996
+ 0: The total amount of wall time = 951.737374
+ 0: The maximum resident set size (KB) = 1234892
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 236.873154
- 0: The maximum resident set size (KB) = 1244612
+ 0: The total amount of wall time = 231.272825
+ 0: The maximum resident set size (KB) = 1232708
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.434427
- 0: The maximum resident set size (KB) = 1248872
+ 0: The total amount of wall time = 237.359756
+ 0: The maximum resident set size (KB) = 1240676
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.270533
- 0: The maximum resident set size (KB) = 1247316
+ 0: The total amount of wall time = 237.824946
+ 0: The maximum resident set size (KB) = 1232292
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 238.823501
- 0: The maximum resident set size (KB) = 1249892
+ 0: The total amount of wall time = 240.136006
+ 0: The maximum resident set size (KB) = 1230264
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1950363/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.670791
- 0: The maximum resident set size (KB) = 1247032
+ 0: The total amount of wall time = 235.571519
+ 0: The maximum resident set size (KB) = 1233056
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 16 14:27:37 UTC 2024
-Elapsed time: 01h:05m:00s. Have a nice day!
+Thu Apr 18 14:32:34 UTC 2024
+Elapsed time: 01h:15m:44s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 98e918adf8..4890b07943 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Tue Apr 16 14:29:26 UTC 2024
+Thu Apr 18 17:53:39 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1353.491600
- 0: The maximum resident set size (KB) = 1367696
+ 0: The total amount of wall time = 1575.086435
+ 0: The maximum resident set size (KB) = 1345260
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 392.059951
- 0: The maximum resident set size (KB) = 1358372
+ 0: The total amount of wall time = 412.335686
+ 0: The maximum resident set size (KB) = 1345900
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2709985/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 392.603751
- 0: The maximum resident set size (KB) = 1359360
+ 0: The total amount of wall time = 416.527929
+ 0: The maximum resident set size (KB) = 1341108
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 16 15:32:41 UTC 2024
-Elapsed time: 01h:03m:16s. Have a nice day!
+Thu Apr 18 19:21:18 UTC 2024
+Elapsed time: 01h:27m:39s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index b529e6123d..2fbba640bb 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Tue Apr 16 16:39:38 UTC 2024
+Thu Apr 18 15:29:26 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2110.742228
- 0: The maximum resident set size (KB) = 556616
+ 0: The total amount of wall time = 2213.723834
+ 0: The maximum resident set size (KB) = 542640
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2222.730378
- 0: The maximum resident set size (KB) = 556012
+ 0: The total amount of wall time = 2173.765133
+ 0: The maximum resident set size (KB) = 539832
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3012556/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2141.980290
- 0: The maximum resident set size (KB) = 556516
+ 0: The total amount of wall time = 2243.570995
+ 0: The maximum resident set size (KB) = 541576
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 16 18:36:16 UTC 2024
-Elapsed time: 01h:56m:39s. Have a nice day!
+Thu Apr 18 17:37:11 UTC 2024
+Elapsed time: 02h:07m:46s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index d6b98a0857..5766e9df76 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ffacfb6d50c9803809d458a42c634f89aaec8861
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- d14b3cbe2135727e3251d9045b3459a0b2d286a0 FV3/atmos_cubed_sphere (201912_public_release-390-gd14b3cb)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,19 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cbd207b7e6376f71a58c8e79b477eac55b59f28b FV3 (remotes/origin/nesting-fixes)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 7dc4d9ba48dea57f88f4f10091c8c2042105954e stochastic_physics (ufs-v2.0.0-210-g7dc4d9b)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -47,268 +35,266 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_118167
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42534
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [10:34, 10:14]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [00:08, 01:47](3047 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:44, 16:12]
-PASS -- TEST 'cpld_control_gfsv17_intel' [53:08, 02:03](1656 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:38, 01:21](1781 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [17:06, 01:34](905 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:39, 01:46](1626 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:20, 03:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [06:23, 01:08](1676 MB)
-
-PASS -- COMPILE 's2swa_intel' [10:35, 10:17]
-PASS -- TEST 'cpld_control_p8_intel' [00:07, 01:17](3077 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [00:07, 01:50](3072 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [36:57, 01:43](3132 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [00:07, 01:00](3099 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [42:22, 01:46](3150 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [00:07, 01:34](3385 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [00:07, 01:22](3072 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [00:08, 01:27](2997 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [00:07, 01:17](3076 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [00:07, 00:54](3039 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:36, 10:52]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [59:05, 00:57](1647 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:05, 01:38](1698 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:32, 09:10]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:10, 01:01](1699 MB)
-
-PASS -- COMPILE 's2s_intel' [09:32, 09:14]
-PASS -- TEST 'cpld_control_c48_intel' [01:09, 00:44](2675 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:44, 15:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [54:57, 01:02](3073 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:46, 15:44]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:09, 00:38](1669 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:20, 00:33](971 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:54, 01:26](1636 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:19, 03:38]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:24, 00:52](1693 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:12]
-PASS -- TEST 'control_flake_intel' [56:54, 01:12](635 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [56:54, 01:11](584 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:54, 01:06](592 MB)
-PASS -- TEST 'control_latlon_intel' [56:54, 00:55](586 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [56:54, 01:17](585 MB)
-PASS -- TEST 'control_c48_intel' [56:53, 00:44](737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [56:53, 00:51](741 MB)
-PASS -- TEST 'control_c192_intel' [56:54, 01:14](708 MB)
-PASS -- TEST 'control_c384_intel' [56:58, 01:33](1010 MB)
-PASS -- TEST 'control_c384gdas_intel' [56:58, 02:15](1159 MB)
-PASS -- TEST 'control_stochy_intel' [56:54, 00:17](597 MB)
-PASS -- TEST 'control_stochy_restart_intel' [39:56, 00:21](394 MB)
-PASS -- TEST 'control_lndp_intel' [56:54, 00:33](589 MB)
-PASS -- TEST 'control_iovr4_intel' [51:09, 00:48](587 MB)
-PASS -- TEST 'control_iovr5_intel' [50:08, 00:15](587 MB)
-PASS -- TEST 'control_p8_intel' [48:28, 01:44](1561 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [44:30, 01:03](1571 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [43:29, 01:54](1564 MB)
-PASS -- TEST 'control_restart_p8_intel' [31:46, 00:54](752 MB)
-PASS -- TEST 'control_noqr_p8_intel' [41:05, 01:17](1551 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [14:14, 01:25](758 MB)
-PASS -- TEST 'control_decomp_p8_intel' [41:03, 01:35](1561 MB)
-PASS -- TEST 'control_2threads_p8_intel' [40:15, 00:45](1652 MB)
-PASS -- TEST 'control_p8_lndp_intel' [39:35, 01:07](1561 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [39:30, 01:03](1622 MB)
-PASS -- TEST 'control_p8_mynn_intel' [38:02, 01:16](1576 MB)
-PASS -- TEST 'merra2_thompson_intel' [37:51, 01:08](1568 MB)
-PASS -- TEST 'regional_control_intel' [37:50, 00:20](633 MB)
-PASS -- TEST 'regional_restart_intel' [27:53, 00:17](801 MB)
-PASS -- TEST 'regional_decomp_intel' [37:47, 01:02](635 MB)
-PASS -- TEST 'regional_2threads_intel' [37:41, 00:19](726 MB)
-PASS -- TEST 'regional_noquilt_intel' [36:48, 00:58](1165 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [36:15, 00:47](631 MB)
-PASS -- TEST 'regional_wofs_intel' [36:06, 01:04](1603 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:27, 08:00]
-PASS -- TEST 'regional_ifi_control_intel' [57:53, 00:24](631 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [57:53, 00:45](630 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [57:54, 01:12](721 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:30, 08:42]
-PASS -- TEST 'rap_control_intel' [34:53, 01:29](976 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:17, 01:14](1150 MB)
-PASS -- TEST 'rap_decomp_intel' [34:15, 01:27](977 MB)
-PASS -- TEST 'rap_2threads_intel' [33:42, 01:38](1060 MB)
-PASS -- TEST 'rap_restart_intel' [03:39, 00:58](843 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [31:33, 01:30](969 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [30:56, 00:43](970 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [00:26, 01:17](842 MB)
-PASS -- TEST 'hrrr_control_intel' [30:52, 01:32](963 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [29:55, 00:49](967 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [29:54, 01:42](1050 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:47, 00:27](799 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [28:37, 00:58](968 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [28:24, 01:21](1932 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:26, 00:48](1917 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:30, 08:22]
-PASS -- TEST 'control_csawmg_intel' [26:52, 00:57](664 MB)
-PASS -- TEST 'control_csawmgt_intel' [25:52, 01:01](657 MB)
-
-PASS -- COMPILE 'wam_intel' [08:27, 08:01]
-PASS -- TEST 'control_wam_intel' [25:16, 00:30](338 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:31, 08:43]
-PASS -- TEST 'control_p8_faster_intel' [24:14, 00:52](1560 MB)
-PASS -- TEST 'regional_control_faster_intel' [22:09, 00:48](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:32, 03:55]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [14:27, 00:58](758 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:20, 00:42](758 MB)
-PASS -- TEST 'control_stochy_debug_intel' [11:33, 00:38](766 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:51, 00:41](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:27, 00:31](801 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:11, 00:44](804 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:32, 00:28](778 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:52, 00:56](824 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:44, 01:06](1590 MB)
-PASS -- TEST 'regional_debug_intel' [03:38, 00:27](672 MB)
-PASS -- TEST 'rap_control_debug_intel' [03:27, 01:13](1146 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [03:13, 01:04](1137 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [02:12, 01:07](1144 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [01:22, 01:22](1142 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:04, 00:51](1146 MB)
-PASS -- TEST 'rap_diag_debug_intel' [59:42, 00:41](1230 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [59:37, 00:45](1147 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:35, 00:27](1144 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [58:24, 00:40](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:20, 00:41](1146 MB)
-PASS -- TEST 'rap_noah_debug_intel' [58:19, 00:48](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [57:49, 00:53](1144 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:14, 01:02](1148 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [57:08, 00:44](1136 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [56:33, 01:07](1148 MB)
-PASS -- TEST 'rap_flake_debug_intel' [55:56, 00:32](1142 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:52, 01:57](1153 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:28, 02:51]
-PASS -- TEST 'control_wam_debug_intel' [55:31, 00:27](373 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [27:03, 08:13]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:23, 01:02](1019 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:14, 01:26](855 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:12, 01:37](849 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [55:08, 01:10](909 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:54, 01:34](902 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:48, 01:25](850 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:09, 01:24](749 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:31, 00:25](729 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:59, 10:14]
-PASS -- TEST 'conus13km_control_intel' [37:00, 00:44](1057 MB)
-PASS -- TEST 'conus13km_2threads_intel' [30:01, 00:53](1042 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [29:59, 01:08](942 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:46, 08:12]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:12, 00:35](877 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:43, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:14, 01:07](1027 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:14, 00:13](1025 MB)
-PASS -- TEST 'conus13km_debug_intel' [43:14, 00:47](1119 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [43:14, 00:39](793 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [43:15, 00:43](1089 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:14, 00:36](1184 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:32, 03:00]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:08, 01:09](1047 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:51, 09:23]
-PASS -- TEST 'hafs_regional_atm_intel' [36:52, 01:21](677 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:52, 00:55](1028 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [36:50, 02:32](724 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [36:50, 01:40](764 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:51, 01:15](784 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:50, 01:39](443 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [36:51, 02:05](467 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [36:51, 00:54](342 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [36:54, 02:33](407 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [36:50, 00:47](475 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [36:50, 01:05](475 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:52, 00:51](544 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:51, 00:24](371 MB)
-PASS -- TEST 'gnv1_nested_intel' [36:51, 01:29](737 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:38, 03:16]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:05, 01:19](575 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:50, 09:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [36:43, 00:49](592 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [36:37, 01:15](752 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:45, 09:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:51, 01:30](753 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:46, 08:55]
-PASS -- TEST 'hafs_regional_docn_intel' [35:19, 01:39](712 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [35:18, 01:14](699 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [33:12, 01:09](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [53:02, 09:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:47, 00:57](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [22:00, 00:14](752 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [36:47, 00:15](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:47, 01:08](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [32:30, 00:16](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [26:59, 00:54](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:54, 00:19](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:34, 00:57](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [24:30, 01:19](647 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [23:25, 00:42](631 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:02, 00:12](747 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [22:53, 00:51](2020 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [21:43, 00:41](2022 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:28, 08:45]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:41, 00:36](749 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:01]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:56, 01:07](274 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [41:56, 01:13](411 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [20:16, 01:07](412 MB)
-
-PASS -- COMPILE 'atml_intel' [10:33, 10:15]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:13, 01:28](1605 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [18:51, 01:35](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:14, 00:19](809 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:34, 08:50]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [18:41, 01:39](1610 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:30, 08:43]
-PASS -- TEST 'control_atmwav_intel' [18:23, 00:59](603 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:28, 08:31]
-PASS -- TEST 'atmaero_control_p8_intel' [17:44, 01:03](2916 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [17:30, 01:35](2977 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [16:22, 01:15](2989 MB)
-
-PASS -- COMPILE 'atmaq_intel' [09:29, 08:21]
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:17, 03:01]
-PASS -- TEST 'regional_atmaq_debug_intel' [15:11, 00:56](4493 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:51]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:09, 02:10](3039 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:09]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 03:04](1648 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:00, 03:04](1795 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [50:51, 02:59](900 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 03:37](1624 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [36:15, 02:36](1679 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:26, 10:52]
+PASS -- TEST 'cpld_control_p8_intel' [30:07, 02:11](3068 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:07, 02:22](3067 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [16:32, 01:09](3124 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [30:07, 01:35](3093 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [21:05, 02:22](3145 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [30:07, 02:36](3381 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [30:07, 01:37](3066 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [30:08, 02:05](2990 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:07, 02:27](3070 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [30:07, 02:22](3037 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:26, 10:30]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [30:07, 01:09](1643 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:07, 01:34](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:25, 09:50]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:13, 02:27](1696 MB)
+
+PASS -- COMPILE 's2s_intel' [10:24, 09:42]
+PASS -- TEST 'cpld_control_c48_intel' [31:08, 01:03](2674 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:00]
+PASS -- TEST 'cpld_control_p8_faster_intel' [26:04, 02:27](3063 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:26]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:29, 02:00](1668 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:26, 01:22](966 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:45, 02:02](1644 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:15, 01:15](1680 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:23, 10:05]
+PASS -- TEST 'control_flake_intel' [25:50, 00:34](634 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [25:50, 00:46](584 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:50, 01:05](590 MB)
+PASS -- TEST 'control_latlon_intel' [25:50, 00:59](584 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:50, 01:08](584 MB)
+PASS -- TEST 'control_c48_intel' [25:49, 01:07](736 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [25:49, 00:45](737 MB)
+PASS -- TEST 'control_c192_intel' [25:50, 01:28](699 MB)
+PASS -- TEST 'control_c384_intel' [25:54, 02:15](1008 MB)
+PASS -- TEST 'control_c384gdas_intel' [25:54, 03:43](1157 MB)
+PASS -- TEST 'control_stochy_intel' [25:50, 00:43](590 MB)
+PASS -- TEST 'control_stochy_restart_intel' [10:02, 00:24](391 MB)
+PASS -- TEST 'control_lndp_intel' [21:40, 00:55](589 MB)
+PASS -- TEST 'control_iovr4_intel' [20:50, 00:37](584 MB)
+PASS -- TEST 'control_iovr5_intel' [20:42, 01:20](584 MB)
+PASS -- TEST 'control_p8_intel' [19:52, 02:22](1564 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [18:50, 02:39](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 02:00](1573 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:10, 02:45](750 MB)
+PASS -- TEST 'control_noqr_p8_intel' [14:51, 01:25](1551 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:53, 01:23](753 MB)
+PASS -- TEST 'control_decomp_p8_intel' [14:50, 01:17](1557 MB)
+PASS -- TEST 'control_2threads_p8_intel' [12:00, 01:13](1657 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:43, 01:22](1563 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:02, 02:17](1624 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:25, 01:52](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:14, 02:37](1575 MB)
+PASS -- TEST 'regional_control_intel' [09:01, 00:35](629 MB)
+PASS -- TEST 'regional_restart_intel' [59:55, 00:35](797 MB)
+PASS -- TEST 'regional_decomp_intel' [09:01, 01:07](628 MB)
+PASS -- TEST 'regional_2threads_intel' [08:51, 00:17](723 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:59, 00:39](1164 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 00:35](630 MB)
+PASS -- TEST 'regional_wofs_intel' [58:51, 00:52](1600 MB)
+
+PASS -- COMPILE 'ifi_intel' [09:22, 08:40]
+PASS -- TEST 'regional_ifi_control_intel' [26:50, 00:36](630 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [26:50, 00:44](628 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [26:51, 00:33](724 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:23, 09:22]
+PASS -- TEST 'rap_control_intel' [07:21, 02:32](973 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 01:18](1150 MB)
+PASS -- TEST 'rap_decomp_intel' [06:58, 02:00](974 MB)
+PASS -- TEST 'rap_2threads_intel' [05:57, 01:43](1057 MB)
+PASS -- TEST 'rap_restart_intel' [42:02, 02:39](845 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [05:15, 03:03](967 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [03:46, 02:11](967 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [38:26, 02:35](843 MB)
+PASS -- TEST 'hrrr_control_intel' [03:43, 02:33](962 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [03:24, 02:19](966 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:12, 02:23](1046 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [37:31, 00:42](794 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [03:06, 02:17](965 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [02:55, 00:23](1929 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:51, 01:19](1918 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:22, 08:58]
+PASS -- TEST 'control_csawmg_intel' [02:22, 00:31](657 MB)
+PASS -- TEST 'control_csawmgt_intel' [02:20, 00:27](654 MB)
+
+PASS -- COMPILE 'wam_intel' [09:22, 08:45]
+PASS -- TEST 'control_wam_intel' [02:00, 01:01](329 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 09:09]
+PASS -- TEST 'control_p8_faster_intel' [00:38, 02:49](1562 MB)
+PASS -- TEST 'regional_control_faster_intel' [00:19, 00:37](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:28]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [59:56, 00:20](753 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [59:55, 01:22](756 MB)
+PASS -- TEST 'control_stochy_debug_intel' [58:04, 00:31](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [57:22, 00:29](758 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [54:58, 01:19](801 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [54:40, 00:48](802 MB)
+PASS -- TEST 'control_ras_debug_intel' [53:18, 00:38](769 MB)
+PASS -- TEST 'control_diag_debug_intel' [53:09, 00:49](818 MB)
+PASS -- TEST 'control_debug_p8_intel' [47:51, 01:09](1586 MB)
+PASS -- TEST 'regional_debug_intel' [42:00, 00:34](676 MB)
+PASS -- TEST 'rap_control_debug_intel' [42:01, 01:10](1140 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [39:08, 01:04](1137 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [37:31, 00:32](1145 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [34:52, 01:10](1140 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 00:26](1147 MB)
+PASS -- TEST 'rap_diag_debug_intel' [33:40, 01:18](1232 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:06, 00:26](1140 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:55, 00:28](1146 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [31:50, 00:38](1151 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:55, 00:36](1140 MB)
+PASS -- TEST 'rap_noah_debug_intel' [29:04, 00:29](1141 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [28:44, 00:44](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:49, 00:24](1141 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [27:47, 00:41](1138 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [27:32, 00:39](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [26:49, 00:30](1147 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:20, 03:06](1147 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:20, 03:12]
+PASS -- TEST 'control_wam_debug_intel' [24:19, 00:14](368 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:29]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:07, 01:33](1014 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:32, 02:53](849 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:06, 04:00](849 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:30, 02:59](909 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:44, 03:43](905 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:11, 02:19](849 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:52](745 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:13, 00:23](731 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:29, 10:35]
+PASS -- TEST 'conus13km_control_intel' [18:09, 01:11](1056 MB)
+PASS -- TEST 'conus13km_2threads_intel' [41:19, 00:51](1035 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [40:45, 00:48](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:45, 08:35]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:03, 01:03](872 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:40, 03:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:46, 00:40](1021 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:42, 00:50](1019 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:17, 01:28](1122 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 00:42](807 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [15:37, 00:43](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:37, 00:24](1193 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:39, 03:19]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:20, 01:15](1043 MB)
+
+PASS -- COMPILE 'hafsw_intel' [31:47, 09:46]
+PASS -- TEST 'hafs_regional_atm_intel' [13:58, 01:41](672 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:45, 00:25](1018 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:11, 02:14](714 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [12:05, 01:59](838 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:05, 01:26](767 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:22, 01:35](433 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:09, 02:05](461 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [11:06, 01:04](334 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 02:25](395 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:49, 01:19](469 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:38, 01:44](471 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:06, 01:14](529 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 00:41](361 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:52, 01:35](738 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [24:37, 03:55]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:35, 00:43](626 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:36, 10:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:28, 01:27](581 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:16, 00:53](747 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:38, 09:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:01, 00:54](748 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:39, 09:19]
+PASS -- TEST 'hafs_regional_docn_intel' [00:44, 02:01](711 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:50, 01:24](702 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:13, 00:15](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:26, 07:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:35, 00:27](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:11, 00:17](737 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:00, 00:34](644 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [50:41, 00:17](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:39, 01:12](645 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:13, 01:02](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [47:54, 01:02](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:38, 00:26](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [47:19, 00:56](649 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:13, 01:46](636 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [45:16, 00:34](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:00, 01:03](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [43:23, 00:34](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:33, 08:21]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:11, 00:37](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [55:13, 01:02]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:51, 00:55](264 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:14, 01:03](413 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [36:39, 01:02](412 MB)
+
+PASS -- COMPILE 'atml_intel' [05:24, 10:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:35, 02:31](1602 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [38:56, 02:49](1599 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:14, 01:07](803 MB)
+
+PASS -- COMPILE 'atmw_intel' [02:17, 09:05]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:47, 02:11](1603 MB)
+
+PASS -- COMPILE 'atmwm_intel' [02:19, 09:05]
+PASS -- TEST 'control_atmwav_intel' [38:39, 02:04](598 MB)
+
+PASS -- COMPILE 'atmaero_intel' [05:23, 09:01]
+PASS -- TEST 'atmaero_control_p8_intel' [38:34, 01:38](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [38:13, 01:44](2969 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:10, 01:46](2987 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [17:31, 03:26]
+PASS -- TEST 'regional_atmaq_debug_intel' [37:37, 02:11](4513 MB)
SYNOPSIS:
-Starting Date/Time: 20240411 18:49:04
-Ending Date/Time: 20240411 21:11:18
-Total Time: 02h:22m:34s
-Compiles Completed: 37/37
+Starting Date/Time: 20240418 17:18:16
+Ending Date/Time: 20240418 19:52:31
+Total Time: 02h:34m:32s
+Compiles Completed: 36/36
Tests Completed: 176/176
NOTES:
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index eca5c613b4..47e293388f 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d43ccd1b047697197e01c095515d268a6e53270f
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,278 +35,280 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_119149
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_115059
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:07]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:54, 04:59](3078 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:59]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:42, 13:53](1692 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:45, 15:16](1828 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:27, 07:26](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:05, 15:48](1662 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:13, 09:32]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:54, 21:26](1711 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:15, 19:40]
-PASS -- TEST 'cpld_control_p8_intel' [10:53, 05:44](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:53, 05:41](3092 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:23, 03:19](3152 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:18, 05:41](3129 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:11, 03:22](3181 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:04, 05:36](3095 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:22, 04:36](3398 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:15, 05:38](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:03, 08:52](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [18:16, 06:04](3614 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [41:36, 10:07](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:57, 07:35](4648 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:53, 05:20](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:16, 19:11]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:59, 04:16](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:17, 04:15](1736 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:16]
-FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_debug_p8_intel' [, ]( MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:54]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:15](1708 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:24]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 04:20](1735 MB)
-
-PASS -- COMPILE 's2s_intel' [15:15, 14:25]
-PASS -- TEST 'cpld_control_c48_intel' [08:42, 06:37](2673 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:07]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:31](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:15, 19:32]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 14:04](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:27](1016 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:13, 16:02](1669 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:19, 08:56]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:23, 23:00](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:17, 12:37]
-PASS -- TEST 'control_flake_intel' [05:10, 03:26](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:05](621 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:11](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:00, 02:05](619 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:08](622 MB)
-PASS -- TEST 'control_c48_intel' [06:53, 05:18](734 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 05:19](737 MB)
-PASS -- TEST 'control_c192_intel' [11:08, 07:57](738 MB)
-PASS -- TEST 'control_c384_intel' [16:40, 08:20](1062 MB)
-PASS -- TEST 'control_c384gdas_intel' [21:25, 07:27](1196 MB)
-PASS -- TEST 'control_stochy_intel' [03:00, 01:26](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:56, 00:53](440 MB)
-PASS -- TEST 'control_lndp_intel' [03:01, 01:23](629 MB)
-PASS -- TEST 'control_iovr4_intel' [04:21, 02:08](624 MB)
-PASS -- TEST 'control_iovr5_intel' [04:19, 02:07](622 MB)
-PASS -- TEST 'control_p8_intel' [05:07, 02:31](1593 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:29](1604 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:28](1601 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:35, 01:27](802 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:29, 02:31](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](803 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:25, 02:35](1601 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:20, 04:23](1604 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:22, 03:20](1654 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:28, 02:33](1605 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:25, 03:02](1610 MB)
-PASS -- TEST 'regional_control_intel' [06:33, 04:33](632 MB)
-PASS -- TEST 'regional_restart_intel' [04:14, 02:36](802 MB)
-PASS -- TEST 'regional_decomp_intel' [07:11, 04:46](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:09, 04:30](1163 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 04:32](625 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:13, 04:32](628 MB)
-PASS -- TEST 'regional_wofs_intel' [09:07, 05:38](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:13, 11:15]
-PASS -- TEST 'rap_control_intel' [09:24, 06:06](1004 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:07, 03:45](1193 MB)
-PASS -- TEST 'rap_decomp_intel' [09:20, 06:23](1005 MB)
-PASS -- TEST 'rap_restart_intel' [05:36, 03:18](879 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:53, 06:06](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:23](1007 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:36, 04:35](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:59, 03:15](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:20](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:59, 02:49](1088 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:46](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:02](999 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:00, 07:24](1961 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:08](1952 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:13, 10:20]
-PASS -- TEST 'control_csawmg_intel' [08:30, 05:51](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:24, 05:46](692 MB)
-PASS -- TEST 'control_ras_intel' [04:48, 02:54](658 MB)
-
-PASS -- COMPILE 'wam_intel' [10:13, 09:16]
-PASS -- TEST 'control_wam_intel' [03:40, 01:54](380 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:24, 12:53]
-PASS -- TEST 'control_p8_faster_intel' [05:12, 02:24](1599 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:30, 04:17](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 08:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:35](796 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:33](792 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:51](797 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:36](797 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:43, 04:01](842 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 03:56](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:49, 02:39](807 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:22, 02:47](855 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:27, 02:40](1627 MB)
-PASS -- TEST 'regional_debug_intel' [18:18, 16:16](669 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:49, 04:47](1181 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:43, 04:38](1180 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_gf_debug_intel' [, ]( MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:38](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:46](1183 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:22, 05:00](1270 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:51, 04:52](1183 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:48, 04:52](1183 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:47, 04:42](1184 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:40, 04:40](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:36](1181 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:51, 04:49](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:45, 07:43](1181 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:50, 04:36](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:52, 05:24](1186 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:49, 04:42](1183 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:08](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:38, 05:30]
-PASS -- TEST 'control_wam_debug_intel' [05:38, 04:35](421 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:18, 09:54]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:56, 03:40](1059 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 05:15](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 02:49](886 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 02:55](888 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:27, 03:53](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:32](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:19, 12:01]
-PASS -- TEST 'conus13km_control_intel' [07:02, 01:56](1088 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:00, 01:01](1087 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:57, 01:09](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 10:02]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:42](912 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:49]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:54, 04:35](1056 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:33](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:36, 13:48](1135 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:38](819 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:31](1203 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:16, 05:33]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:50, 04:36](1085 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:23, 15:59]
-PASS -- TEST 'hafs_regional_atm_intel' [08:08, 04:40](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:58, 05:09](1065 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:01, 06:32](782 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:49, 10:58](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:08](810 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 04:42](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:50](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:17, 02:24](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 06:24](452 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:11, 03:22](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:02, 03:12](514 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:39, 03:53](590 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:18](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:53, 03:27](790 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:17, 06:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:45, 12:06](614 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:19, 19:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:05, 07:12](636 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:36, 07:16](693 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:21](683 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:14, 14:17]
-PASS -- TEST 'hafs_regional_docn_intel' [09:00, 05:38](756 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 05:40](741 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:43, 16:14](896 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:17, 07:41]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 02:31](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:02, 01:36](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:49, 02:27](648 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:27](649 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:30](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:44, 02:23](644 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:44, 05:47](690 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:55, 05:46](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:05, 03:59](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:06, 04:01](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:16, 04:57]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:56, 05:06](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:19, 07:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:42, 02:31](760 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:24]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:49, 01:15](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:36, 01:08](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:38, 00:47](450 MB)
-
-PASS -- COMPILE 'atml_intel' [14:18, 13:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:58, 07:38](1632 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:51, 07:42](1627 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_restart_p8_atmlnd_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmw_intel' [14:18, 12:51]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:44, 01:34](1631 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:18, 12:59]
-PASS -- TEST 'control_atmwav_intel' [03:28, 01:29](638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:20, 11:11]
-PASS -- TEST 'atmaero_control_p8_intel' [07:28, 03:48](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 04:19](2997 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:57, 04:32](3015 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:27]
-PASS -- TEST 'regional_atmaq_debug_intel' [33:27, 21:57](4534 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:23, 18:57]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:14, 04:51](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:23, 20:23]
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:45](1689 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:14, 14:52](1829 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:00](960 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:39](1664 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:21, 08:50]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:18](1698 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:23, 18:58]
+PASS -- TEST 'cpld_control_p8_intel' [08:31, 05:32](3095 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:32](3091 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:13](3151 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:31, 05:30](3127 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:14](3182 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:24, 05:28](3093 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:51, 04:29](3387 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:30](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:14, 08:36](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:10, 05:36](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 09:33](4346 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:00, 06:23](4648 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:16, 05:10](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:21, 18:24]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:22, 04:07](1679 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:10](1727 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:21, 08:46]
+PASS -- TEST 'cpld_debug_p8_intel' [09:51, 07:31](3154 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:19, 08:20]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1710 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:03]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:10](1726 MB)
+
+PASS -- COMPILE 's2s_intel' [15:21, 13:56]
+PASS -- TEST 'cpld_control_c48_intel' [08:05, 06:34](2664 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:34]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:22](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:33]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 13:56](1696 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:03](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:59](1669 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:19]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:59](1717 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:16]
+PASS -- TEST 'control_flake_intel' [04:38, 03:22](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 02:01](622 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:05](624 MB)
+PASS -- TEST 'control_latlon_intel' [03:36, 02:02](621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 02:04](622 MB)
+PASS -- TEST 'control_c48_intel' [06:44, 05:14](735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:13](741 MB)
+PASS -- TEST 'control_c192_intel' [09:09, 07:48](738 MB)
+PASS -- TEST 'control_c384_intel' [13:33, 08:00](1064 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:39, 07:05](1201 MB)
+PASS -- TEST 'control_stochy_intel' [02:39, 01:23](629 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB)
+PASS -- TEST 'control_lndp_intel' [02:38, 01:18](625 MB)
+PASS -- TEST 'control_iovr4_intel' [03:34, 02:02](624 MB)
+PASS -- TEST 'control_iovr5_intel' [03:42, 02:05](620 MB)
+PASS -- TEST 'control_p8_intel' [04:24, 02:25](1596 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:26](1596 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:25](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:23, 01:22](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:24](1592 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:21](808 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:12, 02:31](1597 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:16, 04:19](1599 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 03:13](1653 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:27](1608 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:44, 02:55](1603 MB)
+PASS -- TEST 'regional_control_intel' [06:10, 04:29](633 MB)
+PASS -- TEST 'regional_restart_intel' [04:21, 02:27](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:07, 04:39](631 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:14, 04:21](1159 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:23](631 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:13, 04:27](631 MB)
+PASS -- TEST 'regional_wofs_intel' [07:12, 05:35](1605 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:18, 10:44]
+PASS -- TEST 'rap_control_intel' [08:10, 06:06](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:46](1193 MB)
+PASS -- TEST 'rap_decomp_intel' [09:41, 06:19](1006 MB)
+PASS -- TEST 'rap_restart_intel' [05:56, 03:11](879 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:02](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 06:18](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 04:34](880 MB)
+PASS -- TEST 'hrrr_control_intel' [05:02, 03:10](1001 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:03, 03:17](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 02:45](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:50, 01:43](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:33, 05:55](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:20](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:05](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:17, 09:49]
+PASS -- TEST 'control_csawmg_intel' [07:17, 05:47](692 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:08, 05:44](696 MB)
+PASS -- TEST 'control_ras_intel' [03:37, 02:48](657 MB)
+
+PASS -- COMPILE 'wam_intel' [10:19, 09:14]
+PASS -- TEST 'control_wam_intel' [03:29, 01:52](384 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:18, 12:13]
+PASS -- TEST 'control_p8_faster_intel' [04:35, 02:19](1594 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:09, 04:20](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:13]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:30](795 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:29](799 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:53](801 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:31, 02:32](801 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:07, 03:54](841 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [06:42, 03:56](839 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:39, 02:34](810 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:05, 02:37](858 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:13, 02:38](1629 MB)
+PASS -- TEST 'regional_debug_intel' [18:10, 15:45](668 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:37, 04:34](1185 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:39](1176 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:33](1180 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 04:36](1178 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:36](1182 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:59, 04:48](1268 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:46](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:47](1183 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:41, 04:36](1184 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:32](1183 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:34](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:26](1180 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:36](1176 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:27](1184 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:40](1182 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:00, 07:50](1182 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:12, 05:03]
+PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:30]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 03:29](1060 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:05](884 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 02:44](884 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:51](883 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:50](798 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:06, 01:30](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:29]
+FAILED: RUN DID NOT COMPLETE -- TEST 'conus13km_control_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_2threads_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:17, 09:33]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 03:34](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:29](1057 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:28](1056 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:40, 13:19](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:27, 13:24](820 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:19, 13:16](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:09]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:40](1087 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:21, 15:25]
+PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:24](723 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:53, 05:04](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 06:17](780 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [12:22, 10:46](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:50](815 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:36](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 05:37](493 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:58, 02:16](390 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:05](461 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:53, 03:12](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 02:59](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:15, 03:42](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:11](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:03, 03:15](790 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:30]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:14, 11:59](613 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:21, 19:10]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 06:57](631 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:03](691 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:09]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:21, 05:18](678 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:22, 13:37]
+PASS -- TEST 'hafs_regional_docn_intel' [07:31, 05:26](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 05:26](741 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:09](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:22]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:28](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:18](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:21](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:23, 02:23](643 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:36, 02:27](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:18](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:49, 05:34](687 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 05:36](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:27](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:49](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:50](2015 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 04:46]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](747 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:27]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:26](750 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:12]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](304 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 00:57](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:39](453 MB)
+
+PASS -- COMPILE 'atml_intel' [13:21, 12:40]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:35, 05:45](1627 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 05:20](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:09, 03:01](855 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:20, 12:24]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:30](1637 MB)
+
+PASS -- COMPILE 'atmwm_intel' [13:22, 12:24]
+PASS -- TEST 'control_atmwav_intel' [02:48, 01:24](638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:17, 10:52]
+PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:35](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:12](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:24](3012 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:59]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:23, 21:40](4533 MB)
SYNOPSIS:
-Starting Date/Time: 20240416 14:22:27
-Ending Date/Time: 20240416 16:12:18
-Total Time: 01h:50m:38s
+Starting Date/Time: 20240419 06:31:21
+Ending Date/Time: 20240419 07:56:11
+Total Time: 01h:25m:29s
Compiles Completed: 38/38
-Tests Completed: 172/175
+Tests Completed: 171/175
Failed Tests:
-* TEST cpld_debug_p8_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_cpld_debug_p8_intel.log
-* TEST hrrr_gf_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_hrrr_gf_debug_intel.log
-* TEST control_restart_p8_atmlnd_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/ufs-weather-model/tests/logs/log_derecho/run_control_restart_p8_atmlnd_intel.log
+* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_control_stochy_restart_intel.log
+* TEST conus13km_control_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_conus13km_control_intel.log
+* TEST conus13km_2threads_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -319,7 +321,7 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d43ccd1b047697197e01c095515d268a6e53270f
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -329,14 +331,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -344,7 +346,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -353,30 +355,27 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_55240
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_121217
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_debug_intel' [10:18, 09:13]
-PASS -- TEST 'cpld_debug_p8_intel' [11:29, 07:46](3155 MB)
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:18, 11:25]
+PASS -- TEST 'conus13km_control_intel' [04:34, 01:49](1084 MB)
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:25]
-PASS -- TEST 'hrrr_gf_debug_intel' [05:42, 04:38](1183 MB)
-
-PASS -- COMPILE 'atml_intel' [14:19, 12:54]
-PASS -- TEST 'control_p8_atmlnd_intel' [10:09, 06:20](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:02, 03:54](850 MB)
+PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:43]
+PASS -- TEST 'control_stochy_intel' [02:37, 01:24](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:50](436 MB)
SYNOPSIS:
-Starting Date/Time: 20240416 16:43:55
-Ending Date/Time: 20240416 17:16:53
-Total Time: 00h:33m:08s
-Compiles Completed: 3/3
-Tests Completed: 4/4
+Starting Date/Time: 20240419 08:26:55
+Ending Date/Time: 20240419 08:46:43
+Total Time: 00h:19m:54s
+Compiles Completed: 2/2
+Tests Completed: 3/3
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index a7d21eb746..ee7e6520ee 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-684ddd65adbf26b3a8003e05c8af6c4e19be63f8
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,13 +9,13 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -24,373 +24,371 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3831458
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4052024
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:07, 12:41]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:31, 05:42](3190 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:07, 17:08]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1760 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:11, 17:52](2026 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 08:05](1123 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 19:17](1648 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:07, 04:35]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 22:40](1695 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:07, 12:42]
-PASS -- TEST 'cpld_control_p8_intel' [12:25, 06:09](3213 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 05:56](3228 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:25, 03:28](3239 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:29, 05:58](3247 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 03:28](3282 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:22, 05:42](3537 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:22, 05:57](3201 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:20, 04:57](3060 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:34, 05:56](3223 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:28](3357 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:05, 06:08](3632 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:39, 09:54](4165 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:16, 06:15](4361 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:24, 05:36](3175 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:07, 12:22]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:16, 04:55](1749 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:21, 04:27](1788 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:35]
-PASS -- TEST 'cpld_debug_p8_intel' [11:08, 08:33](3241 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:06]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:44](1761 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:06, 11:28]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:25](1790 MB)
-
-PASS -- COMPILE 's2s_intel' [12:06, 11:29]
-PASS -- TEST 'cpld_control_c48_intel' [11:37, 09:27](2834 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:23]
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:14, 05:34](3231 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:08, 15:01]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:00, 17:19](1777 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:07, 08:04](1175 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:59, 19:44](1685 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:02]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 25:27](1729 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:07, 11:18]
-PASS -- TEST 'control_flake_intel' [04:21, 03:19](711 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:20, 02:23](664 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:23, 02:29](659 MB)
-PASS -- TEST 'control_latlon_intel' [03:18, 02:25](662 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 02:27](655 MB)
-PASS -- TEST 'control_c48_intel' [07:22, 06:22](877 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 06:22](878 MB)
-PASS -- TEST 'control_c192_intel' [10:39, 09:09](855 MB)
-PASS -- TEST 'control_c384_intel' [11:30, 09:14](1297 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:21, 07:58](1404 MB)
-PASS -- TEST 'control_stochy_intel' [02:18, 01:36](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:24, 00:59](503 MB)
-PASS -- TEST 'control_lndp_intel' [02:17, 01:34](661 MB)
-PASS -- TEST 'control_iovr4_intel' [03:19, 02:26](656 MB)
-PASS -- TEST 'control_iovr5_intel' [04:18, 02:25](659 MB)
-PASS -- TEST 'control_p8_intel' [04:51, 02:57](1636 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:56](1637 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:53](1631 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:45, 01:36](891 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:51, 02:56](1617 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:51, 01:36](933 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:54, 02:59](1619 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:51, 02:46](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:45, 05:13](1634 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 03:57](1707 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:00](1619 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:53, 03:34](1623 MB)
-PASS -- TEST 'regional_control_intel' [08:38, 05:12](852 MB)
-PASS -- TEST 'regional_restart_intel' [03:35, 02:45](1022 MB)
-PASS -- TEST 'regional_decomp_intel' [08:35, 05:32](850 MB)
-PASS -- TEST 'regional_2threads_intel' [05:36, 03:18](848 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:37, 05:12](1360 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:34, 05:10](855 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](853 MB)
-PASS -- TEST 'regional_wofs_intel' [09:35, 06:43](1915 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:09, 10:37]
-PASS -- TEST 'rap_control_intel' [08:35, 07:42](1102 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 04:09](1302 MB)
-PASS -- TEST 'rap_decomp_intel' [10:30, 08:07](1043 MB)
-PASS -- TEST 'rap_2threads_intel' [09:31, 07:14](1180 MB)
-PASS -- TEST 'rap_restart_intel' [04:41, 04:02](1111 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:36, 07:40](1105 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:31, 08:06](1041 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:38, 05:47](1140 MB)
-PASS -- TEST 'hrrr_control_intel' [05:31, 03:55](1043 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:05](1034 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:37](1112 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:09](1006 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:41, 07:33](1098 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:21, 09:19](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 08:59](2068 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:06, 10:17]
-PASS -- TEST 'control_csawmg_intel' [06:36, 06:01](761 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:37, 05:58](760 MB)
-PASS -- TEST 'control_ras_intel' [04:18, 03:18](748 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:05, 03:38]
-PASS -- TEST 'control_csawmg_gnu' [09:44, 08:17](548 MB)
-PASS -- TEST 'control_csawmgt_gnu' [09:43, 08:18](552 MB)
-
-PASS -- COMPILE 'wam_intel' [11:06, 09:37]
-PASS -- TEST 'control_wam_intel' [04:18, 02:04](655 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:05, 10:44]
-PASS -- TEST 'control_p8_faster_intel' [04:47, 02:36](1645 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:37, 04:43](851 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:05, 04:43]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 02:39](817 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:24, 02:37](802 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:57](820 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:16, 02:39](822 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 04:05](877 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:34, 04:04](868 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:17, 02:43](823 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:27, 02:42](878 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:41, 02:53](1623 MB)
-PASS -- TEST 'regional_debug_intel' [18:37, 17:16](840 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:19, 04:53](1212 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:18, 04:51](1206 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 04:49](1210 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:47](1215 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:49](1212 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:07](1292 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:18, 05:04](1211 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:16, 05:03](1165 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:56](1206 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:50](1215 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:18, 04:43](1214 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:18, 04:50](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:18, 08:00](1207 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:19, 04:51](1209 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:05](1214 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:16, 04:44](1207 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:26](1217 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 02:51]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:10](533 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:32, 02:10](531 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:06, 03:09]
-PASS -- TEST 'control_wam_debug_intel' [06:17, 05:01](518 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:05, 10:08]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:58, 03:56](1167 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:32, 06:24](1053 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:32, 03:23](993 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:29, 06:07](1070 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:29, 03:08](966 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:27, 03:37](932 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 04:57](1021 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:20, 01:51](929 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 12:27]
-PASS -- TEST 'conus13km_control_intel' [03:51, 02:04](1210 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:52](1125 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:38, 01:13](1111 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:05, 10:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:38, 04:11](987 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:21]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:17, 04:52](1093 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:17, 04:39](1087 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:44, 14:23](1244 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 14:39](926 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:07](1159 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:38, 14:52](1308 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 03:25]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 05:00](1132 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:07, 11:52]
-PASS -- TEST 'hafs_regional_atm_intel' [08:07, 04:56](736 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:28, 06:01](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:21, 06:54](830 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:12, 13:26](873 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:25, 15:00](890 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:06, 05:26](497 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:23, 06:38](492 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:35, 02:43](378 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:33, 07:10](485 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:44, 03:40](536 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:58, 03:32](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:04](589 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:13](409 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:50, 04:06](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:05, 03:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 12:44](577 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:06, 12:02]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:52, 08:42](677 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:57, 08:41](742 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:06, 11:43]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:29](742 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:06, 11:02]
-PASS -- TEST 'hafs_regional_docn_intel' [08:07, 06:26](831 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:04, 06:33](833 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:54, 16:40](1211 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 05:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:43](1166 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:37](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:39](1035 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:13, 02:39](1017 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:12, 02:36](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:12, 02:41](1160 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:12, 02:44](1160 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1024 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:28, 06:11](1064 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 06:15](1044 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:10, 02:42](1146 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:48](2373 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 04:09](2490 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 02:59]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:11](1080 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:07, 05:55]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:43](1151 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:03]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:49](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:52](325 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:18, 00:31](330 MB)
-
-PASS -- COMPILE 'atml_intel' [12:07, 12:00]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:59, 04:08](1612 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:56, 04:06](1621 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:43, 02:14](907 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:07, 10:35]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:45](1680 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:07, 10:42]
-PASS -- TEST 'control_atmwav_intel' [03:25, 01:42](679 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:06, 10:45]
-PASS -- TEST 'atmaero_control_p8_intel' [05:50, 03:58](3039 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:53, 04:52](3107 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:38, 05:04](3116 MB)
-
-PASS -- COMPILE 'atmaq_intel' [11:06, 10:07]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:07, 03:33]
-PASS -- TEST 'regional_atmaq_debug_intel' [50:41, 21:09](4521 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:06, 03:36]
-PASS -- TEST 'control_c48_gnu' [11:19, 10:46](765 MB)
-PASS -- TEST 'control_stochy_gnu' [04:16, 03:25](509 MB)
-PASS -- TEST 'control_ras_gnu' [05:16, 04:46](517 MB)
-PASS -- TEST 'control_p8_gnu' [07:50, 04:46](1267 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:48, 04:32](1267 MB)
-PASS -- TEST 'control_flake_gnu' [12:17, 10:26](553 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:06, 03:42]
-PASS -- TEST 'rap_control_gnu' [13:27, 10:58](864 MB)
-PASS -- TEST 'rap_decomp_gnu' [13:27, 10:58](861 MB)
-PASS -- TEST 'rap_2threads_gnu' [12:31, 09:47](942 MB)
-PASS -- TEST 'rap_restart_gnu' [08:34, 05:24](587 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [13:26, 10:53](861 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:32, 11:02](862 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [11:36, 08:04](587 MB)
-PASS -- TEST 'hrrr_control_gnu' [07:23, 05:37](859 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 05:38](842 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [06:24, 05:04](933 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [08:25, 05:41](864 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:53](573 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:21, 02:52](666 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [12:33, 10:22](859 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:06, 03:34]
-PASS -- TEST 'control_diag_debug_gnu' [02:25, 01:37](552 MB)
-PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](566 MB)
-PASS -- TEST 'rap_control_debug_gnu' [07:17, 02:35](872 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [07:16, 02:37](873 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [07:16, 02:41](875 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [07:15, 02:35](875 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [07:31, 02:54](956 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [08:18, 04:07](869 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 02:36](872 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:19, 02:37](864 MB)
-PASS -- TEST 'control_ras_debug_gnu' [05:15, 01:32](508 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [05:14, 01:48](496 MB)
-PASS -- TEST 'control_debug_p8_gnu' [04:34, 01:39](1256 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [05:17, 02:35](871 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:57](874 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:31, 04:23](876 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:07, 01:49]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:06, 03:34]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:25, 09:31](716 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 04:59](714 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:36, 08:44](766 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:23, 04:33](757 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:22, 05:00](719 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:33, 06:57](562 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 02:37](545 MB)
-PASS -- TEST 'conus13km_control_gnu' [09:48, 03:16](886 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:36, 05:33](896 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:38, 01:47](567 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:07, 05:26]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 05:44](746 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:06, 03:34]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 02:30](724 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [08:15, 02:33](727 MB)
-PASS -- TEST 'conus13km_debug_gnu' [12:45, 06:59](901 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [12:41, 06:54](589 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [12:40, 07:21](903 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:39, 06:52](972 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:40]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [08:17, 02:38](743 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:07, 14:38]
-
-PASS -- COMPILE 's2s_gnu' [16:07, 14:12]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [13:02, 06:38](1354 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:29]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:07, 14:21]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [33:01, 27:13](1327 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:07, 02:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [23:51, 18:18](1324 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [08:14, 03:11](702 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [49:12, 12:48]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:23, 05:31](3160 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:12, 16:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:01, 17:10](1740 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:16, 17:51](2002 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:04](1097 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 19:16](1632 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [40:12, 04:45]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [37:59, 22:37](1654 MB)
+
+PASS -- COMPILE 's2swa_intel' [49:12, 12:48]
+PASS -- TEST 'cpld_control_p8_intel' [14:17, 05:45](3193 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 05:48](3191 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:31, 03:26](3230 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:17, 05:51](3217 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:28](3254 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [14:17, 05:30](3536 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 05:45](3195 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 04:47](3046 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:27, 05:51](3192 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:07](3320 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:25](3587 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:47, 09:27](4100 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 06:28](4347 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [14:18, 05:26](3160 MB)
+
+PASS -- COMPILE 's2sw_intel' [39:12, 12:15]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [20:59, 04:51](1720 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:03, 04:26](1756 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [40:12, 04:45]
+PASS -- TEST 'cpld_debug_p8_intel' [26:11, 08:32](3192 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [38:12, 04:11]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:07, 05:49](1707 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [47:12, 11:39]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:05, 04:19](1773 MB)
+
+PASS -- COMPILE 's2s_intel' [47:12, 11:39]
+PASS -- TEST 'cpld_control_c48_intel' [17:45, 09:34](2815 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [52:12, 16:42]
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:11, 05:27](3185 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 14:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 17:11](1758 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 08:03](1150 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 19:47](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:07]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 24:40](1683 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:39]
+PASS -- TEST 'control_flake_intel' [04:25, 03:21](684 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](639 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:26, 02:30](644 MB)
+PASS -- TEST 'control_latlon_intel' [03:23, 02:25](643 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:29](615 MB)
+PASS -- TEST 'control_c48_intel' [07:26, 06:23](861 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:24](851 MB)
+PASS -- TEST 'control_c192_intel' [09:42, 09:06](839 MB)
+PASS -- TEST 'control_c384_intel' [12:42, 09:06](1277 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:03, 08:06](1380 MB)
+PASS -- TEST 'control_stochy_intel' [02:23, 01:38](650 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](487 MB)
+PASS -- TEST 'control_lndp_intel' [02:20, 01:35](642 MB)
+PASS -- TEST 'control_iovr4_intel' [03:25, 02:27](614 MB)
+PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](633 MB)
+PASS -- TEST 'control_p8_intel' [04:01, 02:58](1599 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 02:57](1612 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 02:51](1612 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](871 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:55](1597 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:39](910 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:53, 03:02](1598 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:44](1694 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:13](1609 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:58](1683 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:00](1616 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:54, 03:33](1620 MB)
+PASS -- TEST 'regional_control_intel' [06:39, 05:15](830 MB)
+PASS -- TEST 'regional_restart_intel' [03:40, 02:44](999 MB)
+PASS -- TEST 'regional_decomp_intel' [06:41, 05:30](826 MB)
+PASS -- TEST 'regional_2threads_intel' [04:42, 03:15](802 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:41, 05:07](1348 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:10](823 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:10](838 MB)
+PASS -- TEST 'regional_wofs_intel' [07:41, 06:44](1898 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:11, 10:23]
+PASS -- TEST 'rap_control_intel' [14:42, 07:46](1081 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:10, 04:05](1270 MB)
+PASS -- TEST 'rap_decomp_intel' [15:43, 08:08](1017 MB)
+PASS -- TEST 'rap_2threads_intel' [14:42, 07:17](1163 MB)
+PASS -- TEST 'rap_restart_intel' [04:48, 04:02](1091 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:44, 07:43](1088 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:42, 08:10](1023 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:47](1115 MB)
+PASS -- TEST 'hrrr_control_intel' [11:38, 03:58](1023 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [11:38, 04:08](1012 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 03:40](1088 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:09](986 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [14:49, 07:39](1084 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [16:31, 09:21](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:04](2048 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:13, 10:24]
+PASS -- TEST 'control_csawmg_intel' [06:40, 06:00](739 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:38, 05:56](738 MB)
+PASS -- TEST 'control_ras_intel' [04:21, 03:14](726 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [12:12, 03:42]
+PASS -- TEST 'control_csawmg_gnu' [09:40, 08:24](533 MB)
+PASS -- TEST 'control_csawmgt_gnu' [09:39, 08:04](532 MB)
+
+PASS -- COMPILE 'wam_intel' [18:12, 10:04]
+PASS -- TEST 'control_wam_intel' [02:22, 02:04](639 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 10:33]
+PASS -- TEST 'control_p8_faster_intel' [03:54, 02:42](1617 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](829 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 04:38]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:39](777 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:38](775 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:57](782 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:42](782 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](828 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:40, 04:05](832 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:22, 02:47](792 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:29, 02:48](837 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1612 MB)
+PASS -- TEST 'regional_debug_intel' [17:42, 17:09](804 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:22, 04:54](1174 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:48](1171 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:54](1165 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:47](1173 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:07](1255 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:54](1172 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:51](1172 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:59](1167 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:01](1173 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:52](1170 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:52](1168 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:52](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1164 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:10](1177 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:49](1172 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:37, 08:26](1159 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:12, 02:39]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 02:08](506 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [03:39, 02:09](509 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:12, 03:10]
+PASS -- TEST 'control_wam_debug_intel' [06:21, 04:59](475 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 09:59]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:04, 03:50](1133 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 06:23](1033 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:21](973 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:05](1085 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:10](950 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](919 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:50](1025 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:50](920 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 12:20]
+PASS -- TEST 'conus13km_control_intel' [04:57, 02:05](1184 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:42, 00:55](1103 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1096 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 10:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](970 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 03:20]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1054 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:39](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:50, 14:38](1209 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:48, 14:56](935 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:08](1107 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 14:40](1248 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:15]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:56](1092 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:12, 11:46]
+PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:06](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:08](1104 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 06:50](816 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:24](836 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:11](865 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](484 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:37](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:47](358 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:07](472 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:42](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:29](505 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:03](572 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](379 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](776 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:40]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:49, 12:41](526 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:58, 08:42](649 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:03, 08:47](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 11:45]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:26](701 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:12, 11:10]
+PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:29](807 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:28](791 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:32](1202 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:42](1141 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:37](1089 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1015 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:39](1005 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:35](1005 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:38](1135 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1141 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:37](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:50](1045 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 06:26](1033 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:43](1140 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:48](2485 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2496 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:57]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1064 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1144 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:04]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:45](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:52](321 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:30](316 MB)
+
+PASS -- COMPILE 'atml_intel' [12:12, 11:49]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:13](1596 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:15](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:11](888 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:11, 10:53]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:44](1660 MB)
+
+PASS -- COMPILE 'atmwm_intel' [11:11, 10:59]
+PASS -- TEST 'control_atmwav_intel' [02:33, 01:39](654 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:11, 10:51]
+PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:01](3009 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:58, 04:52](3072 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:05](3085 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:30]
+PASS -- TEST 'regional_atmaq_debug_intel' [35:54, 33:01](4446 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:11, 03:38]
+PASS -- TEST 'control_c48_gnu' [11:25, 10:46](750 MB)
+PASS -- TEST 'control_stochy_gnu' [04:23, 03:23](491 MB)
+PASS -- TEST 'control_ras_gnu' [06:22, 04:49](501 MB)
+PASS -- TEST 'control_p8_gnu' [05:58, 04:39](1253 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:34](1253 MB)
+PASS -- TEST 'control_flake_gnu' [11:22, 10:44](537 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:11, 03:47]
+PASS -- TEST 'rap_control_gnu' [11:32, 10:52](848 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:32, 10:50](847 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:39, 09:50](935 MB)
+PASS -- TEST 'rap_restart_gnu' [06:39, 05:24](570 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](841 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:31, 10:58](842 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:02](572 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:33, 05:29](842 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:30](832 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](915 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:29](838 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](556 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:50](648 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:38](838 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:35]
+PASS -- TEST 'control_diag_debug_gnu' [02:27, 01:44](527 MB)
+PASS -- TEST 'regional_debug_gnu' [12:44, 11:47](547 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](852 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:29](852 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:33](853 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:34](850 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:41, 02:48](936 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:03](849 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](847 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:30](846 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:32](482 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:42](477 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:41](1237 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:32](849 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](858 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:19](854 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:45]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:31](701 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:54](701 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](753 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:33](738 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:00](701 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:03](547 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:30](538 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:54, 03:11](872 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:41](879 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 01:52](553 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:19]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](728 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:33](704 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 02:29](701 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:47, 07:00](872 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:56](565 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:03](873 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:56](941 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:38]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:38](722 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:11, 14:39]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:17]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:06, 06:39](1343 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:30]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:16]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 22:14](1307 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:19]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:50](1308 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:19]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:05](695 MB)
SYNOPSIS:
-Starting Date/Time: 20240415 20:36:04
-Ending Date/Time: 20240415 23:17:26
-Total Time: 02h:41m:40s
-Compiles Completed: 55/55
+Starting Date/Time: 20240418 03:37:39
+Ending Date/Time: 20240418 05:51:38
+Total Time: 02h:14m:16s
+Compiles Completed: 54/54
Tests Completed: 244/244
NOTES:
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 4cd5a52970..caab4b10f9 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-684ddd65adbf26b3a8003e05c8af6c4e19be63f8
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,368 +35,366 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1998392
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_463802
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:06, 11:19]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:40](1895 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:06, 16:44]
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:09, 13:25](1765 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:22, 14:03](2161 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:17, 06:26](1183 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 15:03](1692 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:09]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:03, 20:26](1724 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:06, 11:26]
-PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:35](2074 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:41](2065 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:05, 04:13](1985 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:48, 07:42](1982 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:06, 04:16](1739 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:46, 09:11](2495 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:43, 07:32](2064 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:57, 06:16](1892 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:45](2058 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:38, 15:36](2803 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:19, 05:56](2926 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:37, 09:20](3629 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:11, 06:10](3621 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 04:54](2051 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:06, 10:30]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:46, 07:09](1769 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:01](1821 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:06, 04:44]
-PASS -- TEST 'cpld_debug_p8_intel' [08:01, 06:51](2059 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:06, 04:50]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:47](1793 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:06, 08:20]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:01](1821 MB)
-
-PASS -- COMPILE 's2s_intel' [09:06, 08:56]
-PASS -- TEST 'cpld_control_c48_intel' [08:35, 07:15](2838 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:06, 12:24]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:59, 07:20](2079 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:52, 13:48](1808 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:20, 06:45](1268 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:02, 15:53](1730 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 04:38]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:45, 21:37](1779 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:06, 08:14]
-PASS -- TEST 'control_flake_intel' [03:16, 02:54](712 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:19, 02:07](664 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:22, 02:14](685 MB)
-PASS -- TEST 'control_latlon_intel' [03:16, 02:10](665 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:23, 02:12](662 MB)
-PASS -- TEST 'control_c48_intel' [06:18, 05:48](853 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 05:44](850 MB)
-PASS -- TEST 'control_c192_intel' [08:24, 07:55](968 MB)
-PASS -- TEST 'control_c384_intel' [10:01, 08:18](1433 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:50, 07:16](1519 MB)
-PASS -- TEST 'control_stochy_intel' [02:15, 01:29](670 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:20, 00:51](537 MB)
-PASS -- TEST 'control_lndp_intel' [02:15, 01:24](668 MB)
-PASS -- TEST 'control_iovr4_intel' [03:18, 02:11](659 MB)
-PASS -- TEST 'control_iovr5_intel' [03:17, 02:05](671 MB)
-PASS -- TEST 'control_p8_intel' [03:43, 02:34](1637 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:45, 02:41](1642 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:36](1629 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:48, 01:24](918 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:35, 02:34](1624 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](990 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:34, 02:42](1621 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:34, 02:28](1732 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:27, 04:31](1632 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:29](1718 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:42, 02:36](1644 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:51, 02:57](1655 MB)
-PASS -- TEST 'regional_control_intel' [05:23, 04:38](959 MB)
-PASS -- TEST 'regional_restart_intel' [03:23, 02:29](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [05:20, 04:40](945 MB)
-PASS -- TEST 'regional_2threads_intel' [03:20, 02:54](921 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:22, 04:18](1489 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:25, 04:27](956 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:19, 04:32](958 MB)
-PASS -- TEST 'regional_wofs_intel' [06:21, 05:35](2102 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:06, 07:44]
-PASS -- TEST 'rap_control_intel' [07:43, 06:30](1198 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:39, 03:25](1421 MB)
-PASS -- TEST 'rap_decomp_intel' [07:37, 06:46](1164 MB)
-PASS -- TEST 'rap_2threads_intel' [07:37, 06:10](1357 MB)
-PASS -- TEST 'rap_restart_intel' [04:53, 03:32](1156 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:38, 06:32](1201 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:57](1128 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 04:57](1190 MB)
-PASS -- TEST 'hrrr_control_intel' [04:41, 03:23](1089 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:32, 03:26](1037 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:30, 03:06](1121 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:55](1026 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:20](1216 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:43](2009 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:27](2175 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:06, 07:37]
-PASS -- TEST 'control_csawmg_intel' [06:28, 05:24](801 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:29, 05:22](806 MB)
-PASS -- TEST 'control_ras_intel' [03:14, 02:51](808 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:06, 04:25]
-PASS -- TEST 'control_csawmg_gnu' [07:28, 06:31](810 MB)
-PASS -- TEST 'control_csawmgt_gnu' [07:23, 06:26](813 MB)
-
-PASS -- COMPILE 'wam_intel' [07:06, 06:59]
-PASS -- TEST 'control_wam_intel' [02:19, 01:51](793 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 10:08]
-PASS -- TEST 'control_p8_faster_intel' [03:52, 02:19](1637 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:22, 04:09](954 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 04:08]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:15, 02:16](828 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 02:14](826 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:13, 02:27](829 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:12, 02:15](825 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:21, 03:23](876 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:28, 03:21](874 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:13, 02:16](841 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:19, 02:18](880 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:34, 02:21](1653 MB)
-PASS -- TEST 'regional_debug_intel' [17:29, 16:33](887 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1210 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:14, 03:51](1221 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:13, 03:57](1220 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:13, 03:59](1226 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:03](1221 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:27, 04:12](1293 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:13, 04:08](1222 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:08](1215 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:13, 04:00](1214 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 04:03](1213 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:13, 03:56](1215 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 04:05](1226 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 06:28](1210 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:12, 04:02](1209 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:12, 04:50](1217 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:12, 03:57](1214 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 06:50](1219 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:05, 03:48]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:52](787 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:21, 01:46](788 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:05, 03:04]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 07:16]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:42, 03:20](1274 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:43, 05:25](1145 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:44, 02:54](1026 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:26, 05:10](1278 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 02:44](1045 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:53, 03:05](985 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:49, 04:04](1091 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:23, 01:35](963 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:06, 09:54]
-PASS -- TEST 'conus13km_control_intel' [02:34, 01:48](1294 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:27, 00:43](1200 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:22, 01:00](1164 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:06, 07:32]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 03:46](1089 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:18]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:55](1097 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:15, 03:51](1096 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:31, 11:34](1328 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:27, 11:57](987 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:26, 06:38](1239 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:31](1407 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:28]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:16, 04:02](1147 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:06, 10:47]
-PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:18](878 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:15, 05:05](1277 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:21](948 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:59, 13:59](988 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:00](1019 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:36](603 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:59](616 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:50](434 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 08:11](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:45, 04:02](611 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:42, 03:51](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:58](677 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:21, 01:31](452 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:06, 03:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:24](633 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:06, 11:27]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:45, 17:13](727 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 15:48](811 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:05, 10:11]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:53, 10:32](796 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:08, 09:56]
-PASS -- TEST 'hafs_regional_docn_intel' [11:00, 05:45](961 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:59, 05:39](953 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:41, 16:27](1336 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:05, 06:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:12, 02:10](1153 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:22](1088 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:05](1012 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:11, 02:06](1013 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:07](1004 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:10, 02:10](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:16](1157 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:10](1018 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:43, 05:00](1146 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:40, 04:54](1144 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:13](1151 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:10, 03:03](2434 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:05](2441 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:24]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:12, 05:12](1077 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:05, 05:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:10, 02:09](1119 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 00:42]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 01:07](335 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:57](560 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:16, 00:34](561 MB)
-
-PASS -- COMPILE 'atml_intel' [09:05, 08:24]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:06, 05:46](1646 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:03, 05:52](1650 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:35, 03:03](940 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:07, 10:08]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:40](1687 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:16, 10:19]
-PASS -- TEST 'control_atmwav_intel' [03:39, 01:39](693 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:05, 07:41]
-PASS -- TEST 'atmaero_control_p8_intel' [05:43, 03:39](1785 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:24](1825 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:40, 04:34](1815 MB)
-
-PASS -- COMPILE 'atmaq_intel' [08:05, 07:08]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:05, 03:15]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 17:14](4574 MB)
-
-PASS -- COMPILE 'atm_gnu' [06:08, 05:45]
-PASS -- TEST 'control_c48_gnu' [10:26, 09:33](881 MB)
-PASS -- TEST 'control_stochy_gnu' [03:13, 02:15](730 MB)
-PASS -- TEST 'control_ras_gnu' [04:13, 03:41](732 MB)
-PASS -- TEST 'control_p8_gnu' [04:49, 03:38](1511 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:31](1514 MB)
-PASS -- TEST 'control_flake_gnu' [05:12, 04:22](806 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:05, 04:22]
-PASS -- TEST 'rap_control_gnu' [09:44, 07:45](1090 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:32, 07:42](1086 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:31, 07:18](1128 MB)
-PASS -- TEST 'rap_restart_gnu' [05:41, 04:07](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:34, 07:41](1087 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:34, 07:54](1089 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:37, 05:52](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:29, 04:02](1076 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:44, 04:02](1139 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:31, 03:36](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1077 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:23, 02:07](879 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:07](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:48, 07:43](1085 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 06:38]
-PASS -- TEST 'control_diag_debug_gnu' [02:19, 01:15](775 MB)
-PASS -- TEST 'regional_debug_gnu' [07:26, 06:26](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:01](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:14, 01:57](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:11, 02:01](1098 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:12, 02:01](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:21, 02:05](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:12, 03:10](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:13, 01:59](1097 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 01:59](1093 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:13, 01:14](727 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:12, 01:16](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:29, 01:16](1505 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:13, 01:58](1099 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:12, 02:16](1099 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:43, 03:20](1103 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:06, 02:58]
-PASS -- TEST 'control_wam_debug_gnu' [02:18, 02:00](501 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:06, 05:32]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:42, 07:21](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:52, 03:54](959 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:30, 07:00](968 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:33](873 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 03:54](953 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:44, 05:29](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 02:07](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:35, 02:43](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:21, 01:10](1172 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:40](948 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:05, 08:47]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 04:28](989 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:05, 11:39]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:13, 01:59](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:13, 02:01](969 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:36](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:27, 05:47](963 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:22, 03:18](1191 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:22, 05:33](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:05, 12:07]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:13, 02:01](1003 MB)
-
-PASS -- COMPILE 's2swa_gnu' [17:05, 16:14]
-
-PASS -- COMPILE 's2s_gnu' [17:07, 16:10]
-
-PASS -- COMPILE 's2swa_debug_gnu' [13:06, 12:15]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:06, 16:57]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:07, 11:13]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [18:05, 17:47]
+PASS -- COMPILE 's2swa_32bit_intel' [12:11, 12:05]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 07:41](1900 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31]
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:37, 14:00](1769 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:54, 14:47](2192 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:35](1175 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:07, 15:11](1694 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:52]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 20:59](1724 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:11, 11:36]
+PASS -- TEST 'cpld_control_p8_intel' [09:09, 07:51](2062 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:23, 07:39](2066 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:11](1964 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 07:50](1985 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:37, 04:18](1732 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:09, 09:24](2485 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:04, 07:46](2060 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:18, 06:33](1890 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:21, 07:47](2091 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:07, 15:38](2983 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:52, 05:51](2924 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [16:44, 09:11](3639 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 06:20](3625 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:11](2049 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 12:09]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 07:13](1789 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:21, 04:04](1818 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:52]
+PASS -- TEST 'cpld_debug_p8_intel' [08:31, 07:02](2044 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:16, 04:51](1792 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:19]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:16, 04:08](1829 MB)
+
+PASS -- COMPILE 's2s_intel' [10:11, 09:29]
+PASS -- TEST 'cpld_control_c48_intel' [08:55, 07:20](2839 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:11, 14:06]
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:23, 07:30](2067 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:09, 13:52](1825 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:25, 06:41](1287 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:13, 15:37](1745 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:17]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:34](1774 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:19]
+PASS -- TEST 'control_flake_intel' [03:22, 02:58](707 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:18](663 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:29, 02:20](682 MB)
+PASS -- TEST 'control_latlon_intel' [03:22, 02:17](670 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:16](675 MB)
+PASS -- TEST 'control_c48_intel' [06:29, 05:50](858 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 05:46](860 MB)
+PASS -- TEST 'control_c192_intel' [08:32, 07:58](987 MB)
+PASS -- TEST 'control_c384_intel' [10:13, 08:14](1447 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:10, 07:39](1524 MB)
+PASS -- TEST 'control_stochy_intel' [02:22, 01:33](674 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:54](534 MB)
+PASS -- TEST 'control_lndp_intel' [02:22, 01:27](663 MB)
+PASS -- TEST 'control_iovr4_intel' [03:26, 02:11](661 MB)
+PASS -- TEST 'control_iovr5_intel' [03:23, 02:11](666 MB)
+PASS -- TEST 'control_p8_intel' [04:04, 02:36](1635 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:33](1633 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:13, 02:30](1647 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:02, 01:23](916 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:00, 02:28](1622 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:24](974 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:53, 02:37](1632 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:25](1729 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:37, 04:37](1647 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 03:27](1716 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:00, 02:41](1643 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:13, 03:09](1653 MB)
+PASS -- TEST 'regional_control_intel' [05:36, 04:41](956 MB)
+PASS -- TEST 'regional_restart_intel' [03:34, 02:39](1100 MB)
+PASS -- TEST 'regional_decomp_intel' [05:34, 04:46](948 MB)
+PASS -- TEST 'regional_2threads_intel' [03:34, 02:54](910 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1486 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 04:31](960 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:33](955 MB)
+PASS -- TEST 'regional_wofs_intel' [06:37, 05:54](2078 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:11, 07:51]
+PASS -- TEST 'rap_control_intel' [07:56, 06:48](1204 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 03:36](1400 MB)
+PASS -- TEST 'rap_decomp_intel' [07:47, 06:52](1135 MB)
+PASS -- TEST 'rap_2threads_intel' [07:42, 06:29](1370 MB)
+PASS -- TEST 'rap_restart_intel' [05:00, 03:25](1155 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:58, 06:49](1194 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:49, 06:55](1166 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 05:02](1189 MB)
+PASS -- TEST 'hrrr_control_intel' [04:50, 03:25](1064 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:35](1052 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:40, 03:10](1129 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:53](1022 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:24](1205 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:42](2012 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:27](2155 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:11, 07:34]
+PASS -- TEST 'control_csawmg_intel' [06:35, 05:20](811 MB)
+PASS -- TEST 'control_csawmgt_intel' [06:35, 05:20](834 MB)
+PASS -- TEST 'control_ras_intel' [03:20, 03:00](807 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:10, 05:23]
+PASS -- TEST 'control_csawmg_gnu' [07:39, 06:39](813 MB)
+PASS -- TEST 'control_csawmgt_gnu' [07:38, 06:31](813 MB)
+
+PASS -- COMPILE 'wam_intel' [07:10, 07:07]
+PASS -- TEST 'control_wam_intel' [02:26, 01:59](785 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:56]
+PASS -- TEST 'control_p8_faster_intel' [04:06, 02:26](1632 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:35, 04:21](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:17]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 02:19](824 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:18](822 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:33](831 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:17](822 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](869 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [04:34, 03:24](878 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](843 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:26, 02:21](881 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:47, 02:24](1664 MB)
+PASS -- TEST 'regional_debug_intel' [15:35, 14:11](894 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:22, 04:00](1216 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:21, 03:58](1227 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:21, 03:58](1224 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:20, 04:02](1218 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:20, 04:00](1221 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:16](1298 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:21, 04:04](1219 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:06](1210 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:03](1210 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:03](1208 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:22, 03:55](1212 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:01](1215 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:31](1210 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:21, 04:00](1220 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:24, 04:57](1226 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:21, 04:01](1222 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:50](1220 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:54]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:32, 01:45](791 MB)
+PASS -- TEST 'control_csawmgt_debug_gnu' [02:33, 01:43](788 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:11, 02:41]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:57]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:01, 03:20](1268 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:33](1140 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:10, 02:52](1031 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:20](1295 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:45, 02:42](1045 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](977 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 04:12](1097 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:37](963 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:27]
+PASS -- TEST 'conus13km_control_intel' [02:48, 01:50](1297 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:45](1195 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:35, 01:02](1155 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:14]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 03:44](1068 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:14]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:58](1089 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:21, 03:51](1087 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:40, 11:34](1346 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:07](997 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:34, 06:35](1242 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:36](1406 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:57]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:05](1145 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:11, 10:28]
+PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:35](873 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:20](1273 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:24, 06:23](953 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:07, 13:58](985 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 14:59](1003 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:02, 05:43](604 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:09](615 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:58](432 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:15](542 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:58](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:43](621 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:48](681 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:30](447 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:54, 11:20](626 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:07, 16:44](738 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:02, 17:49](812 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:09, 09:36](793 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:11, 10:41]
+PASS -- TEST 'hafs_regional_docn_intel' [07:09, 05:24](962 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:08, 05:29](914 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:35](1339 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:18]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:09](1155 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1092 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:06](1008 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:07](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:06](1007 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:10](1151 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:07](1133 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:05](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:00, 05:03](1154 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:58](1141 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:09](1144 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:19, 03:04](2380 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2439 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:14](1072 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:15]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:10](1150 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](334 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:58](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:36](558 MB)
+
+PASS -- COMPILE 'atml_intel' [08:10, 07:48]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:21, 06:03](1652 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:57](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:16](938 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:10, 09:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:04, 01:37](1697 MB)
+
+PASS -- COMPILE 'atmwm_intel' [10:10, 09:52]
+PASS -- TEST 'control_atmwav_intel' [02:53, 01:31](685 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:11, 07:26]
+PASS -- TEST 'atmaero_control_p8_intel' [05:00, 03:38](1786 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:58, 04:25](1819 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:27](1822 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:22]
+PASS -- TEST 'regional_atmaq_debug_intel' [18:38, 16:44](4605 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:11, 04:36]
+PASS -- TEST 'control_c48_gnu' [10:35, 09:34](864 MB)
+PASS -- TEST 'control_stochy_gnu' [03:24, 02:15](729 MB)
+PASS -- TEST 'control_ras_gnu' [04:20, 03:40](737 MB)
+PASS -- TEST 'control_p8_gnu' [05:06, 03:38](1515 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:32](1524 MB)
+PASS -- TEST 'control_flake_gnu' [05:22, 04:27](811 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:10, 04:26]
+PASS -- TEST 'rap_control_gnu' [08:44, 07:52](1087 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:46, 07:55](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:58, 07:09](1124 MB)
+PASS -- TEST 'rap_restart_gnu' [04:54, 03:55](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:53, 07:54](1087 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 07:56](1090 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:46](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:46, 04:09](1076 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:01, 04:08](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:40](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:43, 04:01](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:25, 02:06](891 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:26, 02:07](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:12, 07:48](1084 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:31]
+PASS -- TEST 'control_diag_debug_gnu' [02:23, 01:17](774 MB)
+PASS -- TEST 'regional_debug_gnu' [07:37, 06:26](927 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1096 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:55](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:18, 02:01](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:03](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:04](1269 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1093 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1094 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:09](1091 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:10](723 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:21](721 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:15](1501 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:59](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:19](1099 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:17](1102 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:48]
+PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:00](500 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:59]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:41, 07:19](965 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 03:53](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:54](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:37](890 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:55](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:53, 05:28](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:31, 02:02](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:48, 02:33](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:04](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:33](926 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:15]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:41, 04:24](988 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 07:04]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 02:00](975 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:24, 01:56](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [06:38, 05:21](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:37](955 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:32, 03:14](1190 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:34, 05:24](1346 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:00]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:20, 02:00](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:11, 15:26]
+
+PASS -- COMPILE 's2s_gnu' [16:11, 15:54]
+
+PASS -- COMPILE 's2swa_debug_gnu' [06:11, 05:39]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 05:18]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:55]
SYNOPSIS:
-Starting Date/Time: 20240415 18:42:06
-Ending Date/Time: 20240415 19:56:08
-Total Time: 01h:14m:28s
-Compiles Completed: 55/55
+Starting Date/Time: 20240418 10:13:12
+Ending Date/Time: 20240418 11:26:55
+Total Time: 01h:14m:32s
+Compiles Completed: 54/54
Tests Completed: 239/239
NOTES:
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 2f7f41cd46..eb45f3bfc5 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-684ddd65adbf26b3a8003e05c8af6c4e19be63f8
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,245 +35,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3732077
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3966856
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:09, 38:13]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [34:43, 06:59](1795 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:09, 47:30]
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:35, 20:47](1664 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:24, 22:19](1892 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [47:58, 10:20](996 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [00:54, 23:54](1629 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:12, 38:37]
-PASS -- TEST 'cpld_control_p8_intel' [45:42, 07:28](1831 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:05, 07:26](1825 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [53:54, 04:29](1716 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [20:44, 07:38](1841 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [16:31, 04:41](1726 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [05:52, 07:05](2277 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [29:36, 07:38](1823 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:35, 06:19](1774 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [38:01, 07:27](1834 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 07:03](1796 MB)
-
-PASS -- COMPILE 's2sw_intel' [36:08, 35:07]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [23:43, 05:51](1668 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:54, 05:42](1713 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [41:09, 05:02]
-PASS -- TEST 'cpld_debug_p8_intel' [43:47, 10:28](1843 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:07, 04:50]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [28:28, 07:12](1680 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [41:10, 32:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:05, 05:45](1717 MB)
-
-PASS -- COMPILE 's2s_intel' [56:11, 32:30]
-PASS -- TEST 'cpld_control_c48_intel' [24:03, 12:42](2796 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [09:16, 32:58]
-PASS -- TEST 'cpld_control_p8_faster_intel' [48:59, 07:08](1834 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [52:15, 52:26]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:44, 20:58](1682 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:35, 10:19](1030 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:32, 22:25](1651 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [34:08, 05:05]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:16, 32:09](1690 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [02:10, 34:28]
-PASS -- TEST 'control_flake_intel' [31:42, 04:43](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [29:46, 03:15](595 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [30:52, 03:43](607 MB)
-PASS -- TEST 'control_latlon_intel' [30:38, 03:31](597 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:48, 03:24](593 MB)
-PASS -- TEST 'control_c48_intel' [18:38, 10:09](843 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [18:39, 10:09](845 MB)
-PASS -- TEST 'control_c192_intel' [40:02, 12:43](730 MB)
-PASS -- TEST 'control_c384_intel' [43:40, 15:57](897 MB)
-PASS -- TEST 'control_c384gdas_intel' [43:15, 13:51](1020 MB)
-PASS -- TEST 'control_stochy_intel' [26:38, 02:15](603 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:26, 01:22](435 MB)
-PASS -- TEST 'control_lndp_intel' [29:42, 02:21](603 MB)
-PASS -- TEST 'control_iovr4_intel' [30:42, 03:34](594 MB)
-PASS -- TEST 'control_iovr5_intel' [26:41, 03:21](594 MB)
-PASS -- TEST 'control_p8_intel' [32:33, 04:09](1575 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 04:10](1571 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [31:58, 04:03](1581 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:14, 02:34](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [31:48, 04:04](1571 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:34, 02:17](832 MB)
-PASS -- TEST 'control_decomp_p8_intel' [30:37, 04:15](1562 MB)
-PASS -- TEST 'control_2threads_p8_intel' [23:29, 03:52](1663 MB)
-PASS -- TEST 'control_p8_lndp_intel' [16:05, 07:21](1570 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:06, 05:21](1634 MB)
-PASS -- TEST 'control_p8_mynn_intel' [01:02, 04:03](1575 MB)
-PASS -- TEST 'merra2_thompson_intel' [40:04, 04:50](1590 MB)
-PASS -- TEST 'regional_control_intel' [32:49, 07:22](758 MB)
-PASS -- TEST 'regional_restart_intel' [04:36, 03:52](931 MB)
-PASS -- TEST 'regional_decomp_intel' [09:36, 07:31](759 MB)
-PASS -- TEST 'regional_2threads_intel' [05:34, 04:28](752 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:47, 07:05](766 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:40, 07:03](761 MB)
-
-PASS -- COMPILE 'rrfs_intel' [48:09, 32:19]
-PASS -- TEST 'rap_control_intel' [12:12, 10:04](991 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:49](1213 MB)
-PASS -- TEST 'rap_decomp_intel' [12:02, 10:44](989 MB)
-PASS -- TEST 'rap_2threads_intel' [11:54, 09:43](1084 MB)
-PASS -- TEST 'rap_restart_intel' [07:31, 05:13](993 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:17, 10:14](990 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 10:55](992 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:24, 07:28](1002 MB)
-PASS -- TEST 'hrrr_control_intel' [07:17, 05:28](989 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:02, 05:27](977 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:57, 05:05](1063 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:48](916 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:26, 10:18](986 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:31, 12:27](1942 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 12:19](1931 MB)
-
-PASS -- COMPILE 'csawmg_intel' [04:11, 30:57]
-PASS -- TEST 'control_csawmg_intel' [08:38, 08:02](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [08:40, 07:57](699 MB)
-PASS -- TEST 'control_ras_intel' [05:22, 04:28](667 MB)
-
-PASS -- COMPILE 'wam_intel' [38:08, 29:46]
-PASS -- TEST 'control_wam_intel' [03:18, 02:49](502 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [46:09, 31:20]
-PASS -- TEST 'control_p8_faster_intel' [05:34, 03:37](1581 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:36, 06:27](766 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 05:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 03:22](764 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 03:24](758 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:44](759 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:20, 03:22](763 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:34, 05:14](806 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 05:10](805 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:22, 03:24](774 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:26, 03:26](818 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:55, 03:34](1594 MB)
-PASS -- TEST 'regional_debug_intel' [22:44, 21:43](775 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:23, 06:02](1154 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 05:55](1149 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 05:59](1150 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 06:01](1152 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:01](1157 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:30, 06:17](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 06:07](1151 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 06:07](1149 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:04](1148 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 06:01](1154 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:54](1149 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 06:00](1152 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 09:48](1145 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:17, 05:56](1140 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 07:18](1152 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:18, 06:00](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:24, 10:26](1156 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:06, 03:45]
-PASS -- TEST 'control_wam_debug_intel' [07:20, 06:08](468 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:08, 30:02]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 05:07](1070 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:56, 08:08](900 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:23](868 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:16, 07:49](946 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:01](907 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:07, 04:38](856 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:12](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:20](849 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:10, 42:24]
-PASS -- TEST 'conus13km_control_intel' [04:02, 02:54](1105 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:37, 01:30](1052 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:34, 01:33](1023 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:08, 30:23]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:46, 05:30](903 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:07, 03:55]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 05:58](1030 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 05:51](1027 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:47, 18:22](1139 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:42, 18:35](880 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:38, 10:41](1083 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:42, 18:26](1203 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:06, 03:53]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:18, 06:03](1071 MB)
-
-PASS -- COMPILE 'hafsw_intel' [39:08, 34:41]
-PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:59](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:23, 06:24](1085 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:35, 09:12](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 16:07](800 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 17:54](830 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:09, 05:32](776 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [02:10, 31:56]
-PASS -- TEST 'hafs_regional_docn_intel' [10:22, 08:35](766 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:34](755 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [33:08, 08:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:17, 03:37](1060 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 02:11](1031 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 03:31](920 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 03:37](927 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 03:40](925 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:37](1056 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 03:39](1063 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 03:31](927 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:07, 07:52](885 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:05, 07:47](848 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 03:36](1063 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 05:01](2401 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 05:03](2356 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [24:07, 03:23]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 07:57](1017 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [18:07, 08:15]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:36](1061 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:06]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:34](230 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 01:17](255 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:49](257 MB)
-
-PASS -- COMPILE 'atml_intel' [35:11, 34:22]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:42, 07:52](1613 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:45](1603 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:52, 04:09](862 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:08, 32:49]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:24, 02:17](1612 MB)
-
-PASS -- COMPILE 'atmwm_intel' [32:09, 31:12]
-PASS -- TEST 'control_atmwav_intel' [04:10, 02:11](613 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:08, 30:28]
-PASS -- TEST 'atmaero_control_p8_intel' [07:22, 05:08](1702 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:16](1719 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:07, 06:37](1729 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:26]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:51](1794 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:26]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:41](1664 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:13](1889 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:18](995 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:36, 23:50](1636 MB)
+
+PASS -- COMPILE 's2swa_intel' [39:13, 38:43]
+PASS -- TEST 'cpld_control_p8_intel' [09:27, 07:34](1830 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:48, 07:31](1818 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:43, 04:22](1709 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 07:41](1848 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 04:25](1736 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:13](2281 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 07:36](1825 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:40, 06:23](1774 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:48, 07:35](1819 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [15:40, 07:03](1789 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:13, 36:41]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:25, 05:50](1654 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 05:40](1710 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26]
+PASS -- TEST 'cpld_debug_p8_intel' [12:58, 10:33](1845 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:34]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:18](1677 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:14]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:37](1714 MB)
+
+PASS -- COMPILE 's2s_intel' [33:13, 32:29]
+PASS -- TEST 'cpld_control_c48_intel' [14:12, 12:57](2781 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:18, 32:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:21, 07:05](1826 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:54]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:47, 20:49](1686 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 10:23](1035 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:36, 24:23](1643 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:49]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:09](1694 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:49]
+PASS -- TEST 'control_flake_intel' [17:34, 04:25](643 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:34, 03:18](592 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:39, 03:29](602 MB)
+PASS -- TEST 'control_latlon_intel' [04:30, 03:21](600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:42, 03:25](600 MB)
+PASS -- TEST 'control_c48_intel' [10:41, 10:08](852 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:05](849 MB)
+PASS -- TEST 'control_c192_intel' [23:04, 12:26](721 MB)
+PASS -- TEST 'control_c384_intel' [20:55, 15:45](907 MB)
+PASS -- TEST 'control_c384gdas_intel' [21:48, 13:26](1018 MB)
+PASS -- TEST 'control_stochy_intel' [03:34, 02:11](600 MB)
+PASS -- TEST 'control_stochy_restart_intel' [16:29, 01:18](427 MB)
+PASS -- TEST 'control_lndp_intel' [16:34, 02:03](608 MB)
+PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](601 MB)
+PASS -- TEST 'control_iovr5_intel' [04:34, 03:21](598 MB)
+PASS -- TEST 'control_p8_intel' [20:46, 03:55](1571 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [24:46, 03:56](1579 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [20:45, 03:54](1577 MB)
+PASS -- TEST 'control_restart_p8_intel' [09:20, 02:07](817 MB)
+PASS -- TEST 'control_noqr_p8_intel' [21:49, 03:55](1568 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [09:24, 02:03](836 MB)
+PASS -- TEST 'control_decomp_p8_intel' [24:37, 04:01](1552 MB)
+PASS -- TEST 'control_2threads_p8_intel' [24:38, 03:41](1665 MB)
+PASS -- TEST 'control_p8_lndp_intel' [27:21, 06:54](1575 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [26:04, 05:02](1636 MB)
+PASS -- TEST 'control_p8_mynn_intel' [24:56, 04:01](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [25:09, 04:32](1591 MB)
+PASS -- TEST 'regional_control_intel' [10:09, 07:03](762 MB)
+PASS -- TEST 'regional_restart_intel' [15:42, 03:48](934 MB)
+PASS -- TEST 'regional_decomp_intel' [10:09, 07:29](761 MB)
+PASS -- TEST 'regional_2threads_intel' [06:09, 04:24](757 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:17, 07:04](757 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [22:44, 06:58](759 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:14, 33:02]
+PASS -- TEST 'rap_control_intel' [27:33, 10:04](988 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:11, 05:38](1199 MB)
+PASS -- TEST 'rap_decomp_intel' [28:18, 10:37](986 MB)
+PASS -- TEST 'rap_2threads_intel' [28:11, 09:33](1084 MB)
+PASS -- TEST 'rap_restart_intel' [08:09, 05:13](991 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [28:29, 10:03](984 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:02, 10:40](979 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:20, 07:32](998 MB)
+PASS -- TEST 'hrrr_control_intel' [19:25, 05:14](988 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [19:00, 05:21](980 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [18:58, 04:44](1062 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](915 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [20:34, 09:55](988 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [20:31, 12:25](1943 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:32, 12:00](1939 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:13, 31:14]
+PASS -- TEST 'control_csawmg_intel' [15:42, 08:02](694 MB)
+PASS -- TEST 'control_csawmgt_intel' [13:50, 07:53](690 MB)
+PASS -- TEST 'control_ras_intel' [09:26, 04:22](662 MB)
+
+PASS -- COMPILE 'wam_intel' [30:13, 29:53]
+PASS -- TEST 'control_wam_intel' [03:22, 02:43](500 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [47:15, 31:38]
+PASS -- TEST 'control_p8_faster_intel' [06:31, 03:36](1580 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:45, 07:28](770 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 05:31]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:22](757 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:40, 03:21](761 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:45](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:25](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:53, 05:14](809 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:53, 05:08](810 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:32, 03:25](754 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:37, 03:31](816 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:05, 03:34](1585 MB)
+PASS -- TEST 'regional_debug_intel' [25:58, 21:43](778 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:33, 05:59](1153 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:34, 05:55](1151 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:58](1152 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:03](1147 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:02](1160 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:19](1229 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:09](1149 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:23, 06:09](1133 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:03](1146 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 05:59](1153 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:05](1137 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:31, 06:04](1145 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 09:53](1153 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [09:27, 05:57](1147 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:20](1148 MB)
+PASS -- TEST 'rap_flake_debug_intel' [09:23, 06:02](1143 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 10:23](1155 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:11, 04:04]
+PASS -- TEST 'control_wam_debug_intel' [08:27, 06:09](447 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:03]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:17, 05:11](1073 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 08:20](898 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 04:22](864 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 07:51](941 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:11, 04:01](909 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:33](852 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:14, 06:13](902 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:21](842 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:33]
+PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1104 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:24](1053 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:35](1021 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:36]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 05:29](897 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 06:03](1029 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:52](1025 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:00, 18:23](1126 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [25:58, 18:38](850 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:50, 10:44](1086 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:50, 18:37](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:08]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:43, 06:08](1072 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:14, 34:45]
+PASS -- TEST 'hafs_regional_atm_intel' [08:27, 06:56](711 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:37, 06:23](1087 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:12](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:34, 16:19](802 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 18:03](822 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:27, 05:40](774 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [34:13, 31:56]
+PASS -- TEST 'hafs_regional_docn_intel' [11:22, 08:35](769 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:26, 08:38](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:54]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:35](1063 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:13](1031 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:31](917 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:34](919 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](923 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:37](1066 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:52](1065 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](916 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:57](890 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:47](845 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1058 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:02](2333 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:25, 05:05](2345 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 07:58](1006 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:55]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 03:32](1059 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:37](230 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:20](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:50](256 MB)
+
+PASS -- COMPILE 'atml_intel' [34:12, 33:57]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 07:54](1606 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:50, 07:58](1605 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 04:18](858 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:13, 31:45]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 02:16](1605 MB)
+
+PASS -- COMPILE 'atmwm_intel' [31:13, 31:00]
+PASS -- TEST 'control_atmwav_intel' [04:14, 02:14](611 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:13, 30:56]
+PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:21](1677 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [14:31, 06:20](1725 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:44](1736 MB)
SYNOPSIS:
-Starting Date/Time: 20240415 20:38:03
-Ending Date/Time: 20240416 01:26:35
-Total Time: 04h:49m:06s
+Starting Date/Time: 20240418 00:51:47
+Ending Date/Time: 20240418 04:31:24
+Total Time: 03h:40m:17s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index e925006e5b..46908d3ba4 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-684ddd65adbf26b3a8003e05c8af6c4e19be63f8
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,279 +35,277 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_215054
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_337338
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:06, 14:25]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:18, 05:08](3178 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:06, 21:07]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:32](1749 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:10, 17:26](2033 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:01, 08:23](1114 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:46, 18:34](1647 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 05:46]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 22:56](1696 MB)
-
-PASS -- COMPILE 's2swa_intel' [17:06, 16:53]
-PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:35](3208 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:58, 05:36](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:54, 03:22](3258 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:41](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:37](3269 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:38, 06:06](3553 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [07:38, 05:43](3205 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:33, 04:41](3069 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:56, 05:42](3209 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [12:46, 10:00](3338 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:29](3618 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:07, 11:01](4117 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:52, 07:01](4368 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:44, 05:20](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:06, 15:26]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:59, 04:26](1731 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:15, 04:24](1782 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:06, 05:42]
-PASS -- TEST 'cpld_debug_p8_intel' [10:23, 08:36](3251 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:57]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:06, 05:57](1754 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:06, 13:16]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:23, 04:22](1780 MB)
-
-PASS -- COMPILE 's2s_intel' [14:06, 13:16]
-PASS -- TEST 'cpld_control_c48_intel' [08:52, 08:03](2830 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:06, 20:58]
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:24](3215 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 18:17]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:16, 16:40](1773 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:11](1176 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:11, 18:35](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 05:08]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:02, 24:38](1722 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:06, 13:08]
-PASS -- TEST 'control_flake_intel' [04:23, 03:31](655 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](652 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:28, 02:34](653 MB)
-PASS -- TEST 'control_latlon_intel' [03:21, 02:29](655 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:30](654 MB)
-PASS -- TEST 'control_c48_intel' [06:26, 06:00](874 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:58](871 MB)
-PASS -- TEST 'control_c192_intel' [10:41, 09:10](858 MB)
-PASS -- TEST 'control_c384_intel' [12:35, 10:13](1247 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:04, 09:04](1358 MB)
-PASS -- TEST 'control_stochy_intel' [02:23, 01:47](654 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:23, 01:02](505 MB)
-PASS -- TEST 'control_lndp_intel' [02:23, 01:37](658 MB)
-PASS -- TEST 'control_iovr4_intel' [03:26, 02:30](650 MB)
-PASS -- TEST 'control_iovr5_intel' [03:20, 02:34](650 MB)
-PASS -- TEST 'control_p8_intel' [04:08, 02:58](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:10, 02:58](1628 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:48](1628 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:07, 01:46](898 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:16, 03:00](1620 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:39](934 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:14, 02:59](1616 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:03](1669 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:15](1624 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:37, 03:58](1693 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:05](1629 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:40, 03:37](1635 MB)
-PASS -- TEST 'regional_control_intel' [06:46, 05:22](856 MB)
-PASS -- TEST 'regional_restart_intel' [03:37, 02:46](1026 MB)
-PASS -- TEST 'regional_decomp_intel' [06:38, 05:38](852 MB)
-PASS -- TEST 'regional_2threads_intel' [04:41, 03:48](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:42, 05:12](1365 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 05:13](862 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 05:13](860 MB)
-PASS -- TEST 'regional_wofs_intel' [07:37, 06:32](1924 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:06, 11:51]
-PASS -- TEST 'rap_control_intel' [10:29, 08:03](1108 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 04:47](1290 MB)
-PASS -- TEST 'rap_decomp_intel' [10:25, 08:04](1033 MB)
-PASS -- TEST 'rap_2threads_intel' [10:23, 07:53](1185 MB)
-PASS -- TEST 'rap_restart_intel' [05:19, 04:02](1111 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:44](1104 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:27, 08:07](1037 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:52](1131 MB)
-PASS -- TEST 'hrrr_control_intel' [05:18, 03:59](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 04:11](1015 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:21](1109 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:21, 02:16](1002 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:24, 07:35](1098 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:08](1993 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:24, 08:58](2072 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:06, 11:07]
-PASS -- TEST 'control_csawmg_intel' [07:48, 06:05](743 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:41, 05:59](746 MB)
-PASS -- TEST 'control_ras_intel' [04:20, 03:19](741 MB)
-
-PASS -- COMPILE 'wam_intel' [11:06, 10:40]
-PASS -- TEST 'control_wam_intel' [03:23, 02:06](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 13:13]
-PASS -- TEST 'control_p8_faster_intel' [04:32, 02:42](1621 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:43, 04:40](850 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:05, 04:37]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:51](818 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:45](814 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:09](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:49](815 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:38, 04:17](867 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:35, 04:16](863 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:22, 02:52](831 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:23, 02:47](872 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:43, 03:01](1640 MB)
-PASS -- TEST 'regional_debug_intel' [18:39, 17:40](849 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:20, 05:33](1213 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:20, 05:05](1197 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 05:04](1202 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:57](1207 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1202 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:20](1283 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 05:04](1197 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 05:03](1197 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:04](1208 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:56](1201 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:18, 05:09](1193 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:19, 05:04](1202 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:16, 07:46](1204 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:57](1205 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 05:45](1209 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:53](1206 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:23, 08:17](1204 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:05, 03:46]
-PASS -- TEST 'control_wam_debug_intel' [05:18, 05:01](511 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:06, 11:21]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:55, 04:32](1159 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:23, 06:23](1050 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:20, 03:24](976 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 06:46](1095 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:10, 02:59](964 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:15, 03:36](927 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:15, 04:55](972 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:52](941 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:06, 13:34]
-PASS -- TEST 'conus13km_control_intel' [03:58, 02:07](1201 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:43, 01:04](1120 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:40, 01:19](1111 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 12:38]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:13](993 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 03:19]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:54](1085 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:17, 04:51](1090 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:44, 14:22](1228 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 14:19](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:38, 08:26](1152 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:02](1296 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 03:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:01](1130 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:06, 12:57]
-PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:31](736 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1116 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:03](835 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 12:50](866 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 14:41](884 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:51, 06:23](506 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:37](521 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 03:09](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:20, 08:00](478 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:10](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:56](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 05:19](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:36](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:53, 04:38](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:06, 04:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:12](562 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:06, 13:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:36](633 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:11, 09:41](743 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:06, 13:37]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 06:54](732 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:06, 12:20]
-PASS -- TEST 'hafs_regional_docn_intel' [10:10, 06:24](829 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:24](819 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:00](1213 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:06, 07:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:14, 02:40](1132 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:41](1051 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:38](1012 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:34](1016 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:44](1124 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:39](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:12, 02:31](1016 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:57](1059 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:09, 05:58](1037 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:36](1138 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:15, 03:32](2496 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:13, 03:37](2495 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:05, 03:34]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:14, 06:13](1065 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:06, 09:58]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:38](1126 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:52](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:18, 00:51](323 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](322 MB)
-
-PASS -- COMPILE 'atml_intel' [13:06, 12:36]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:35, 04:12](1612 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:17](1600 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:31](889 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:06, 11:29]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:46](1663 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:06, 14:04]
-PASS -- TEST 'control_atmwav_intel' [03:06, 01:42](674 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:06, 11:05]
-PASS -- TEST 'atmaero_control_p8_intel' [05:18, 04:02](3026 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:14, 04:49](3100 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:07](3112 MB)
-
-PASS -- COMPILE 'atmaq_intel' [12:06, 11:11]
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:06, 03:25]
-PASS -- TEST 'regional_atmaq_debug_intel' [23:39, 21:26](4572 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:56]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:29, 05:28](3177 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:51]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 16:31](1742 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:03, 17:30](2025 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 08:23](1111 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 18:29](1645 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:53]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:00](1692 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:11, 14:26]
+PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:37](3207 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:37](3213 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:24](3255 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:38](3238 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 03:28](3281 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:49, 06:06](3556 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:39](3202 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:52, 04:42](3067 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:13, 05:42](3210 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 09:57](3331 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:26, 06:31](3620 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:53, 11:05](4121 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 07:24](4363 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:25](3178 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:15]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:28, 04:21](1736 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:53, 04:24](1778 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:27]
+PASS -- TEST 'cpld_debug_p8_intel' [10:38, 08:33](3249 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 06:00](1754 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:17]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:24](1778 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 13:15]
+PASS -- TEST 'cpld_control_c48_intel' [09:02, 08:05](2830 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:26]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:52, 05:20](3213 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:23]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:21, 16:41](1762 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 08:20](1172 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 18:35](1686 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 24:30](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:28]
+PASS -- TEST 'control_flake_intel' [04:27, 03:28](696 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:27](649 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:37](658 MB)
+PASS -- TEST 'control_latlon_intel' [03:24, 02:28](648 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](656 MB)
+PASS -- TEST 'control_c48_intel' [06:29, 06:03](826 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 05:56](859 MB)
+PASS -- TEST 'control_c192_intel' [09:37, 09:04](846 MB)
+PASS -- TEST 'control_c384_intel' [12:40, 10:09](1248 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:07, 09:06](1355 MB)
+PASS -- TEST 'control_stochy_intel' [02:23, 01:42](654 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:05](498 MB)
+PASS -- TEST 'control_lndp_intel' [02:24, 01:34](653 MB)
+PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB)
+PASS -- TEST 'control_iovr5_intel' [03:23, 02:30](650 MB)
+PASS -- TEST 'control_p8_intel' [05:10, 03:09](1634 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 03:09](1627 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:02](1626 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:21, 01:41](889 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](1623 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 01:39](929 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:30, 03:03](1616 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:30, 03:11](1717 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:00, 05:22](1637 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:58](1696 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:47, 03:03](1631 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:57, 03:31](1648 MB)
+PASS -- TEST 'regional_control_intel' [06:54, 05:10](861 MB)
+PASS -- TEST 'regional_restart_intel' [04:49, 02:46](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [06:50, 05:30](843 MB)
+PASS -- TEST 'regional_2threads_intel' [04:41, 03:43](841 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:36, 05:10](1366 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:17](855 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:08](850 MB)
+PASS -- TEST 'regional_wofs_intel' [07:38, 06:40](1917 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:11, 11:34]
+PASS -- TEST 'rap_control_intel' [09:30, 07:48](1100 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:43](1307 MB)
+PASS -- TEST 'rap_decomp_intel' [10:29, 08:07](1037 MB)
+PASS -- TEST 'rap_2threads_intel' [08:58, 07:55](1175 MB)
+PASS -- TEST 'rap_restart_intel' [05:26, 04:03](1091 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:28, 07:48](1098 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:26, 08:06](1027 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:47](1124 MB)
+PASS -- TEST 'hrrr_control_intel' [06:07, 04:06](1030 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:12](1024 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:24](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:10](987 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:41](1093 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 09:12](1997 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 09:05](2074 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:10, 10:52]
+PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](746 MB)
+PASS -- TEST 'control_csawmgt_intel' [07:50, 06:05](747 MB)
+PASS -- TEST 'control_ras_intel' [05:24, 03:22](738 MB)
+
+PASS -- COMPILE 'wam_intel' [12:10, 12:03]
+PASS -- TEST 'control_wam_intel' [05:21, 02:05](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:44]
+PASS -- TEST 'control_p8_faster_intel' [05:38, 02:40](1621 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:46, 04:42](856 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:54]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:32, 02:53](812 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:43](818 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:02](821 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:52](812 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:45, 04:10](863 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 04:10](865 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:23, 02:46](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:30, 02:55](874 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:50, 03:21](1653 MB)
+PASS -- TEST 'regional_debug_intel' [19:47, 17:40](844 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1211 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:44](1205 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:59](1194 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:44](1208 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:59](1205 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:25](1282 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:14](1202 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:56](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1198 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:03](1198 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1205 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:02](1199 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:59](1204 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:51](1210 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:27, 05:05](1206 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:30, 08:34](1211 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:20]
+PASS -- TEST 'control_wam_debug_intel' [05:23, 04:59](522 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:19]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:32](1168 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:18, 06:29](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:27](983 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:46](1094 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:06](957 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:39](930 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 04:50](1044 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:55](928 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:23]
+PASS -- TEST 'conus13km_control_intel' [05:01, 02:13](1201 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:09](1124 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:17](1056 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:01]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:19](994 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1079 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:50](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:47, 14:33](1229 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:26](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:08](1154 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:28](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:29]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:32, 05:05](1129 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:12, 13:06]
+PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:39](743 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:04](1116 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:28, 06:59](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 12:51](865 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:42](833 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:13](500 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 07:36](514 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:17](371 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:19, 08:02](469 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:13](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:56](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:24](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 13:20](570 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 09:43](728 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 09:45](704 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:49]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 07:01](695 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27]
+PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:22](782 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:24](812 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:59, 15:58](1211 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:44](1131 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1090 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1001 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:44](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:39](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:41](1137 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:48](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:35](1021 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 06:01](1050 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 05:56](1043 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:43](1119 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:39](2482 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:40](2491 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:15]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:08](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1127 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](264 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:52](322 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:31](319 MB)
+
+PASS -- COMPILE 'atml_intel' [15:11, 13:21]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:13](1609 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 04:12](1601 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:25](900 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:11, 12:17]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:49](1668 MB)
+
+PASS -- COMPILE 'atmwm_intel' [14:11, 11:44]
+PASS -- TEST 'control_atmwav_intel' [03:08, 01:44](671 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:11, 11:26]
+PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:04](3026 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:49](3091 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:01](3113 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:18]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 20:24](4577 MB)
SYNOPSIS:
-Starting Date/Time: 20240415 18:41:28
-Ending Date/Time: 20240415 20:03:54
-Total Time: 01h:23m:13s
-Compiles Completed: 39/39
+Starting Date/Time: 20240418 09:17:36
+Ending Date/Time: 20240418 10:38:54
+Total Time: 01h:21m:41s
+Compiles Completed: 38/38
Tests Completed: 182/182
NOTES:
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 4c318d73a9..3b67c86e04 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d5f1957f6d43c8e93bd556e9862958738751400a
+d164b650b97d4c4a68ab86c55f2254f29767da2b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/HEAD-4-g6e1bc3e)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-396-gb447c63)
+ 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,234 +35,234 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_225418
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_53976
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:21, 11:33]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [57:36, 02:10](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:41, 28:12]
-PASS -- TEST 'cpld_control_gfsv17_intel' [40:17, 02:07](1595 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 01:53](1718 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [19:17, 01:38](849 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [40:18, 01:29](1581 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:14, 04:21]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [04:45, 01:38](1606 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:22, 10:49]
-PASS -- TEST 'cpld_control_p8_intel' [58:36, 01:31](3004 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:36, 01:40](3001 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [48:11, 01:17](3065 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [58:36, 01:02](3030 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [48:11, 01:16](3081 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [58:36, 01:37](3320 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [58:36, 01:22](2999 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [58:37, 01:36](2931 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:35, 01:42](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [58:45, 05:07](3949 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:20, 03:40](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [58:36, 02:02](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:22, 11:03]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [57:35, 00:55](1589 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [57:35, 01:22](1639 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [22:34, 21:25]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:23, 01:47](1633 MB)
-
-PASS -- COMPILE 's2s_intel' [26:38, 24:44]
-PASS -- TEST 'cpld_control_c48_intel' [43:18, 00:55](2652 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:32, 18:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [17:20, 01:58](3005 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:21, 11:28]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [57:36, 01:32](1605 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [36:09, 01:16](904 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:58, 01:28](1586 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [23:36, 21:54]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:22, 01:10](1613 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [24:34, 22:37]
-PASS -- TEST 'control_flake_intel' [40:09, 00:43](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [40:09, 01:01](522 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [40:09, 01:04](532 MB)
-PASS -- TEST 'control_latlon_intel' [40:09, 00:56](523 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [40:09, 01:03](526 MB)
-PASS -- TEST 'control_c48_intel' [40:08, 01:13](714 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [40:08, 01:12](719 MB)
-PASS -- TEST 'control_c192_intel' [40:09, 00:26](637 MB)
-PASS -- TEST 'control_c384_intel' [37:32, 01:06](951 MB)
-PASS -- TEST 'control_c384gdas_intel' [37:32, 02:19](1093 MB)
-PASS -- TEST 'control_stochy_intel' [35:33, 01:14](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [28:04, 00:37](331 MB)
-PASS -- TEST 'control_lndp_intel' [33:45, 00:28](526 MB)
-PASS -- TEST 'control_iovr4_intel' [33:43, 00:22](524 MB)
-PASS -- TEST 'control_iovr5_intel' [33:40, 01:19](525 MB)
-PASS -- TEST 'control_p8_intel' [33:35, 01:29](1512 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [33:00, 01:37](1506 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [33:00, 01:41](1506 MB)
-PASS -- TEST 'control_restart_p8_intel' [25:16, 01:08](689 MB)
-PASS -- TEST 'control_noqr_p8_intel' [33:00, 01:16](1496 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [19:16, 01:33](701 MB)
-PASS -- TEST 'control_decomp_p8_intel' [32:44, 01:40](1498 MB)
-PASS -- TEST 'control_2threads_p8_intel' [32:05, 01:34](1594 MB)
-PASS -- TEST 'control_p8_lndp_intel' [31:10, 00:45](1502 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [30:39, 01:53](1564 MB)
-PASS -- TEST 'control_p8_mynn_intel' [30:30, 01:42](1515 MB)
-PASS -- TEST 'merra2_thompson_intel' [30:27, 01:28](1511 MB)
-PASS -- TEST 'regional_control_intel' [29:44, 00:45](610 MB)
-PASS -- TEST 'regional_restart_intel' [19:57, 00:29](777 MB)
-PASS -- TEST 'regional_decomp_intel' [29:42, 00:31](608 MB)
-PASS -- TEST 'regional_2threads_intel' [29:41, 00:29](665 MB)
-PASS -- TEST 'regional_noquilt_intel' [29:38, 00:51](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [28:58, 00:41](610 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [28:56, 00:34](608 MB)
-PASS -- TEST 'regional_wofs_intel' [28:34, 01:02](1580 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:26, 15:10]
-PASS -- TEST 'rap_control_intel' [28:12, 01:25](917 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [41:09, 01:08](1096 MB)
-PASS -- TEST 'rap_decomp_intel' [41:09, 01:48](920 MB)
-PASS -- TEST 'rap_2threads_intel' [41:09, 01:58](1010 MB)
-PASS -- TEST 'rap_restart_intel' [15:50, 01:28](786 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [41:09, 01:22](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:09, 01:52](914 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [27:27, 01:30](785 MB)
-PASS -- TEST 'hrrr_control_intel' [41:09, 01:08](907 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [41:09, 01:06](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [41:10, 01:37](995 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [27:16, 00:55](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [41:09, 01:28](909 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [41:09, 01:15](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:11, 00:30](1860 MB)
-
-PASS -- COMPILE 'csawmg_intel' [21:30, 19:17]
-PASS -- TEST 'control_csawmg_intel' [24:36, 01:07](600 MB)
-PASS -- TEST 'control_csawmgt_intel' [24:33, 01:11](599 MB)
-PASS -- TEST 'control_ras_intel' [23:36, 00:47](562 MB)
-
-PASS -- COMPILE 'wam_intel' [20:29, 18:36]
-PASS -- TEST 'control_wam_intel' [23:05, 01:01](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:26, 14:44]
-PASS -- TEST 'control_p8_faster_intel' [22:32, 01:25](1513 MB)
-PASS -- TEST 'regional_control_faster_intel' [22:10, 00:58](612 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:22, 07:14]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:02, 00:43](686 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:52, 00:49](691 MB)
-PASS -- TEST 'control_stochy_debug_intel' [21:35, 00:24](689 MB)
-PASS -- TEST 'control_lndp_debug_intel' [21:13, 01:08](695 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [21:07, 00:23](733 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [19:58, 00:37](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [19:58, 00:27](700 MB)
-PASS -- TEST 'control_diag_debug_intel' [19:56, 00:31](748 MB)
-PASS -- TEST 'control_debug_p8_intel' [19:54, 00:58](1526 MB)
-PASS -- TEST 'regional_debug_intel' [19:44, 00:47](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [19:10, 01:15](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [18:44, 00:33](1073 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [16:43, 01:20](1072 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [16:00, 01:08](1072 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:39, 01:12](1077 MB)
-PASS -- TEST 'rap_diag_debug_intel' [15:36, 01:06](1159 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:02, 00:39](1073 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [14:26, 00:21](1075 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [14:16, 00:32](1075 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:05, 00:37](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [13:52, 00:51](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [13:32, 00:52](1073 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:49, 00:56](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [12:48, 00:58](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [12:44, 01:02](1078 MB)
-PASS -- TEST 'rap_flake_debug_intel' [12:30, 01:04](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:25, 01:28](1079 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [11:19, 06:52]
-PASS -- TEST 'control_wam_debug_intel' [12:23, 01:09](301 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:28, 13:18]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:16, 01:20](953 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:49, 01:17](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:23, 02:06](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:13, 00:59](848 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:13, 02:07](848 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:11, 02:02](791 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:30, 01:28](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:41, 01:11](669 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:31, 13:15]
-PASS -- TEST 'conus13km_control_intel' [09:14, 00:40](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:21, 00:24](1009 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:13, 00:19](882 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:24, 11:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:40, 01:05](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:13, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:19, 00:58](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 00:38](951 MB)
-PASS -- TEST 'conus13km_debug_intel' [07:25, 01:06](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [07:16, 00:49](711 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:08, 00:54](1038 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:57, 00:44](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [15:30, 12:02]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:51, 00:51](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [21:30, 16:17]
-PASS -- TEST 'hafs_regional_atm_intel' [05:47, 01:53](616 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:44, 01:16](967 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:33, 01:25](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [05:26, 02:18](703 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:15, 01:19](711 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:05, 00:59](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:23, 01:46](404 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 01:02](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:02, 02:42](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:42, 01:26](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:18, 01:46](411 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [02:50, 01:27](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:13](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [18:28, 13:42]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:03, 01:27](502 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:42, 19:16]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:45, 01:42](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:40, 01:24](708 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:39, 15:59]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:52, 01:33](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:34, 16:23]
-PASS -- TEST 'hafs_regional_docn_intel' [01:01, 02:01](659 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [00:55, 01:58](650 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [00:14, 01:17](880 MB)
-
-PASS -- COMPILE 'atml_intel' [22:41, 18:42]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [59:59, 01:47](1546 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [59:22, 01:16](1540 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:52, 00:49](741 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:33, 11:08]
-PASS -- TEST 'atmaero_control_p8_intel' [59:11, 01:31](2851 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [58:54, 01:59](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [58:10, 01:14](2923 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [14:29, 10:39]
-PASS -- TEST 'regional_atmaq_debug_intel' [58:09, 01:40](4435 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:27, 10:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:12, 01:19](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:28, 11:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [10:11, 01:52](1592 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:15, 02:04](1708 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [52:05, 01:55](848 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:12, 02:35](1570 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [17:22, 01:57](1600 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:31, 15:23]
+PASS -- TEST 'cpld_control_p8_intel' [06:08, 01:43](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:08, 02:18](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [57:25, 01:58](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:08, 01:41](3029 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [57:23, 01:54](3084 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:08, 01:13](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:08, 01:38](3003 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 01:33](2924 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:08, 02:08](3001 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [06:17, 05:37](3948 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:00, 04:12](4251 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:08, 02:12](2971 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:36, 21:52]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [58:35, 01:38](1593 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:35, 01:56](1638 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [21:37, 21:17]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:02, 01:57](1635 MB)
+
+PASS -- COMPILE 's2s_intel' [10:25, 09:55]
+PASS -- TEST 'cpld_control_c48_intel' [12:13, 00:40](2653 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:32, 16:07]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:07, 02:22](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [43:05, 42:21]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:27, 01:04](1606 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:55, 01:23](904 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:56, 01:38](1574 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:38, 20:33]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:32](1611 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:31, 15:58]
+PASS -- TEST 'control_flake_intel' [00:50, 00:31](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [00:50, 00:56](523 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:50, 01:04](530 MB)
+PASS -- TEST 'control_latlon_intel' [00:50, 00:51](522 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [00:50, 00:54](521 MB)
+PASS -- TEST 'control_c48_intel' [00:49, 00:53](715 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [00:49, 00:50](714 MB)
+PASS -- TEST 'control_c192_intel' [00:50, 01:38](636 MB)
+PASS -- TEST 'control_c384_intel' [00:54, 02:39](952 MB)
+PASS -- TEST 'control_c384gdas_intel' [00:54, 03:46](1090 MB)
+PASS -- TEST 'control_stochy_intel' [00:50, 00:31](532 MB)
+PASS -- TEST 'control_stochy_restart_intel' [58:14, 01:00](346 MB)
+PASS -- TEST 'control_lndp_intel' [00:50, 00:32](527 MB)
+PASS -- TEST 'control_iovr4_intel' [00:50, 00:54](527 MB)
+PASS -- TEST 'control_iovr5_intel' [00:50, 00:56](522 MB)
+PASS -- TEST 'control_p8_intel' [00:50, 02:07](1501 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [58:17, 01:53](1497 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [57:35, 01:52](1513 MB)
+PASS -- TEST 'control_restart_p8_intel' [55:05, 00:37](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [57:18, 01:27](1494 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [51:56, 01:02](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [57:12, 01:19](1503 MB)
+PASS -- TEST 'control_2threads_p8_intel' [57:10, 00:50](1591 MB)
+PASS -- TEST 'control_p8_lndp_intel' [57:10, 01:12](1499 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [57:08, 01:56](1571 MB)
+PASS -- TEST 'control_p8_mynn_intel' [57:07, 01:37](1508 MB)
+PASS -- TEST 'merra2_thompson_intel' [56:56, 01:25](1511 MB)
+PASS -- TEST 'regional_control_intel' [56:55, 00:16](609 MB)
+PASS -- TEST 'regional_restart_intel' [50:42, 00:27](777 MB)
+PASS -- TEST 'regional_decomp_intel' [56:52, 00:59](606 MB)
+PASS -- TEST 'regional_2threads_intel' [56:50, 00:50](664 MB)
+PASS -- TEST 'regional_noquilt_intel' [56:06, 00:25](1147 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [55:23, 00:24](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [54:08, 00:26](608 MB)
+PASS -- TEST 'regional_wofs_intel' [54:06, 00:57](1579 MB)
+
+PASS -- COMPILE 'rrfs_intel' [21:39, 21:13]
+PASS -- TEST 'rap_control_intel' [50:27, 02:07](919 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:23, 01:13](1089 MB)
+PASS -- TEST 'rap_decomp_intel' [50:05, 00:52](917 MB)
+PASS -- TEST 'rap_2threads_intel' [49:48, 02:01](1006 MB)
+PASS -- TEST 'rap_restart_intel' [40:56, 01:15](790 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [49:44, 01:39](916 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:40, 01:16](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [40:01, 01:43](784 MB)
+PASS -- TEST 'hrrr_control_intel' [49:33, 01:08](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [49:32, 01:04](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [49:32, 01:14](995 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [43:13, 01:03](743 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [49:05, 01:45](909 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [48:30, 01:05](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:16, 01:19](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [17:33, 16:58]
+PASS -- TEST 'control_csawmg_intel' [53:28, 01:57](598 MB)
+PASS -- TEST 'control_csawmgt_intel' [52:39, 00:31](598 MB)
+PASS -- TEST 'control_ras_intel' [51:58, 01:03](561 MB)
+
+PASS -- COMPILE 'wam_intel' [18:35, 18:10]
+PASS -- TEST 'control_wam_intel' [51:34, 00:58](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 13:16]
+PASS -- TEST 'control_p8_faster_intel' [51:48, 02:06](1505 MB)
+PASS -- TEST 'regional_control_faster_intel' [51:45, 00:24](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:46]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:30, 01:18](682 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [51:08, 01:23](692 MB)
+PASS -- TEST 'control_stochy_debug_intel' [50:51, 00:52](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [50:45, 01:11](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [48:03, 01:22](733 MB)
+PASS -- TEST 'control_csawmgt_debug_intel' [47:22, 00:43](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [47:17, 00:49](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [47:01, 01:08](748 MB)
+PASS -- TEST 'control_debug_p8_intel' [46:52, 00:19](1527 MB)
+PASS -- TEST 'regional_debug_intel' [46:50, 00:34](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [46:28, 00:39](1077 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [46:24, 00:44](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [46:23, 00:41](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [46:17, 00:38](1072 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:16, 00:37](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [46:02, 00:48](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:46](1074 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:46, 00:45](1074 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [43:13, 00:52](1077 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:13, 00:54](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [42:57, 00:53](1074 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [42:03, 00:54](1078 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:45, 00:48](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [41:23, 00:56](1071 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [41:02, 01:07](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [40:56, 00:55](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:54, 02:16](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:17, 02:55]
+PASS -- TEST 'control_wam_debug_intel' [40:26, 00:58](299 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:48]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [40:02, 01:21](961 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:43, 01:12](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:42, 02:26](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:48, 01:29](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:46, 01:44](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:44, 01:28](786 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:25, 01:30](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:50, 00:17](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 10:48]
+PASS -- TEST 'conus13km_control_intel' [38:43, 01:02](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [34:50, 00:50](1007 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [34:28, 00:41](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:40, 22:40]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [36:22, 01:25](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:46, 20:59]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:58, 01:05](952 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:58, 01:12](953 MB)
+PASS -- TEST 'conus13km_debug_intel' [35:58, 00:25](1036 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [35:37, 01:15](709 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [35:32, 00:34](1035 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:55, 01:16](1099 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 06:27]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:43, 00:58](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [24:47, 24:16]
+PASS -- TEST 'hafs_regional_atm_intel' [28:53, 01:52](619 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:53, 00:27](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:51, 01:42](661 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [28:51, 01:36](703 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:52, 01:20](712 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:51, 00:59](388 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:52, 02:05](405 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [28:52, 01:28](290 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 02:56](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [28:51, 01:26](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [28:51, 00:50](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [28:53, 00:44](494 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:15](313 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:28, 09:39]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:24, 01:33](504 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:33, 11:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:56, 01:39](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:42, 01:39](711 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:34, 11:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:28, 00:56](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [24:44, 24:18]
+PASS -- TEST 'hafs_regional_docn_intel' [17:01, 01:22](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:36, 02:09](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:34, 00:26](880 MB)
+
+PASS -- COMPILE 'atml_intel' [16:37, 15:26]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:38, 01:15](1550 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [32:38, 01:15](1550 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:17, 01:16](741 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:32, 10:33]
+PASS -- TEST 'atmaero_control_p8_intel' [32:58, 01:31](2854 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [32:58, 01:54](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:58, 01:40](2924 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:20, 08:02]
+PASS -- TEST 'regional_atmaq_debug_intel' [33:47, 01:21](4437 MB)
SYNOPSIS:
-Starting Date/Time: 20240416 14:49:41
-Ending Date/Time: 20240416 16:29:19
-Total Time: 01h:40m:15s
+Starting Date/Time: 20240418 12:37:01
+Ending Date/Time: 20240418 13:59:51
+Total Time: 01h:23m:22s
Compiles Completed: 30/30
Tests Completed: 157/157
diff --git a/tests/rt.sh b/tests/rt.sh
index 0b693c1966..201ce697f8 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -724,6 +724,7 @@ case ${MACHINE_ID} in
ROCOTO_SCHEDULER="slurm"
fi
+ export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6
module load PrgEnv-intel/8.3.3
module load intel-classic/2023.1.0
module load cray-mpich/8.1.25
@@ -1040,9 +1041,7 @@ NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST
# Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set
RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$
mkdir -p "${RUNDIR_ROOT}"
-if [[ -L "${PATHRT}/run_dir" && -d "${PATHRT}/run_dir" ]]; then
- rm "${PATHRT}/run_dir"
-fi
+rm -rf "${PATHRT}/run_dir"
echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir"
ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir"
echo "Run regression test in: ${RUNDIR_ROOT}"
@@ -1149,7 +1148,7 @@ if [[ ${ROCOTO} == true ]]; then
]>
-
+
197001010000 197001010000 01:00:00
&LOG;/workflow.log
EOF
@@ -1421,4 +1420,4 @@ fi
## Lets verify all tests were run and that they passed
generate_log
eval "${set_x}"
-echo "******Regression Testing Script Completed******"
\ No newline at end of file
+echo "******Regression Testing Script Completed******"
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e69de29bb2..f822a534c3 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -0,0 +1,13 @@
+regional_control intel
+regional_restart intel
+regional_decomp intel
+regional_2threads intel
+regional_2dwrtdecomp intel
+regional_wofs intel
+regional_spp_sppt_shum_skeb intel
+regional_control_faster intel
+rap_clm_lake_debug intel
+regional_spp_sppt_shum_skeb_dyn32_phy32 intel
+hafs_regional_atm intel
+hafs_global_multiple_4nests_atm intel
+hafs_regional_specified_moving_1nest_atm intel
From b6c576d71b1bcfa8801e06faaa43dd970d62a471 Mon Sep 17 00:00:00 2001
From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com>
Date: Tue, 23 Apr 2024 12:24:22 -0400
Subject: [PATCH 25/33] Merged global namelist (#2173)
* UFSWM - global_control.nml_IN has been added as the new regression test namelist template for all global regression tests. The namelist now uses pointers (i.e. @[abc]) for variables and default values have been added to the default_vars.sh script. A new section in default_vars.sh has been added (export_tiled) to account for tiled RTs that pulls the correct parameter files using the ATMRES variable.
Regression tests have been modified to account for these changes. Tests that were not compatible with the GFSv17_p8 core have been disabled for now. They will be turned on as they are updated from GFSv16 to GFSv17.
---
tests/bl_date.conf | 2 +-
tests/default_vars.sh | 1814 +++++++++--------
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 156 +-
.../OpnReqTests_regional_control_hera.log | 24 +-
tests/logs/RegressionTests_acorn.log | 507 +++--
tests/logs/RegressionTests_derecho.log | 653 +++---
tests/logs/RegressionTests_gaea.log | 603 +++---
tests/logs/RegressionTests_hera.log | 768 +++----
tests/logs/RegressionTests_hercules.log | 812 ++++----
tests/logs/RegressionTests_jet.log | 532 ++---
tests/logs/RegressionTests_orion.log | 630 +++---
tests/logs/RegressionTests_wcoss2.log | 446 ++--
tests/parm/control_ugwpv1.nml.IN | 319 ---
...d_control.nml.IN => global_control.nml.IN} | 38 +-
tests/parm/merra2_thompson.nml.IN | 371 ----
tests/rt.conf | 10 -
tests/test_changes.list | 27 +-
tests/tests/atmaero_control_p8 | 18 +-
tests/tests/atmaero_control_p8_rad | 18 +-
tests/tests/atmaero_control_p8_rad_micro | 17 +-
tests/tests/atmwav_control_noaero_p8 | 17 +-
tests/tests/control_2threads_p8 | 19 +-
tests/tests/control_CubedSphereGrid | 5 +-
tests/tests/control_CubedSphereGrid_debug | 5 +-
tests/tests/control_CubedSphereGrid_parallel | 6 +-
tests/tests/control_atmwav | 90 -
tests/tests/control_c192 | 12 +-
tests/tests/control_c384 | 12 +-
tests/tests/control_c384gdas | 2 +-
tests/tests/control_c384gdas_wav | 126 --
tests/tests/control_c48 | 16 +-
tests/tests/control_c48.v2.sfc | 2 +-
tests/tests/control_c768 | 4 +-
tests/tests/control_csawmg | 2 +-
tests/tests/control_csawmg_debug | 2 +-
tests/tests/control_csawmgt | 40 -
tests/tests/control_csawmgt_debug | 36 -
tests/tests/control_debug_p8 | 38 +-
tests/tests/control_decomp_p8 | 33 +-
tests/tests/control_diag_debug | 5 +-
tests/tests/control_flake | 2 +-
tests/tests/control_flake_debug | 4 +-
tests/tests/control_iovr4 | 2 +-
tests/tests/control_iovr5 | 2 +-
tests/tests/control_latlon | 5 +-
tests/tests/control_lndp | 2 +-
tests/tests/control_lndp_debug | 2 +-
tests/tests/control_noqr_p8 | 35 +-
tests/tests/control_p8 | 35 +-
tests/tests/control_p8.v2.sfc | 35 +-
tests/tests/control_p8_atmlnd | 19 +-
tests/tests/control_p8_atmlnd_sbs | 17 +-
tests/tests/control_p8_faster | 35 +-
tests/tests/control_p8_lndp | 35 +-
tests/tests/control_p8_mynn | 58 +-
tests/tests/control_p8_rrtmgp | 35 +-
tests/tests/control_p8_ugwpv1 | 35 +-
tests/tests/control_ras | 2 +-
tests/tests/control_ras_debug | 2 +-
tests/tests/control_restart_noqr_p8 | 37 +-
tests/tests/control_restart_p8 | 37 +-
tests/tests/control_restart_p8_atmlnd | 17 +-
tests/tests/control_stochy | 2 +-
tests/tests/control_stochy_debug | 2 +-
tests/tests/control_stochy_restart | 2 +-
tests/tests/control_wam | 2 +-
tests/tests/control_wam_debug | 3 +-
tests/tests/control_wrtGauss_netcdf_parallel | 5 +-
.../control_wrtGauss_netcdf_parallel_debug | 5 +-
tests/tests/cpld_control_gfsv17 | 4 +-
tests/tests/cpld_control_gfsv17_iau | 4 +-
tests/tests/cpld_control_p8 | 2 +-
tests/tests/cpld_debug_gfsv17 | 2 +-
tests/tests/cpld_mpi_gfsv17 | 4 +-
tests/tests/cpld_restart_gfsv17 | 4 +-
tests/tests/gnv1_c96_no_nest_debug | 2 +-
tests/tests/merra2_thompson | 35 +-
tests/tests/regional_2dwrtdecomp | 2 +-
tests/tests/regional_2threads | 2 +-
tests/tests/regional_atmaq | 2 +-
tests/tests/regional_atmaq_debug | 2 +-
tests/tests/regional_atmaq_faster | 2 +-
tests/tests/regional_control | 2 +-
tests/tests/regional_control_faster | 2 +-
tests/tests/regional_debug | 2 +-
tests/tests/regional_decomp | 2 +-
tests/tests/regional_ifi_2threads | 2 +-
tests/tests/regional_ifi_control | 2 +-
tests/tests/regional_ifi_decomp | 2 +-
tests/tests/regional_netcdf_parallel | 2 +-
tests/tests/regional_noquilt | 2 +-
tests/tests/regional_restart | 2 +-
tests/tests/regional_rrfs_a | 2 +-
tests/tests/regional_spp_sppt_shum_skeb | 2 +-
.../regional_spp_sppt_shum_skeb_dyn32_phy32 | 2 +-
tests/tests/regional_wofs | 2 +-
97 files changed, 4063 insertions(+), 4791 deletions(-)
mode change 100755 => 100644 tests/default_vars.sh
delete mode 100644 tests/parm/control_ugwpv1.nml.IN
rename tests/parm/{cpld_control.nml.IN => global_control.nml.IN} (93%)
delete mode 100644 tests/parm/merra2_thompson.nml.IN
delete mode 100644 tests/tests/control_atmwav
delete mode 100644 tests/tests/control_c384gdas_wav
delete mode 100644 tests/tests/control_csawmgt
delete mode 100644 tests/tests/control_csawmgt_debug
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index d10f180066..2c9c09b289 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240417
+export BL_DATE=20240419
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
old mode 100755
new mode 100644
index 7bbbd3652f..03e70f9308
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -420,341 +420,473 @@ export CMP_DATAONLY=false
export esmf_logkind="ESMF_LOGKIND_MULTI"
export DumpFields="false"
-export_fv3 ()
+export_fv3_v16 ()
{
-# ufs.configure defaults
- export UFS_CONFIGURE=ufs.configure.atm_esmf.IN
- export MODEL_CONFIGURE=model_configure.IN
- export atm_model=fv3
+# Add support for v16 test cases. This section
+# will be removed once support for GFSv16 is
+# officially depricated.
- export FV3=true
- export S2S=false
- export HAFS=false
- export AQM=false
- export DATM_CDEPS=false
- export DOCN_CDEPS=false
- export CDEPS_INLINE=false
- export POSTAPP='global'
- export USE_MERRA2=.false.
+# Load in FV3 values
+export_fv3
- export NTILES=6
- export INPES=${INPES_dflt}
- export JNPES=${JNPES_dflt}
- export RESTART_INTERVAL=0
- export QUILTING=.true.
- export QUILTING_RESTART=.true.
- export WRITE_GROUP=1
- export WRTTASK_PER_GROUP=6
- export ITASKS=1
- export OUTPUT_HISTORY=.true.
- export HISTORY_FILE_ON_NATIVE_GRID=.false.
- export WRITE_DOPOST=.false.
- export NUM_FILES=2
- export FILENAME_BASE="'atm' 'sfc'"
- export OUTPUT_GRID="'cubed_sphere_grid'"
- export OUTPUT_FILE="'netcdf'"
- export ZSTANDARD_LEVEL=0
- export IDEFLATE=0
- export QUANTIZE_NSD=0
- export ICHUNK2D=0
- export JCHUNK2D=0
- export ICHUNK3D=0
- export JCHUNK3D=0
- export KCHUNK3D=0
- export IMO=384
- export JMO=190
- export WRITE_NSFLIP=.false.
-
- #input file
- export DIAG_TABLE=diag_table_gfsv16
- export FIELD_TABLE=field_table_gfsv16
-
- export DOMAINS_STACK_SIZE=3000000
-
- # Coldstart/warmstart
- #rt script for ICs
- export MODEL_INITIALIZATION=false
- #namelist variable
- export WARM_START=.false.
- export READ_INCREMENT=.false.
- export RES_LATLON_DYNAMICS="''"
- export NGGPS_IC=.true.
- export EXTERNAL_IC=.true.
- export MAKE_NH=.true.
- export MOUNTAIN=.false.
- export NA_INIT=1
-
- # Radiation
- export DO_RRTMGP=.false.
- export DOGP_CLDOPTICS_LUT=.false.
- export DOGP_LWSCAT=.false.
- export USE_LW_JACOBIAN=.false.
- export DAMP_LW_FLUXADJ=.false.
- export RRTMGP_LW_PHYS_BLKSZ=2
- export ICLOUD=0
- export IAER=111
- export ICLIQ_SW=1
- export IOVR=1
- export LFNC_K=-999
- export LFNC_P0=-999
-
- # Microphysics
- export IMP_PHYSICS=11
- export NWAT=6
- # GFDL MP
- export DNATS=1
- export DO_SAT_ADJ=.true.
- export LHEATSTRG=.true.
- export LSEASPRAY=.false.
- export LGFDLMPRAD=.false.
- export EFFR_IN=.false.
- # Thompson MP
- export LRADAR=.true.
- export LTAEROSOL=.true.
- export EXT_DIAG_THOMPSON=.false.
- export SEDI_SEMI=.true.
- export DECFL=10
- # NSSL MP
- export NSSL_CCCN=0.6e9
- export NSSL_ALPHAH=0.0
- export NSSL_ALPHAHL=1.0
- export NSSL_HAIL_ON=.false.
- export NSSL_CCN_ON=.true.
- export NSSL_INVERTCCN=.true.
-
- # Smoke
- export RRFS_SMOKE=.false.
- export SMOKE_FORECAST=0
- export RRFS_RESTART=NO
- export SEAS_OPT=2
-
- # GWD
- export LDIAG_UGWP=.false.
- export DO_UGWP=.false.
- export DO_TOFD=.false.
- export GWD_OPT=1
- export DO_UGWP_V0=.false.
- export DO_UGWP_V1_W_GSLDRAG=.false.
- export DO_UGWP_V0_OROG_ONLY=.false.
- export DO_GSL_DRAG_LS_BL=.false.
- export DO_GSL_DRAG_SS=.false.
- export DO_GSL_DRAG_TOFD=.false.
- export DO_UGWP_V1=.false.
- export DO_UGWP_V1_OROG_ONLY=.false.
- export KNOB_UGWP_DOKDIS=1
- export KNOB_UGWP_NDX4LH=1
- export KNOB_UGWP_VERSION=0
- export KNOB_UGWP_PALAUNCH=500.e2
- export KNOB_UGWP_NSLOPE=1
-
- # resolution dependent settings
- export CDMBWD_c48='0.071,2.1,1.0,1.0'
- export CDMBWD_c96='0.14,1.8,1.0,1.0'
- export CDMBWD_c192='0.23,1.5,1.0,1.0'
- export CDMBWD_c384='1.1,0.72,1.0,1.0'
- export CDMBWD_c768='4.0,0.15,1.0,1.0'
-
- #DT_INNER=(Time step)/2
- export DT_INNER_c96=360
- export DT_INNER_c192=300
- export DT_INNER_c384=150
- export DT_INNER_c768=75
-
- # set default
- export CDMBWD=${CDMBWD_c96}
- export DT_INNER=${DT_INNER_c96}
-
- # PBL
- export SATMEDMF=.false.
- export ISATMEDMF=0
- export HYBEDMF=.true.
- export SHINHONG=.false.
- export DO_YSU=.false.
- export DO_MYNNEDMF=.false.
- export HURR_PBL=.false.
- export MONINQ_FAC=1.0
- export SFCLAY_COMPUTE_FLUX=.false.
-
- # Shallow/deep convection
- export DO_DEEP=.true.
- export SHAL_CNV=.true.
- export IMFSHALCNV=2
- export HWRF_SAMFSHAL=.false.
- export IMFDEEPCNV=2
- export HWRF_SAMFDEEP=.false.
- export RAS=.false.
- export RANDOM_CLDS=.false.
- export CNVCLD=.true.
- export PROGSIGMA=.false.
- export BETASCU=8.0
- export BETAMCU=1.0
- export BETADCU=2.0
-
- # Aerosol convective scavenging
- export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"'
-
- # SFC
- export DO_MYJSFC=.false.
- export DO_MYNNSFCLAY=.false.
- export BL_MYNN_TKEADVECT=.false.
-
- # LSM
- export LSM=1
- export LSOIL_LSM=4
- export LANDICE=.true.
- export KICE=2
- export IALB=1
- export IEMS=1
-
- # Ozone / stratospheric H2O
- export OZ_PHYS_OLD=.true.
- export OZ_PHYS_NEW=.false.
- export H2O_PHYS=.false.
-
- # Lake models
- export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points
- export IOPT_LAKE=2 # 1=flake, 2=clm lake
- export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it
- export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it
- export FRAC_ICE=.true. # should be false for flake, true for clm_lake
-
- export CPL=.false.
- export CPLCHM=.false.
- export CPLFLX=.false.
- export CPLICE=.false.
- export CPLWAV=.false.
- export CPLWAV2ATM=.false.
- export CPLLND=.false.
- export CPLLND2ATM=.false.
- export USE_MED_FLUX=.false.
- export DAYS=1
- export NPX=97
- export NPY=97
- export NPZ=64
- export NPZP=65
- export NSTF_NAME=2,1,1,0,5
- export OUTPUT_FH="12 -1"
- export FHZERO=6
- export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'"
- export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'"
- export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'"
- export FNSOCC="''"
- export FNSMCC="'global_soilmgldas.t126.384.190.grb'"
- export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
- export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
- export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'"
-
- # Dynamical core
- export FV_CORE_TAU=0.
- export RF_CUTOFF=30.0
- export FAST_TAU_W_SEC=0.0
-
- # Tiled Fix files
- export ATMRES=C96
- export TILEDFIX=.false.
+# Replace FV3 variable with old values as needed
+export USE_MERRA2=.false.
+export WRITE_NSFLIP=.false.
+
+export DIAG_TABLE=diag_table_gfsv16
+export FIELD_TABLE=field_table_gfsv16
+export FV3_RUN=control_run.IN
+export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v16
+
+export DOGP_CLDOPTICS_LUT=.false.
+export DOGP_LWSCAT=.false.
+export IAER=111
+export ICLIQ_SW=1
+export IOVR=1
+export IMP_PHYSICS=11
+export DNATS=1
+export DO_SAT_ADJ=.true.
+export LHEATSTRG=.true.
+export LSEASPRAY=.false.
+export GWD_OPT=1
+export DO_UGWP_V0=.false.
+export DO_GSL_DRAG_SS=.false.
+export SATMEDMF=.false.
+export ISATMEDMF=0
+
+export LSM=1
+export LANDICE=.true.
+export IALB=1
+export IEMS=1
+
+export NSTF_NAME=2,1,1,0,5
+export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'"
+export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'"
+export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'"
+export FNSOCC="''"
+export FNSMCC="'global_soilmgldas.t126.384.190.grb'"
+export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
+export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
+export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'"
+
+export RF_CUTOFF=30.0
+export FAST_TAU_W_SEC=0.0
+
+export ATMRES=C96
+export TILEDFIX=.false.
+export DO_CA=.false.
+export CA_SGS=.false.
- export ENS_NUM=1
- export SYEAR=2016
- export SMONTH=10
- export SDAY=03
- export SHOUR=00
- export SECS=$(( SHOUR*600 ))
- export FHMAX=$(( DAYS*24 ))
- export DT_ATMOS=1800
- export FHCYC=24
- export FHROT=0
- export LDIAG3D=.false.
- export QDIAG3D=.false.
- export PRINT_DIFF_PGR=.false.
- export MAX_OUTPUT_FIELDS=310
-
- # Stochastic physics
- export STOCHINI=.false.
- export DO_SPPT=.false.
- export DO_SHUM=.false.
- export DO_SKEB=.false.
- export LNDP_TYPE=0
- export N_VAR_LNDP=0
- export SKEB=-999.
- export SPPT=-999.
- export SHUM=-999.
- export LNDP_VAR_LIST="'XXX'"
- export LNDP_PRT_LIST=-999
- export LNDP_MODEL_TYPE=0
-
- #IAU
- export IAU_INC_FILES="''"
- export IAU_DELTHRS=0
- export IAUFHRS=-1
- export IAU_OFFSET=0
-
- export FH_DFI_RADAR='-2e10'
-
- #Cellular automata
- export DO_CA=.false.
- export CA_SGS=.false.
- export CA_GLOBAL=.false.
-
- #waves
- export WW3_RSTDTHR=12
- WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))"
- export WW3_DT_2_RST
- export WW3_OUTDTHR=1
- WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
- export WW3_DTFLD
- WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
- export WW3_DTPNT
- export DTRST=0
- export RSTTYPE=T
- export GOFILETYPE=1
- export POFILETYPE=1
- export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR"
- export CPLILINE='$'
- export ICELINE='$'
- export WINDLINE='$'
- export CURRLINE='$'
- export NFGRIDS=0
- export NMGRIDS=1
- export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F"
- export FUNIPNT=T
- export IOSRV=1
- export FPNTPROC=T
- export FGRDPROC=T
- export UNIPOINTS='points'
- export FLAGMASKCOMP=' F'
- export FLAGMASKOUT=' F'
- RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
- export RUN_BEG
- RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
- export RUN_END
- export OUT_BEG=${RUN_BEG}
- export OUT_END=${RUN_END}
- export RST_BEG=${RUN_BEG}
- export RST_2_BEG=${RUN_BEG}
- export RST_END=${RUN_END}
- export RST_2_END=${RUN_END}
- export WW3_CUR='F'
- export WW3_ICE='F'
- export WW3_IC1='F'
- export WW3_IC5='F'
- # ATMW
- export WW3_MULTIGRID=true
- export WW3_MODDEF=mod_def.glo_1deg
- export MESH_WAV=mesh.glo_1deg.nc
+}
- # ATMA
- export AOD_FRQ=060000
- # Regional
- export WRITE_RESTART_WITH_BCS=.false.
+export_fv3 ()
+{
+if [[ -z ${ATMRES+x} || -z ${ATMRES} ]]; then
+ export ATMRES=C96
+fi
- # Diagnostics
- export PRINT_DIFF_PGR=.false.
+# ufs.configure defaults
+export UFS_CONFIGURE=ufs.configure.atm_esmf.IN
+export MODEL_CONFIGURE=model_configure.IN
+export atm_model=fv3
+
+export FV3=true
+export S2S=false
+export HAFS=false
+export AQM=false
+export DATM_CDEPS=false
+export DOCN_CDEPS=false
+export CDEPS_INLINE=false
+export POSTAPP='global'
+export USE_MERRA2=.true.
+
+export NTILES=6
+export INPES=${INPES_dflt}
+export JNPES=${JNPES_dflt}
+export RESTART_INTERVAL=0
+export QUILTING=.true.
+export QUILTING_RESTART=.true.
+export WRITE_GROUP=1
+export WRTTASK_PER_GROUP=6
+export ITASKS=1
+export OUTPUT_HISTORY=.true.
+export HISTORY_FILE_ON_NATIVE_GRID=.false.
+export WRITE_DOPOST=.false.
+export NUM_FILES=2
+export FILENAME_BASE="'atm' 'sfc'"
+export OUTPUT_GRID="'cubed_sphere_grid'"
+export OUTPUT_FILE="'netcdf'"
+export ZSTANDARD_LEVEL=0
+export IDEFLATE=0
+export QUANTIZE_NSD=0
+export ICHUNK2D=0
+export JCHUNK2D=0
+export ICHUNK3D=0
+export JCHUNK3D=0
+export KCHUNK3D=0
+export IMO=384
+export JMO=190
+export WRITE_NSFLIP=.true.
+
+export DZ_MIN=6
+export MIN_SEAICE=0.15
+export FRAC_GRID=.true.
+export MIN_LAKEICE=0.15
+
+#input file
+export FV3_RUN=control_run.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export FIELD_TABLE=field_table_thompson_noaero_tke
+export DIAG_TABLE=diag_table_cpld.IN
+export INPUT_NML=global_control.nml.IN
+
+export DOMAINS_STACK_SIZE=3000000
+
+# Coldstart/warmstart
+#rt script for ICs
+export MODEL_INITIALIZATION=false
+#namelist variable
+export WARM_START=.false.
+export READ_INCREMENT=.false.
+export RES_LATLON_DYNAMICS="''"
+export NGGPS_IC=.true.
+export EXTERNAL_IC=.true.
+export MAKE_NH=.true.
+export MOUNTAIN=.false.
+export NA_INIT=1
+
+# Radiation
+export DO_RRTMGP=.false.
+export DOGP_CLDOPTICS_LUT=.true.
+export DOGP_LWSCAT=.true.
+export DOGP_SGS_CNV=.true.
+export USE_LW_JACOBIAN=.false.
+export DAMP_LW_FLUXADJ=.false.
+export RRTMGP_LW_PHYS_BLKSZ=2
+export ICLOUD=0
+export IAER=1011
+export ICLIQ_SW=2
+export IOVR=3
+export LFNC_K=-999
+export LFNC_P0=-999
+
+# Microphysics
+export IMP_PHYSICS=8
+export NWAT=6
+# GFDL MP
+export DNATS=0
+export DO_SAT_ADJ=.false.
+export LHEATSTRG=.false.
+export LSEASPRAY=.true.
+export LGFDLMPRAD=.false.
+export EFFR_IN=.false.
+# Thompson MP
+export LRADAR=.true.
+export LTAEROSOL=.true.
+export EXT_DIAG_THOMPSON=.false.
+export SEDI_SEMI=.true.
+export DECFL=10
+# NSSL MP
+export NSSL_CCCN=0.6e9
+export NSSL_ALPHAH=0.0
+export NSSL_ALPHAHL=1.0
+export NSSL_HAIL_ON=.false.
+export NSSL_CCN_ON=.true.
+export NSSL_INVERTCCN=.true.
+
+# Smoke
+export RRFS_SMOKE=.false.
+export SMOKE_FORECAST=0
+export RRFS_RESTART=NO
+export SEAS_OPT=2
+
+# GWD
+export LDIAG_UGWP=.false.
+export DO_UGWP=.false.
+export DO_TOFD=.false.
+export GWD_OPT=2
+export DO_UGWP_V0=.true.
+export DO_UGWP_V1_W_GSLDRAG=.false.
+export DO_UGWP_V0_OROG_ONLY=.false.
+export DO_GSL_DRAG_LS_BL=.false.
+export DO_GSL_DRAG_SS=.true.
+export DO_GSL_DRAG_TOFD=.false.
+export DO_UGWP_V1=.false.
+export DO_UGWP_V1_OROG_ONLY=.false.
+export KNOB_UGWP_DOKDIS=1
+export KNOB_UGWP_NDX4LH=1
+export KNOB_UGWP_VERSION=0
+export KNOB_UGWP_PALAUNCH=500.e2
+export KNOB_UGWP_NSLOPE=1
+export DO_UGWP_V0_NST_ONLY=.false.
+
+# resolution dependent settings
+export CDMBWD_c48='0.071,2.1,1.0,1.0'
+export CDMBWD_c96='0.14,1.8,1.0,1.0'
+export CDMBWD_c192='0.23,1.5,1.0,1.0'
+export CDMBWD_c384='1.1,0.72,1.0,1.0'
+export CDMBWD_c768='4.0,0.15,1.0,1.0'
+
+#DT_INNER=(Time step)/2
+export DT_INNER_c96=360
+export DT_INNER_c192=300
+export DT_INNER_c384=150
+export DT_INNER_c768=75
+
+# set default
+export CDMBWD=${CDMBWD_c96}
+export DT_INNER=${DT_INNER_c96}
+
+# PBL
+export SATMEDMF=.true.
+export HYBEDMF=.true.
+export SHINHONG=.false.
+export DO_YSU=.false.
+export DO_MYNNEDMF=.false.
+export HURR_PBL=.false.
+export MONINQ_FAC=1.0
+export SFCLAY_COMPUTE_FLUX=.false.
+
+# Shallow/deep convection
+export DO_DEEP=.true.
+export SHAL_CNV=.true.
+export IMFSHALCNV=2
+export HWRF_SAMFSHAL=.false.
+export IMFDEEPCNV=2
+export HWRF_SAMFDEEP=.false.
+export RAS=.false.
+export RANDOM_CLDS=.false.
+export CNVCLD=.true.
+export PROGSIGMA=.false.
+export BETASCU=8.0
+export BETAMCU=1.0
+export BETADCU=2.0
+
+# Aerosol convective scavenging
+export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"'
+
+# SFC
+export DO_MYJSFC=.false.
+export DO_MYNNSFCLAY=.false.
+export BL_MYNN_TKEADVECT=.false.
+
+# LSM
+export LSM=2
+export LSOIL_LSM=4
+export LANDICE=.false.
+export KICE=2
+export IALB=2
+export IEMS=2
+export IOPT_DVEG=4
+export IOPT_CRS=2
+export IOPT_RAD=3
+export IOPT_ALB=1
+export IOPT_STC=3
+
+export IOPT_SFC=3
+export IOPT_TRS=2
+export IOPT_DIAG=2
+
+export D2_BG_K1=0.20
+export D2_BG_K2=0.04
+export PSM_BC=1
+
+export DDDMP=0.1
+
+# Ozone / stratospheric H2O
+export OZ_PHYS_OLD=.true.
+export OZ_PHYS_NEW=.false.
+export H2O_PHYS=.false.
+
+# Lake models
+export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points
+export IOPT_LAKE=2 # 1=flake, 2=clm lake
+export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it
+export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it
+export FRAC_ICE=.true. # should be false for flake, true for clm_lake
+
+# Tiled Fix files
+export TILEDFIX=.true.
+
+export CPL=.false.
+export CPLCHM=.false.
+export CPLFLX=.false.
+export CPLICE=.false.
+export CPLWAV=.false.
+export CPLWAV2ATM=.false.
+export CPLLND=.false.
+export CPLLND2ATM=.false.
+export USE_MED_FLUX=.false.
+export DAYS=1
+export NPX=97
+export NPY=97
+export NPZ=64
+export NPZP=65
+export NSTF_NAME=2,1,0,0,0
+export OUTPUT_FH="12 -1"
+export FHZERO=6
+export FSICL=0
+export FSICS=0
+
+# Dynamical core
+export FV_CORE_TAU=0.
+export RF_CUTOFF=10.0
+export FAST_TAU_W_SEC=0.2
+export DRY_MASS=98320.0
+
+export ENS_NUM=1
+export SYEAR=2016
+export SMONTH=10
+export SDAY=03
+export SHOUR=00
+export SECS=$(( SHOUR*3600 ))
+export FHMAX=$(( DAYS*24 ))
+export DT_ATMOS=1800
+export FHCYC=24
+export FHROT=0
+export LDIAG3D=.false.
+export QDIAG3D=.false.
+export PRINT_DIFF_PGR=.false.
+export MAX_OUTPUT_FIELDS=310
+
+# Stochastic physics
+export STOCHINI=.false.
+export DO_SPPT=.false.
+export DO_SHUM=.false.
+export DO_SKEB=.false.
+export LNDP_TYPE=0
+export N_VAR_LNDP=0
+export SKEB=-999.
+export SPPT=-999.
+export SHUM=-999.
+export LNDP_VAR_LIST="'XXX'"
+export LNDP_PRT_LIST=-999
+export LNDP_MODEL_TYPE=0
+export LNDP_TAU=21600,
+export LNDP_LSCALE=500000,
+export ISEED_LNDP=2010,
+
+#IAU
+export IAU_INC_FILES="''"
+export IAU_DELTHRS=0
+export IAUFHRS=-1
+export IAU_OFFSET=0
+
+export FH_DFI_RADAR='-2e10'
+
+#Cellular automata
+export DO_CA=.true.
+export CA_SGS=.true.
+export CA_GLOBAL=.false.
+export NCA=1
+export NCELLS=5
+export NLIVES=12
+export NTHRESH=18
+export NSEED=1
+export NFRACSEED=0.5
+export CA_TRIGGER=.true.
+export NSPINUP=1
+export ISEED_CA=12345
+
+#waves
+export WW3_RSTDTHR=12
+WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))"
+export WW3_DT_2_RST
+export WW3_OUTDTHR=1
+WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
+export WW3_DTFLD
+WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))"
+export WW3_DTPNT
+export DTRST=0
+export RSTTYPE=T
+export GOFILETYPE=1
+export POFILETYPE=1
+export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR"
+export CPLILINE='$'
+export ICELINE='$'
+export WINDLINE='$'
+export CURRLINE='$'
+export NFGRIDS=0
+export NMGRIDS=1
+export WW3GRIDLINE="'glo_1deg' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F"
+export FUNIPNT=T
+export IOSRV=1
+export FPNTPROC=T
+export FGRDPROC=T
+export UNIPOINTS='points'
+export FLAGMASKCOMP=' F'
+export FLAGMASKOUT=' F'
+RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
+export RUN_BEG
+RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000"
+export RUN_END
+export OUT_BEG=${RUN_BEG}
+export OUT_END=${RUN_END}
+export RST_BEG=${RUN_BEG}
+export RST_2_BEG=${RUN_BEG}
+export RST_END=${RUN_END}
+export RST_2_END=${RUN_END}
+export WW3_CUR='F'
+export WW3_ICE='F'
+export WW3_IC1='F'
+export WW3_IC5='F'
+# ATMW
+export WW3_MULTIGRID=true
+export WW3_MODDEF=mod_def.glo_1deg
+export MESH_WAV=mesh.glo_1deg.nc
+
+# ATMA
+export AOD_FRQ=060000
+
+# Regional
+export WRITE_RESTART_WITH_BCS=.false.
+
+# Diagnostics
+export PRINT_DIFF_PGR=.false.
+
+# Coupling
+export coupling_interval_fast_sec=0
+export CHOUR=06
+export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
+export MOM6_RESTART_DIR=./RESTART/
+export MOM6_RESTART_SETTING=n
+
+# Following not used for standalone
+export USE_CICE_ALB=.false.
+
+# GFDL Cloud Microphysics
+export FTSFS=90
+
+
+# NAM sfc
+export FNGLAC="'global_glacier.2x2.grb'"
+export FNMXIC="'global_maxice.2x2.grb'"
+export FNTSFC="'RTGSST.1982.2012.monthly.clim.grb'"
+export FNSNOC="'global_snoclim.1.875.grb'"
+export FNZORC="'igbp'"
+export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'"
+}
- # Coupling
- export coupling_interval_fast_sec=0
- export CHOUR=06
- export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
+# Add section for tiled grid namelist
+export_tiled() {
+export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
+export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
+export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'"
+export FNALBC2="'${ATMRES}.facsf.tileX.nc'"
+export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'"
+export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'"
+export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'"
+export FNSOTC="'${ATMRES}.soil_type.tileX.nc'"
+export FNSOCC="'${ATMRES}.soil_color.tileX.nc'"
+export FNSMCC=${FNSMCC_control}
+export FNMSKH=${FNMSKH_control}
+export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'"
+export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'"
+export FNSLPC="'${ATMRES}.slope_type.tileX.nc'"
+export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'"
+export LANDICE=".false."
}
# Defaults for the CICE6 model namelist, mx100
@@ -914,195 +1046,178 @@ export_cmeps() {
export_cpl ()
{
- export FV3=true
- export S2S=true
- export HAFS=false
- export AQM=false
- export DATM_CDEPS=false
- export DOCN_CDEPS=false
- export CDEPS_INLINE=false
- export FV3BMIC='p8c'
- export BMIC=.false.
- export DAYS=1
-
- #model configure
- export MODEL_CONFIGURE=model_configure.IN
- export SYEAR=2021
- export SMONTH=03
- export SDAY=22
- export SHOUR=06
- export CHOUR=06
- export FHMAX=24
- export FHROT=0
- export DT_ATMOS=720
- export QUILTING_RESTART=.false.
- export WRTTASK_PER_GROUP=${WPG_cpl_dflt}
- export WRITE_NSFLIP=.true.
- export OUTPUT_FH='6 -1'
-
- # default atm/ocn/ice resolution
- export ATMRES=C96
- export OCNRES=100
- export ICERES=1.00
- export NX_GLB=360
- export NY_GLB=320
- export NPZ=127
- export NPZP=128
-
- # default resources
- export DOMAINS_STACK_SIZE=8000000
- export INPES=${INPES_cpl_dflt}
- export JNPES=${JNPES_cpl_dflt}
- export THRD=${THRD_cpl_dflt}
- export OCN_tasks=${OCN_tasks_cpl_dflt}
- export ICE_tasks=${ICE_tasks_cpl_dflt}
- export WAV_tasks=${WAV_tasks_cpl_dflt}
-
- # Set CICE6 component defaults
- export_cice6
-
- # Set MOM6 component defaults
- export_mom6
-
- # Set WW3 component defaults
- export_ww3
-
- # Set CMEPS component defauls
- export_cmeps
-
- # FV3 defaults
- export FRAC_GRID=.true.
- export CCPP_SUITE=FV3_GFS_v17_coupled_p8
- export INPUT_NML=cpld_control.nml.IN
- export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
- export DIAG_TABLE=diag_table_cpld.IN
- export DIAG_TABLE_ADDITIONAL=''
-
- export FHZERO=6
- export DT_INNER=${DT_ATMOS}
-
- # P7 default
- export IALB=2
- export IEMS=2
- export LSM=2
- export IOPT_DVEG=4
- export IOPT_CRS=2
- export IOPT_RAD=3
- export IOPT_ALB=1
- export IOPT_STC=3
- # P8
- export IOPT_SFC=3
- export IOPT_TRS=2
- export IOPT_DIAG=2
-
- # FV3 P7 settings
- export D2_BG_K1=0.20
- export D2_BG_K2=0.04
- #export DZ_MIN=2
- export PSM_BC=1
- export DDDMP=0.1
-
- #P8
- export DZ_MIN=6
-
- # P7 Merra2 Aerosols & NSST
- export USE_MERRA2=.true.
- export IAER=1011
- export NSTF_NAME=2,0,0,0,0
-
- export LHEATSTRG=.false.
- export LSEASPRAY=.true.
-
- # P7 UGWP1
- export GWD_OPT=2
- export KNOB_UGWP_NSLOPE=1
- export DO_GSL_DRAG_LS_BL=.true.
- export DO_GSL_DRAG_SS=.true.
- export DO_UGWP_V1_OROG_ONLY=.false.
- export DO_UGWP_V0_NST_ONLY=.false.
- export LDIAG_UGWP=.false.
- #P8
- export DO_GSL_DRAG_TOFD=.false.
- export CDMBWD=${CDMBWD_c96}
-
- # P8 RRTMGP
- export DO_RRTMGP=.false.
- export DOGP_CLDOPTICS_LUT=.true.
- export DOGP_LWSCAT=.true.
- export DOGP_SGS_CNV=.true.
-
- #P8 UGWD
- export DO_UGWP_V0=.true.
- export DO_UGWP_V1=.false.
- export DO_GSL_DRAG_LS_BL=.false.
- export KNOB_UGWP_VERSION=0
-
- # P7 CA
- export DO_CA=.true.
- export CA_SGS=.true.
- export CA_GLOBAL=.false.
- export NCA=1
- export NCELLS=5
- export NLIVES=12
- export NTHRESH=18
- export NSEED=1
- export NFRACSEED=0.5
- export CA_TRIGGER=.true.
- export NSPINUP=1
- export ISEED_CA=12345
-
- # P7 settings
- export FNALBC="'C96.snowfree_albedo.tileX.nc'"
- export FNALBC2="'C96.facsf.tileX.nc'"
- export FNTG3C="'C96.substrate_temperature.tileX.nc'"
- export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
- export FNVETC="'C96.vegetation_type.tileX.nc'"
- export FNSOTC="'C96.soil_type.tileX.nc'"
- export FNSOCC="'C96.soil_color.tileX.nc'"
- export FNSMCC=${FNSMCC_control}
- export FNMSKH=${FNMSKH_control}
- export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
- export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
- export FNSLPC="'C96.slope_type.tileX.nc'"
- export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
- export LANDICE=".false."
- #P8
- export FSICL=0
- export FSICS=0
-
- # P8
- export USE_CICE_ALB=.true.
- export MIN_SEAICE=1.0e-6
- export DNATS=2
- export IMP_PHYSICS=8
- export LGFDLMPRAD=.false.
- export DO_SAT_ADJ=.false.
- export SATMEDMF=.true.
-
- # P7 default
- export CPLFLX=.true.
- export CPLICE=.true.
- export CPL=.true.
- export CPLWAV=.true.
- export CPLWAV2ATM=.true.
- export USE_MED_FLUX=.false.
- export CPLCHM=.true.
- export CPLLND=.false.
-
- # for FV3: default values will be changed if doing a warm-warm restart
- export WARM_START=.false.
- export MAKE_NH=.true.
- export NA_INIT=1
- export EXTERNAL_IC=.true.
- export NGGPS_IC=.true.
- export MOUNTAIN=.false.
- # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory
- export AOD_FRQ=060000
-
- # checkpoint restarts
- export RESTART_FILE_PREFIX=''
- export RESTART_FILE_SUFFIX_SECS=''
- export RT35D=''
+export FV3=true
+export S2S=true
+export HAFS=false
+export AQM=false
+export DATM_CDEPS=false
+export DOCN_CDEPS=false
+export CDEPS_INLINE=false
+export FV3BMIC='p8c'
+export BMIC=.false.
+export DAYS=1
+
+#model configure
+export MODEL_CONFIGURE=model_configure.IN
+export SYEAR=2021
+export SMONTH=03
+export SDAY=22
+export SHOUR=06
+export CHOUR=06
+export FHMAX=24
+export FHROT=0
+export DT_ATMOS=720
+export QUILTING_RESTART=.false.
+export WRTTASK_PER_GROUP=${WPG_cpl_dflt}
+export WRITE_NSFLIP=.true.
+export OUTPUT_FH='6 -1'
+
+# default atm/ocn/ice resolution
+export ATMRES=C96
+export OCNRES=100
+export ICERES=1.00
+export NX_GLB=360
+export NY_GLB=320
+export NPZ=127
+export NPZP=128
+
+# default resources
+export DOMAINS_STACK_SIZE=8000000
+export INPES=${INPES_cpl_dflt}
+export JNPES=${JNPES_cpl_dflt}
+export THRD=${THRD_cpl_dflt}
+export OCN_tasks=${OCN_tasks_cpl_dflt}
+export ICE_tasks=${ICE_tasks_cpl_dflt}
+export WAV_tasks=${WAV_tasks_cpl_dflt}
+
+# Set tiled file defaults
+export_tiled
+
+# Set CICE6 component defaults
+export_cice6
+
+# Set MOM6 component defaults
+export_mom6
+
+# Set WW3 component defaults
+export_ww3
+
+# Set CMEPS component defauls
+export_cmeps
+
+# FV3 defaults
+export FRAC_GRID=.true.
+export CCPP_SUITE=FV3_GFS_v17_coupled_p8
+export INPUT_NML=global_control.nml.IN
+export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
+export DIAG_TABLE=diag_table_cpld.IN
+export DIAG_TABLE_ADDITIONAL=''
+export FV3_RUN=cpld_control_run.IN
+export TILEDFIX=.false.
+
+export FHZERO=6
+export DT_INNER=${DT_ATMOS}
+
+export IALB=2
+export IEMS=2
+export LSM=2
+export IOPT_DVEG=4
+export IOPT_CRS=2
+export IOPT_RAD=3
+export IOPT_ALB=1
+export IOPT_STC=3
+
+export IOPT_SFC=3
+export IOPT_TRS=2
+export IOPT_DIAG=2
+
+export D2_BG_K1=0.20
+export D2_BG_K2=0.04
+export PSM_BC=1
+export DDDMP=0.1
+
+export DZ_MIN=6
+
+# Merra2 Aerosols & NSST
+export USE_MERRA2=.true.
+export IAER=1011
+export NSTF_NAME=2,0,0,0,0
+
+export LHEATSTRG=.false.
+export LSEASPRAY=.true.
+
+# UGWP1
+export GWD_OPT=2
+export KNOB_UGWP_NSLOPE=1
+export DO_GSL_DRAG_LS_BL=.true.
+export DO_GSL_DRAG_SS=.true.
+export DO_UGWP_V1_OROG_ONLY=.false.
+export DO_UGWP_V0_NST_ONLY=.false.
+export LDIAG_UGWP=.false.
+
+export DO_GSL_DRAG_TOFD=.false.
+export CDMBWD=${CDMBWD_c96}
+
+# RRTMGP
+export DO_RRTMGP=.false.
+export DOGP_CLDOPTICS_LUT=.true.
+export DOGP_LWSCAT=.true.
+export DOGP_SGS_CNV=.true.
+
+# UGWD
+export DO_UGWP_V0=.true.
+export DO_UGWP_V1=.false.
+export DO_GSL_DRAG_LS_BL=.false.
+export KNOB_UGWP_VERSION=0
+
+# CA
+export DO_CA=.true.
+export CA_SGS=.true.
+export CA_GLOBAL=.false.
+export NCA=1
+export NCELLS=5
+export NLIVES=12
+export NTHRESH=18
+export NSEED=1
+export NFRACSEED=0.5
+export CA_TRIGGER=.true.
+export NSPINUP=1
+export ISEED_CA=12345
+
+export FSICL=0
+export FSICS=0
+
+export USE_CICE_ALB=.true.
+export MIN_SEAICE=1.0e-6
+export DNATS=2
+export IMP_PHYSICS=8
+export LGFDLMPRAD=.false.
+export DO_SAT_ADJ=.false.
+export SATMEDMF=.true.
+
+export CPLFLX=.true.
+export CPLICE=.true.
+export CPL=.true.
+export CPLWAV=.true.
+export CPLWAV2ATM=.true.
+export USE_MED_FLUX=.false.
+export CPLCHM=.true.
+export CPLLND=.false.
+
+# for FV3: default values will be changed if doing a warm-warm restart
+export WARM_START=.false.
+export MAKE_NH=.true.
+export NA_INIT=1
+export EXTERNAL_IC=.true.
+export NGGPS_IC=.true.
+export MOUNTAIN=.false.
+# gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory
+export AOD_FRQ=060000
+
+# checkpoint restarts
+export RESTART_FILE_PREFIX=''
+export RESTART_FILE_SUFFIX_SECS=''
+export RT35D=''
}
export_35d_run ()
{
@@ -1298,350 +1413,351 @@ export_hafs_regional ()
export_hafs ()
{
- export FV3=true
- export S2S=false
- export HAFS=true
- export AQM=false
- export DATM_CDEPS=false
- export DOCN_CDEPS=false
- export CDEPS_INLINE=false
- export INPES=${INPES_dflt}
- export JNPES=${JNPES_dflt}
- export NTILES=1
- export IMFSHALCNV=2
- export IMFDEEPCNV=2
- export HYBEDMF=.false.
- export SATMEDMF=.true.
- export MONINQ_FAC=-1.0
- export HURR_PBL=.true.
- export ISATMEDMF=1
- export IOPT_SFC=1
- export IOPT_DVEG=2
- export IOPT_CRS=1
- export IOPT_RAD=1
- export IOPT_ALB=2
- export IOPT_STC=1
- export LSM=1
- export DO_GSL_DRAG_LS_BL=.true.
- export DO_GSL_DRAG_SS=.true.
- export DO_GSL_DRAG_TOFD=.true.
- export IMP_PHYSICS=11
- export IAER=111
- export CNVGWD=.false.
- export LTAEROSOL=.false.
- export CDMBWD=1.0,1.0,1.0,1.0
- export LHEATSTRG=.false.
- export LRADAR=.true.
-
- export FV_CORE_TAU=5.
- export RF_CUTOFF=30.e2
- export RF_CUTOFF_NEST=50.e2
-
- export IS_MOVING_NEST=".false."
- export VORTEX_TRACKER=0
- export NTRACK=0
- export MOVE_CD_X=0
- export MOVE_CD_Y=0
- export CPL_IMP_MRG=.true.
-
- export OUTPUT_GRID=''
- export IMO=''
- export JMO=''
- export CEN_LON=''
- export CEN_LAT=''
- export LON1=''
- export LAT1=''
- export LON2=''
- export LAT2=''
- export DLON=''
- export DLAT=''
- export STDLAT1=''
- export STDLAT2=''
- export NX=''
- export NY=''
- export DX=''
- export DY=''
-
- export OUTPUT_GRID_2=''
- export IMO_2=''
- export JMO_2=''
- export CEN_LON_2=''
- export CEN_LAT_2=''
- export LON1_2=''
- export LAT1_2=''
- export LON2_2=''
- export LAT2_2=''
- export DLON_2=''
- export DLAT_2=''
- export STDLAT1_2=''
- export STDLAT2_2=''
- export NX_2=''
- export NY_2=''
- export DX_2=''
- export DY_2=''
-
- export OUTPUT_GRID_3=''
- export IMO_3=''
- export JMO_3=''
- export CEN_LON_3=''
- export CEN_LAT_3=''
- export LON1_3=''
- export LAT1_3=''
- export LON2_3=''
- export LAT2_3=''
- export DLON_3=''
- export DLAT_3=''
- export STDLAT1_3=''
- export STDLAT2_3=''
- export NX_3=''
- export NY_3=''
- export DX_3=''
- export DY_3=''
-
- export OUTPUT_GRID_4=''
- export IMO_4=''
- export JMO_4=''
- export CEN_LON_4=''
- export CEN_LAT_4=''
- export LON1_4=''
- export LAT1_4=''
- export LON2_4=''
- export LAT2_4=''
- export DLON_4=''
- export DLAT_4=''
- export STDLAT1_4=''
- export STDLAT2_4=''
- export NX_4=''
- export NY_4=''
- export DX_4=''
- export DY_4=''
-
- export OUTPUT_GRID_5=''
- export IMO_5=''
- export JMO_5=''
- export CEN_LON_5=''
- export CEN_LAT_5=''
- export LON1_5=''
- export LAT1_5=''
- export LON2_5=''
- export LAT2_5=''
- export DLON_5=''
- export DLAT_5=''
- export STDLAT1_5=''
- export STDLAT2_5=''
- export NX_5=''
- export NY_5=''
- export DX_5=''
- export DY_5=''
-
- export OUTPUT_GRID_6=''
- export IMO_6=''
- export JMO_6=''
- export CEN_LON_6=''
- export CEN_LAT_6=''
- export LON1_6=''
- export LAT1_6=''
- export LON2_6=''
- export LAT2_6=''
- export DLON_6=''
- export DLAT_6=''
- export STDLAT1_6=''
- export STDLAT2_6=''
- export NX_6=''
- export NY_6=''
- export DX_6=''
- export DY_6=''
-
- export OUTPUT_FH='3 -1'
+export_fv3_v16
+export FV3=true
+export S2S=false
+export HAFS=true
+export AQM=false
+export DATM_CDEPS=false
+export DOCN_CDEPS=false
+export CDEPS_INLINE=false
+export INPES=${INPES_dflt}
+export JNPES=${JNPES_dflt}
+export NTILES=1
+export IMFSHALCNV=2
+export IMFDEEPCNV=2
+export HYBEDMF=.false.
+export SATMEDMF=.true.
+export MONINQ_FAC=-1.0
+export HURR_PBL=.true.
+export ISATMEDMF=1
+export IOPT_SFC=1
+export IOPT_DVEG=2
+export IOPT_CRS=1
+export IOPT_RAD=1
+export IOPT_ALB=2
+export IOPT_STC=1
+export LSM=1
+export DO_GSL_DRAG_LS_BL=.true.
+export DO_GSL_DRAG_SS=.true.
+export DO_GSL_DRAG_TOFD=.true.
+export IMP_PHYSICS=11
+export IAER=111
+export CNVGWD=.false.
+export LTAEROSOL=.false.
+export CDMBWD=1.0,1.0,1.0,1.0
+export LHEATSTRG=.false.
+export LRADAR=.true.
+
+export FV_CORE_TAU=5.
+export RF_CUTOFF=30.e2
+export RF_CUTOFF_NEST=50.e2
+
+export IS_MOVING_NEST=".false."
+export VORTEX_TRACKER=0
+export NTRACK=0
+export MOVE_CD_X=0
+export MOVE_CD_Y=0
+export CPL_IMP_MRG=.true.
+
+export OUTPUT_GRID=''
+export IMO=''
+export JMO=''
+export CEN_LON=''
+export CEN_LAT=''
+export LON1=''
+export LAT1=''
+export LON2=''
+export LAT2=''
+export DLON=''
+export DLAT=''
+export STDLAT1=''
+export STDLAT2=''
+export NX=''
+export NY=''
+export DX=''
+export DY=''
+
+export OUTPUT_GRID_2=''
+export IMO_2=''
+export JMO_2=''
+export CEN_LON_2=''
+export CEN_LAT_2=''
+export LON1_2=''
+export LAT1_2=''
+export LON2_2=''
+export LAT2_2=''
+export DLON_2=''
+export DLAT_2=''
+export STDLAT1_2=''
+export STDLAT2_2=''
+export NX_2=''
+export NY_2=''
+export DX_2=''
+export DY_2=''
+
+export OUTPUT_GRID_3=''
+export IMO_3=''
+export JMO_3=''
+export CEN_LON_3=''
+export CEN_LAT_3=''
+export LON1_3=''
+export LAT1_3=''
+export LON2_3=''
+export LAT2_3=''
+export DLON_3=''
+export DLAT_3=''
+export STDLAT1_3=''
+export STDLAT2_3=''
+export NX_3=''
+export NY_3=''
+export DX_3=''
+export DY_3=''
+
+export OUTPUT_GRID_4=''
+export IMO_4=''
+export JMO_4=''
+export CEN_LON_4=''
+export CEN_LAT_4=''
+export LON1_4=''
+export LAT1_4=''
+export LON2_4=''
+export LAT2_4=''
+export DLON_4=''
+export DLAT_4=''
+export STDLAT1_4=''
+export STDLAT2_4=''
+export NX_4=''
+export NY_4=''
+export DX_4=''
+export DY_4=''
+
+export OUTPUT_GRID_5=''
+export IMO_5=''
+export JMO_5=''
+export CEN_LON_5=''
+export CEN_LAT_5=''
+export LON1_5=''
+export LAT1_5=''
+export LON2_5=''
+export LAT2_5=''
+export DLON_5=''
+export DLAT_5=''
+export STDLAT1_5=''
+export STDLAT2_5=''
+export NX_5=''
+export NY_5=''
+export DX_5=''
+export DY_5=''
+
+export OUTPUT_GRID_6=''
+export IMO_6=''
+export JMO_6=''
+export CEN_LON_6=''
+export CEN_LAT_6=''
+export LON1_6=''
+export LAT1_6=''
+export LON2_6=''
+export LAT2_6=''
+export DLON_6=''
+export DLAT_6=''
+export STDLAT1_6=''
+export STDLAT2_6=''
+export NX_6=''
+export NY_6=''
+export DX_6=''
+export DY_6=''
+
+export OUTPUT_FH='3 -1'
}
export_hrrr() {
- export_fv3
- export NPZ=127
- export NPZP=128
- export DT_ATMOS=300
- export SYEAR=2021
- export SMONTH=03
- export SDAY=22
- export SHOUR=06
- export OUTPUT_GRID='gaussian_grid'
- export NSTF_NAME='2,0,0,0,0'
- export WRITE_DOPOST=.true.
- export IAER=5111
- export FHMAX=12
-
- export FRAC_GRID=.false.
- export FRAC_ICE=.true.
-
- export FV_CORE_TAU=10.
- export RF_CUTOFF=7.5e2
-
- export FV3_RUN=lake_control_run.IN
- export CCPP_SUITE=FV3_HRRR
- export INPUT_NML=rap.nml.IN
- export FIELD_TABLE=field_table_thompson_aero_tke
- export NEW_DIAGTABLE=diag_table_rap
-
- export SFCLAY_COMPUTE_FLUX=.true.
-
- export LKM=1
- export IOPT_LAKE=2
- export IMP_PHYSICS=8
- export DNATS=0
- export DO_SAT_ADJ=.false.
- export LRADAR=.true.
- export LTAEROSOL=.true.
- export IALB=2
- export IEMS=2
- export HYBEDMF=.false.
- export DO_MYNNEDMF=.true.
- export DO_MYNNSFCLAY=.true.
- export DO_DEEP=.false.
- export SHAL_CNV=.false.
- export IMFSHALCNV=-1
- export IMFDEEPCNV=-1
- export LHEATSTRG=.false.
- export LSM=3
- export LSOIL_LSM=9
- export KICE=9
-
- export GWD_OPT=3
- export DO_UGWP_V0=.false.
- export DO_UGWP_V0_OROG_ONLY=.false.
- export DO_GSL_DRAG_LS_BL=.true.
- export DO_GSL_DRAG_SS=.true.
- export DO_GSL_DRAG_TOFD=.true.
- export DO_UGWP_V1=.false.
- export DO_UGWP_V1_OROG_ONLY=.false.
+export_fv3_v16
+export NPZ=127
+export NPZP=128
+export DT_ATMOS=300
+export SYEAR=2021
+export SMONTH=03
+export SDAY=22
+export SHOUR=06
+export OUTPUT_GRID='gaussian_grid'
+export NSTF_NAME='2,0,0,0,0'
+export WRITE_DOPOST=.true.
+export IAER=5111
+export FHMAX=12
+
+export FRAC_GRID=.false.
+export FRAC_ICE=.true.
+
+export FV_CORE_TAU=10.
+export RF_CUTOFF=7.5e2
+
+export FV3_RUN=lake_control_run.IN
+export CCPP_SUITE=FV3_HRRR
+export INPUT_NML=rap.nml.IN
+export FIELD_TABLE=field_table_thompson_aero_tke
+export NEW_DIAGTABLE=diag_table_rap
+
+export SFCLAY_COMPUTE_FLUX=.true.
+
+export LKM=1
+export IOPT_LAKE=2
+export IMP_PHYSICS=8
+export DNATS=0
+export DO_SAT_ADJ=.false.
+export LRADAR=.true.
+export LTAEROSOL=.true.
+export IALB=2
+export IEMS=2
+export HYBEDMF=.false.
+export DO_MYNNEDMF=.true.
+export DO_MYNNSFCLAY=.true.
+export DO_DEEP=.false.
+export SHAL_CNV=.false.
+export IMFSHALCNV=-1
+export IMFDEEPCNV=-1
+export LHEATSTRG=.false.
+export LSM=3
+export LSOIL_LSM=9
+export KICE=9
+
+export GWD_OPT=3
+export DO_UGWP_V0=.false.
+export DO_UGWP_V0_OROG_ONLY=.false.
+export DO_GSL_DRAG_LS_BL=.true.
+export DO_GSL_DRAG_SS=.true.
+export DO_GSL_DRAG_TOFD=.true.
+export DO_UGWP_V1=.false.
+export DO_UGWP_V1_OROG_ONLY=.false.
}
export_hrrr_conus13km()
{
- export_fv3
- export SYEAR=2021
- export SMONTH=05
- export SDAY=12
- export SHOUR=16
- export FHMAX=2
- export DT_ATMOS=120
- export RESTART_INTERVAL=1
- export QUILTING=.true.
- export WRITE_GROUP=1
- export WRTTASK_PER_GROUP=6
- export NTILES=1
- export WRITE_DOPOST=.false.
- export OUTPUT_HISTORY=.true.
- export OUTPUT_GRID=lambert_conformal
- export OUTPUT_FILE="'netcdf'"
-
- # Revert these two to GFS_typedefs defaults to avoid a crash:
- export SEDI_SEMI=.false.
- export DECFL=8
-
- export RRFS_SMOKE=.true.
- export SEAS_OPT=0
-
- export LKM=1
- export SFCLAY_COMPUTE_FLUX=.true.
- export IALB=2
- export ICLIQ_SW=2
- export IEMS=2
- export IOVR=3
- export KICE=9
- export LSM=3
- export LSOIL_LSM=9
- export DO_MYNNSFCLAY=.true.
- export DO_MYNNEDMF=.true.
- export HYBEDMF=.false.
- export SHAL_CNV=.false.
- export DO_SAT_ADJ=.false.
- export DO_DEEP=.false.
- export CCPP_SUITE='FV3_HRRR'
- export INPES=12
- export JNPES=12
- export NPX=397
- export NPY=233
- export NPZ=65
- export MAKE_NH=.false.
- export NA_INIT=0
- export DNATS=0
- export EXTERNAL_IC=.false.
- export NGGPS_IC=.false.
- export MOUNTAIN=.true.
- export WARM_START=.true.
- export READ_INCREMENT=.false.
- export RES_LATLON_DYNAMICS="'fv3_increment.nc'"
- export NPZP=66
- export FHZERO=1.0
- export IMP_PHYSICS=8
- export LDIAG3D=.false.
- export QDIAG3D=.false.
- export PRINT_DIFF_PGR=.true.
- export FHCYC=0.0
- export IAER=1011
- export LHEATSTRG=.false.
- export RANDOM_CLDS=.false.
- export CNVCLD=.false.
- export IMFSHALCNV=-1
- export IMFDEEPCNV=-1
- export CDMBWD='3.5,1.0'
- export DO_SPPT=.false.
- export DO_SHUM=.false.
- export DO_SKEB=.false.
- export LNDP_TYPE=0
- export N_VAR_LNDP=0
-
- export GWD_OPT=3
- export DO_UGWP_V0=.false.
- export DO_UGWP_V0_OROG_ONLY=.false.
- export DO_GSL_DRAG_LS_BL=.true.
- export DO_GSL_DRAG_SS=.true.
- export DO_GSL_DRAG_TOFD=.true.
- export DO_UGWP_V1=.false.
- export DO_UGWP_V1_OROG_ONLY=.false.
-
- export FV3_RUN=rrfs_warm_run.IN
- export INPUT_NML=rrfs_conus13km_hrrr.nml.IN
- export FIELD_TABLE=field_table_thompson_aero_tke_smoke
- export DIAG_TABLE=diag_table_hrrr
- export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN
- export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke
- export FRAC_ICE=.true.
+export_fv3_v16
+export SYEAR=2021
+export SMONTH=05
+export SDAY=12
+export SHOUR=16
+export FHMAX=2
+export DT_ATMOS=120
+export RESTART_INTERVAL=1
+export QUILTING=.true.
+export WRITE_GROUP=1
+export WRTTASK_PER_GROUP=6
+export NTILES=1
+export WRITE_DOPOST=.false.
+export OUTPUT_HISTORY=.true.
+export OUTPUT_GRID=lambert_conformal
+export OUTPUT_FILE="'netcdf'"
+
+# Revert these two to GFS_typedefs defaults to avoid a crash:
+export SEDI_SEMI=.false.
+export DECFL=8
+
+export RRFS_SMOKE=.true.
+export SEAS_OPT=0
+
+export LKM=1
+export SFCLAY_COMPUTE_FLUX=.true.
+export IALB=2
+export ICLIQ_SW=2
+export IEMS=2
+export IOVR=3
+export KICE=9
+export LSM=3
+export LSOIL_LSM=9
+export DO_MYNNSFCLAY=.true.
+export DO_MYNNEDMF=.true.
+export HYBEDMF=.false.
+export SHAL_CNV=.false.
+export DO_SAT_ADJ=.false.
+export DO_DEEP=.false.
+export CCPP_SUITE='FV3_HRRR'
+export INPES=12
+export JNPES=12
+export NPX=397
+export NPY=233
+export NPZ=65
+export MAKE_NH=.false.
+export NA_INIT=0
+export DNATS=0
+export EXTERNAL_IC=.false.
+export NGGPS_IC=.false.
+export MOUNTAIN=.true.
+export WARM_START=.true.
+export READ_INCREMENT=.false.
+export RES_LATLON_DYNAMICS="'fv3_increment.nc'"
+export NPZP=66
+export FHZERO=1.0
+export IMP_PHYSICS=8
+export LDIAG3D=.false.
+export QDIAG3D=.false.
+export PRINT_DIFF_PGR=.true.
+export FHCYC=0.0
+export IAER=1011
+export LHEATSTRG=.false.
+export RANDOM_CLDS=.false.
+export CNVCLD=.false.
+export IMFSHALCNV=-1
+export IMFDEEPCNV=-1
+export CDMBWD='3.5,1.0'
+export DO_SPPT=.false.
+export DO_SHUM=.false.
+export DO_SKEB=.false.
+export LNDP_TYPE=0
+export N_VAR_LNDP=0
+
+export GWD_OPT=3
+export DO_UGWP_V0=.false.
+export DO_UGWP_V0_OROG_ONLY=.false.
+export DO_GSL_DRAG_LS_BL=.true.
+export DO_GSL_DRAG_SS=.true.
+export DO_GSL_DRAG_TOFD=.true.
+export DO_UGWP_V1=.false.
+export DO_UGWP_V1_OROG_ONLY=.false.
+
+export FV3_RUN=rrfs_warm_run.IN
+export INPUT_NML=rrfs_conus13km_hrrr.nml.IN
+export FIELD_TABLE=field_table_thompson_aero_tke_smoke
+export DIAG_TABLE=diag_table_hrrr
+export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN
+export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke
+export FRAC_ICE=.true.
}
export_rap_common()
{
-export_fv3
- export NPZ=127
- export NPZP=128
- export DT_ATMOS=300
- export SYEAR=2021
- export SMONTH=03
- export SDAY=22
- export SHOUR=06
- export OUTPUT_GRID='gaussian_grid'
- export NSTF_NAME='2,0,0,0,0'
- export WRITE_DOPOST=.true.
- export IAER=5111
-
- export FV_CORE_TAU=10.
- export RF_CUTOFF=7.5e2
-
- export FV3_RUN=control_run.IN
- export INPUT_NML=rap.nml.IN
- export FIELD_TABLE=field_table_thompson_aero_tke
-
- export LHEATSTRG=.false.
- export IMP_PHYSICS=8
- export DNATS=0
- export DO_SAT_ADJ=.false.
- export LRADAR=.true.
- export LTAEROSOL=.true.
- export IALB=2
- export IEMS=2
- export HYBEDMF=.false.
- export DO_MYNNEDMF=.true.
- export DO_MYNNSFCLAY=.true.
+export_fv3_v16
+export NPZ=127
+export NPZP=128
+export DT_ATMOS=300
+export SYEAR=2021
+export SMONTH=03
+export SDAY=22
+export SHOUR=06
+export OUTPUT_GRID='gaussian_grid'
+export NSTF_NAME='2,0,0,0,0'
+export WRITE_DOPOST=.true.
+export IAER=5111
+
+export FV_CORE_TAU=10.
+export RF_CUTOFF=7.5e2
+
+export FV3_RUN=control_run.IN
+export INPUT_NML=rap.nml.IN
+export FIELD_TABLE=field_table_thompson_aero_tke
+
+export LHEATSTRG=.false.
+export IMP_PHYSICS=8
+export DNATS=0
+export DO_SAT_ADJ=.false.
+export LRADAR=.true.
+export LTAEROSOL=.true.
+export IALB=2
+export IEMS=2
+export HYBEDMF=.false.
+export DO_MYNNEDMF=.true.
+export DO_MYNNSFCLAY=.true.
}
export_rap()
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index ca3a06a77c..29b8a01b8a 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 18 13:16:52 UTC 2024
+Fri Apr 19 19:57:57 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 273.642666
- 0: The maximum resident set size (KB) = 1250952
+ 0: The total amount of wall time = 272.557598
+ 0: The maximum resident set size (KB) = 1254932
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 951.737374
- 0: The maximum resident set size (KB) = 1234892
+ 0: The total amount of wall time = 959.903328
+ 0: The maximum resident set size (KB) = 1232448
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 231.272825
- 0: The maximum resident set size (KB) = 1232708
+ 0: The total amount of wall time = 241.225092
+ 0: The maximum resident set size (KB) = 1230688
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.359756
- 0: The maximum resident set size (KB) = 1240676
+ 0: The total amount of wall time = 236.258585
+ 0: The maximum resident set size (KB) = 1236816
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.824946
- 0: The maximum resident set size (KB) = 1232292
+ 0: The total amount of wall time = 235.269569
+ 0: The maximum resident set size (KB) = 1231588
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.136006
- 0: The maximum resident set size (KB) = 1230264
+ 0: The total amount of wall time = 240.429501
+ 0: The maximum resident set size (KB) = 1232412
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_836892/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 235.571519
- 0: The maximum resident set size (KB) = 1233056
+ 0: The total amount of wall time = 237.774632
+ 0: The maximum resident set size (KB) = 1232820
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 18 14:32:34 UTC 2024
-Elapsed time: 01h:15m:44s. Have a nice day!
+Fri Apr 19 20:59:04 UTC 2024
+Elapsed time: 01h:01m:08s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 4890b07943..1cbca13a85 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 18 17:53:39 UTC 2024
+Mon Apr 22 14:31:53 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,83 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1575.086435
- 0: The maximum resident set size (KB) = 1345260
+ 0: The total amount of wall time = 1572.129737
+ 0: The maximum resident set size (KB) = 1368184
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/rst_rst
-Checking test rst results ....
- Comparing sfcf021.tile1.nc .....USING NCCMP......OK
- Comparing sfcf021.tile2.nc .....USING NCCMP......OK
- Comparing sfcf021.tile3.nc .....USING NCCMP......OK
- Comparing sfcf021.tile4.nc .....USING NCCMP......OK
- Comparing sfcf021.tile5.nc .....USING NCCMP......OK
- Comparing sfcf021.tile6.nc .....USING NCCMP......OK
- Comparing atmf021.tile1.nc .....USING NCCMP......OK
- Comparing atmf021.tile2.nc .....USING NCCMP......OK
- Comparing atmf021.tile3.nc .....USING NCCMP......OK
- Comparing atmf021.tile4.nc .....USING NCCMP......OK
- Comparing atmf021.tile5.nc .....USING NCCMP......OK
- Comparing atmf021.tile6.nc .....USING NCCMP......OK
- Comparing sfcf024.tile1.nc .....USING NCCMP......OK
- Comparing sfcf024.tile2.nc .....USING NCCMP......OK
- Comparing sfcf024.tile3.nc .....USING NCCMP......OK
- Comparing sfcf024.tile4.nc .....USING NCCMP......OK
- Comparing sfcf024.tile5.nc .....USING NCCMP......OK
- Comparing sfcf024.tile6.nc .....USING NCCMP......OK
- Comparing atmf024.tile1.nc .....USING NCCMP......OK
- Comparing atmf024.tile2.nc .....USING NCCMP......OK
- Comparing atmf024.tile3.nc .....USING NCCMP......OK
- Comparing atmf024.tile4.nc .....USING NCCMP......OK
- Comparing atmf024.tile5.nc .....USING NCCMP......OK
- Comparing atmf024.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK
- Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
-
- 0: The total amount of wall time = 412.335686
- 0: The maximum resident set size (KB) = 1345900
-
-Test rst PASS
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2248263/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +136,80 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 416.527929
- 0: The maximum resident set size (KB) = 1341108
+ 0: The total amount of wall time = 386.377672
+ 0: The maximum resident set size (KB) = 1358644
Test std_base PASS
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3301844/rst_rst
+Checking test rst results ....
+ Comparing sfcf021.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile6.nc .....USING NCCMP......OK
+ Comparing atmf021.tile1.nc .....USING NCCMP......OK
+ Comparing atmf021.tile2.nc .....USING NCCMP......OK
+ Comparing atmf021.tile3.nc .....USING NCCMP......OK
+ Comparing atmf021.tile4.nc .....USING NCCMP......OK
+ Comparing atmf021.tile5.nc .....USING NCCMP......OK
+ Comparing atmf021.tile6.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile6.nc .....USING NCCMP......OK
+ Comparing atmf024.tile1.nc .....USING NCCMP......OK
+ Comparing atmf024.tile2.nc .....USING NCCMP......OK
+ Comparing atmf024.tile3.nc .....USING NCCMP......OK
+ Comparing atmf024.tile4.nc .....USING NCCMP......OK
+ Comparing atmf024.tile5.nc .....USING NCCMP......OK
+ Comparing atmf024.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK
+ Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
+
+ 0: The total amount of wall time = 389.040798
+ 0: The maximum resident set size (KB) = 1360268
+
+Test rst PASS
+
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 18 19:21:18 UTC 2024
-Elapsed time: 01h:27m:39s. Have a nice day!
+Mon Apr 22 19:14:09 UTC 2024
+Elapsed time: 00h:31m:32s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 2fbba640bb..c7200df608 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Thu Apr 18 15:29:26 UTC 2024
+Mon Apr 22 12:33:48 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2213.723834
- 0: The maximum resident set size (KB) = 542640
+ 0: The total amount of wall time = 2123.028031
+ 0: The maximum resident set size (KB) = 556456
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +33,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2173.765133
- 0: The maximum resident set size (KB) = 539832
+ 0: The total amount of wall time = 2146.624346
+ 0: The maximum resident set size (KB) = 561996
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1412490/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +51,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2243.570995
- 0: The maximum resident set size (KB) = 541576
+ 0: The total amount of wall time = 2265.288036
+ 0: The maximum resident set size (KB) = 556412
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Thu Apr 18 17:37:11 UTC 2024
-Elapsed time: 02h:07m:46s. Have a nice day!
+Mon Apr 22 14:30:55 UTC 2024
+Elapsed time: 01h:57m:08s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 5766e9df76..25a1acb339 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,267 +35,262 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42534
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22222
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:51]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:09, 02:10](3039 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:09]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:12, 03:04](1648 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:00, 03:04](1795 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [50:51, 02:59](900 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 03:37](1624 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [36:15, 02:36](1679 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:26, 10:52]
-PASS -- TEST 'cpld_control_p8_intel' [30:07, 02:11](3068 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:07, 02:22](3067 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [16:32, 01:09](3124 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [30:07, 01:35](3093 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [21:05, 02:22](3145 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [30:07, 02:36](3381 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [30:07, 01:37](3066 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [30:08, 02:05](2990 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:07, 02:27](3070 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [30:07, 02:22](3037 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:26, 10:30]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [30:07, 01:09](1643 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:07, 01:34](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:25, 09:50]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:13, 02:27](1696 MB)
-
-PASS -- COMPILE 's2s_intel' [10:24, 09:42]
-PASS -- TEST 'cpld_control_c48_intel' [31:08, 01:03](2674 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:00]
-PASS -- TEST 'cpld_control_p8_faster_intel' [26:04, 02:27](3063 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:26]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:29, 02:00](1668 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:26, 01:22](966 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [49:45, 02:02](1644 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:15, 01:15](1680 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:23, 10:05]
-PASS -- TEST 'control_flake_intel' [25:50, 00:34](634 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [25:50, 00:46](584 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:50, 01:05](590 MB)
-PASS -- TEST 'control_latlon_intel' [25:50, 00:59](584 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:50, 01:08](584 MB)
-PASS -- TEST 'control_c48_intel' [25:49, 01:07](736 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [25:49, 00:45](737 MB)
-PASS -- TEST 'control_c192_intel' [25:50, 01:28](699 MB)
-PASS -- TEST 'control_c384_intel' [25:54, 02:15](1008 MB)
-PASS -- TEST 'control_c384gdas_intel' [25:54, 03:43](1157 MB)
-PASS -- TEST 'control_stochy_intel' [25:50, 00:43](590 MB)
-PASS -- TEST 'control_stochy_restart_intel' [10:02, 00:24](391 MB)
-PASS -- TEST 'control_lndp_intel' [21:40, 00:55](589 MB)
-PASS -- TEST 'control_iovr4_intel' [20:50, 00:37](584 MB)
-PASS -- TEST 'control_iovr5_intel' [20:42, 01:20](584 MB)
-PASS -- TEST 'control_p8_intel' [19:52, 02:22](1564 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [18:50, 02:39](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [18:22, 02:00](1573 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:10, 02:45](750 MB)
-PASS -- TEST 'control_noqr_p8_intel' [14:51, 01:25](1551 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:53, 01:23](753 MB)
-PASS -- TEST 'control_decomp_p8_intel' [14:50, 01:17](1557 MB)
-PASS -- TEST 'control_2threads_p8_intel' [12:00, 01:13](1657 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:43, 01:22](1563 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:02, 02:17](1624 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:25, 01:52](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:14, 02:37](1575 MB)
-PASS -- TEST 'regional_control_intel' [09:01, 00:35](629 MB)
-PASS -- TEST 'regional_restart_intel' [59:55, 00:35](797 MB)
-PASS -- TEST 'regional_decomp_intel' [09:01, 01:07](628 MB)
-PASS -- TEST 'regional_2threads_intel' [08:51, 00:17](723 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:59, 00:39](1164 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:56, 00:35](630 MB)
-PASS -- TEST 'regional_wofs_intel' [58:51, 00:52](1600 MB)
-
-PASS -- COMPILE 'ifi_intel' [09:22, 08:40]
-PASS -- TEST 'regional_ifi_control_intel' [26:50, 00:36](630 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [26:50, 00:44](628 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [26:51, 00:33](724 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:23, 09:22]
-PASS -- TEST 'rap_control_intel' [07:21, 02:32](973 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 01:18](1150 MB)
-PASS -- TEST 'rap_decomp_intel' [06:58, 02:00](974 MB)
-PASS -- TEST 'rap_2threads_intel' [05:57, 01:43](1057 MB)
-PASS -- TEST 'rap_restart_intel' [42:02, 02:39](845 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [05:15, 03:03](967 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [03:46, 02:11](967 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [38:26, 02:35](843 MB)
-PASS -- TEST 'hrrr_control_intel' [03:43, 02:33](962 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [03:24, 02:19](966 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:12, 02:23](1046 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [37:31, 00:42](794 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [03:06, 02:17](965 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [02:55, 00:23](1929 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:51, 01:19](1918 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:22, 08:58]
-PASS -- TEST 'control_csawmg_intel' [02:22, 00:31](657 MB)
-PASS -- TEST 'control_csawmgt_intel' [02:20, 00:27](654 MB)
-
-PASS -- COMPILE 'wam_intel' [09:22, 08:45]
-PASS -- TEST 'control_wam_intel' [02:00, 01:01](329 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 09:09]
-PASS -- TEST 'control_p8_faster_intel' [00:38, 02:49](1562 MB)
-PASS -- TEST 'regional_control_faster_intel' [00:19, 00:37](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:28]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [59:56, 00:20](753 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [59:55, 01:22](756 MB)
-PASS -- TEST 'control_stochy_debug_intel' [58:04, 00:31](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [57:22, 00:29](758 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [54:58, 01:19](801 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [54:40, 00:48](802 MB)
-PASS -- TEST 'control_ras_debug_intel' [53:18, 00:38](769 MB)
-PASS -- TEST 'control_diag_debug_intel' [53:09, 00:49](818 MB)
-PASS -- TEST 'control_debug_p8_intel' [47:51, 01:09](1586 MB)
-PASS -- TEST 'regional_debug_intel' [42:00, 00:34](676 MB)
-PASS -- TEST 'rap_control_debug_intel' [42:01, 01:10](1140 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [39:08, 01:04](1137 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [37:31, 00:32](1145 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [34:52, 01:10](1140 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:20, 00:26](1147 MB)
-PASS -- TEST 'rap_diag_debug_intel' [33:40, 01:18](1232 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:06, 00:26](1140 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [32:55, 00:28](1146 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [31:50, 00:38](1151 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:55, 00:36](1140 MB)
-PASS -- TEST 'rap_noah_debug_intel' [29:04, 00:29](1141 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [28:44, 00:44](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:49, 00:24](1141 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [27:47, 00:41](1138 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [27:32, 00:39](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [26:49, 00:30](1147 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:20, 03:06](1147 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:20, 03:12]
-PASS -- TEST 'control_wam_debug_intel' [24:19, 00:14](368 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:25, 08:29]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [24:07, 01:33](1014 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:32, 02:53](849 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:06, 04:00](849 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:30, 02:59](909 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [19:44, 03:43](905 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:11, 02:19](849 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:42, 01:52](745 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:13, 00:23](731 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:29, 10:35]
-PASS -- TEST 'conus13km_control_intel' [18:09, 01:11](1056 MB)
-PASS -- TEST 'conus13km_2threads_intel' [41:19, 00:51](1035 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [40:45, 00:48](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:45, 08:35]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:03, 01:03](872 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:40, 03:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:46, 00:40](1021 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:42, 00:50](1019 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:17, 01:28](1122 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 00:42](807 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [15:37, 00:43](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:37, 00:24](1193 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:39, 03:19]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:20, 01:15](1043 MB)
-
-PASS -- COMPILE 'hafsw_intel' [31:47, 09:46]
-PASS -- TEST 'hafs_regional_atm_intel' [13:58, 01:41](672 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:45, 00:25](1018 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:11, 02:14](714 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [12:05, 01:59](838 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [12:05, 01:26](767 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:22, 01:35](433 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:09, 02:05](461 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [11:06, 01:04](334 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:04, 02:25](395 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:49, 01:19](469 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:38, 01:44](471 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:06, 01:14](529 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 00:41](361 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:52, 01:35](738 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [24:37, 03:55]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:35, 00:43](626 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:36, 10:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:28, 01:27](581 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:16, 00:53](747 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:38, 09:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [03:01, 00:54](748 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:39, 09:19]
-PASS -- TEST 'hafs_regional_docn_intel' [00:44, 02:01](711 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:50, 01:24](702 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:13, 00:15](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:26, 07:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:35, 00:27](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:11, 00:17](737 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:00, 00:34](644 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [50:41, 00:17](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [49:39, 01:12](645 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [48:13, 01:02](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [47:54, 01:02](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [47:38, 00:26](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [47:19, 00:56](649 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:13, 01:46](636 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [45:16, 00:34](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [44:00, 01:03](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [43:23, 00:34](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:33, 08:21]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [43:11, 00:37](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [55:13, 01:02]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [41:51, 00:55](264 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:14, 01:03](413 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [36:39, 01:02](412 MB)
-
-PASS -- COMPILE 'atml_intel' [05:24, 10:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:35, 02:31](1602 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [38:56, 02:49](1599 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:14, 01:07](803 MB)
-
-PASS -- COMPILE 'atmw_intel' [02:17, 09:05]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:47, 02:11](1603 MB)
-
-PASS -- COMPILE 'atmwm_intel' [02:19, 09:05]
-PASS -- TEST 'control_atmwav_intel' [38:39, 02:04](598 MB)
-
-PASS -- COMPILE 'atmaero_intel' [05:23, 09:01]
-PASS -- TEST 'atmaero_control_p8_intel' [38:34, 01:38](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [38:13, 01:44](2969 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:10, 01:46](2987 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [17:31, 03:26]
-PASS -- TEST 'regional_atmaq_debug_intel' [37:37, 02:11](4513 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:24, 10:54]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 02:14](3039 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:31]
+PASS -- TEST 'cpld_control_gfsv17_intel' [03:54, 03:05](1652 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:17, 03:12](1802 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [41:43, 03:14](926 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [03:55, 01:49](1626 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 04:32]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [16:07, 02:55](1678 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:26, 10:38]
+PASS -- TEST 'cpld_control_p8_intel' [08:58, 01:47](3068 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 02:32](3067 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [54:51, 01:57](3124 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 01:49](3095 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 01:02](3145 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:58, 02:17](3384 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:58, 01:47](3066 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 02:13](2997 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 01:51](3068 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 01:44](3034 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:25, 10:13]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:59, 01:56](1644 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 02:22](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:25, 09:54]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:59, 02:22](1697 MB)
+
+PASS -- COMPILE 's2s_intel' [12:25, 09:44]
+PASS -- TEST 'cpld_control_c48_intel' [09:58, 00:53](2673 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:09]
+PASS -- TEST 'cpld_control_p8_faster_intel' [04:54, 02:26](3065 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:35]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:52, 01:18](1668 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:45, 01:30](973 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 01:45](1643 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:24, 04:24]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:01, 01:48](1687 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [16:30, 10:11]
+PASS -- TEST 'control_flake_intel' [59:36, 00:46](634 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [59:36, 01:17](1532 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [59:36, 01:18](1536 MB)
+PASS -- TEST 'control_latlon_intel' [59:36, 00:21](1532 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:36, 00:32](1537 MB)
+PASS -- TEST 'control_c48_intel' [59:35, 01:35](1613 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [59:35, 00:58](736 MB)
+PASS -- TEST 'control_c192_intel' [59:36, 01:24](1650 MB)
+PASS -- TEST 'control_c384_intel' [59:40, 02:05](1969 MB)
+PASS -- TEST 'control_c384gdas_intel' [59:40, 03:24](1150 MB)
+PASS -- TEST 'control_stochy_intel' [59:36, 00:29](590 MB)
+PASS -- TEST 'control_stochy_restart_intel' [54:00, 00:53](393 MB)
+PASS -- TEST 'control_lndp_intel' [59:31, 00:42](591 MB)
+PASS -- TEST 'control_iovr4_intel' [58:33, 00:22](584 MB)
+PASS -- TEST 'control_iovr5_intel' [58:24, 01:10](585 MB)
+PASS -- TEST 'control_p8_intel' [56:39, 02:34](1563 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [56:39, 02:27](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [55:35, 02:25](1572 MB)
+PASS -- TEST 'control_restart_p8_intel' [28:30, 02:18](751 MB)
+PASS -- TEST 'control_noqr_p8_intel' [55:21, 02:33](1558 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [28:30, 02:19](754 MB)
+PASS -- TEST 'control_decomp_p8_intel' [53:33, 02:27](1563 MB)
+PASS -- TEST 'control_2threads_p8_intel' [53:20, 01:06](1653 MB)
+PASS -- TEST 'control_p8_lndp_intel' [52:32, 00:43](1563 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [52:31, 02:24](1619 MB)
+PASS -- TEST 'control_p8_mynn_intel' [51:54, 02:38](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [49:55, 02:52](1579 MB)
+PASS -- TEST 'regional_control_intel' [48:13, 00:48](629 MB)
+PASS -- TEST 'regional_restart_intel' [39:09, 01:08](801 MB)
+PASS -- TEST 'regional_decomp_intel' [47:02, 00:14](628 MB)
+PASS -- TEST 'regional_2threads_intel' [46:57, 00:17](723 MB)
+PASS -- TEST 'regional_noquilt_intel' [45:04, 00:29](1168 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [44:10, 01:06](633 MB)
+PASS -- TEST 'regional_wofs_intel' [43:21, 01:01](1607 MB)
+
+PASS -- COMPILE 'ifi_intel' [09:23, 08:35]
+PASS -- TEST 'regional_ifi_control_intel' [01:36, 00:34](630 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [01:36, 00:51](628 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [01:37, 00:45](718 MB)
+
+PASS -- COMPILE 'rrfs_intel' [31:46, 09:12]
+PASS -- TEST 'rap_control_intel' [38:13, 02:12](970 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:14, 00:49](1146 MB)
+PASS -- TEST 'rap_decomp_intel' [37:03, 01:42](970 MB)
+PASS -- TEST 'rap_2threads_intel' [34:44, 02:34](1058 MB)
+PASS -- TEST 'rap_restart_intel' [19:09, 02:24](845 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [32:06, 02:37](972 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:08, 02:07](971 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [18:32, 02:54](847 MB)
+PASS -- TEST 'hrrr_control_intel' [30:25, 02:25](963 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [29:22, 01:52](966 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [28:49, 01:31](1048 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [21:51, 00:32](796 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [28:42, 03:06](965 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [28:38, 00:40](1929 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:59, 00:36](1918 MB)
+
+PASS -- COMPILE 'csawmg_intel' [53:14, 08:43]
+PASS -- TEST 'control_csawmg_intel' [16:45, 00:48](656 MB)
+
+PASS -- COMPILE 'wam_intel' [58:20, 08:29]
+PASS -- TEST 'control_wam_intel' [11:07, 00:48](329 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [58:20, 09:05]
+PASS -- TEST 'control_p8_faster_intel' [10:17, 02:47](1559 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:02, 00:32](626 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [53:13, 04:41]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:44, 00:42](1557 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:44, 00:43](1559 MB)
+PASS -- TEST 'control_stochy_debug_intel' [15:44, 00:52](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [15:44, 01:10](761 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [15:44, 00:58](798 MB)
+PASS -- TEST 'control_ras_debug_intel' [15:44, 00:34](767 MB)
+PASS -- TEST 'control_diag_debug_intel' [15:44, 01:07](1619 MB)
+PASS -- TEST 'control_debug_p8_intel' [15:44, 01:13](1589 MB)
+PASS -- TEST 'regional_debug_intel' [15:43, 00:48](687 MB)
+PASS -- TEST 'rap_control_debug_intel' [15:44, 01:06](1146 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [15:44, 00:53](1139 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [15:44, 00:47](1141 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [15:01, 01:10](1141 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:58, 00:19](1151 MB)
+PASS -- TEST 'rap_diag_debug_intel' [12:37, 00:47](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:15, 01:04](1145 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:13, 00:50](1146 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [11:53, 01:13](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:03, 00:47](1146 MB)
+PASS -- TEST 'rap_noah_debug_intel' [10:03, 00:44](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [09:57, 00:28](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:47, 00:35](1141 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:06, 00:43](1139 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:05, 00:40](1147 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:05, 00:31](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 02:53](1148 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [48:05, 03:18]
+PASS -- TEST 'control_wam_debug_intel' [16:48, 00:59](370 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [52:09, 08:29]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 01:16](1015 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:25, 03:07](850 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:21, 03:54](846 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:18, 02:58](914 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:32](897 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:20](849 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [37:41, 01:48](744 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:27, 01:10](729 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [54:14, 10:43]
+PASS -- TEST 'conus13km_control_intel' [04:59, 00:46](1056 MB)
+PASS -- TEST 'conus13km_2threads_intel' [30:06, 00:36](1036 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [30:05, 00:37](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:04, 08:47]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 00:58](872 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:57, 03:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:38, 01:09](1019 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:38, 01:17](1023 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:38, 01:25](1111 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 01:18](811 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [16:39, 00:36](1100 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 00:21](1177 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:23]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:37, 01:03](1044 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:24, 09:50]
+PASS -- TEST 'hafs_regional_atm_intel' [04:20, 02:14](673 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:05, 00:29](1019 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:36, 02:17](713 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:41](755 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:16, 01:57](767 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:12, 01:35](439 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:49, 01:50](460 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [59:38, 01:07](332 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:41, 02:35](397 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:27, 01:19](474 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:25, 00:59](470 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:22, 00:51](531 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:16, 00:50](365 MB)
+PASS -- TEST 'gnv1_nested_intel' [57:33, 01:46](732 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:16, 03:46]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:13, 01:32](626 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:24, 10:23]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:22, 01:24](579 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:03, 01:31](746 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 10:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [56:03, 01:10](749 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:34, 09:32]
+PASS -- TEST 'hafs_regional_docn_intel' [55:10, 01:50](709 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:23, 01:48](696 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:03, 01:05](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [20:34, 07:49]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:32, 00:24](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:09, 00:50](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:15, 00:32](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:57, 00:14](647 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:52, 00:34](645 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:13, 00:54](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:47, 00:48](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:34, 00:54](643 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:24, 01:04](646 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:28, 01:11](629 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:48, 00:53](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [41:30, 00:43](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [41:08, 00:31](2019 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [20:34, 08:27]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:27, 01:02](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [20:35, 01:04]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [39:22, 00:18](264 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [39:21, 01:11](413 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:44, 00:57](413 MB)
+
+PASS -- COMPILE 'atml_intel' [22:37, 09:51]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:09, 02:56](1599 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [38:02, 02:35](1603 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [26:21, 01:10](802 MB)
+
+PASS -- COMPILE 'atmw_intel' [38:53, 09:03]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:38, 02:33](1603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [36:53, 08:52]
+PASS -- TEST 'atmaero_control_p8_intel' [32:43, 01:53](2915 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [32:43, 02:17](2970 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:43, 01:58](2985 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [35:49, 03:27]
+PASS -- TEST 'regional_atmaq_debug_intel' [30:34, 02:09](4495 MB)
SYNOPSIS:
-Starting Date/Time: 20240418 17:18:16
-Ending Date/Time: 20240418 19:52:31
-Total Time: 02h:34m:32s
-Compiles Completed: 36/36
-Tests Completed: 176/176
+Starting Date/Time: 20240422 19:37:15
+Ending Date/Time: 20240422 21:57:39
+Total Time: 02h:20m:51s
+Compiles Completed: 35/35
+Tests Completed: 173/173
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 47e293388f..b0d8347b23 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,280 +35,293 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_115059
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_41899
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:23, 18:57]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:14, 04:51](3076 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:23, 20:23]
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:45](1689 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:14, 14:52](1829 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:00](960 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:51, 15:39](1664 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:21, 08:50]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:18](1698 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:23, 18:58]
-PASS -- TEST 'cpld_control_p8_intel' [08:31, 05:32](3095 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:32](3091 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:13](3151 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:31, 05:30](3127 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:14](3182 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:24, 05:28](3093 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:51, 04:29](3387 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:43, 05:30](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:14, 08:36](3633 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:10, 05:36](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:53, 09:33](4346 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:00, 06:23](4648 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:16, 05:10](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:21, 18:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:22, 04:07](1679 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:10](1727 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:21, 08:46]
-PASS -- TEST 'cpld_debug_p8_intel' [09:51, 07:31](3154 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:19, 08:20]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1710 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:03]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:52, 04:10](1726 MB)
-
-PASS -- COMPILE 's2s_intel' [15:21, 13:56]
-PASS -- TEST 'cpld_control_c48_intel' [08:05, 06:34](2664 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:22, 22:34]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:22](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:33]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:07, 13:56](1696 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 07:03](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:59](1669 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:19]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:59](1717 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:16]
-PASS -- TEST 'control_flake_intel' [04:38, 03:22](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 02:01](622 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:05](624 MB)
-PASS -- TEST 'control_latlon_intel' [03:36, 02:02](621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:43, 02:04](622 MB)
-PASS -- TEST 'control_c48_intel' [06:44, 05:14](735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:45, 05:13](741 MB)
-PASS -- TEST 'control_c192_intel' [09:09, 07:48](738 MB)
-PASS -- TEST 'control_c384_intel' [13:33, 08:00](1064 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:39, 07:05](1201 MB)
-PASS -- TEST 'control_stochy_intel' [02:39, 01:23](629 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB)
-PASS -- TEST 'control_lndp_intel' [02:38, 01:18](625 MB)
-PASS -- TEST 'control_iovr4_intel' [03:34, 02:02](624 MB)
-PASS -- TEST 'control_iovr5_intel' [03:42, 02:05](620 MB)
-PASS -- TEST 'control_p8_intel' [04:24, 02:25](1596 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:26](1596 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:20, 02:25](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:23, 01:22](802 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:13, 02:24](1592 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:21](808 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:12, 02:31](1597 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:16, 04:19](1599 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 03:13](1653 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:33, 02:27](1608 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:44, 02:55](1603 MB)
-PASS -- TEST 'regional_control_intel' [06:10, 04:29](633 MB)
-PASS -- TEST 'regional_restart_intel' [04:21, 02:27](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:07, 04:39](631 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:14, 04:21](1159 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:18, 04:23](631 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:13, 04:27](631 MB)
-PASS -- TEST 'regional_wofs_intel' [07:12, 05:35](1605 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:18, 10:44]
-PASS -- TEST 'rap_control_intel' [08:10, 06:06](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 03:46](1193 MB)
-PASS -- TEST 'rap_decomp_intel' [09:41, 06:19](1006 MB)
-PASS -- TEST 'rap_restart_intel' [05:56, 03:11](879 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:02](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 06:18](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:11, 04:34](880 MB)
-PASS -- TEST 'hrrr_control_intel' [05:02, 03:10](1001 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:03, 03:17](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:03, 02:45](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:50, 01:43](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:33, 05:55](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 07:20](1960 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:05](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:17, 09:49]
-PASS -- TEST 'control_csawmg_intel' [07:17, 05:47](692 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:08, 05:44](696 MB)
-PASS -- TEST 'control_ras_intel' [03:37, 02:48](657 MB)
-
-PASS -- COMPILE 'wam_intel' [10:19, 09:14]
-PASS -- TEST 'control_wam_intel' [03:29, 01:52](384 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:18, 12:13]
-PASS -- TEST 'control_p8_faster_intel' [04:35, 02:19](1594 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:09, 04:20](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:13]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:30](795 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:29](799 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:34, 02:53](801 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:31, 02:32](801 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:07, 03:54](841 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [06:42, 03:56](839 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:39, 02:34](810 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:05, 02:37](858 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:13, 02:38](1629 MB)
-PASS -- TEST 'regional_debug_intel' [18:10, 15:45](668 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:37, 04:34](1185 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:39](1176 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 04:33](1180 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:39, 04:36](1178 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:36](1182 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:59, 04:48](1268 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:46](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:27, 04:47](1183 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:41, 04:36](1184 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:32](1183 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:34](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:26](1180 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:36](1176 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:27](1184 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:54, 04:40](1182 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:00, 07:50](1182 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:12, 05:03]
-PASS -- TEST 'control_wam_debug_intel' [05:31, 04:37](421 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:30]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 03:29](1060 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:10, 05:05](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 02:44](884 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:02, 02:51](883 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:00, 03:50](798 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:06, 01:30](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:29]
-FAILED: RUN DID NOT COMPLETE -- TEST 'conus13km_control_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'conus13km_2threads_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'conus13km_restart_mismatch_intel' [, ]( MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:17, 09:33]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 03:34](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:37, 04:29](1057 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:28](1056 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:40, 13:19](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:27, 13:24](820 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:19, 13:16](1203 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:09]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:40](1087 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:21, 15:25]
-PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:24](723 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:53, 05:04](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 06:17](780 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [12:22, 10:46](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:50](815 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 04:36](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:37, 05:37](493 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:58, 02:16](390 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:39, 06:05](461 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:53, 03:12](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 02:59](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:15, 03:42](589 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:11](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:03, 03:15](790 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:18, 06:30]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:14, 11:59](613 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:21, 19:10]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 06:57](631 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:03](691 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:09]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:21, 05:18](678 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:22, 13:37]
-PASS -- TEST 'hafs_regional_docn_intel' [07:31, 05:26](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:18, 05:26](741 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:09](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:22]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:28](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:18](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:21](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:23, 02:23](643 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:36, 02:27](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:18](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:49, 05:34](687 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 05:36](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:27](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:49](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:36, 03:50](2015 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:20, 04:46]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](747 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:27]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:26](750 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:19, 02:12]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](304 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 00:57](453 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:39](453 MB)
-
-PASS -- COMPILE 'atml_intel' [13:21, 12:40]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:35, 05:45](1627 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 05:20](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:09, 03:01](855 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:20, 12:24]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:30](1637 MB)
-
-PASS -- COMPILE 'atmwm_intel' [13:22, 12:24]
-PASS -- TEST 'control_atmwav_intel' [02:48, 01:24](638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:17, 10:52]
-PASS -- TEST 'atmaero_control_p8_intel' [05:44, 03:35](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:12](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:13, 04:24](3012 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:22, 05:59]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:23, 21:40](4533 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:10]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:34, 04:53](3075 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:22]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:41](1691 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 15:04](1828 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:57, 07:12](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:44](1667 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:14, 08:48]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:14, 22:14](1701 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:15, 19:07]
+PASS -- TEST 'cpld_control_p8_intel' [08:58, 05:35](3093 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:35](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:18](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 05:37](3130 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:18](3178 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 05:32](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:00, 04:38](3397 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 05:36](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:18, 08:45](3639 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:05, 05:58](3615 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [27:45, 09:46](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:58, 07:00](4649 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:31, 05:13](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:19, 18:27]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:11](1682 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:14](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:13, 08:48]
+PASS -- TEST 'cpld_debug_p8_intel' [11:06, 07:50](3154 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:13, 08:15]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:40, 05:18](1712 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:07]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:17](1735 MB)
+
+PASS -- COMPILE 's2s_intel' [15:15, 14:04]
+PASS -- TEST 'cpld_control_c48_intel' [08:20, 06:40](2665 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:27, 24:03]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:29](3104 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:21]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:47, 13:58](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:14](1013 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:56](1673 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 08:50]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 22:56](1720 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:35]
+PASS -- TEST 'control_flake_intel' [04:35, 03:24](671 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:15](740 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
+PASS -- TEST 'control_c384gdas_intel' [16:00, 07:16](1203 MB)
+PASS -- TEST 'control_stochy_intel' [02:32, 01:27](624 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:51](438 MB)
+PASS -- TEST 'control_lndp_intel' [02:34, 01:23](629 MB)
+PASS -- TEST 'control_iovr4_intel' [03:38, 02:07](624 MB)
+PASS -- TEST 'control_iovr5_intel' [03:45, 02:06](620 MB)
+PASS -- TEST 'control_p8_intel' [04:26, 02:30](1596 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:27](1596 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:25, 02:28](1607 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:31, 01:24](800 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:31, 02:28](1597 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](806 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:24, 02:32](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:55, 04:21](1595 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:16](1652 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:20, 02:31](1611 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
+PASS -- TEST 'regional_control_intel' [06:26, 04:28](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:11, 02:32](803 MB)
+PASS -- TEST 'regional_decomp_intel' [06:25, 04:43](630 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:20, 04:24](1162 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:29](630 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:29](632 MB)
+PASS -- TEST 'regional_wofs_intel' [07:33, 05:41](1604 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:20, 11:17]
+PASS -- TEST 'rap_control_intel' [08:33, 06:13](1008 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 03:41](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [08:54, 06:23](1006 MB)
+PASS -- TEST 'rap_restart_intel' [05:26, 03:12](885 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:40, 06:06](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:41](1007 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:34](881 MB)
+PASS -- TEST 'hrrr_control_intel' [06:02, 03:49](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 03:05](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:43, 01:43](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:22](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 07:26](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:42, 07:10](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:19, 10:21]
+PASS -- TEST 'control_csawmg_intel' [08:26, 05:48](692 MB)
+PASS -- TEST 'control_ras_intel' [04:09, 02:52](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:17, 09:22]
+PASS -- TEST 'control_wam_intel' [03:38, 01:55](382 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:35]
+PASS -- TEST 'control_p8_faster_intel' [05:07, 02:23](1604 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:01, 04:20](625 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:22]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:54](800 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:34](798 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:16](840 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:34, 02:41](807 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
+PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1629 MB)
+PASS -- TEST 'regional_debug_intel' [18:09, 16:20](667 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:36, 04:53](1182 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:08, 04:55](1180 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:43, 04:37](1183 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:49](1180 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:18, 04:56](1264 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:46](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:48](1183 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:43](1182 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:32](1178 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:37](1184 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1184 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:32](1179 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:23](1183 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:40](1181 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 07:58](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:17, 05:23]
+PASS -- TEST 'control_wam_debug_intel' [05:24, 04:37](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:37]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:29](1059 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:45](884 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 02:53](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 03:53](795 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:30](776 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:54]
+PASS -- TEST 'conus13km_control_intel' [05:05, 01:50](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:53, 00:58](1088 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:47, 09:52]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:07, 03:35](914 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:28](1058 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:29](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:43, 13:23](1135 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:27](821 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:27](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:42, 06:05]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:30](1088 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:20, 17:40]
+PASS -- TEST 'hafs_regional_atm_intel' [07:01, 04:31](722 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 05:09](1062 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:22](780 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:33, 11:01](798 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:55](815 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:40](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:42](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:18](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 06:19](457 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:16](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:05](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:17, 03:47](590 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:34, 01:14](430 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:24, 03:21](786 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:13, 08:07]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:14](613 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:11]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:04](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](691 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:03, 18:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:19](679 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:53, 16:02]
+PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:32](756 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:45, 05:31](739 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:08](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:48, 09:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:31](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:20](643 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:33, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:24](642 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:30](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:24, 02:20](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:44, 05:40](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:40](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:33, 03:52](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:35, 03:53](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:49, 06:33]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:31, 05:02](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:50]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:31](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:58]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:11](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:06](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB)
+
+PASS -- COMPILE 'atml_intel' [14:18, 13:15]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:34, 07:03](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:26, 06:34](1641 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:39](855 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:18, 12:49]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:32](1630 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:18, 11:00]
+PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:37](2950 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:15](2998 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:25]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:05, 22:02](4537 MB)
SYNOPSIS:
-Starting Date/Time: 20240419 06:31:21
-Ending Date/Time: 20240419 07:56:11
-Total Time: 01h:25m:29s
-Compiles Completed: 38/38
-Tests Completed: 171/175
+Starting Date/Time: 20240422 06:31:47
+Ending Date/Time: 20240422 08:01:07
+Total Time: 01h:30m:07s
+Compiles Completed: 37/37
+Tests Completed: 159/172
Failed Tests:
-* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_control_stochy_restart_intel.log
-* TEST conus13km_control_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/rt-2213/tests/logs/log_derecho/run_conus13km_control_intel.log
-* TEST conus13km_2threads_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST conus13km_restart_mismatch_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
+* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_intel.log
+* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_parallel_intel.log
+* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_latlon_intel.log
+* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_intel.log
+* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c48_intel.log
+* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c192_intel.log
+* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c384_intel.log
+* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log
+* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_debug_intel.log
+* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_debug_intel.log
+* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_diag_debug_intel.log
+* TEST rap_progcld_thompson_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_rap_progcld_thompson_debug_intel.log
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_atmaero_control_p8_rad_micro_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -321,7 +334,7 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -331,7 +344,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -355,27 +368,105 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_121217
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_84317
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:18, 11:25]
-PASS -- TEST 'conus13km_control_intel' [04:34, 01:49](1084 MB)
+PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:43]
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1563 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:27](1574 MB)
+PASS -- TEST 'control_latlon_intel' [04:15, 02:25](1576 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1565 MB)
+PASS -- TEST 'control_c48_intel' [08:20, 06:14](1618 MB)
+PASS -- TEST 'control_c192_intel' [10:38, 08:42](1682 MB)
+PASS -- TEST 'control_c384_intel' [12:47, 08:54](2006 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'merra2_thompson_intel' [, ]( MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:44]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:31](1593 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:29](1601 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:42, 02:33](1663 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:34, 04:44](1184 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:19, 11:14]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:19](3013 MB)
-PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:43]
-PASS -- TEST 'control_stochy_intel' [02:37, 01:24](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:32, 00:50](436 MB)
+SYNOPSIS:
+Starting Date/Time: 20240422 09:08:46
+Ending Date/Time: 20240422 09:36:22
+Total Time: 00h:27m:48s
+Compiles Completed: 3/3
+Tests Completed: 12/13
+Failed Tests:
+* TEST merra2_thompson_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_63459
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:33]
+PASS -- TEST 'merra2_thompson_intel' [05:25, 02:47](1611 MB)
SYNOPSIS:
-Starting Date/Time: 20240419 08:26:55
-Ending Date/Time: 20240419 08:46:43
-Total Time: 00h:19m:54s
-Compiles Completed: 2/2
-Tests Completed: 3/3
+Starting Date/Time: 20240422 10:29:36
+Ending Date/Time: 20240422 10:49:44
+Total Time: 00h:20m:17s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 8416413b47..09a3a5fd63 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-684ddd65adbf26b3a8003e05c8af6c4e19be63f8
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,14 +11,14 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 6e1bc3ebf0671c91a47ece876afef46300362e67 FV3 (remotes/origin/remove_nowarn)
- b447c635161864f2de5e941f6dbe7387b5525167 FV3/atmos_cubed_sphere (201912_public_release-402-gb447c63)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 945cb2cef5e8bd5949afd4f0fc35c4fb6e95a1bf FV3/upp (upp_v10.2.0-159-g945cb2c)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--a9828705b587c451fc2a7267d1c374d737be425b FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -26,7 +26,7 @@ Submodule hashes used in testing:
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 36d87e5665c359f9dd3201a9d27ceecacc0d8e62 stochastic_physics (ufs-v2.0.0-215-g36d87e5)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
NOTES:
@@ -35,280 +35,339 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240408
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100835
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_187503
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [25:06, 24:37]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 08:17](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:06, 24:03]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:28, 13:41](1687 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:02, 14:24](1810 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:29, 06:48](947 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:23, 14:53](1671 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:10, 14:56]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:17, 23:53](1709 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:06, 19:37]
-PASS -- TEST 'cpld_control_p8_intel' [12:33, 08:41](3101 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:53, 08:38](3099 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:13, 05:53](3157 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:33, 08:34](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:13, 05:52](3178 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:02, 07:03](3410 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [12:19, 08:28](3101 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:02, 07:41](3022 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:17, 08:39](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:06, 10:58](3275 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:09](3605 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:17, 13:19](4043 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:04, 09:47](4343 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 08:29](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:06, 18:24]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 05:21](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 05:30](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [15:10, 14:46]
-PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:26](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [20:06, 19:11]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:36, 06:11](1701 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:06, 17:51]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:10, 05:33](1729 MB)
-
-PASS -- COMPILE 's2s_intel' [24:06, 23:42]
-PASS -- TEST 'cpld_control_c48_intel' [09:56, 06:56](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:06, 23:20]
-PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 08:29](3099 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:10, 24:54]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:26](1703 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:59, 07:32](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:50, 18:26](1682 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:06, 13:57]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:15, 26:53](1720 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:07, 15:52]
-PASS -- TEST 'control_flake_intel' [05:03, 03:48](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:04, 02:35](619 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:40](627 MB)
-PASS -- TEST 'control_latlon_intel' [04:02, 02:39](622 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:43](623 MB)
-PASS -- TEST 'control_c48_intel' [07:24, 05:39](721 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:47, 05:38](721 MB)
-PASS -- TEST 'control_c192_intel' [11:21, 08:51](738 MB)
-PASS -- TEST 'control_c384_intel' [18:43, 16:51](1042 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:32, 14:32](1181 MB)
-PASS -- TEST 'control_stochy_intel' [04:02, 01:57](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [03:13, 01:26](429 MB)
-PASS -- TEST 'control_lndp_intel' [04:02, 01:51](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:45, 02:42](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:39, 02:39](623 MB)
-PASS -- TEST 'control_p8_intel' [06:07, 03:22](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:39](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:07, 03:39](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:27, 01:51](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:24, 03:46](1595 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:37, 02:34](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:53, 03:17](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:34](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:23, 04:13](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:36, 03:59](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:47, 04:15](1616 MB)
-PASS -- TEST 'regional_control_intel' [06:50, 04:54](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:10, 02:37](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:38, 04:58](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:50, 02:59](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:52, 04:36](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 04:54](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 04:53](615 MB)
-PASS -- TEST 'regional_wofs_intel' [11:03, 06:48](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [17:06, 16:37]
-PASS -- TEST 'rap_control_intel' [09:23, 07:09](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:08](1185 MB)
-PASS -- TEST 'rap_decomp_intel' [09:22, 07:17](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:17, 06:20](1100 MB)
-PASS -- TEST 'rap_restart_intel' [05:14, 03:41](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:28, 06:55](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:14, 07:22](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:54, 05:28](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:10, 03:54](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:10, 04:28](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:10, 03:29](1086 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:32](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:47](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:38, 08:23](1963 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:40, 08:29](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:06, 12:56]
-PASS -- TEST 'control_csawmg_intel' [07:50, 06:39](695 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:50, 06:37](691 MB)
-PASS -- TEST 'control_ras_intel' [04:37, 03:25](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:07, 13:10]
-PASS -- TEST 'control_wam_intel' [03:40, 02:31](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:08, 17:06]
-PASS -- TEST 'control_p8_faster_intel' [06:02, 03:53](1608 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:00, 04:38](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [14:06, 13:40]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:16](777 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 03:19](781 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:19](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:58](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:29](823 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [05:47, 04:22](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:26, 02:57](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:36, 03:00](842 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:43, 03:22](1620 MB)
-PASS -- TEST 'regional_debug_intel' [19:24, 17:01](634 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:31, 05:14](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:25](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:06](1167 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:47, 05:27](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:10, 05:25](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:33, 05:24](1255 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:03, 05:29](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:52, 05:32](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:52, 05:09](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:36, 05:28](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:30, 04:59](1165 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 05:27](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:11](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:48, 05:19](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 06:32](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:38, 05:11](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:51](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:07, 09:24]
-PASS -- TEST 'control_wam_debug_intel' [07:33, 05:27](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:06, 15:33]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:09, 04:12](1052 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:00, 06:00](889 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 03:52](886 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 05:31](947 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:07](938 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:58, 04:12](887 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:02, 04:35](783 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:03](765 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:06, 16:50]
-PASS -- TEST 'conus13km_control_intel' [04:58, 03:02](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:58, 01:41](1073 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:40](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 13:53]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:10, 04:35](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 10:37]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 05:15](1047 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 05:26](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:00, 15:05](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:59](805 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:15, 08:28](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:08, 14:26](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:05, 10:45]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:23](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:07, 18:27]
-PASS -- TEST 'hafs_regional_atm_intel' [07:33, 05:20](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:57, 04:46](1057 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 07:57](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:40, 12:09](784 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 13:08](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:36](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:43, 07:00](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:27, 03:03](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:22, 08:20](444 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:06](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:13, 03:39](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:38](575 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:45](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:16, 04:10](763 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [19:06, 18:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:09, 13:17](587 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [23:07, 22:44]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:26, 07:53](622 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:26, 07:49](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:10, 20:40]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:08, 06:13](788 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [19:06, 18:46]
-PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:21](748 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:33](729 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:15, 20:13](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:09, 13:26]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:53, 02:38](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:22, 01:45](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:52, 02:35](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:42](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 02:35](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 02:38](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:40](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:41](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:14, 06:31](691 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:15, 06:32](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:21, 02:47](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [15:30, 04:38](1952 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [16:28, 04:48](2012 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [10:06, 09:14]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:26, 06:01](739 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [15:10, 14:14]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:26, 02:53](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:10, 04:10]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:04, 04:17](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:55, 02:47](455 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:04, 01:24](456 MB)
-
-PASS -- COMPILE 'atml_intel' [16:10, 16:01]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:56, 08:37](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [22:57, 07:41](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:10](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [19:10, 18:08]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [15:25, 03:18](1648 MB)
-
-PASS -- COMPILE 'atmwm_intel' [17:10, 16:58]
-PASS -- TEST 'control_atmwav_intel' [14:20, 02:58](640 MB)
-
-PASS -- COMPILE 'atmaero_intel' [22:10, 21:21]
-PASS -- TEST 'atmaero_control_p8_intel' [14:33, 06:48](2943 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [15:27, 07:33](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:12, 08:01](3019 MB)
-
-PASS -- COMPILE 'atmaq_intel' [16:10, 15:21]
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:10, 11:16]
-PASS -- TEST 'regional_atmaq_debug_intel' [32:42, 18:39](4477 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:05]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:36, 07:13](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:27]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:54](1688 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:19, 14:54](1810 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 07:26](946 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 14:58](1671 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:34]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [27:11, 24:23](1708 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:11, 18:17]
+PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:22](3100 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:09](3100 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:10](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:17](3124 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:12](3177 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 06:42](3412 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 07:54](3099 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:49, 07:16](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:16](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:19, 10:22](3271 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 07:27](3603 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:11, 13:05](4041 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:51, 09:19](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:00, 08:04](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [18:11, 17:46]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 05:10](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:32, 05:23](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:37]
+PASS -- TEST 'cpld_debug_p8_intel' [13:32, 10:12](3132 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:11, 12:04]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 06:01](1701 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:44]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:27](1732 MB)
+
+PASS -- COMPILE 's2s_intel' [16:13, 15:56]
+PASS -- TEST 'cpld_control_c48_intel' [08:38, 06:53](2664 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:28]
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:42, 08:06](3098 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:30]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:22, 14:58](1700 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:54](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:40](1681 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 12:12]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:53](1717 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:48]
+PASS -- TEST 'control_flake_intel' [04:36, 03:38](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:14, 03:24](1568 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 03:26](1580 MB)
+PASS -- TEST 'control_latlon_intel' [04:03, 03:02](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 03:17](1569 MB)
+PASS -- TEST 'control_c48_intel' [08:37, 06:42](1604 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:02, 05:39](723 MB)
+PASS -- TEST 'control_c192_intel' [11:28, 10:03](1685 MB)
+PASS -- TEST 'control_c384_intel' [20:53, 18:00](1984 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:51, 14:07](1188 MB)
+PASS -- TEST 'control_stochy_intel' [02:38, 02:05](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:17](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:37, 02:08](628 MB)
+PASS -- TEST 'control_iovr4_intel' [03:38, 02:37](623 MB)
+PASS -- TEST 'control_iovr5_intel' [03:37, 02:37](623 MB)
+PASS -- TEST 'control_p8_intel' [05:46, 03:18](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:28](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:44](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:44, 01:52](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:43, 03:33](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:57](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:21](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:46](1686 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:44](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:08](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:06, 03:29](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:52, 03:40](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:20, 04:59](615 MB)
+PASS -- TEST 'regional_restart_intel' [03:59, 02:59](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:56, 05:15](615 MB)
+PASS -- TEST 'regional_2threads_intel' [03:57, 02:54](759 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:57, 04:40](1154 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 05:01](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 04:50](615 MB)
+PASS -- TEST 'regional_wofs_intel' [07:55, 06:21](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:11, 12:51]
+PASS -- TEST 'rap_control_intel' [09:53, 07:17](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:32, 04:00](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [09:53, 07:22](1013 MB)
+PASS -- TEST 'rap_2threads_intel' [09:02, 06:09](1099 MB)
+PASS -- TEST 'rap_restart_intel' [05:40, 03:47](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:02, 06:52](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:09](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:59](879 MB)
+PASS -- TEST 'hrrr_control_intel' [05:44, 03:49](1004 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:56](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:08](1078 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:46, 01:59](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:46](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:55, 08:12](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:00](1947 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:10, 12:53]
+PASS -- TEST 'control_csawmg_intel' [08:06, 06:41](696 MB)
+PASS -- TEST 'control_ras_intel' [04:35, 03:26](657 MB)
+
+PASS -- COMPILE 'wam_intel' [12:10, 12:08]
+PASS -- TEST 'control_wam_intel' [03:36, 02:09](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:34]
+PASS -- TEST 'control_p8_faster_intel' [05:53, 03:34](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:00, 04:41](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:54]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:06, 03:03](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:14, 03:01](1589 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:34, 03:20](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:37, 03:03](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:06, 04:22](823 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:31, 03:12](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:14, 03:03](1641 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:06, 03:25](1618 MB)
+PASS -- TEST 'regional_debug_intel' [18:03, 16:52](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:41, 05:08](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:35, 04:57](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:39, 05:05](1167 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 05:03](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:40, 05:13](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:53, 05:18](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 05:06](1165 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:13](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:21](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:13](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:41, 05:17](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 05:09](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:42, 08:25](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 05:16](1162 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:58](1167 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:38, 05:04](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:28](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:11, 08:38]
+PASS -- TEST 'control_wam_debug_intel' [05:29, 04:54](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:07]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:50, 03:54](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:30, 06:13](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:20](885 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:22, 05:22](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:48](936 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:31](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:30](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:08](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 14:32]
+PASS -- TEST 'conus13km_control_intel' [05:41, 02:29](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:17](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:03, 01:28](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 12:04]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:29](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 09:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:52](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:28, 14:16](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:13, 14:06](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1111 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 14:42](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 08:47]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:59](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:11, 16:18]
+PASS -- TEST 'hafs_regional_atm_intel' [07:55, 05:26](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 04:42](1059 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 07:42](753 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:31, 11:39](789 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 13:02](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:19](479 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:48, 06:46](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:56](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:17](444 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 03:48](507 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 03:45](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:03, 04:49](576 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:47, 01:45](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:44, 04:05](773 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:24, 12:49](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [19:15, 18:29]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:50](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:54](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:22, 06:09](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:11, 15:10]
+PASS -- TEST 'hafs_regional_docn_intel' [08:46, 06:08](747 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:08](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:59, 20:06](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:39]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:42](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:37](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:34](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:39](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:35](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:32, 02:41](745 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:42](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:34](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:21](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:58, 07:21](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:43](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 04:45](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2011 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 07:50]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:21](741 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:41](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:48]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:32, 01:53](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:29](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:50, 01:06](456 MB)
+
+PASS -- COMPILE 'atml_intel' [16:11, 15:14]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:02](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:21, 07:16](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:14, 03:32](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:12, 14:43]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:44, 02:29](1648 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:13, 12:52]
+PASS -- TEST 'atmaero_control_p8_intel' [08:02, 06:02](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 06:31](3012 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:10, 09:49]
+PASS -- TEST 'regional_atmaq_debug_intel' [24:32, 18:24](4484 MB)
SYNOPSIS:
-Starting Date/Time: 20240415 16:40:32
-Ending Date/Time: 20240415 18:27:41
-Total Time: 01h:47m:54s
-Compiles Completed: 39/39
-Tests Completed: 182/182
+Starting Date/Time: 20240421 01:23:25
+Ending Date/Time: 20240421 02:55:53
+Total Time: 01h:33m:32s
+Compiles Completed: 37/37
+Tests Completed: 178/179
+Failed Tests:
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2173/ufs-weather-model/tests/logs/log_gaea/run_atmaero_control_p8_rad_micro_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF GAEA REGRESSION TESTING LOG====
+====START OF GAEA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229035
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 12:52]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:46](3019 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240422 12:23:00
+Ending Date/Time: 20240422 12:46:49
+Total Time: 00h:24m:06s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index ee7e6520ee..59eef863a6 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
@@ -24,372 +24,420 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4052024
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_686177
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [49:12, 12:48]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:23, 05:31](3160 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:12, 16:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:01, 17:10](1740 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:16, 17:51](2002 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:04](1097 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 19:16](1632 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [40:12, 04:45]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [37:59, 22:37](1654 MB)
-
-PASS -- COMPILE 's2swa_intel' [49:12, 12:48]
-PASS -- TEST 'cpld_control_p8_intel' [14:17, 05:45](3193 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 05:48](3191 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:31, 03:26](3230 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:17, 05:51](3217 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:30, 03:28](3254 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [14:17, 05:30](3536 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [14:17, 05:45](3195 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 04:47](3046 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:27, 05:51](3192 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [19:27, 10:07](3320 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:25](3587 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:47, 09:27](4100 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:02, 06:28](4347 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [14:18, 05:26](3160 MB)
-
-PASS -- COMPILE 's2sw_intel' [39:12, 12:15]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [20:59, 04:51](1720 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:03, 04:26](1756 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [40:12, 04:45]
-PASS -- TEST 'cpld_debug_p8_intel' [26:11, 08:32](3192 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [38:12, 04:11]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:07, 05:49](1707 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [47:12, 11:39]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:05, 04:19](1773 MB)
-
-PASS -- COMPILE 's2s_intel' [47:12, 11:39]
-PASS -- TEST 'cpld_control_c48_intel' [17:45, 09:34](2815 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [52:12, 16:42]
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:11, 05:27](3185 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 14:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 17:11](1758 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:14, 08:03](1150 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:03, 19:47](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:07]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:58, 24:40](1683 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:39]
-PASS -- TEST 'control_flake_intel' [04:25, 03:21](684 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:27](639 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:26, 02:30](644 MB)
-PASS -- TEST 'control_latlon_intel' [03:23, 02:25](643 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:29](615 MB)
-PASS -- TEST 'control_c48_intel' [07:26, 06:23](861 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:24](851 MB)
-PASS -- TEST 'control_c192_intel' [09:42, 09:06](839 MB)
-PASS -- TEST 'control_c384_intel' [12:42, 09:06](1277 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:03, 08:06](1380 MB)
-PASS -- TEST 'control_stochy_intel' [02:23, 01:38](650 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](487 MB)
-PASS -- TEST 'control_lndp_intel' [02:20, 01:35](642 MB)
-PASS -- TEST 'control_iovr4_intel' [03:25, 02:27](614 MB)
-PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](633 MB)
-PASS -- TEST 'control_p8_intel' [04:01, 02:58](1599 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 02:57](1612 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 02:51](1612 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](871 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:54, 02:55](1597 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:39](910 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:53, 03:02](1598 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:44](1694 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:13](1609 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:58](1683 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:00](1616 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:54, 03:33](1620 MB)
-PASS -- TEST 'regional_control_intel' [06:39, 05:15](830 MB)
-PASS -- TEST 'regional_restart_intel' [03:40, 02:44](999 MB)
-PASS -- TEST 'regional_decomp_intel' [06:41, 05:30](826 MB)
-PASS -- TEST 'regional_2threads_intel' [04:42, 03:15](802 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:41, 05:07](1348 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:10](823 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:10](838 MB)
-PASS -- TEST 'regional_wofs_intel' [07:41, 06:44](1898 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:11, 10:23]
-PASS -- TEST 'rap_control_intel' [14:42, 07:46](1081 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:10, 04:05](1270 MB)
-PASS -- TEST 'rap_decomp_intel' [15:43, 08:08](1017 MB)
-PASS -- TEST 'rap_2threads_intel' [14:42, 07:17](1163 MB)
-PASS -- TEST 'rap_restart_intel' [04:48, 04:02](1091 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:44, 07:43](1088 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:42, 08:10](1023 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:49, 05:47](1115 MB)
-PASS -- TEST 'hrrr_control_intel' [11:38, 03:58](1023 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [11:38, 04:08](1012 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [10:41, 03:40](1088 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:09](986 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [14:49, 07:39](1084 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [16:31, 09:21](1960 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:04](2048 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:13, 10:24]
-PASS -- TEST 'control_csawmg_intel' [06:40, 06:00](739 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:38, 05:56](738 MB)
-PASS -- TEST 'control_ras_intel' [04:21, 03:14](726 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [12:12, 03:42]
-PASS -- TEST 'control_csawmg_gnu' [09:40, 08:24](533 MB)
-PASS -- TEST 'control_csawmgt_gnu' [09:39, 08:04](532 MB)
-
-PASS -- COMPILE 'wam_intel' [18:12, 10:04]
-PASS -- TEST 'control_wam_intel' [02:22, 02:04](639 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:12, 10:33]
-PASS -- TEST 'control_p8_faster_intel' [03:54, 02:42](1617 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](829 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:12, 04:38]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:25, 02:39](777 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:29, 02:38](775 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:21, 02:57](782 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:42](782 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](828 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:40, 04:05](832 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:22, 02:47](792 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:29, 02:48](837 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1612 MB)
-PASS -- TEST 'regional_debug_intel' [17:42, 17:09](804 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:22, 04:54](1174 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:48](1171 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:22, 04:54](1165 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:47](1173 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:07](1255 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:54](1172 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:51](1172 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:59](1167 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 05:01](1173 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:52](1170 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:52](1168 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:52](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1164 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 06:10](1177 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:23, 04:49](1172 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:37, 08:26](1159 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [10:12, 02:39]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 02:08](506 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [03:39, 02:09](509 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:12, 03:10]
-PASS -- TEST 'control_wam_debug_intel' [06:21, 04:59](475 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 09:59]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:04, 03:50](1133 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:33, 06:23](1033 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:21](973 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 06:05](1085 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:10](950 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](919 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:50](1025 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:50](920 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 12:20]
-PASS -- TEST 'conus13km_control_intel' [04:57, 02:05](1184 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:42, 00:55](1103 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:16](1096 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 10:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](970 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 03:20]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1054 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:39](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:50, 14:38](1209 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:48, 14:56](935 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:08](1107 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 14:40](1248 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:15]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 04:56](1092 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:12, 11:46]
-PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:06](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:08](1104 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:19, 06:50](816 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:14, 13:24](836 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:30, 15:11](865 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:53, 05:26](484 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:25, 06:37](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:42, 02:47](358 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 07:07](472 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:42](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:51, 03:29](505 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:03](572 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](379 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:42, 04:03](776 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:40]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:49, 12:41](526 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:12, 11:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:58, 08:42](649 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:03, 08:47](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 11:45]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:26](701 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:12, 11:10]
-PASS -- TEST 'hafs_regional_docn_intel' [08:15, 06:29](807 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:28](791 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:32](1202 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:42](1141 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:37](1089 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1015 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:39](1005 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:35](1005 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:38](1135 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1141 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:37](1014 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:50](1045 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 06:26](1033 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:43](1140 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:48](2485 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2496 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:57]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1064 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1144 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:04]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:45](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:52](321 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:30](316 MB)
-
-PASS -- COMPILE 'atml_intel' [12:12, 11:49]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:13](1596 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:15](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 02:11](888 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:11, 10:53]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:44](1660 MB)
-
-PASS -- COMPILE 'atmwm_intel' [11:11, 10:59]
-PASS -- TEST 'control_atmwav_intel' [02:33, 01:39](654 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:11, 10:51]
-PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:01](3009 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:58, 04:52](3072 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:43, 05:05](3085 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:30]
-PASS -- TEST 'regional_atmaq_debug_intel' [35:54, 33:01](4446 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:11, 03:38]
-PASS -- TEST 'control_c48_gnu' [11:25, 10:46](750 MB)
-PASS -- TEST 'control_stochy_gnu' [04:23, 03:23](491 MB)
-PASS -- TEST 'control_ras_gnu' [06:22, 04:49](501 MB)
-PASS -- TEST 'control_p8_gnu' [05:58, 04:39](1253 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:34](1253 MB)
-PASS -- TEST 'control_flake_gnu' [11:22, 10:44](537 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [04:11, 03:47]
-PASS -- TEST 'rap_control_gnu' [11:32, 10:52](848 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:32, 10:50](847 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:39, 09:50](935 MB)
-PASS -- TEST 'rap_restart_gnu' [06:39, 05:24](570 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](841 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:31, 10:58](842 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 08:02](572 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:33, 05:29](842 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:30](832 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:36, 05:02](915 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:29](838 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](556 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:50](648 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:38](838 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:35]
-PASS -- TEST 'control_diag_debug_gnu' [02:27, 01:44](527 MB)
-PASS -- TEST 'regional_debug_gnu' [12:44, 11:47](547 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](852 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:29](852 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:33](853 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:34](850 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:41, 02:48](936 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:03](849 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [05:21, 02:35](847 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:30](846 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:20, 01:32](482 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:42](477 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:41](1237 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:32](849 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](858 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:19](854 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:45]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:31](701 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:54](701 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](753 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:31, 04:33](738 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:00](701 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:33, 07:03](547 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:30](538 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:54, 03:11](872 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:41](879 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:44, 01:52](553 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:19]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](728 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:33](704 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:21, 02:29](701 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:47, 07:00](872 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:56](565 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:03](873 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:41, 06:56](941 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:38]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:38](722 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:11, 14:39]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:17]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:06, 06:39](1343 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:30]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:16]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:58, 22:14](1307 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:19]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:50](1308 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:19]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 03:05](695 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:33](3188 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:28]
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:09, 17:09](1750 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:18, 17:47](2042 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 08:03](1119 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:04, 20:01](1652 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:40]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:07, 23:32](1686 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:12, 13:01]
+PASS -- TEST 'cpld_control_p8_intel' [07:13, 05:46](3235 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:44](3220 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:25, 04:50](3272 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:47](3256 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:25, 04:50](3287 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:26](3557 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:43](3221 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:15, 04:44](3076 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:24, 06:10](3226 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:21, 10:14](3351 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 06:05](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:39, 09:39](4075 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:37, 05:54](4370 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:16, 05:22](3195 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:12, 12:34]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:56, 04:43](1743 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:19](1800 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:40]
+PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:30](3236 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:14]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:41](1747 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:12, 11:22]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:20](1782 MB)
+
+PASS -- COMPILE 's2s_intel' [12:12, 11:44]
+PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:24](2828 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:27]
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:19, 06:39](3232 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:22](1771 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 08:23](1178 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 19:40](1692 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:10]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:59, 25:13](1721 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:40]
+PASS -- TEST 'control_flake_intel' [04:25, 03:17](702 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [08:52, 02:51](1606 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:54, 02:57](1614 MB)
+PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1598 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:55, 02:54](1607 MB)
+PASS -- TEST 'control_c48_intel' [08:50, 07:38](1764 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:24](863 MB)
+PASS -- TEST 'control_c192_intel' [15:09, 10:32](1754 MB)
+PASS -- TEST 'control_c384_intel' [15:59, 10:29](2009 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:45, 07:57](1408 MB)
+PASS -- TEST 'control_stochy_intel' [06:22, 01:36](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:24, 00:57](512 MB)
+PASS -- TEST 'control_lndp_intel' [06:21, 01:32](662 MB)
+PASS -- TEST 'control_iovr4_intel' [07:23, 02:26](655 MB)
+PASS -- TEST 'control_iovr5_intel' [06:23, 02:28](657 MB)
+PASS -- TEST 'control_p8_intel' [07:45, 02:57](1629 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 02:58](1631 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:02, 02:50](1635 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](897 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:55](1623 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:35](941 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:02](1620 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:44](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:11](1632 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:59, 03:56](1697 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:59, 02:57](1640 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:56, 03:13](1646 MB)
+PASS -- TEST 'regional_control_intel' [06:43, 05:08](854 MB)
+PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB)
+PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB)
+PASS -- TEST 'regional_2threads_intel' [04:43, 03:13](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:44, 06:35](1368 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](852 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 05:11](856 MB)
+PASS -- TEST 'regional_wofs_intel' [08:41, 06:43](1909 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:11, 10:38]
+PASS -- TEST 'rap_control_intel' [08:41, 07:41](1113 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:03](1299 MB)
+PASS -- TEST 'rap_decomp_intel' [09:37, 08:06](1042 MB)
+PASS -- TEST 'rap_2threads_intel' [08:34, 07:15](1152 MB)
+PASS -- TEST 'rap_restart_intel' [04:43, 04:02](1104 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:40](1112 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:10](1045 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [05:39, 03:55](1043 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:04](1039 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:41](1113 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:28](1016 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:44, 07:33](1104 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:11](1997 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:06](2063 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:11, 10:14]
+PASS -- TEST 'control_csawmg_intel' [06:44, 05:59](755 MB)
+PASS -- TEST 'control_ras_intel' [04:24, 03:14](755 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:11, 03:41]
+PASS -- TEST 'control_csawmg_gnu' [09:44, 08:18](550 MB)
+
+PASS -- COMPILE 'wam_intel' [10:12, 09:50]
+PASS -- TEST 'control_wam_intel' [02:23, 02:04](650 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:32]
+PASS -- TEST 'control_p8_faster_intel' [03:54, 02:37](1636 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:40, 04:42](847 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:54]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:35](1619 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:29](1619 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](829 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:39](823 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:03](867 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:22, 02:42](830 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:50, 02:44](1679 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:47, 02:47](1651 MB)
+PASS -- TEST 'regional_debug_intel' [17:43, 16:48](836 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:23, 04:50](1213 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:44](1210 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:53](1211 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:56](1209 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:10](1296 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:00](1216 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:53](1208 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1209 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1213 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:45](1209 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:51](1213 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 07:51](1203 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:42](1200 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:58](1209 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:43](1208 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:33](1211 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:34]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:08](533 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:11, 03:06]
+PASS -- TEST 'control_wam_debug_intel' [06:22, 05:01](520 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:50]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:00, 03:50](1166 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 06:22](1055 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 03:21](984 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:05](1090 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 03:07](963 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:34](937 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:38, 04:49](1048 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:49](950 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:46]
+PASS -- TEST 'conus13km_control_intel' [02:52, 02:03](1203 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:52](1126 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:12](1110 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:35]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:08](989 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:23]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:45](1087 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:43](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:45, 14:24](1234 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 14:42](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:15](1160 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:29](1307 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:21]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:59](1126 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:11, 13:09]
+PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:52](755 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:44](1113 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:49](837 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:15](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:56](894 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 05:25](504 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:21, 06:34](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:45, 02:37](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:00, 07:05](480 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:37](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 03:24](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:55, 04:00](597 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:12](410 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:42, 04:00](806 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:42, 03:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:59](585 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:12, 13:34]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:00, 08:42](677 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:45](747 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:15]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:07, 06:21](737 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:12, 12:50]
+PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:21](835 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](818 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:00](1215 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:00]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:43](1151 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:36](1108 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1037 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:36](1024 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:35](1016 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:38](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:39](1156 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:33](1023 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 06:06](1052 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:22, 06:05](1051 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:39](1154 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:48](2494 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:51](2445 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:28]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:15](1082 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:28]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:36](1153 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:57]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:44](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:45](329 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:28](330 MB)
+
+PASS -- COMPILE 'atml_intel' [12:12, 11:33]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:06](1629 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:04](1616 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:10](918 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:12, 10:39]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:40](1682 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:12, 10:41]
+PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:57](3019 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:53](3092 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:28]
+PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 24:27](4453 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:12, 03:40]
+PASS -- TEST 'control_c48_gnu' [12:43, 11:09](1544 MB)
+PASS -- TEST 'control_stochy_gnu' [04:21, 03:22](507 MB)
+PASS -- TEST 'control_ras_gnu' [05:21, 04:45](515 MB)
+PASS -- TEST 'control_p8_gnu' [05:57, 04:41](1268 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:32](1270 MB)
+PASS -- TEST 'control_flake_gnu' [11:23, 10:38](550 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:12, 03:44]
+PASS -- TEST 'rap_control_gnu' [12:32, 11:04](858 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:34, 11:03](859 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:35, 09:50](947 MB)
+PASS -- TEST 'rap_restart_gnu' [06:36, 05:20](584 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:37, 10:50](857 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:37, 10:47](859 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:36, 08:00](589 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:31, 05:35](855 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:28, 05:36](845 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:02](932 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:33](859 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:53](574 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:49](666 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:43, 10:24](858 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:38]
+PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:37](1289 MB)
+PASS -- TEST 'regional_debug_gnu' [11:40, 10:41](562 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:33](873 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 02:30](874 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:30](877 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:32](877 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:32, 02:49](961 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](871 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](876 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:33](873 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](506 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:40](500 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:38](1260 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:35](872 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:45](880 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:11](884 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:58]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:12, 03:41]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:19](720 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:59](714 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:42](764 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:27, 04:29](757 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:09](715 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:32, 06:54](564 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:31](550 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:55, 03:07](887 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:31](888 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:45](561 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:12, 05:21]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:36](742 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:29](723 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:27](721 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:48, 06:47](899 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:52](590 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:31](903 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 06:54](969 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:43]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:37](745 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:12, 14:35]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:27]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:14, 09:59](1360 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:34]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:12]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:56, 22:02](1327 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:21]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:34](1334 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:01](699 MB)
SYNOPSIS:
-Starting Date/Time: 20240418 03:37:39
-Ending Date/Time: 20240418 05:51:38
-Total Time: 02h:14m:16s
-Compiles Completed: 54/54
-Tests Completed: 244/244
+Starting Date/Time: 20240421 00:24:06
+Ending Date/Time: 20240421 02:15:52
+Total Time: 01h:52m:03s
+Compiles Completed: 53/53
+Tests Completed: 238/239
+Failed Tests:
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2173/ufs-weather-model/tests/logs/log_hera/run_atmaero_control_p8_rad_micro_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERA REGRESSION TESTING LOG====
+====START OF HERA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_24155
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atmaero_intel' [14:12, 10:40]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 05:00](3094 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240422 16:20:37
+Ending Date/Time: 20240422 16:43:49
+Total Time: 00h:23m:20s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index caab4b10f9..9a94f7e473 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,367 +35,473 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_463802
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1104065
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:11, 12:05]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:17, 07:41](1900 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:30]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 07:43](1892 MB)
PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31]
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:37, 14:00](1769 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:54, 14:47](2192 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:49, 06:35](1175 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:07, 15:11](1694 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:52]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:48, 20:59](1724 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:11, 11:36]
-PASS -- TEST 'cpld_control_p8_intel' [09:09, 07:51](2062 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:23, 07:39](2066 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:11](1964 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:09, 07:50](1985 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:37, 04:18](1732 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:09, 09:24](2485 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:04, 07:46](2060 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:18, 06:33](1890 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:21, 07:47](2091 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:07, 15:38](2983 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:52, 05:51](2924 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [16:44, 09:11](3639 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:28, 06:20](3625 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:14, 05:11](2049 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:11, 12:09]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:10, 07:13](1789 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:21, 04:04](1818 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:52]
-PASS -- TEST 'cpld_debug_p8_intel' [08:31, 07:02](2044 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:16, 04:51](1792 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:19]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:16, 04:08](1829 MB)
-
-PASS -- COMPILE 's2s_intel' [10:11, 09:29]
-PASS -- TEST 'cpld_control_c48_intel' [08:55, 07:20](2839 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:11, 14:06]
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:23, 07:30](2067 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:12]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:09, 13:52](1825 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:25, 06:41](1287 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:13, 15:37](1745 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:17]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:34](1774 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:19]
-PASS -- TEST 'control_flake_intel' [03:22, 02:58](707 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:18](663 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:29, 02:20](682 MB)
-PASS -- TEST 'control_latlon_intel' [03:22, 02:17](670 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:16](675 MB)
-PASS -- TEST 'control_c48_intel' [06:29, 05:50](858 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:30, 05:46](860 MB)
-PASS -- TEST 'control_c192_intel' [08:32, 07:58](987 MB)
-PASS -- TEST 'control_c384_intel' [10:13, 08:14](1447 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:10, 07:39](1524 MB)
-PASS -- TEST 'control_stochy_intel' [02:22, 01:33](674 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:54](534 MB)
-PASS -- TEST 'control_lndp_intel' [02:22, 01:27](663 MB)
-PASS -- TEST 'control_iovr4_intel' [03:26, 02:11](661 MB)
-PASS -- TEST 'control_iovr5_intel' [03:23, 02:11](666 MB)
-PASS -- TEST 'control_p8_intel' [04:04, 02:36](1635 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:33](1633 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:13, 02:30](1647 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:02, 01:23](916 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:00, 02:28](1622 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:24](974 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:53, 02:37](1632 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:25](1729 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:37, 04:37](1647 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 03:27](1716 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:00, 02:41](1643 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:13, 03:09](1653 MB)
-PASS -- TEST 'regional_control_intel' [05:36, 04:41](956 MB)
-PASS -- TEST 'regional_restart_intel' [03:34, 02:39](1100 MB)
-PASS -- TEST 'regional_decomp_intel' [05:34, 04:46](948 MB)
-PASS -- TEST 'regional_2threads_intel' [03:34, 02:54](910 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1486 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 04:31](960 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:33](955 MB)
-PASS -- TEST 'regional_wofs_intel' [06:37, 05:54](2078 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:11, 07:51]
-PASS -- TEST 'rap_control_intel' [07:56, 06:48](1204 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:58, 03:36](1400 MB)
-PASS -- TEST 'rap_decomp_intel' [07:47, 06:52](1135 MB)
-PASS -- TEST 'rap_2threads_intel' [07:42, 06:29](1370 MB)
-PASS -- TEST 'rap_restart_intel' [05:00, 03:25](1155 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:58, 06:49](1194 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:49, 06:55](1166 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 05:02](1189 MB)
-PASS -- TEST 'hrrr_control_intel' [04:50, 03:25](1064 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 03:35](1052 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:40, 03:10](1129 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:53](1022 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:24](1205 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:42](2012 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:24, 07:27](2155 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:11, 07:34]
-PASS -- TEST 'control_csawmg_intel' [06:35, 05:20](811 MB)
-PASS -- TEST 'control_csawmgt_intel' [06:35, 05:20](834 MB)
-PASS -- TEST 'control_ras_intel' [03:20, 03:00](807 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:10, 05:23]
-PASS -- TEST 'control_csawmg_gnu' [07:39, 06:39](813 MB)
-PASS -- TEST 'control_csawmgt_gnu' [07:38, 06:31](813 MB)
-
-PASS -- COMPILE 'wam_intel' [07:10, 07:07]
-PASS -- TEST 'control_wam_intel' [02:26, 01:59](785 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:56]
-PASS -- TEST 'control_p8_faster_intel' [04:06, 02:26](1632 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:35, 04:21](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:17]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 02:19](824 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:28, 02:18](822 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:33](831 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:17](822 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:26](869 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [04:34, 03:24](878 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:20, 02:18](843 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:26, 02:21](881 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:47, 02:24](1664 MB)
-PASS -- TEST 'regional_debug_intel' [15:35, 14:11](894 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:22, 04:00](1216 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:21, 03:58](1227 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:21, 03:58](1224 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:20, 04:02](1218 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:20, 04:00](1221 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:16](1298 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:21, 04:04](1219 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:20, 04:06](1210 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:03](1210 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:03](1208 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:22, 03:55](1212 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:01](1215 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:24, 06:31](1210 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:21, 04:00](1220 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:24, 04:57](1226 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:21, 04:01](1222 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:50](1220 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:54]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:32, 01:45](791 MB)
-PASS -- TEST 'control_csawmgt_debug_gnu' [02:33, 01:43](788 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:11, 02:41]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:57]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:01, 03:20](1268 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:59, 05:33](1140 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:10, 02:52](1031 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:20](1295 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:45, 02:42](1045 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:03](977 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 04:12](1097 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:26, 01:37](963 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:27]
-PASS -- TEST 'conus13km_control_intel' [02:48, 01:50](1297 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:45](1195 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:35, 01:02](1155 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:11, 07:14]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:38, 03:44](1068 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:14]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:22, 03:58](1089 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:21, 03:51](1087 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:40, 11:34](1346 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:36, 12:07](997 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:34, 06:35](1242 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:36](1406 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:57]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:05](1145 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:11, 10:28]
-PASS -- TEST 'hafs_regional_atm_intel' [07:11, 05:35](873 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:20](1273 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:24, 06:23](953 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:07, 13:58](985 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:18, 14:59](1003 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:02, 05:43](604 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:09](615 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:53, 02:58](432 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:15](542 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:58](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:43](621 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:59, 04:48](681 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:30](447 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:54, 11:20](626 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:07, 16:44](738 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:02, 17:49](812 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:09, 09:36](793 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:11, 10:41]
-PASS -- TEST 'hafs_regional_docn_intel' [07:09, 05:24](962 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:08, 05:29](914 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:35](1339 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:18]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:09](1155 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1092 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:06](1008 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:07](1011 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:16, 02:06](1007 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:10](1151 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:17, 02:07](1133 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:05](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:00, 05:03](1154 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:01, 04:58](1141 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:14, 02:09](1144 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:19, 03:04](2380 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2439 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:48]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:14](1072 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:15]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:10](1150 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](334 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:58](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:36](558 MB)
-
-PASS -- COMPILE 'atml_intel' [08:10, 07:48]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:21, 06:03](1652 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:57](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:16](938 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:10, 09:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:04, 01:37](1697 MB)
-
-PASS -- COMPILE 'atmwm_intel' [10:10, 09:52]
-PASS -- TEST 'control_atmwav_intel' [02:53, 01:31](685 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:11, 07:26]
-PASS -- TEST 'atmaero_control_p8_intel' [05:00, 03:38](1786 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:58, 04:25](1819 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:27](1822 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:22]
-PASS -- TEST 'regional_atmaq_debug_intel' [18:38, 16:44](4605 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:11, 04:36]
-PASS -- TEST 'control_c48_gnu' [10:35, 09:34](864 MB)
-PASS -- TEST 'control_stochy_gnu' [03:24, 02:15](729 MB)
-PASS -- TEST 'control_ras_gnu' [04:20, 03:40](737 MB)
-PASS -- TEST 'control_p8_gnu' [05:06, 03:38](1515 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:32](1524 MB)
-PASS -- TEST 'control_flake_gnu' [05:22, 04:27](811 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:10, 04:26]
-PASS -- TEST 'rap_control_gnu' [08:44, 07:52](1087 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:46, 07:55](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:58, 07:09](1124 MB)
-PASS -- TEST 'rap_restart_gnu' [04:54, 03:55](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [08:53, 07:54](1087 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:48, 07:56](1090 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:46](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:46, 04:09](1076 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:01, 04:08](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:40](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:43, 04:01](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:25, 02:06](891 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:26, 02:07](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:12, 07:48](1084 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:31]
-PASS -- TEST 'control_diag_debug_gnu' [02:23, 01:17](774 MB)
-PASS -- TEST 'regional_debug_gnu' [07:37, 06:26](927 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1096 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:55](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:18, 02:01](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:03](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:04](1269 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1093 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1094 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:09](1091 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:10](723 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:21](721 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:15](1501 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:59](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:19](1099 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:17](1102 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:48]
-PASS -- TEST 'control_wam_debug_gnu' [02:27, 02:00](500 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:59]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:41, 07:19](965 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 03:53](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:52, 06:54](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:37](890 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:44, 03:55](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:53, 05:28](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:31, 02:02](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:48, 02:33](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:33, 01:04](1172 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:33](926 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:15]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:41, 04:24](988 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 07:04]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 02:00](975 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:24, 01:56](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [06:38, 05:21](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [06:39, 05:37](955 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:32, 03:14](1190 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:34, 05:24](1346 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:00]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:20, 02:00](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:11, 15:26]
-
-PASS -- COMPILE 's2s_gnu' [16:11, 15:54]
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:11, 05:39]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 05:18]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:55]
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:29, 13:22](1766 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:52, 14:22](2146 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:43, 06:37](1196 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:23, 15:33](1687 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:44]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 20:57](1730 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:11, 11:27]
+PASS -- TEST 'cpld_control_p8_intel' [15:11, 07:46](2077 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 07:47](2084 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:23, 04:20](1951 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:11, 07:43](1972 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 04:24](1731 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [16:04, 08:59](2492 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [15:03, 07:46](2066 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:07, 06:32](1889 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:25, 07:37](2061 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [21:04, 15:03](2811 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:01](2922 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:27, 10:44](3660 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 06:52](3624 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 04:58](2026 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:11, 10:42]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [13:02, 07:01](1774 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 04:01](1831 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:14]
+PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:56](2063 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:59]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:13, 04:52](1788 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:19]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 03:57](1830 MB)
+
+PASS -- COMPILE 's2s_intel' [09:10, 08:56]
+PASS -- TEST 'cpld_control_c48_intel' [08:56, 07:19](2839 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:37]
+PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 07:18](2094 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:48]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 14:27](1809 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:19, 06:45](1280 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 15:22](1742 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:58]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:24](1765 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:45]
+PASS -- TEST 'control_flake_intel' [11:23, 02:51](706 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [14:33, 05:44](864 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
+PASS -- TEST 'control_c384gdas_intel' [22:17, 07:24](1530 MB)
+PASS -- TEST 'control_stochy_intel' [08:23, 01:25](672 MB)
+PASS -- TEST 'control_stochy_restart_intel' [07:32, 00:55](546 MB)
+PASS -- TEST 'control_lndp_intel' [10:21, 01:22](670 MB)
+PASS -- TEST 'control_iovr4_intel' [13:28, 02:04](661 MB)
+PASS -- TEST 'control_iovr5_intel' [12:23, 02:06](664 MB)
+PASS -- TEST 'control_p8_intel' [10:51, 02:40](1640 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [09:03, 02:42](1635 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:32](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:59, 01:29](923 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:55, 02:38](1635 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 01:38](982 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:53, 02:42](1638 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:51, 02:27](1731 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:38, 04:39](1650 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:03, 03:30](1719 MB)
+PASS -- TEST 'control_p8_mynn_intel' [08:09, 02:33](1652 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
+PASS -- TEST 'regional_control_intel' [08:38, 04:36](960 MB)
+PASS -- TEST 'regional_restart_intel' [07:39, 02:34](1107 MB)
+PASS -- TEST 'regional_decomp_intel' [08:32, 04:56](946 MB)
+PASS -- TEST 'regional_2threads_intel' [06:33, 02:58](917 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:34, 04:29](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 04:39](958 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [08:30, 04:59](943 MB)
+PASS -- TEST 'regional_wofs_intel' [08:31, 05:48](2084 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:10, 07:51]
+PASS -- TEST 'rap_control_intel' [12:12, 06:39](1204 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:46](1454 MB)
+PASS -- TEST 'rap_decomp_intel' [12:47, 06:52](1145 MB)
+PASS -- TEST 'rap_2threads_intel' [12:46, 06:25](1375 MB)
+PASS -- TEST 'rap_restart_intel' [05:11, 03:38](1130 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:57, 06:38](1201 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 06:53](1141 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [16:08, 04:57](1235 MB)
+PASS -- TEST 'hrrr_control_intel' [08:56, 03:28](1074 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [09:44, 03:32](1041 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [08:46, 03:12](1123 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:36, 01:49](1030 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:59, 06:29](1187 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 07:49](2010 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 07:34](2159 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:10, 07:29]
+PASS -- TEST 'control_csawmg_intel' [10:39, 05:22](814 MB)
+PASS -- TEST 'control_ras_intel' [07:22, 02:55](820 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [09:11, 03:51]
+PASS -- TEST 'control_csawmg_gnu' [10:41, 06:39](809 MB)
+
+PASS -- COMPILE 'wam_intel' [10:11, 06:36]
+PASS -- TEST 'control_wam_intel' [05:27, 02:06](791 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 09:42]
+PASS -- TEST 'control_p8_faster_intel' [06:03, 02:25](1645 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:34, 04:11](960 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 04:00]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:22, 02:30](843 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:18](825 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:37, 03:27](870 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:20, 02:16](828 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
+PASS -- TEST 'control_debug_p8_intel' [04:43, 02:21](1655 MB)
+PASS -- TEST 'regional_debug_intel' [15:39, 14:20](891 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:24, 04:07](1209 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [14:23, 04:03](1214 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [14:21, 04:03](1221 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [14:21, 04:05](1230 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:22, 04:01](1231 MB)
+PASS -- TEST 'rap_diag_debug_intel' [15:29, 04:17](1292 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:22, 04:13](1213 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:21, 04:13](1220 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [14:22, 04:08](1214 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:22, 04:12](1219 MB)
+PASS -- TEST 'rap_noah_debug_intel' [14:22, 04:07](1222 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [14:22, 04:14](1221 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:21, 06:38](1218 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 03:59](1221 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [15:20, 04:51](1216 MB)
+PASS -- TEST 'rap_flake_debug_intel' [14:22, 04:03](1209 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:03, 07:00](1218 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 03:53]
+PASS -- TEST 'control_csawmg_debug_gnu' [15:39, 01:48](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:11, 02:29]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:20]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:52, 03:36](1285 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:58, 05:37](1158 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:09, 03:05](1030 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 05:20](1289 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:51, 02:53](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:49, 03:08](1001 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:00, 04:08](1094 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:26, 01:38](960 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 09:13]
+PASS -- TEST 'conus13km_control_intel' [06:47, 01:56](1303 MB)
+PASS -- TEST 'conus13km_2threads_intel' [08:36, 01:02](1206 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:08](1148 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:10, 07:04]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 03:51](1097 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:23, 03:54](1097 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 03:51](1094 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:43, 11:49](1345 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:43, 11:55](987 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:32, 06:49](1218 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 12:03](1416 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:11]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:06](1155 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:11, 10:14]
+PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:34](880 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:14](1282 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:36](955 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [19:10, 14:23](979 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:19, 16:16](1016 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:05, 05:58](604 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:23, 07:30](618 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:09](432 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 08:22](542 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:53, 04:43](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:52, 03:54](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:58, 05:13](674 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:40](446 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:10, 02:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 11:24](632 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:11, 10:47]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:01, 17:10](732 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:11, 16:18](810 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 10:05]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:04, 10:10](790 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:11, 09:55]
+PASS -- TEST 'hafs_regional_docn_intel' [13:08, 05:41](956 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:08, 06:01](915 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:45, 16:34](1333 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:10, 06:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:10](1133 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:24](1079 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:16, 02:05](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:07](1019 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:07](1013 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:11](1130 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:11](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:04](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 04:57](1160 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:56, 04:56](1140 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:10](1147 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2330 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2432 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 03:03]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:12](1077 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:09](1128 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:03](328 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:35](560 MB)
+
+PASS -- COMPILE 'atml_intel' [11:11, 08:16]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:27, 05:49](1644 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:40](1657 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:58](946 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:11, 09:44]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:08, 01:34](1693 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 08:12]
+PASS -- TEST 'atmaero_control_p8_intel' [05:09, 03:41](1792 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:16](1798 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:49]
+PASS -- TEST 'regional_atmaq_debug_intel' [19:39, 17:12](4590 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:10, 03:41]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_gnu' [, ]( MB)
+PASS -- TEST 'control_stochy_gnu' [03:22, 02:19](730 MB)
+PASS -- TEST 'control_ras_gnu' [05:20, 03:39](730 MB)
+PASS -- TEST 'control_p8_gnu' [04:57, 03:34](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:50, 03:37](1513 MB)
+PASS -- TEST 'control_flake_gnu' [05:20, 04:22](809 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [08:10, 05:01]
+PASS -- TEST 'rap_control_gnu' [08:53, 07:44](1086 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:46, 07:45](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [08:43, 07:12](1122 MB)
+PASS -- TEST 'rap_restart_gnu' [09:58, 03:55](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:54, 08:29](1086 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:49, 07:47](1085 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:58, 05:43](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:47, 04:02](1076 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:03](1134 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:38](1021 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:00](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:05](934 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:10, 07:46](1082 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 05:52]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB)
+PASS -- TEST 'regional_debug_gnu' [07:38, 06:27](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:22, 01:58](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:56](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 01:59](1095 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 01:59](1094 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:05](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:06](1095 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1097 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 01:56](1090 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:15](726 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:21](722 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:18](1506 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:26, 01:59](1097 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:10](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:21](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:21]
+PASS -- TEST 'control_wam_debug_gnu' [03:31, 02:03](501 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:49]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:52, 07:27](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:10, 03:54](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:51](995 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:45, 03:36](893 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:45, 03:57](957 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 05:26](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 01:58](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [06:48, 02:42](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:05](1174 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:29](930 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 11:32]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:28](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:11, 09:44]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 01:59](978 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 01:55](968 MB)
+PASS -- TEST 'conus13km_debug_gnu' [10:40, 05:30](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [10:38, 05:37](968 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:33, 03:22](1191 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:35, 05:28](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:24, 01:59](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [22:12, 17:59]
+
+PASS -- COMPILE 's2s_gnu' [19:11, 17:30]
+
+PASS -- COMPILE 's2swa_debug_gnu' [10:11, 09:01]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:17]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 04:23]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:16]
SYNOPSIS:
-Starting Date/Time: 20240418 10:13:12
-Ending Date/Time: 20240418 11:26:55
-Total Time: 01h:14m:32s
-Compiles Completed: 54/54
-Tests Completed: 239/239
+Starting Date/Time: 20240422 07:29:32
+Ending Date/Time: 20240422 09:17:34
+Total Time: 01h:48m:46s
+Compiles Completed: 53/53
+Tests Completed: 220/234
+Failed Tests:
+* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_intel.log
+* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_parallel_intel.log
+* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_latlon_intel.log
+* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_intel.log
+* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_intel.log
+* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c192_intel.log
+* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c384_intel.log
+* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_merra2_thompson_intel.log
+* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_debug_intel.log
+* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_debug_intel.log
+* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_intel.log
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_atmaero_control_p8_rad_micro_intel.log
+* TEST control_c48_gnu: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_gnu.log
+* TEST control_diag_debug_gnu: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_gnu.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERCULES REGRESSION TESTING LOG====
+====START OF HERCULES REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1349963
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:28]
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 02:43](1600 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:40, 02:40](1629 MB)
+PASS -- TEST 'control_latlon_intel' [03:35, 02:46](1605 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:40](1606 MB)
+PASS -- TEST 'control_c48_intel' [07:43, 07:02](1748 MB)
+PASS -- TEST 'control_c192_intel' [10:56, 09:11](1766 MB)
+PASS -- TEST 'control_c384_intel' [12:28, 09:41](2053 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:45, 03:02](1658 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:22](1632 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:09](1644 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:42, 02:24](1686 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:10, 07:56]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 04:30](1814 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:10, 04:47]
+PASS -- TEST 'control_c48_gnu' [10:45, 09:45](1574 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:37]
+PASS -- TEST 'control_diag_debug_gnu' [02:36, 01:19](1625 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240422 10:21:26
+Ending Date/Time: 20240422 10:44:31
+Total Time: 00h:23m:27s
+Compiles Completed: 5/5
+Tests Completed: 14/14
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index eb45f3bfc5..f4fce114d9 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,247 +35,313 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3966856
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2785867
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:26]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:51](1794 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:26]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:41](1664 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:13](1889 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:18](995 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:36, 23:50](1636 MB)
-
-PASS -- COMPILE 's2swa_intel' [39:13, 38:43]
-PASS -- TEST 'cpld_control_p8_intel' [09:27, 07:34](1830 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:48, 07:31](1818 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:43, 04:22](1709 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 07:41](1848 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:40, 04:25](1736 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:13](2281 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 07:36](1825 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:40, 06:23](1774 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:48, 07:35](1819 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [15:40, 07:03](1789 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:13, 36:41]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:25, 05:50](1654 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:37, 05:40](1710 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26]
-PASS -- TEST 'cpld_debug_p8_intel' [12:58, 10:33](1845 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:34]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:18](1677 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:14]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:49, 05:37](1714 MB)
-
-PASS -- COMPILE 's2s_intel' [33:13, 32:29]
-PASS -- TEST 'cpld_control_c48_intel' [14:12, 12:57](2781 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:18, 32:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:21, 07:05](1826 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:54]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:47, 20:49](1686 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:52, 10:23](1035 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:36, 24:23](1643 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:49]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:09](1694 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:49]
-PASS -- TEST 'control_flake_intel' [17:34, 04:25](643 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:34, 03:18](592 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:39, 03:29](602 MB)
-PASS -- TEST 'control_latlon_intel' [04:30, 03:21](600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:42, 03:25](600 MB)
-PASS -- TEST 'control_c48_intel' [10:41, 10:08](852 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:05](849 MB)
-PASS -- TEST 'control_c192_intel' [23:04, 12:26](721 MB)
-PASS -- TEST 'control_c384_intel' [20:55, 15:45](907 MB)
-PASS -- TEST 'control_c384gdas_intel' [21:48, 13:26](1018 MB)
-PASS -- TEST 'control_stochy_intel' [03:34, 02:11](600 MB)
-PASS -- TEST 'control_stochy_restart_intel' [16:29, 01:18](427 MB)
-PASS -- TEST 'control_lndp_intel' [16:34, 02:03](608 MB)
-PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](601 MB)
-PASS -- TEST 'control_iovr5_intel' [04:34, 03:21](598 MB)
-PASS -- TEST 'control_p8_intel' [20:46, 03:55](1571 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [24:46, 03:56](1579 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [20:45, 03:54](1577 MB)
-PASS -- TEST 'control_restart_p8_intel' [09:20, 02:07](817 MB)
-PASS -- TEST 'control_noqr_p8_intel' [21:49, 03:55](1568 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [09:24, 02:03](836 MB)
-PASS -- TEST 'control_decomp_p8_intel' [24:37, 04:01](1552 MB)
-PASS -- TEST 'control_2threads_p8_intel' [24:38, 03:41](1665 MB)
-PASS -- TEST 'control_p8_lndp_intel' [27:21, 06:54](1575 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [26:04, 05:02](1636 MB)
-PASS -- TEST 'control_p8_mynn_intel' [24:56, 04:01](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [25:09, 04:32](1591 MB)
-PASS -- TEST 'regional_control_intel' [10:09, 07:03](762 MB)
-PASS -- TEST 'regional_restart_intel' [15:42, 03:48](934 MB)
-PASS -- TEST 'regional_decomp_intel' [10:09, 07:29](761 MB)
-PASS -- TEST 'regional_2threads_intel' [06:09, 04:24](757 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:17, 07:04](757 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [22:44, 06:58](759 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:14, 33:02]
-PASS -- TEST 'rap_control_intel' [27:33, 10:04](988 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:11, 05:38](1199 MB)
-PASS -- TEST 'rap_decomp_intel' [28:18, 10:37](986 MB)
-PASS -- TEST 'rap_2threads_intel' [28:11, 09:33](1084 MB)
-PASS -- TEST 'rap_restart_intel' [08:09, 05:13](991 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [28:29, 10:03](984 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:02, 10:40](979 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:20, 07:32](998 MB)
-PASS -- TEST 'hrrr_control_intel' [19:25, 05:14](988 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [19:00, 05:21](980 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [18:58, 04:44](1062 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](915 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [20:34, 09:55](988 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [20:31, 12:25](1943 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [19:32, 12:00](1939 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:13, 31:14]
-PASS -- TEST 'control_csawmg_intel' [15:42, 08:02](694 MB)
-PASS -- TEST 'control_csawmgt_intel' [13:50, 07:53](690 MB)
-PASS -- TEST 'control_ras_intel' [09:26, 04:22](662 MB)
-
-PASS -- COMPILE 'wam_intel' [30:13, 29:53]
-PASS -- TEST 'control_wam_intel' [03:22, 02:43](500 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [47:15, 31:38]
-PASS -- TEST 'control_p8_faster_intel' [06:31, 03:36](1580 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:45, 07:28](770 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:12, 05:31]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:35, 03:22](757 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:40, 03:21](761 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:45](765 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:25](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:53, 05:14](809 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:53, 05:08](810 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:32, 03:25](754 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:37, 03:31](816 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:05, 03:34](1585 MB)
-PASS -- TEST 'regional_debug_intel' [25:58, 21:43](778 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:33, 05:59](1153 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:34, 05:55](1151 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 05:58](1152 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:03](1147 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:02](1160 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:19](1229 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:30, 06:09](1149 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:23, 06:09](1133 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [09:27, 06:03](1146 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 05:59](1153 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:05](1137 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:31, 06:04](1145 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:28, 09:53](1153 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [09:27, 05:57](1147 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 07:20](1148 MB)
-PASS -- TEST 'rap_flake_debug_intel' [09:23, 06:02](1143 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:27, 10:23](1155 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:11, 04:04]
-PASS -- TEST 'control_wam_debug_intel' [08:27, 06:09](447 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:03]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:17, 05:11](1073 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 08:20](898 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:07, 04:22](864 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:59, 07:51](941 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:11, 04:01](909 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:42, 04:33](852 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:14, 06:13](902 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:21](842 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:33]
-PASS -- TEST 'conus13km_control_intel' [05:07, 02:56](1104 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:24](1053 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:49, 01:35](1021 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:36]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 05:29](897 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:14, 38:39]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 07:08](1789 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:23]
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 20:45](1667 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:21](1888 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 10:19](993 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:37, 23:57](1622 MB)
+
+PASS -- COMPILE 's2swa_intel' [39:14, 38:48]
+PASS -- TEST 'cpld_control_p8_intel' [09:24, 07:38](1825 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 07:56](1826 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:46, 04:31](1714 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:40](1853 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 05:07](1728 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:26, 07:02](2274 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:59](1822 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:51](1781 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:34](1826 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 07:12](1787 MB)
+
+PASS -- COMPILE 's2sw_intel' [36:13, 36:04]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:52](1658 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:39](1710 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:32]
+PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:34](1846 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:40]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:13](1676 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:02]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:41](1719 MB)
+
+PASS -- COMPILE 's2s_intel' [33:13, 32:17]
+PASS -- TEST 'cpld_control_c48_intel' [15:32, 13:21](2798 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:19, 32:56]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:57, 07:00](1818 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:18]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:40, 20:42](1678 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:25](1038 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:43, 23:57](1658 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:56]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:11](1688 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:43]
+PASS -- TEST 'control_flake_intel' [05:30, 04:34](643 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 04:05](1545 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:17, 04:13](1551 MB)
+PASS -- TEST 'control_latlon_intel' [05:08, 04:03](1546 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 04:07](1548 MB)
+PASS -- TEST 'control_c48_intel' [13:22, 11:53](1734 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:12](843 MB)
+PASS -- TEST 'control_c192_intel' [15:30, 14:01](1675 MB)
+PASS -- TEST 'control_c384_intel' [21:20, 18:20](1827 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:47, 14:00](1013 MB)
+PASS -- TEST 'control_stochy_intel' [03:32, 02:15](600 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:22](434 MB)
+PASS -- TEST 'control_lndp_intel' [03:31, 02:08](605 MB)
+PASS -- TEST 'control_iovr4_intel' [04:36, 03:18](599 MB)
+PASS -- TEST 'control_iovr5_intel' [06:32, 05:34](593 MB)
+PASS -- TEST 'control_p8_intel' [06:32, 04:20](1574 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 04:02](1571 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 04:00](1575 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:10, 02:19](811 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:46, 04:05](1571 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:15](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:32, 04:06](1564 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:53](1663 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:14, 07:15](1569 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:21](1628 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:21](1578 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:05, 04:33](1574 MB)
+PASS -- TEST 'regional_control_intel' [09:06, 07:14](761 MB)
+PASS -- TEST 'regional_restart_intel' [04:43, 03:44](934 MB)
+PASS -- TEST 'regional_decomp_intel' [14:06, 12:46](762 MB)
+PASS -- TEST 'regional_2threads_intel' [05:44, 04:37](758 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 06:54](759 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 07:00](765 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:13, 32:30]
+PASS -- TEST 'rap_control_intel' [12:18, 10:10](993 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 05:47](1217 MB)
+PASS -- TEST 'rap_decomp_intel' [11:56, 10:34](987 MB)
+PASS -- TEST 'rap_2threads_intel' [14:00, 12:25](1088 MB)
+PASS -- TEST 'rap_restart_intel' [07:16, 05:13](994 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:12, 10:12](993 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 10:46](988 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:29](996 MB)
+PASS -- TEST 'hrrr_control_intel' [06:14, 05:08](985 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:24](984 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:59, 04:53](1051 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](919 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:30, 10:00](983 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:27, 12:10](1949 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:27, 12:18](1941 MB)
+
+PASS -- COMPILE 'csawmg_intel' [31:13, 30:58]
+PASS -- TEST 'control_csawmg_intel' [08:51, 08:01](695 MB)
+PASS -- TEST 'control_ras_intel' [05:27, 04:26](665 MB)
+
+PASS -- COMPILE 'wam_intel' [30:12, 29:35]
+PASS -- TEST 'control_wam_intel' [03:26, 02:44](503 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:12, 32:05]
+PASS -- TEST 'control_p8_faster_intel' [05:37, 03:36](1581 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:47, 06:28](764 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:38]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:27](1558 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:27](1554 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:53](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:26](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:46, 05:21](812 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:24, 03:23](772 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:54, 03:29](1622 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:52, 03:35](1598 MB)
+PASS -- TEST 'regional_debug_intel' [22:46, 21:38](774 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:29, 06:00](1158 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:52](1156 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:02](1145 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:59](1144 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:00](1148 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:41, 06:19](1234 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 06:09](1150 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 06:06](1154 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:27, 06:08](1150 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 06:00](1155 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:53](1149 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 06:01](1153 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 09:51](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 06:02](1148 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 07:20](1153 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:28, 06:00](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:27](1153 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:45]
+PASS -- TEST 'control_wam_debug_intel' [07:27, 06:09](465 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:13, 29:43]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:57, 08:09](901 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 04:20](874 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 07:46](946 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 04:00](908 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:35](853 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 06:09](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:21](847 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:39]
+PASS -- TEST 'conus13km_control_intel' [05:11, 03:26](1103 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1055 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:39](1022 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:16]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:01, 05:29](905 MB)
PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 06:03](1029 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:52](1025 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:00, 18:23](1126 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [25:58, 18:38](850 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:50, 10:44](1086 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:50, 18:37](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:08]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:43, 06:08](1072 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:14, 34:45]
-PASS -- TEST 'hafs_regional_atm_intel' [08:27, 06:56](711 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:37, 06:23](1087 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:12](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:34, 16:19](802 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 18:03](822 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:27, 05:40](774 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [34:13, 31:56]
-PASS -- TEST 'hafs_regional_docn_intel' [11:22, 08:35](769 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:26, 08:38](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:54]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:35](1063 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:13](1031 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:31](917 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:34](919 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](923 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:37](1066 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:52](1065 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](916 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 07:57](890 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:19, 07:47](845 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1058 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:02](2333 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:25, 05:05](2345 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:21]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 07:58](1006 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:55]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 03:32](1059 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:52]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:37](230 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 01:20](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:50](256 MB)
-
-PASS -- COMPILE 'atml_intel' [34:12, 33:57]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 07:54](1606 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:50, 07:58](1605 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:55, 04:18](858 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:13, 31:45]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 02:16](1605 MB)
-
-PASS -- COMPILE 'atmwm_intel' [31:13, 31:00]
-PASS -- TEST 'control_atmwav_intel' [04:14, 02:14](611 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:13, 30:56]
-PASS -- TEST 'atmaero_control_p8_intel' [08:27, 05:21](1677 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [14:31, 06:20](1725 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:14, 06:44](1736 MB)
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 05:57](1033 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:49](1027 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:58, 18:28](1132 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 18:36](852 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:42](1084 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 18:14](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:04](1073 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:13, 35:06]
+PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:00](715 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 06:59](1082 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:45, 09:21](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:23](802 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:16](823 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:24, 07:41](779 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:13, 31:31]
+PASS -- TEST 'hafs_regional_docn_intel' [10:26, 08:48](773 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:30, 09:00](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 03:35](1069 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:15](1029 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:31](924 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](928 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 03:35](929 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 03:35](1081 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:38](1066 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 03:32](937 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 07:57](884 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 08:03](842 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 03:35](1077 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:01](2399 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 05:03](2403 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:13]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:59](996 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:01]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 03:36](1054 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:51]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:47](232 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:30, 04:53](266 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:53](251 MB)
+
+PASS -- COMPILE 'atml_intel' [39:14, 38:47]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:29](1600 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:51](870 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:13, 31:19]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:17](1609 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:12, 30:48]
+PASS -- TEST 'atmaero_control_p8_intel' [06:24, 05:09](1693 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:25](1717 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
SYNOPSIS:
-Starting Date/Time: 20240418 00:51:47
-Ending Date/Time: 20240418 04:31:24
-Total Time: 03h:40m:17s
-Compiles Completed: 33/33
-Tests Completed: 161/161
+Starting Date/Time: 20240421 00:24:53
+Ending Date/Time: 20240421 04:39:18
+Total Time: 04h:14m:58s
+Compiles Completed: 32/32
+Tests Completed: 156/158
+Failed Tests:
+* TEST control_p8_atmlnd_sbs_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_control_p8_atmlnd_sbs_intel.log
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_atmaero_control_p8_rad_micro_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF JET REGRESSION TESTING LOG====
+====START OF JET REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3224491
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: h-nems
+* (-l) - USE CONFIG FILE: rt.conf.rerun
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atml_intel' [35:13, 34:29]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:46](1611 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:13, 30:45]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:26, 06:28](1735 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240422 16:28:22
+Ending Date/Time: 20240422 17:15:58
+Total Time: 00h:47m:49s
+Compiles Completed: 2/2
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 46908d3ba4..65abf9421d 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+d47726e50be21a6b878bfb05f03b0b9fbe725775
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,278 +35,376 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_337338
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400870
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:56]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:29, 05:28](3177 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:51]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 16:31](1742 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:03, 17:30](2025 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:55, 08:23](1111 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:54, 18:29](1645 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:53]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:00](1692 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:11, 14:26]
-PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:37](3207 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:37](3213 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:02, 03:24](3255 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:38](3238 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 03:28](3281 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:49, 06:06](3556 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:39](3202 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:52, 04:42](3067 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:13, 05:42](3210 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 09:57](3331 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:26, 06:31](3620 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:53, 11:05](4121 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:08, 07:24](4363 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:25](3178 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 14:15]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:28, 04:21](1736 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:53, 04:24](1778 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:27]
-PASS -- TEST 'cpld_debug_p8_intel' [10:38, 08:33](3249 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 06:00](1754 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:17]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:24](1778 MB)
-
-PASS -- COMPILE 's2s_intel' [14:11, 13:15]
-PASS -- TEST 'cpld_control_c48_intel' [09:02, 08:05](2830 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:26]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:52, 05:20](3213 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:23]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:21, 16:41](1762 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 08:20](1172 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 18:35](1686 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 24:30](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:28]
-PASS -- TEST 'control_flake_intel' [04:27, 03:28](696 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:27](649 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:37](658 MB)
-PASS -- TEST 'control_latlon_intel' [03:24, 02:28](648 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 02:31](656 MB)
-PASS -- TEST 'control_c48_intel' [06:29, 06:03](826 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:29, 05:56](859 MB)
-PASS -- TEST 'control_c192_intel' [09:37, 09:04](846 MB)
-PASS -- TEST 'control_c384_intel' [12:40, 10:09](1248 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:07, 09:06](1355 MB)
-PASS -- TEST 'control_stochy_intel' [02:23, 01:42](654 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:05](498 MB)
-PASS -- TEST 'control_lndp_intel' [02:24, 01:34](653 MB)
-PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB)
-PASS -- TEST 'control_iovr5_intel' [03:23, 02:30](650 MB)
-PASS -- TEST 'control_p8_intel' [05:10, 03:09](1634 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 03:09](1627 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:02](1626 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:21, 01:41](889 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:56](1623 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:13, 01:39](929 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:30, 03:03](1616 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:30, 03:11](1717 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:00, 05:22](1637 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:58](1696 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:47, 03:03](1631 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:57, 03:31](1648 MB)
-PASS -- TEST 'regional_control_intel' [06:54, 05:10](861 MB)
-PASS -- TEST 'regional_restart_intel' [04:49, 02:46](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [06:50, 05:30](843 MB)
-PASS -- TEST 'regional_2threads_intel' [04:41, 03:43](841 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:36, 05:10](1366 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:49, 05:17](855 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:08](850 MB)
-PASS -- TEST 'regional_wofs_intel' [07:38, 06:40](1917 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 11:34]
-PASS -- TEST 'rap_control_intel' [09:30, 07:48](1100 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:43](1307 MB)
-PASS -- TEST 'rap_decomp_intel' [10:29, 08:07](1037 MB)
-PASS -- TEST 'rap_2threads_intel' [08:58, 07:55](1175 MB)
-PASS -- TEST 'rap_restart_intel' [05:26, 04:03](1091 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:28, 07:48](1098 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:26, 08:06](1027 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 05:47](1124 MB)
-PASS -- TEST 'hrrr_control_intel' [06:07, 04:06](1030 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:12](1024 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:24](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:24, 02:10](987 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:41](1093 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:23, 09:12](1997 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 09:05](2074 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:10, 10:52]
-PASS -- TEST 'control_csawmg_intel' [08:53, 06:09](746 MB)
-PASS -- TEST 'control_csawmgt_intel' [07:50, 06:05](747 MB)
-PASS -- TEST 'control_ras_intel' [05:24, 03:22](738 MB)
-
-PASS -- COMPILE 'wam_intel' [12:10, 12:03]
-PASS -- TEST 'control_wam_intel' [05:21, 02:05](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:44]
-PASS -- TEST 'control_p8_faster_intel' [05:38, 02:40](1621 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:46, 04:42](856 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:54]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:32, 02:53](812 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:43](818 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:02](821 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:52](812 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:45, 04:10](863 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [07:42, 04:10](865 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:23, 02:46](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:30, 02:55](874 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:50, 03:21](1653 MB)
-PASS -- TEST 'regional_debug_intel' [19:47, 17:40](844 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1211 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:44](1205 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:59](1194 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:44](1208 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:59](1205 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:25](1282 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:28, 05:14](1202 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:56](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:24, 05:01](1198 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:03](1198 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:56](1205 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:02](1199 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:59](1204 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:51](1210 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:27, 05:05](1206 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:30, 08:34](1211 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:20]
-PASS -- TEST 'control_wam_debug_intel' [05:23, 04:59](522 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:19]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:32](1168 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:18, 06:29](1053 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:27](983 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 06:46](1094 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:06](957 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:39](930 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:20, 04:50](1044 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:55](928 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:23]
-PASS -- TEST 'conus13km_control_intel' [05:01, 02:13](1201 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:09](1124 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:17](1056 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:01]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:19](994 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:24, 05:02](1079 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 04:50](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:47, 14:33](1229 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:26](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:08](1154 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:28](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:29]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:32, 05:05](1129 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:12, 13:06]
-PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:39](743 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:04](1116 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:28, 06:59](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 12:51](865 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:42](833 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:13](500 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:20, 07:36](514 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:17](371 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:19, 08:02](469 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:13](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:56](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:24](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:50, 13:20](570 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:57, 09:43](728 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:08, 09:45](704 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:49]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:02, 07:01](695 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27]
-PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:22](782 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:24](812 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:59, 15:58](1211 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:44](1131 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1090 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:37](1001 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:44](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:39](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:41](1137 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:48](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:35](1021 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 06:01](1050 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:18, 05:56](1043 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:43](1119 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:39](2482 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:40](2491 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 04:15]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:18, 06:08](1056 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1127 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](264 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:52](322 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:31](319 MB)
-
-PASS -- COMPILE 'atml_intel' [15:11, 13:21]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:13](1609 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 04:12](1601 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:45, 02:25](900 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:11, 12:17]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:20, 01:49](1668 MB)
-
-PASS -- COMPILE 'atmwm_intel' [14:11, 11:44]
-PASS -- TEST 'control_atmwav_intel' [03:08, 01:44](671 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:11, 11:26]
-PASS -- TEST 'atmaero_control_p8_intel' [05:15, 04:04](3026 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:16, 04:49](3091 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:01](3113 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:18]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:43, 20:24](4577 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:56]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:18](3112 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24]
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:34](1744 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:01, 17:20](2026 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:09, 08:05](1112 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:51, 18:36](1644 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:18]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 23:09](1683 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:11, 15:26]
+PASS -- TEST 'cpld_control_p8_intel' [08:02, 05:39](3210 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:22, 05:41](3211 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:07, 03:18](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 05:46](3237 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 03:21](3272 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:06, 06:18](3556 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:44](3199 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:50, 04:43](3072 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:26, 05:46](3212 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:01](3339 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 06:13](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 11:05](4120 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:22, 07:03](4371 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:07, 05:19](3176 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 12:53]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:04, 04:23](1734 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:18](1780 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:16]
+PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:41](3251 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:02](1756 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:11, 13:00]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:26](1775 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 14:07]
+PASS -- TEST 'cpld_control_c48_intel' [10:07, 08:09](2835 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:10]
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:43, 05:21](3152 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:59]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 16:40](1764 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 08:14](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:18, 18:45](1685 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:24]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 24:12](1720 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33]
+PASS -- TEST 'control_flake_intel' [04:32, 03:30](698 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 06:00](872 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
+PASS -- TEST 'control_c384gdas_intel' [12:18, 08:58](1359 MB)
+PASS -- TEST 'control_stochy_intel' [02:25, 01:42](658 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:22, 00:59](502 MB)
+PASS -- TEST 'control_lndp_intel' [02:26, 01:34](653 MB)
+PASS -- TEST 'control_iovr4_intel' [03:26, 02:32](650 MB)
+PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](654 MB)
+PASS -- TEST 'control_p8_intel' [04:43, 03:04](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:43, 02:59](1638 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:51](1626 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:35, 01:37](899 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:59](1619 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:17, 01:37](934 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:20, 03:00](1608 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:19, 03:03](1719 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:10](1634 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:55](1691 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:59](1633 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
+PASS -- TEST 'regional_control_intel' [06:52, 05:13](817 MB)
+PASS -- TEST 'regional_restart_intel' [03:42, 02:45](987 MB)
+PASS -- TEST 'regional_decomp_intel' [06:36, 05:33](851 MB)
+PASS -- TEST 'regional_2threads_intel' [04:33, 03:47](847 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:47, 05:03](1369 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 05:10](857 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:11](858 MB)
+PASS -- TEST 'regional_wofs_intel' [07:45, 06:43](1923 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:11, 11:29]
+PASS -- TEST 'rap_control_intel' [09:34, 07:43](1106 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:48](1297 MB)
+PASS -- TEST 'rap_decomp_intel' [09:00, 08:06](1024 MB)
+PASS -- TEST 'rap_2threads_intel' [08:57, 07:52](1183 MB)
+PASS -- TEST 'rap_restart_intel' [05:21, 04:03](1102 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:33, 07:40](1106 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:29, 08:07](1025 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 05:50](1129 MB)
+PASS -- TEST 'hrrr_control_intel' [05:10, 04:00](1035 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 04:08](1028 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:03, 03:26](1111 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:10](994 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:22, 07:33](1091 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:09](1990 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 08:57](2071 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:10, 11:05]
+PASS -- TEST 'control_csawmg_intel' [06:42, 05:59](750 MB)
+PASS -- TEST 'control_ras_intel' [04:23, 03:21](735 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 11:04]
+PASS -- TEST 'control_wam_intel' [02:22, 02:03](650 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:23]
+PASS -- TEST 'control_p8_faster_intel' [04:29, 02:39](1623 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:47, 04:35](856 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:17]
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](820 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:50](819 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:13](863 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:23, 02:48](830 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
+PASS -- TEST 'control_debug_p8_intel' [03:50, 02:45](1650 MB)
+PASS -- TEST 'regional_debug_intel' [18:44, 17:17](810 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:24, 04:58](1198 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:51](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1197 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:57](1205 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 05:03](1155 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:05](1280 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:55](1203 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1204 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1200 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:52](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:00](1206 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 08:04](1196 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1194 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:04](1199 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:02](1205 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:24, 08:26](1206 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 03:13]
+PASS -- TEST 'control_wam_debug_intel' [05:23, 05:00](507 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 04:25](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 06:25](1051 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:22](986 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:57, 06:39](1043 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:18, 03:47](959 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:36](920 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:51](996 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](928 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 14:26]
+PASS -- TEST 'conus13km_control_intel' [02:55, 02:07](1203 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:23](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:19](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:26]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:13](998 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:50](1084 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:56](1075 MB)
+PASS -- TEST 'conus13km_debug_intel' [14:49, 14:08](1230 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:41](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:34, 08:20](1159 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:21](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:04]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:05](1128 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:11, 13:30]
+PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:36](744 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 06:05](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:57](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:17, 12:41](862 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 14:37](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:21](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:33](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:12](375 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 08:01](474 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:10](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 04:01](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:19](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:26](400 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:59, 04:35](805 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:36]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 13:08](569 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:11, 14:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:35](656 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:41](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 07:03](731 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 12:43]
+PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:19](836 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:25](819 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:51](1208 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:44](1135 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:41](1092 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:40](1017 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:40](1020 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:42](1117 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:45](1137 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1013 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:54](1059 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 05:51](1036 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1126 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 03:37](2497 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:41](2442 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:42]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:16](1063 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:30]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1126 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:44]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:50](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](309 MB)
+
+PASS -- COMPILE 'atml_intel' [15:11, 14:20]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:14](1615 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:13](1601 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:20](893 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:10, 12:19]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:46](1661 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:11, 11:33]
+PASS -- TEST 'atmaero_control_p8_intel' [05:11, 03:57](3019 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:43](3092 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:33]
+PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 20:29](4572 MB)
SYNOPSIS:
-Starting Date/Time: 20240418 09:17:36
-Ending Date/Time: 20240418 10:38:54
-Total Time: 01h:21m:41s
-Compiles Completed: 38/38
-Tests Completed: 182/182
+Starting Date/Time: 20240422 07:29:19
+Ending Date/Time: 20240422 08:52:50
+Total Time: 01h:23m:58s
+Compiles Completed: 37/37
+Tests Completed: 167/179
+Failed Tests:
+* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_intel.log
+* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_parallel_intel.log
+* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_latlon_intel.log
+* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_intel.log
+* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c48_intel.log
+* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c192_intel.log
+* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c384_intel.log
+* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_merra2_thompson_intel.log
+* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_debug_intel.log
+* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_debug_intel.log
+* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_diag_debug_intel.log
+* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_atmaero_control_p8_rad_micro_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d47726e50be21a6b878bfb05f03b0b9fbe725775
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_141822
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33]
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:49, 02:56](1598 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 04:16](1604 MB)
+PASS -- TEST 'control_latlon_intel' [03:46, 02:54](1588 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:55, 03:00](1599 MB)
+PASS -- TEST 'control_c48_intel' [08:50, 07:10](1774 MB)
+PASS -- TEST 'control_c192_intel' [11:58, 10:27](1749 MB)
+PASS -- TEST 'control_c384_intel' [13:55, 11:23](2001 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:39, 03:14](1640 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 05:06]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:50](1606 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:47](1612 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:52, 02:58](1664 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:11, 11:46]
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:48](3109 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240422 10:08:06
+Ending Date/Time: 20240422 10:36:28
+Total Time: 00h:28m:37s
+Compiles Completed: 3/3
+Tests Completed: 12/12
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 3b67c86e04..4493b88e42 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d164b650b97d4c4a68ab86c55f2254f29767da2b
+ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 5307022358c6d95c9b423ec8bf32e0f0f7d60989 FV3 (remotes/origin/upp_HR4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -35,236 +35,234 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240417
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_53976
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107473
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:27, 10:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:12, 01:19](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:28, 11:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [10:11, 01:52](1592 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [52:15, 02:04](1708 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [52:05, 01:55](848 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [10:12, 02:35](1570 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:18]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [17:22, 01:57](1600 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:31, 15:23]
-PASS -- TEST 'cpld_control_p8_intel' [06:08, 01:43](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:08, 02:18](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [57:25, 01:58](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:08, 01:41](3029 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [57:23, 01:54](3084 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:08, 01:13](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:08, 01:38](3003 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:09, 01:33](2924 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:08, 02:08](3001 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [06:17, 05:37](3948 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:00, 04:12](4251 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:08, 02:12](2971 MB)
-
-PASS -- COMPILE 's2sw_intel' [22:36, 21:52]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [58:35, 01:38](1593 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:35, 01:56](1638 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [21:37, 21:17]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [01:02, 01:57](1635 MB)
-
-PASS -- COMPILE 's2s_intel' [10:25, 09:55]
-PASS -- TEST 'cpld_control_c48_intel' [12:13, 00:40](2653 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:32, 16:07]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:07, 02:22](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [43:05, 42:21]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [39:27, 01:04](1606 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:55, 01:23](904 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:56, 01:38](1574 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [21:38, 20:33]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:32](1611 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:31, 15:58]
-PASS -- TEST 'control_flake_intel' [00:50, 00:31](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [00:50, 00:56](523 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:50, 01:04](530 MB)
-PASS -- TEST 'control_latlon_intel' [00:50, 00:51](522 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [00:50, 00:54](521 MB)
-PASS -- TEST 'control_c48_intel' [00:49, 00:53](715 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [00:49, 00:50](714 MB)
-PASS -- TEST 'control_c192_intel' [00:50, 01:38](636 MB)
-PASS -- TEST 'control_c384_intel' [00:54, 02:39](952 MB)
-PASS -- TEST 'control_c384gdas_intel' [00:54, 03:46](1090 MB)
-PASS -- TEST 'control_stochy_intel' [00:50, 00:31](532 MB)
-PASS -- TEST 'control_stochy_restart_intel' [58:14, 01:00](346 MB)
-PASS -- TEST 'control_lndp_intel' [00:50, 00:32](527 MB)
-PASS -- TEST 'control_iovr4_intel' [00:50, 00:54](527 MB)
-PASS -- TEST 'control_iovr5_intel' [00:50, 00:56](522 MB)
-PASS -- TEST 'control_p8_intel' [00:50, 02:07](1501 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [58:17, 01:53](1497 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [57:35, 01:52](1513 MB)
-PASS -- TEST 'control_restart_p8_intel' [55:05, 00:37](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [57:18, 01:27](1494 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [51:56, 01:02](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [57:12, 01:19](1503 MB)
-PASS -- TEST 'control_2threads_p8_intel' [57:10, 00:50](1591 MB)
-PASS -- TEST 'control_p8_lndp_intel' [57:10, 01:12](1499 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [57:08, 01:56](1571 MB)
-PASS -- TEST 'control_p8_mynn_intel' [57:07, 01:37](1508 MB)
-PASS -- TEST 'merra2_thompson_intel' [56:56, 01:25](1511 MB)
-PASS -- TEST 'regional_control_intel' [56:55, 00:16](609 MB)
-PASS -- TEST 'regional_restart_intel' [50:42, 00:27](777 MB)
-PASS -- TEST 'regional_decomp_intel' [56:52, 00:59](606 MB)
-PASS -- TEST 'regional_2threads_intel' [56:50, 00:50](664 MB)
-PASS -- TEST 'regional_noquilt_intel' [56:06, 00:25](1147 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [55:23, 00:24](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [54:08, 00:26](608 MB)
-PASS -- TEST 'regional_wofs_intel' [54:06, 00:57](1579 MB)
-
-PASS -- COMPILE 'rrfs_intel' [21:39, 21:13]
-PASS -- TEST 'rap_control_intel' [50:27, 02:07](919 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:23, 01:13](1089 MB)
-PASS -- TEST 'rap_decomp_intel' [50:05, 00:52](917 MB)
-PASS -- TEST 'rap_2threads_intel' [49:48, 02:01](1006 MB)
-PASS -- TEST 'rap_restart_intel' [40:56, 01:15](790 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [49:44, 01:39](916 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:40, 01:16](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [40:01, 01:43](784 MB)
-PASS -- TEST 'hrrr_control_intel' [49:33, 01:08](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [49:32, 01:04](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [49:32, 01:14](995 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [43:13, 01:03](743 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [49:05, 01:45](909 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [48:30, 01:05](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [48:16, 01:19](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [17:33, 16:58]
-PASS -- TEST 'control_csawmg_intel' [53:28, 01:57](598 MB)
-PASS -- TEST 'control_csawmgt_intel' [52:39, 00:31](598 MB)
-PASS -- TEST 'control_ras_intel' [51:58, 01:03](561 MB)
-
-PASS -- COMPILE 'wam_intel' [18:35, 18:10]
-PASS -- TEST 'control_wam_intel' [51:34, 00:58](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:30, 13:16]
-PASS -- TEST 'control_p8_faster_intel' [51:48, 02:06](1505 MB)
-PASS -- TEST 'regional_control_faster_intel' [51:45, 00:24](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:24, 08:46]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:30, 01:18](682 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [51:08, 01:23](692 MB)
-PASS -- TEST 'control_stochy_debug_intel' [50:51, 00:52](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [50:45, 01:11](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [48:03, 01:22](733 MB)
-PASS -- TEST 'control_csawmgt_debug_intel' [47:22, 00:43](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [47:17, 00:49](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [47:01, 01:08](748 MB)
-PASS -- TEST 'control_debug_p8_intel' [46:52, 00:19](1527 MB)
-PASS -- TEST 'regional_debug_intel' [46:50, 00:34](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [46:28, 00:39](1077 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [46:24, 00:44](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [46:23, 00:41](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [46:17, 00:38](1072 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [46:16, 00:37](1076 MB)
-PASS -- TEST 'rap_diag_debug_intel' [46:02, 00:48](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:46](1074 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:46, 00:45](1074 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [43:13, 00:52](1077 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:13, 00:54](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [42:57, 00:53](1074 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [42:03, 00:54](1078 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:45, 00:48](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [41:23, 00:56](1071 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [41:02, 01:07](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [40:56, 00:55](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:54, 02:16](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:17, 02:55]
-PASS -- TEST 'control_wam_debug_intel' [40:26, 00:58](299 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:16, 14:48]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [40:02, 01:21](961 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:43, 01:12](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:42, 02:26](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:48, 01:29](849 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:46, 01:44](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:44, 01:28](786 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:25, 01:30](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:50, 00:17](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 10:48]
-PASS -- TEST 'conus13km_control_intel' [38:43, 01:02](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [34:50, 00:50](1007 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [34:28, 00:41](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:40, 22:40]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [36:22, 01:25](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:46, 20:59]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:58, 01:05](952 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:58, 01:12](953 MB)
-PASS -- TEST 'conus13km_debug_intel' [35:58, 00:25](1036 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [35:37, 01:15](709 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [35:32, 00:34](1035 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:55, 01:16](1099 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 06:27]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:43, 00:58](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [24:47, 24:16]
-PASS -- TEST 'hafs_regional_atm_intel' [28:53, 01:52](619 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:53, 00:27](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:51, 01:42](661 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [28:51, 01:36](703 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:52, 01:20](712 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:51, 00:59](388 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:52, 02:05](405 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [28:52, 01:28](290 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:55, 02:56](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [28:51, 01:26](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [28:51, 00:50](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [28:53, 00:44](494 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 01:15](313 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:28, 09:39]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [38:24, 01:33](504 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:33, 11:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:56, 01:39](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:42, 01:39](711 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:34, 11:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:28, 00:56](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [24:44, 24:18]
-PASS -- TEST 'hafs_regional_docn_intel' [17:01, 01:22](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:36, 02:09](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:34, 00:26](880 MB)
-
-PASS -- COMPILE 'atml_intel' [16:37, 15:26]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [32:38, 01:15](1550 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [32:38, 01:15](1550 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:17, 01:16](741 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:32, 10:33]
-PASS -- TEST 'atmaero_control_p8_intel' [32:58, 01:31](2854 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [32:58, 01:54](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:58, 01:40](2924 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:20, 08:02]
-PASS -- TEST 'regional_atmaq_debug_intel' [33:47, 01:21](4437 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:50, 28:24]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:46, 01:30](2975 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:12]
+PASS -- TEST 'cpld_control_gfsv17_intel' [42:52, 01:51](1594 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:49, 02:21](1708 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [24:39, 01:59](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:59, 02:28](1573 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [29:50, 28:55]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 02:06](1604 MB)
+
+PASS -- COMPILE 's2swa_intel' [23:40, 22:52]
+PASS -- TEST 'cpld_control_p8_intel' [35:42, 01:12](3004 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 01:39](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [27:20, 01:49](3062 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [35:42, 01:08](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [27:21, 01:46](3081 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [35:42, 01:40](3317 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [35:42, 01:08](2996 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [35:43, 01:32](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 01:26](3001 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [35:51, 04:40](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:25, 04:10](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [35:42, 01:47](2967 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:31, 14:50]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [43:51, 00:58](1583 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:13, 01:54](1637 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:25]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:59, 02:04](1640 MB)
+
+PASS -- COMPILE 's2s_intel' [20:36, 19:49]
+PASS -- TEST 'cpld_control_c48_intel' [38:46, 01:34](2657 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:54]
+PASS -- TEST 'cpld_control_p8_faster_intel' [42:52, 01:41](3004 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:58]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 00:59](1606 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:27, 01:31](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 01:37](1576 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:14]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:04, 01:37](1615 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [22:40, 22:06]
+PASS -- TEST 'control_flake_intel' [31:23, 00:22](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [31:23, 00:28](1475 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:23, 00:28](1486 MB)
+PASS -- TEST 'control_latlon_intel' [31:23, 00:24](1469 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:23, 01:29](1468 MB)
+PASS -- TEST 'control_c48_intel' [31:22, 00:56](1597 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [31:22, 00:52](715 MB)
+PASS -- TEST 'control_c192_intel' [20:26, 00:35](1587 MB)
+PASS -- TEST 'control_c384_intel' [31:27, 01:54](1909 MB)
+PASS -- TEST 'control_c384gdas_intel' [31:27, 02:34](1094 MB)
+PASS -- TEST 'control_stochy_intel' [31:23, 00:26](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [28:56, 01:01](331 MB)
+PASS -- TEST 'control_lndp_intel' [31:23, 00:31](527 MB)
+PASS -- TEST 'control_iovr4_intel' [30:43, 00:41](525 MB)
+PASS -- TEST 'control_iovr5_intel' [28:05, 00:43](523 MB)
+PASS -- TEST 'control_p8_intel' [27:54, 01:35](1507 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [27:39, 01:55](1498 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [27:36, 01:54](1502 MB)
+PASS -- TEST 'control_restart_p8_intel' [22:48, 00:57](695 MB)
+PASS -- TEST 'control_noqr_p8_intel' [27:32, 01:35](1491 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [22:23, 00:55](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [27:31, 01:25](1496 MB)
+PASS -- TEST 'control_2threads_p8_intel' [27:30, 01:12](1592 MB)
+PASS -- TEST 'control_p8_lndp_intel' [27:29, 01:05](1505 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [27:11, 01:57](1566 MB)
+PASS -- TEST 'control_p8_mynn_intel' [27:10, 01:50](1512 MB)
+PASS -- TEST 'merra2_thompson_intel' [27:03, 01:40](1511 MB)
+PASS -- TEST 'regional_control_intel' [26:56, 01:13](608 MB)
+PASS -- TEST 'regional_restart_intel' [20:09, 00:24](782 MB)
+PASS -- TEST 'regional_decomp_intel' [26:53, 00:57](608 MB)
+PASS -- TEST 'regional_2threads_intel' [26:27, 00:56](662 MB)
+PASS -- TEST 'regional_noquilt_intel' [26:22, 00:22](1142 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [26:04, 00:22](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [25:55, 00:12](609 MB)
+PASS -- TEST 'regional_wofs_intel' [24:36, 00:47](1577 MB)
+
+PASS -- COMPILE 'rrfs_intel' [32:48, 31:37]
+PASS -- TEST 'rap_control_intel' [14:57, 01:15](919 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:01, 01:05](1093 MB)
+PASS -- TEST 'rap_decomp_intel' [13:51, 01:28](920 MB)
+PASS -- TEST 'rap_2threads_intel' [13:44, 01:18](1008 MB)
+PASS -- TEST 'rap_restart_intel' [06:25, 01:11](785 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [13:43, 02:12](914 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:37, 01:51](913 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [04:16, 01:45](787 MB)
+PASS -- TEST 'hrrr_control_intel' [12:47, 01:23](912 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [12:30, 01:02](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [12:09, 01:19](997 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [07:24, 01:03](739 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:35, 01:19](907 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:15, 01:00](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 01:17](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:27, 12:54]
+PASS -- TEST 'control_csawmg_intel' [23:04, 00:35](600 MB)
+PASS -- TEST 'control_ras_intel' [22:26, 00:52](559 MB)
+
+PASS -- COMPILE 'wam_intel' [22:39, 21:31]
+PASS -- TEST 'control_wam_intel' [20:11, 00:52](270 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:48]
+PASS -- TEST 'control_p8_faster_intel' [33:28, 02:04](1516 MB)
+PASS -- TEST 'regional_control_faster_intel' [33:27, 00:23](613 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:42]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:03, 01:18](1487 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 00:29](1491 MB)
+PASS -- TEST 'control_stochy_debug_intel' [21:40, 00:52](693 MB)
+PASS -- TEST 'control_lndp_debug_intel' [21:39, 01:10](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [21:23, 00:40](735 MB)
+PASS -- TEST 'control_ras_debug_intel' [20:40, 01:06](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [20:38, 01:17](1555 MB)
+PASS -- TEST 'control_debug_p8_intel' [20:37, 01:05](1517 MB)
+PASS -- TEST 'regional_debug_intel' [20:31, 00:41](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [20:32, 00:54](1075 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [20:17, 00:58](1072 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [20:16, 00:55](1075 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 00:56](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:03, 00:59](1073 MB)
+PASS -- TEST 'rap_diag_debug_intel' [18:48, 00:50](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:10, 00:46](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:54, 00:52](1079 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [17:24, 00:51](1077 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:13, 00:53](1075 MB)
+PASS -- TEST 'rap_noah_debug_intel' [17:12, 00:59](1072 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [17:11, 00:54](1077 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:55, 00:47](1073 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [16:42, 00:59](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [16:26, 01:05](1076 MB)
+PASS -- TEST 'rap_flake_debug_intel' [16:12, 00:50](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:12, 02:13](1079 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:19, 05:55]
+PASS -- TEST 'control_wam_debug_intel' [32:27, 00:58](299 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:29, 13:45]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:48, 01:21](953 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:43, 01:17](791 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:16, 02:15](784 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 01:45](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 02:17](841 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:42, 02:06](790 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:08](685 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:28, 00:16](667 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:43, 25:49]
+PASS -- TEST 'conus13km_control_intel' [05:45, 00:59](1003 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:53](1007 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 00:39](884 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:37, 21:40]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:40, 01:22](812 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:26]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:13, 01:00](948 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:28, 01:09](952 MB)
+PASS -- TEST 'conus13km_debug_intel' [09:16, 01:23](1033 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [08:56, 01:12](706 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:55, 00:26](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:27, 01:15](1099 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:29, 13:59]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:22, 00:54](982 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:27, 12:07]
+PASS -- TEST 'hafs_regional_atm_intel' [07:26, 01:55](617 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:18, 01:18](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:02, 01:37](661 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [05:02, 02:22](700 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:51, 01:49](711 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:31, 01:02](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:17, 02:06](408 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:54, 01:28](283 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [03:57, 02:06](532 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:46, 01:30](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:45, 00:46](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:00, 01:36](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:51, 01:17](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [10:24, 09:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:48, 01:31](499 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:28, 13:04]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:45, 01:45](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:17, 01:49](712 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:54]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:43, 01:59](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:31, 14:18]
+PASS -- TEST 'hafs_regional_docn_intel' [01:41, 02:02](660 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:32, 01:59](650 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:18, 00:29](880 MB)
+
+PASS -- COMPILE 'atml_intel' [17:34, 16:41]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:02, 02:19](1551 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [59:19, 02:13](1545 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:33, 01:16](741 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:31, 14:58]
+PASS -- TEST 'atmaero_control_p8_intel' [59:15, 01:23](2849 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [59:05, 01:49](2912 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:05, 01:49](2922 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:21, 03:29]
+PASS -- TEST 'regional_atmaq_debug_intel' [58:51, 02:09](4447 MB)
SYNOPSIS:
-Starting Date/Time: 20240418 12:37:01
-Ending Date/Time: 20240418 13:59:51
-Total Time: 01h:23m:22s
+Starting Date/Time: 20240422 20:00:17
+Ending Date/Time: 20240422 21:30:47
+Total Time: 01h:31m:05s
Compiles Completed: 30/30
-Tests Completed: 157/157
+Tests Completed: 155/155
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN
deleted file mode 100644
index ea685cd24e..0000000000
--- a/tests/parm/control_ugwpv1.nml.IN
+++ /dev/null
@@ -1,319 +0,0 @@
-&atmos_model_nml
- blocksize = 32
- chksum_debug = .false.
- dycore_only = .false.
- ccpp_suite = '@[CCPP_SUITE]'
-/
-
-&diag_manager_nml
- prepend_date = .false.
-/
-
-&fms_nml
- clock_grain = 'ROUTINE'
- domains_stack_size = 3000000
- print_memory_usage = .false.
-/
-
-&fms2_io_nml
- netcdf_default_format = "netcdf4"
-/
-
-&fv_core_nml
- layout = @[INPES],@[JNPES]
- io_layout = 1,1
- npx = @[NPX]
- npy = @[NPY]
- ntiles = 6
- npz = @[NPZ]
- grid_type = -1
- make_nh = @[MAKE_NH]
- fv_debug = .false.
- range_warn = .false.
- reset_eta = .false.
- n_sponge = 42
- nudge_qv = .true.
- nudge_dz = .false.
- tau = 10.
- rf_cutoff = 7.5e2
- d2_bg_k1 = 0.20
- d2_bg_k2 = 0.0
- kord_tm = -9
- kord_mt = 9
- kord_wz = 9
- kord_tr = 9
- hydrostatic = .false.
- phys_hydrostatic = .false.
- use_hydro_pressure = .false.
- beta = 0.
- a_imp = 1.
- p_fac = 0.1
- k_split = 2
- n_split = 6
- nwat = 6
- na_init = @[NA_INIT]
- d_ext = 0.
- dnats = 1
- fv_sg_adj = 450
- d2_bg = 0.
- nord = 2
- dddmp = 0.1
- d4_bg = 0.12
- vtdm4 = 0.02
- delt_max = 0.002
- ke_bg = 0.
- do_vort_damp = .true.
- external_ic = @[EXTERNAL_IC]
- external_eta = .true.
- gfs_phil = .false.
- nggps_ic = @[NGGPS_IC]
- mountain = @[MOUNTAIN]
- ncep_ic = .false.
- d_con = 1.
- hord_mt = 5
- hord_vt = 5
- hord_tm = 5
- hord_dp = -5
- hord_tr = 8
- adjust_dry_mass = .false.
- consv_te = 1.
- do_sat_adj = .true.
- consv_am = .false.
- fill = .true.
- dwind_2d = .false.
- print_freq = 6
- warm_start = @[WARM_START]
- no_dycore = .false.
- z_tracer = .true.
- agrid_vel_rst = .true.
- read_increment = .false.
- res_latlon_dynamics = ""
-/
-
-&external_ic_nml
- filtered_terrain = .true.
- levp = @[NPZP]
- gfs_dwinds = .true.
- checker_tr = .false.
- nt_checker = 0
-/
-
-&gfs_physics_nml
- fhzero = 6
- h2o_phys = .true.
- ldiag3d = .false.
- fhcyc = 24
- use_ufo = .true.
- pre_rad = .false.
- imp_physics = 11
- pdfcld = .false.
- fhswr = 3600.
- fhlwr = 3600.
- ialb = 1
- iems = 1
- iaer = 5111
- icliq_sw = 2
- iovr = 3
- ico2 = 2
- isubc_sw = 2
- isubc_lw = 2
- isol = 2
- lwhtr = .true.
- swhtr = .true.
- cnvgwd = .true.
- shal_cnv = .true.
- cal_pre = .false.
- redrag = .true.
- dspheat = .true.
- hybedmf = .false.
- satmedmf = .true.
- isatmedmf = 1
- lheatstrg = @[LHEATSTRG]
- lseaspray = @[LSEASPRAY]
- random_clds = .false.
- trans_trac = .true.
- cnvcld = .true.
- imfshalcnv = 2
- imfdeepcnv = 2
- cdmbgwd = @[CDMBWD]
- prslrd0 = 0.
- ivegsrc = 1
- isot = 1
- lsoil = 4
- lsm = 1
- iopt_dveg = 1
- iopt_crs = 1
- iopt_btr = 1
- iopt_run = 1
- iopt_sfc = 1
- iopt_frz = 1
- iopt_inf = 1
- iopt_rad = 1
- iopt_alb = 2
- iopt_snf = 4
- iopt_tbot = 2
- iopt_stc = 1
- iopt_trs = 2
- iopt_diag = 2
- debug = .false.
- oz_phys = .false.
- oz_phys_2015 = .true.
- nstf_name = 2,0,0,0,0
- nst_anl = .true.
- psautco = 0.0008,0.0005
- prautco = 0.00015,0.00015
- lgfdlmprad = .true.
- effr_in = .true.
- ldiag_ugwp = .false.
- do_ugwp = .false.
- do_tofd = .false.
- do_sppt = .false.
- do_shum = .false.
- do_skeb = .false.
- ttendlim = 0.005
- bl_mynn_edmf = 1
- bl_mynn_tkeadvect = .true.
- min_lakeice = 0.15
- min_seaice = 0.15
- gwd_opt = 1
- do_ugwp_v1 = @[DO_UGWP_V1]
- do_ugwp_v1_w_gsldrag = .true.
- do_ugwp_v1_orog_only = .false.
- do_gsl_drag_ls_bl = .false.
- do_gsl_drag_ss = .false.
- do_gsl_drag_tofd = .false.
- do_ugwp_v0 = .false.
- do_ugwp_v0_orog_only = .false.
-
-/
-
-&gfdl_cloud_microphysics_nml
- sedi_transport = .true.
- do_sedi_heat = .false.
- rad_snow = .true.
- rad_graupel = .true.
- rad_rain = .true.
- const_vi = .false.
- const_vs = .false.
- const_vg = .false.
- const_vr = .false.
- vi_max = 1.
- vs_max = 2.
- vg_max = 12.
- vr_max = 12.
- qi_lim = 1.
- prog_ccn = .false.
- do_qa = .true.
- fast_sat_adj = .true.
- tau_l2v = 225.
- tau_v2l = 150.
- tau_g2v = 900.
- rthresh = 10.e-6 ! This is a key parameter for cloud water
- dw_land = 0.16
- dw_ocean = 0.10
- ql_gen = 1.0e-3
- ql_mlt = 1.0e-3
- qi0_crt = 8.0E-5
- qs0_crt = 1.0e-3
- tau_i2s = 1000.
- c_psaci = 0.05
- c_pgacs = 0.01
- rh_inc = 0.30
- rh_inr = 0.30
- rh_ins = 0.30
- ccn_l = 300.
- ccn_o = 100.
- c_paut = 0.5
- c_cracw = 0.8
- use_ppm = .false.
- use_ccn = .true.
- mono_prof = .true.
- z_slope_liq = .true.
- z_slope_ice = .true.
- de_ice = .false.
- fix_negative = .true.
- icloud_f = 1
- mp_time = 150.
- reiflag = 2
-/
-
-&interpolator_nml
- interp_method = 'conserve_great_circle'
-/
-
-&namsfc
- FNGLAC = 'global_glacier.2x2.grb'
- FNMXIC = 'global_maxice.2x2.grb'
- FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb'
- FNSNOC = 'global_snoclim.1.875.grb'
- FNZORC = 'igbp'
- FNALBC = @[FNALBC]
- FNALBC2 = 'global_albedo4.1x1.grb'
- FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb'
- FNTG3C = 'global_tg3clim.2.6x1.5.grb'
- FNVEGC = 'global_vegfrac.0.144.decpercent.grb'
- FNVETC = @[FNVETC]
- FNSOTC = @[FNSOTC]
- FNSOCC = @[FNSOCC]
- FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb'
- FNMSKH = 'global_slmask.t1534.3072.1536.grb'
- FNTSFA = ''
- FNACNA = ''
- FNSNOA = ''
- FNVMNC = 'global_shdmin.0.144x0.144.grb'
- FNVMXC = 'global_shdmax.0.144x0.144.grb'
- FNSLPC = 'global_slope.1x1.grb'
- FNABSC = @[FNABSC]
- LDEBUG = .false.
- FSMCL(2) = 99999
- FSMCL(3) = 99999
- FSMCL(4) = 99999
- LANDICE = .true.
- FTSFS = 90
- FAISL = 99999
- FAISS = 99999
- FSNOL = 99999
- FSNOS = 99999
- FSICL = 99999
- FSICS = 99999
- FTSFL = 99999
- FVETL = 99999
- FSOTL = 99999
- FvmnL = 99999
- FvmxL = 99999
- FSLPL = 99999
- FABSL = 99999
-/
-
-&fv_grid_nml
- grid_file = 'INPUT/grid_spec.nc'
-/
-
-&nam_stochy
-/
-
-&nam_sfcperts
-/
-
-&cires_ugwp_nml
- knob_ugwp_solver = 2
- knob_ugwp_version = 1
- knob_ugwp_source = 1,1,0,0
- knob_ugwp_wvspec = 1,25,25,25
- knob_ugwp_azdir = 2,4,4,4
- knob_ugwp_stoch = 0,0,0,0
- knob_ugwp_effac = 1,1,1,1
- knob_ugwp_doaxyz = 1
- knob_ugwp_doheat = 1
- knob_ugwp_dokdis = 2
- knob_ugwp_ndx4lh = 4
- knob_ugwp_palaunch = 275.0e2
- knob_ugwp_nslope = 0
- knob_ugwp_lzmax = 15.750e3
- knob_ugwp_lzmin = 0.75e3
- knob_ugwp_lzstar = 2.0e3
- knob_ugwp_taumin = 0.25e-3
- knob_ugwp_tauamp = 3.0e-3
- knob_ugwp_lhmet = 200.0e3
- knob_ugwp_orosolv = 'pss-1986'
-/
diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/global_control.nml.IN
similarity index 93%
rename from tests/parm/cpld_control.nml.IN
rename to tests/parm/global_control.nml.IN
index 9f6703a167..c2e5ec8e43 100644
--- a/tests/parm/cpld_control.nml.IN
+++ b/tests/parm/global_control.nml.IN
@@ -17,7 +17,7 @@
/
&fms2_io_nml
- netcdf_default_format = "netcdf4"
+ netcdf_default_format = 'netcdf4'
/
&fv_core_nml
@@ -80,7 +80,7 @@
hord_dp = -5
hord_tr = 8
adjust_dry_mass = .false.
- dry_mass=98320.0
+ dry_mass = 98320.0
consv_te = 1.
do_sat_adj = @[DO_SAT_ADJ]
consv_am = .false.
@@ -113,7 +113,7 @@
use_ufo = .true.
pre_rad = .false.
imp_physics = @[IMP_PHYSICS]
- iovr = 3
+ iovr = @[IOVR]
ltaerosol = .false.
lradar = .false.
ttendlim = -999
@@ -140,7 +140,7 @@
do_gsl_drag_ss = @[DO_GSL_DRAG_SS]
do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD]
do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY]
- min_lakeice = 0.15
+ min_lakeice = @[MIN_LAKEICE]
min_seaice = @[MIN_SEAICE]
use_cice_alb = @[USE_CICE_ALB]
pdfcld = .false.
@@ -149,7 +149,7 @@
ialb = @[IALB]
iems = @[IEMS]
iaer = @[IAER]
- icliq_sw = 2
+ icliq_sw = @[ICLIQ_SW]
ico2 = 2
isubc_sw = 2
isubc_lw = 2
@@ -298,12 +298,12 @@
tau_l2v = 225.
tau_v2l = 150.
tau_g2v = 900.
- rthresh = 10.e-6 ! This is a key parameter for cloud water
+ rthresh = 10.e-6 ! This is a key parameter for cloud water
dw_land = 0.16
dw_ocean = 0.10
ql_gen = 1.0e-3
ql_mlt = 1.0e-3
- qi0_crt = 8.0E-5
+ qi0_crt = 8.0e-5
qs0_crt = 1.0e-3
tau_i2s = 1000.
c_psaci = 0.05
@@ -332,14 +332,14 @@
/
&namsfc
- FNGLAC = 'global_glacier.2x2.grb'
- FNMXIC = 'global_maxice.2x2.grb'
- FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb'
- FNSNOC = 'global_snoclim.1.875.grb'
- FNZORC = 'igbp'
+ FNGLAC = @[FNGLAC]
+ FNMXIC = @[FNMXIC]
+ FNTSFC = @[FNTSFC]
+ FNSNOC = @[FNSNOC]
+ FNZORC = @[FNZORC]
FNALBC = @[FNALBC]
FNALBC2 = @[FNALBC2]
- FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb'
+ FNAISC = @[FNAISC]
FNTG3C = @[FNTG3C]
FNVEGC = @[FNVEGC]
FNVETC = @[FNVETC]
@@ -354,12 +354,12 @@
FNVMXC = @[FNVMXC]
FNSLPC = @[FNSLPC]
FNABSC = @[FNABSC]
- LDEBUG =.false.
+ LDEBUG = .false.
FSMCL(2) = 99999
FSMCL(3) = 99999
FSMCL(4) = 99999
LANDICE = @[LANDICE]
- FTSFS = 90
+ FTSFS = @[FTSFS]
FAISL = 99999
FAISS = 99999
FSNOL = 99999
@@ -385,9 +385,9 @@
&nam_sfcperts
lndp_type = @[LNDP_TYPE]
lndp_model_type = @[LNDP_MODEL_TYPE]
- LNDP_TAU=21600,
- LNDP_LSCALE=500000,
- ISEED_LNDP=2010,
+ LNDP_TAU=@[LNDP_TAU]
+ LNDP_LSCALE=@[LNDP_LSCALE]
+ ISEED_LNDP=@[ISEED_LNDP]
lndp_var_list = @[LNDP_VAR_LIST]
lndp_prt_list = @[LNDP_PRT_LIST]
/
@@ -396,6 +396,6 @@
output_directory = '@[MOM6_OUTPUT_DIR]',
input_filename = '@[MOM6_RESTART_SETTING]'
restart_input_dir = 'INPUT/',
- restart_output_dir = '@[MOM6_RESTART_DIR]',
+ restart_output_dir = '@[MOM6_RESTART_DIR]'
parameter_filename = 'INPUT/MOM_input',
'INPUT/MOM_override'/
diff --git a/tests/parm/merra2_thompson.nml.IN b/tests/parm/merra2_thompson.nml.IN
deleted file mode 100644
index 1b024bf635..0000000000
--- a/tests/parm/merra2_thompson.nml.IN
+++ /dev/null
@@ -1,371 +0,0 @@
-&atmos_model_nml
- blocksize = 32
- chksum_debug = .false.
- dycore_only = .false.
- ccpp_suite = '@[CCPP_SUITE]'
-/
-
-&diag_manager_nml
- prepend_date = .false.
- max_output_fields = @[MAX_OUTPUT_FIELDS]
-/
-
-&fms_nml
- clock_grain = 'ROUTINE'
- domains_stack_size = @[DOMAINS_STACK_SIZE]
- print_memory_usage = .false.
-/
-
-&fms2_io_nml
- netcdf_default_format = "netcdf4"
-/
-
-&fv_core_nml
- layout = @[INPES],@[JNPES]
- io_layout = 1,1
- npx = @[NPX]
- npy = @[NPY]
- ntiles = 6
- npz = @[NPZ]
- dz_min = @[DZ_MIN]
- psm_bc = @[PSM_BC]
- grid_type = -1
- make_nh = @[MAKE_NH]
- fv_debug = .false.
- range_warn = .true.
- reset_eta = .false.
- n_sponge = 42
- nudge_qv = .true.
- nudge_dz = .false.
- tau = 10.0
- rf_cutoff = 7.5e2
- d2_bg_k1 = @[D2_BG_K1]
- d2_bg_k2 = @[D2_BG_K2]
- kord_tm = -9
- kord_mt = 9
- kord_wz = 9
- kord_tr = 9
- hydrostatic = .false.
- phys_hydrostatic = .false.
- use_hydro_pressure = .false.
- beta = 0.
- a_imp = 1.
- p_fac = 0.1
- k_split = 2
- n_split = 6
- nwat = 6
- na_init = @[NA_INIT]
- d_ext = 0.
- dnats = @[DNATS]
- fv_sg_adj = 450
- d2_bg = 0.
- nord = 2
- dddmp = @[DDDMP]
- d4_bg = 0.12
- vtdm4 = 0.02
- delt_max = 0.002
- ke_bg = 0.
- do_vort_damp = .true.
- external_ic = @[EXTERNAL_IC]
- external_eta = .true.
- gfs_phil = .false.
- nggps_ic = @[NGGPS_IC]
- mountain = @[MOUNTAIN]
- ncep_ic = .false.
- d_con = 1.
- hord_mt = 5
- hord_vt = 5
- hord_tm = 5
- hord_dp = -5
- hord_tr = 8
- adjust_dry_mass = .false.
- dry_mass=98320.0
- consv_te = 1.
- do_sat_adj = @[DO_SAT_ADJ]
- consv_am = .false.
- fill = .true.
- dwind_2d = .false.
- print_freq = 6
- warm_start = @[WARM_START]
- no_dycore = .false.
- z_tracer = .true.
- agrid_vel_rst = .true.
- read_increment = @[READ_INCREMENT]
- res_latlon_dynamics = @[RES_LATLON_DYNAMICS]
-/
-
-&external_ic_nml
- filtered_terrain = .true.
- levp = @[NPZP]
- gfs_dwinds = .true.
- checker_tr = .false.
- nt_checker = 0
-/
-
-&gfs_physics_nml
- fhzero = @[FHZERO]
- h2o_phys = .true.
- ldiag3d = @[LDIAG3D]
- qdiag3d = @[QDIAG3D]
- print_diff_pgr = @[PRINT_DIFF_PGR]
- fhcyc = @[FHCYC]
- use_ufo = .true.
- pre_rad = .false.
- imp_physics = @[IMP_PHYSICS]
- iovr = 3
- ltaerosol = @[LTAEROSOL]
- mraerosol = @[MRAEROSOL]
- lradar = .false.
- ttendlim = -999
- dt_inner = @[DT_INNER]
- sedi_semi = @[SEDI_SEMI]
- decfl = @[DECFL]
- oz_phys = .false.
- oz_phys_2015 = .true.
- lsoil_lsm = 4
- do_mynnedmf = .false.
- do_mynnsfclay = .false.
- icloud_bl = 1
- bl_mynn_edmf = 1
- bl_mynn_tkeadvect = .true.
- bl_mynn_edmf_mom = 1
- do_ugwp = .false.
- do_tofd = .false.
- gwd_opt = @[GWD_OPT]
- do_ugwp_v0 = @[DO_UGWP_V0]
- do_ugwp_v1 = @[DO_UGWP_V1]
- do_ugwp_v0_orog_only = .false.
- do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY]
- do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL]
- do_gsl_drag_ss = @[DO_GSL_DRAG_SS]
- do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD]
- do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY]
- min_lakeice = 0.15
- min_seaice = @[MIN_SEAICE]
- use_cice_alb = @[USE_CICE_ALB]
- pdfcld = .false.
- fhswr = 3600.
- fhlwr = 3600.
- ialb = @[IALB]
- iems = @[IEMS]
- iaer = @[IAER]
- icliq_sw = 2
- ico2 = 2
- isubc_sw = 2
- isubc_lw = 2
- isol = 2
- lwhtr = .true.
- swhtr = .true.
- cnvgwd = .true.
- shal_cnv = .true.
- cal_pre = .false.
- redrag = .true.
- dspheat = .true.
- hybedmf = .false.
- satmedmf = .true.
- isatmedmf = 1
- lheatstrg = @[LHEATSTRG]
- lseaspray = @[LSEASPRAY]
- random_clds = @[RANDOM_CLDS]
- trans_trac = .true.
- cnvcld = @[CNVCLD]
- imfshalcnv = @[IMFSHALCNV]
- imfdeepcnv = @[IMFDEEPCNV]
- ras = @[RAS]
- cdmbgwd = @[CDMBWD]
- prslrd0 = 0.
- ivegsrc = 1
- isot = 1
- lsoil = 4
- lsm = @[LSM]
- iopt_dveg = @[IOPT_DVEG]
- iopt_crs = @[IOPT_CRS]
- iopt_btr = 1
- iopt_run = 1
- iopt_sfc = @[IOPT_SFC]
- iopt_trs = @[IOPT_TRS]
- iopt_diag = @[IOPT_DIAG]
- iopt_frz = 1
- iopt_inf = 1
- iopt_rad = @[IOPT_RAD]
- iopt_alb = @[IOPT_ALB]
- iopt_snf = 4
- iopt_tbot = 2
- iopt_stc = @[IOPT_STC]
- debug = .false.
- nstf_name = @[NSTF_NAME]
- nst_anl = .true.
- psautco = 0.0008,0.0005
- prautco = 0.00015,0.00015
- lgfdlmprad = @[LGFDLMPRAD]
- effr_in = .true.
- ldiag_ugwp = @[LDIAG_UGWP]
- fscav_aero = @[FSCAV_AERO]
- do_sppt = @[DO_SPPT]
- do_shum = @[DO_SHUM]
- do_skeb = @[DO_SKEB]
- do_RRTMGP = @[DO_RRTMGP]
- active_gases = 'h2o_co2_o3_n2o_ch4_o2'
- ngases = 6
- lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc'
- lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc'
- sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc'
- sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc'
- rrtmgp_nGptsSW = 112
- rrtmgp_nGptsLW = 128
- rrtmgp_nBandsLW = 16
- rrtmgp_nBandsSW = 14
- doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT]
- doGP_lwscat = @[DOGP_LWSCAT]
- use_med_flux = @[USE_MED_FLUX]
- frac_grid = @[FRAC_GRID]
- cplchm = @[CPLCHM]
- cplflx = @[CPLFLX]
- cplice = @[CPLICE]
- cplwav = @[CPLWAV]
- cplwav2atm = @[CPLWAV2ATM]
- do_ca = @[DO_CA]
- ca_global = @[CA_GLOBAL]
- ca_sgs = @[CA_SGS]
- nca = @[NCA]
- ncells = @[NCELLS]
- nlives = @[NLIVES]
- nseed = @[NSEED]
- nfracseed = @[NFRACSEED]
- nthresh = @[NTHRESH]
- ca_trigger = @[CA_TRIGGER]
- nspinup = @[NSPINUP]
- iseed_ca = @[ISEED_CA]
- lndp_type = @[LNDP_TYPE]
- n_var_lndp = @[N_VAR_LNDP]
-/
-
-&cires_ugwp_nml
- knob_ugwp_solver = 2
- knob_ugwp_source = 1,1,0,0
- knob_ugwp_wvspec = 1,25,25,25
- knob_ugwp_azdir = 2,4,4,4
- knob_ugwp_stoch = 0,0,0,0
- knob_ugwp_effac = 1,1,1,1
- knob_ugwp_doaxyz = 1
- knob_ugwp_doheat = 1
- knob_ugwp_dokdis = 1
- knob_ugwp_ndx4lh = 1
- knob_ugwp_version = @[KNOB_UGWP_VERSION]
- launch_level = 54
-/
-
-&gfdl_cloud_microphysics_nml
- sedi_transport = .true.
- do_sedi_heat = .false.
- rad_snow = .true.
- rad_graupel = .true.
- rad_rain = .true.
- const_vi = .false.
- const_vs = .false.
- const_vg = .false.
- const_vr = .false.
- vi_max = 1.
- vs_max = 2.
- vg_max = 12.
- vr_max = 12.
- qi_lim = 1.
- prog_ccn = .false.
- do_qa = .true.
- fast_sat_adj = .true.
- tau_l2v = 225.
- tau_v2l = 150.
- tau_g2v = 900.
- rthresh = 10.e-6 ! This is a key parameter for cloud water
- dw_land = 0.16
- dw_ocean = 0.10
- ql_gen = 1.0e-3
- ql_mlt = 1.0e-3
- qi0_crt = 8.0E-5
- qs0_crt = 1.0e-3
- tau_i2s = 1000.
- c_psaci = 0.05
- c_pgacs = 0.01
- rh_inc = 0.30
- rh_inr = 0.30
- rh_ins = 0.30
- ccn_l = 300.
- ccn_o = 100.
- c_paut = 0.5
- c_cracw = 0.8
- use_ppm = .false.
- use_ccn = .true.
- mono_prof = .true.
- z_slope_liq = .true.
- z_slope_ice = .true.
- de_ice = .false.
- fix_negative = .true.
- icloud_f = 1
- mp_time = 150.
- reiflag = 2
-/
-
-&interpolator_nml
- interp_method = 'conserve_great_circle'
-/
-
-&namsfc
- FNGLAC = 'global_glacier.2x2.grb'
- FNMXIC = 'global_maxice.2x2.grb'
- FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb'
- FNSNOC = 'global_snoclim.1.875.grb'
- FNZORC = 'igbp'
- FNALBC = @[FNALBC]
- FNALBC2 = @[FNALBC2]
- FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb'
- FNTG3C = @[FNTG3C]
- FNVEGC = @[FNVEGC]
- FNVETC = @[FNVETC]
- FNSOTC = @[FNSOTC]
- FNSOCC = @[FNSOCC]
- FNSMCC = @[FNSMCC]
- FNMSKH = @[FNMSKH]
- FNTSFA = ''
- FNACNA = ''
- FNSNOA = ''
- FNVMNC = @[FNVMNC]
- FNVMXC = @[FNVMXC]
- FNSLPC = @[FNSLPC]
- FNABSC = @[FNABSC]
- LDEBUG =.false.
- FSMCL(2) = 99999
- FSMCL(3) = 99999
- FSMCL(4) = 99999
- LANDICE = @[LANDICE]
- FTSFS = 90
- FAISL = 99999
- FAISS = 99999
- FSNOL = 99999
- FSNOS = 99999
- FSICL = @[FSICL]
- FSICS = @[FSICS]
- FTSFL = 99999
- FVETL = 99999
- FSOTL = 99999
- FvmnL = 99999
- FvmxL = 99999
- FSLPL = 99999
- FABSL = 99999
-/
-
-&fv_grid_nml
- grid_file = 'INPUT/grid_spec.nc'
-/
-
-&nam_stochy
-/
-
-&nam_sfcperts
- lndp_type = @[LNDP_TYPE]
- lndp_model_type = @[LNDP_MODEL_TYPE]
- LNDP_TAU=21600,
- LNDP_LSCALE=500000,
- ISEED_LNDP=2010,
- lndp_var_list = @[LNDP_VAR_LIST]
- lndp_prt_list = @[LNDP_PRT_LIST]
-/
diff --git a/tests/rt.conf b/tests/rt.conf
index 1dc257527b..626d29a6bc 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -145,12 +145,10 @@ RUN | rrfs_v1nssl_nohailnoccn |
COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 |
RUN | control_csawmg | - noaacloud | baseline |
-RUN | control_csawmgt | - noaacloud | baseline |
RUN | control_ras | - noaacloud acorn | baseline |
COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 |
RUN | control_csawmg | + hera hercules | baseline |
-RUN | control_csawmgt | + hera hercules | baseline |
# Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere
COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 |
@@ -167,7 +165,6 @@ RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud
RUN | control_stochy_debug | - noaacloud | baseline |
RUN | control_lndp_debug | - noaacloud | baseline |
RUN | control_csawmg_debug | - noaacloud | baseline |
-RUN | control_csawmgt_debug | - noaacloud | baseline |
RUN | control_ras_debug | - noaacloud | baseline |
RUN | control_diag_debug | - noaacloud | baseline |
RUN | control_debug_p8 | - noaacloud | baseline |
@@ -192,8 +189,6 @@ RUN | gnv1_c96_no_nest_debug | - noaacloud
### DEBUG ATM tests ###
COMPILE | atm_debug_dyn32 | gnu | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | + hera hercules | fv3 |
RUN | control_csawmg_debug | + hera hercules | baseline |
-RUN | control_csawmgt_debug | + hera hercules | baseline |
-
COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 |
RUN | control_wam_debug | - noaacloud hercules | baseline |
@@ -308,11 +303,6 @@ RUN | control_restart_p8_atmlnd | - noaacloud |
COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 |
RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline |
-#connectors (wmesmf)
-COMPILE | atmwm | intel | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2 | fv3 |
-RUN | control_atmwav | - wcoss2 | baseline |
-#RUN | control_c384gdas_wav | - jet derecho wcoss2 noaacloud | baseline |
-
### ATM-GOCART tests ###
COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 |
RUN | atmaero_control_p8 | - noaacloud | baseline |
diff --git a/tests/test_changes.list b/tests/test_changes.list
index f822a534c3..bce4315fbb 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,13 +1,14 @@
-regional_control intel
-regional_restart intel
-regional_decomp intel
-regional_2threads intel
-regional_2dwrtdecomp intel
-regional_wofs intel
-regional_spp_sppt_shum_skeb intel
-regional_control_faster intel
-rap_clm_lake_debug intel
-regional_spp_sppt_shum_skeb_dyn32_phy32 intel
-hafs_regional_atm intel
-hafs_global_multiple_4nests_atm intel
-hafs_regional_specified_moving_1nest_atm intel
+control_c192 intel
+control_c384 intel
+control_c48 intel
+control_CubedSphereGrid_debug intel
+control_CubedSphereGrid intel
+control_CubedSphereGrid_parallel intel
+control_diag_debug intel
+control_latlon intel
+control_wrtGauss_netcdf_parallel_debug intel
+control_wrtGauss_netcdf_parallel intel
+merra2_thompson intel
+atmaero_control_p8_rad_micro intel
+control_c48 gnu
+control_diag_debug gnu
diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8
index f9e0a09b1e..6d4012d580 100644
--- a/tests/tests/atmaero_control_p8
+++ b/tests/tests/atmaero_control_p8
@@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -79,7 +80,6 @@ export WRTTASK_PER_GROUP=${WPG_atmaero}
# default resources
export DOMAINS_STACK_SIZE=8000000
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -88,19 +88,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,0,0,0,0
@@ -108,7 +105,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -121,7 +118,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -135,7 +132,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'C96.facsf.tileX.nc'"
@@ -166,7 +162,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone)
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -175,8 +171,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
@@ -185,4 +180,3 @@ export DOGP_LWSCAT=.true.
export DOGP_SGS_CNV=.true.
export SATMEDMF=.true.
-
diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad
index 05ac7156b7..4eac5a3303 100644
--- a/tests/tests/atmaero_control_p8_rad
+++ b/tests/tests/atmaero_control_p8_rad
@@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS}
# default resources
export DOMAINS_STACK_SIZE=8000000
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -83,19 +83,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=2011
export NSTF_NAME=2,0,0,0,0
@@ -103,7 +100,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.true.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -116,7 +113,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -130,7 +127,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'C96.facsf.tileX.nc'"
@@ -161,7 +157,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -170,8 +166,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
@@ -180,4 +175,3 @@ export DOGP_LWSCAT=.true.
export DOGP_SGS_CNV=.true.
export SATMEDMF=.true.
-
diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro
index c2a4171008..1c4bbe4478 100644
--- a/tests/tests/atmaero_control_p8_rad_micro
+++ b/tests/tests/atmaero_control_p8_rad_micro
@@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS}
# default resources
export DOMAINS_STACK_SIZE=8000000
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -83,19 +83,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.false.
export LTAEROSOL=.false.
export MRAEROSOL=.true.
@@ -105,7 +102,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.true.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -118,7 +115,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -132,7 +129,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'C96.facsf.tileX.nc'"
@@ -161,7 +157,7 @@ export DZ_MIN=6
export MIN_SEAICE=0.15
export FRAC_GRID=.true.
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -170,8 +166,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_aero_tke_GOCART
export DIAG_TABLE=diag_table_p8_gocart_micro
-# use same namelist for standalone,coupled P7
-export INPUT_NML=merra2_thompson.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8
index 9924a60ff9..19a8523c93 100644
--- a/tests/tests/atmwav_control_noaero_p8
+++ b/tests/tests/atmwav_control_noaero_p8
@@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \
ufs.atmw.ww3.r.2021-03-22-64800"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -90,7 +91,6 @@ export CMEPS_RESTART_DIR=./RESTART/
export cap_dbug_flag=0
export pio_rearranger=box
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -100,26 +100,23 @@ export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -132,7 +129,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -146,7 +143,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'C96.facsf.tileX.nc'"
@@ -183,7 +179,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -193,8 +189,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8
index 4099ddf3d1..00dfea7e15 100644
--- a/tests/tests/control_2threads_p8
+++ b/tests/tests/control_2threads_p8
@@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -66,7 +67,6 @@ export JNPES=$JNPES_thrd
export atm_omp_num_threads=2
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -75,19 +75,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -122,7 +119,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'C96.facsf.tileX.nc'"
@@ -153,7 +149,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -162,10 +158,9 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
-# P8 RRTMGP
+# RRTMGP
export DO_RRTMGP=.false.
export DOGP_CLDOPTICS_LUT=.true.
export DOGP_LWSCAT=.true.
diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid
index 74eb30485c..772432a196 100644
--- a/tests/tests/control_CubedSphereGrid
+++ b/tests/tests/control_CubedSphereGrid
@@ -33,6 +33,7 @@ export LIST_FILES="sfcf000.tile1.nc \
atmf024.tile5.nc \
atmf024.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -49,5 +50,5 @@ export IOVR=3
export WRITE_DOPOST=.false.
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug
index 531b75d1d1..93681bb8a2 100644
--- a/tests/tests/control_CubedSphereGrid_debug
+++ b/tests/tests/control_CubedSphereGrid_debug
@@ -34,6 +34,7 @@ export LIST_FILES="sfcf000.tile1.nc \
atmf001.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -49,5 +50,5 @@ export IOVR=3
export OUTPUT_FH="0 1"
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel
index eec8725429..45963ad8f5 100644
--- a/tests/tests/control_CubedSphereGrid_parallel
+++ b/tests/tests/control_CubedSphereGrid_parallel
@@ -22,6 +22,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF24"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -40,6 +41,5 @@ export HISTORY_FILE_ON_NATIVE_GRID=.true.
export WRITE_DOPOST=.true.
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
-export DIAG_TABLE=diag_table_gfsv16_3d_soil
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav
deleted file mode 100644
index 25dbf67628..0000000000
--- a/tests/tests/control_atmwav
+++ /dev/null
@@ -1,90 +0,0 @@
-###############################################################################
-#
-# Global control with 2way atm-wav coupling test
-#
-###############################################################################
-
-export TEST_DESCR="Compare global control with 2way atm-wav coupling results with previous trunk version"
-
-export CNTL_DIR=control_atmwav
-
-export LIST_FILES="sfcf000.nc \
- sfcf012.nc \
- atmf000.nc \
- atmf012.nc \
- GFSFLX.GrbF00 \
- GFSFLX.GrbF12 \
- GFSPRS.GrbF00 \
- GFSPRS.GrbF12 \
- RESTART/20210322.180000.coupler.res \
- RESTART/20210322.180000.fv_core.res.nc \
- RESTART/20210322.180000.fv_core.res.tile1.nc \
- RESTART/20210322.180000.fv_core.res.tile2.nc \
- RESTART/20210322.180000.fv_core.res.tile3.nc \
- RESTART/20210322.180000.fv_core.res.tile4.nc \
- RESTART/20210322.180000.fv_core.res.tile5.nc \
- RESTART/20210322.180000.fv_core.res.tile6.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \
- RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \
- RESTART/20210322.180000.fv_tracer.res.tile1.nc \
- RESTART/20210322.180000.fv_tracer.res.tile2.nc \
- RESTART/20210322.180000.fv_tracer.res.tile3.nc \
- RESTART/20210322.180000.fv_tracer.res.tile4.nc \
- RESTART/20210322.180000.fv_tracer.res.tile5.nc \
- RESTART/20210322.180000.fv_tracer.res.tile6.nc \
- RESTART/20210322.180000.phy_data.tile1.nc \
- RESTART/20210322.180000.phy_data.tile2.nc \
- RESTART/20210322.180000.phy_data.tile3.nc \
- RESTART/20210322.180000.phy_data.tile4.nc \
- RESTART/20210322.180000.phy_data.tile5.nc \
- RESTART/20210322.180000.phy_data.tile6.nc \
- RESTART/20210322.180000.sfc_data.tile1.nc \
- RESTART/20210322.180000.sfc_data.tile2.nc \
- RESTART/20210322.180000.sfc_data.tile3.nc \
- RESTART/20210322.180000.sfc_data.tile4.nc \
- RESTART/20210322.180000.sfc_data.tile5.nc \
- RESTART/20210322.180000.sfc_data.tile6.nc \
- 20210322.180000.restart.glo_1deg"
-
-export_fv3
-export NPZ=127
-export NPZP=128
-export DT_ATMOS=600
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export OUTPUT_GRID='gaussian_grid'
-export NSTF_NAME='2,0,0,0,0'
-export WRITE_DOPOST=.true.
-export IAER=5111
-export IOVR=3
-
-export FHMAX=12
-#wave
-export WW3_RSTDTHR=3
-export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))"
-
-export INPES=$INPES_cpl_atmw
-export JNPES=$JNPES_cpl_atmw
-export atm_omp_num_threads=$THRD_cpl_atmw
-export WRTTASK_PER_GROUP=$WPG_cpl_atmw
-
-export WAV_tasks=$WAV_tasks_cpl_atmw
-
-export CPL=.true.
-export CPLWAV=.true.
-export CPLWAV2ATM=.true.
-export atm_model='fv3'
-export wav_model='ww3'
-export coupling_interval_sec=600
-export UFS_CONFIGURE="ufs.configure.blocked_atm_wav_2way.IN"
-export WW3_MODDEF=mod_def.glo_1deg
-
-export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
diff --git a/tests/tests/control_c192 b/tests/tests/control_c192
index 16af34ee94..9ca7c3ace7 100644
--- a/tests/tests/control_c192
+++ b/tests/tests/control_c192
@@ -17,7 +17,10 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF24"
+export ATMRES=C192
+
export_fv3
+export_tiled
export INPES=4
export WRTTASK_PER_GROUP=12
export NPZ=127
@@ -39,11 +42,6 @@ export IOVR=3
export IMO=768
export JMO=384
-export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb',"
-export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb',"
-export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb',"
-export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb',"
-
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_c384 b/tests/tests/control_c384
index 3488b81191..ed42237a87 100644
--- a/tests/tests/control_c384
+++ b/tests/tests/control_c384
@@ -17,7 +17,10 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF12"
+export ATMRES=C384
+
export_fv3
+export_tiled
export atm_omp_num_threads=${THRD_c384}
export INPES=${INPES_c384}
export JNPES=${JNPES_c384}
@@ -44,14 +47,9 @@ export IMO=1536
export JMO=768
export OUTPUT_FH="6 -1"
-export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb',"
-export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb',"
-export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb',"
-export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb',"
-
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
if [[ $MACHINE_ID = jet ]]; then
TPN=18
diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas
index 4b6ac9fc26..77ff247551 100644
--- a/tests/tests/control_c384gdas
+++ b/tests/tests/control_c384gdas
@@ -49,7 +49,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210322.060000.sfc_data.tile5.nc \
RESTART/20210322.060000.sfc_data.tile6.nc"
-export_fv3
+export_fv3_v16
export atm_omp_num_threads=${THRD_c384}
export INPES=${INPES_c384}
export JNPES=${JNPES_c384}
diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav
deleted file mode 100644
index 3669edccb0..0000000000
--- a/tests/tests/control_c384gdas_wav
+++ /dev/null
@@ -1,126 +0,0 @@
-###############################################################################
-#
-# Global control test: GFSv16 gdas ensemble forecast case
-#
-###############################################################################
-
-export TEST_DESCR="Compare global c384gdas_wave results with previous trunk version"
-
-export CNTL_DIR=control_c384gdas_wav
-
-export LIST_FILES="sfcf000.nc \
- sfcf003.nc \
- atmf000.nc \
- atmf003.nc \
- GFSFLX.GrbF00 \
- GFSFLX.GrbF03 \
- GFSPRS.GrbF00 \
- GFSPRS.GrbF03 \
- RESTART/20210322.030000.coupler.res \
- RESTART/20210322.030000.fv_core.res.nc \
- RESTART/20210322.030000.fv_core.res.tile1.nc \
- RESTART/20210322.030000.fv_core.res.tile2.nc \
- RESTART/20210322.030000.fv_core.res.tile3.nc \
- RESTART/20210322.030000.fv_core.res.tile4.nc \
- RESTART/20210322.030000.fv_core.res.tile5.nc \
- RESTART/20210322.030000.fv_core.res.tile6.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile1.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile2.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile3.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile4.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile5.nc \
- RESTART/20210322.030000.fv_srf_wnd.res.tile6.nc \
- RESTART/20210322.030000.fv_tracer.res.tile1.nc \
- RESTART/20210322.030000.fv_tracer.res.tile2.nc \
- RESTART/20210322.030000.fv_tracer.res.tile3.nc \
- RESTART/20210322.030000.fv_tracer.res.tile4.nc \
- RESTART/20210322.030000.fv_tracer.res.tile5.nc \
- RESTART/20210322.030000.fv_tracer.res.tile6.nc \
- RESTART/20210322.030000.phy_data.tile1.nc \
- RESTART/20210322.030000.phy_data.tile2.nc \
- RESTART/20210322.030000.phy_data.tile3.nc \
- RESTART/20210322.030000.phy_data.tile4.nc \
- RESTART/20210322.030000.phy_data.tile5.nc \
- RESTART/20210322.030000.phy_data.tile6.nc \
- RESTART/20210322.030000.sfc_data.tile1.nc \
- RESTART/20210322.030000.sfc_data.tile2.nc \
- RESTART/20210322.030000.sfc_data.tile3.nc \
- RESTART/20210322.030000.sfc_data.tile4.nc \
- RESTART/20210322.030000.sfc_data.tile5.nc \
- RESTART/20210322.030000.sfc_data.tile6.nc \
- 20210322.030000.restart.aoc_9km \
- 20210322.030000.restart.gnh_10m \
- 20210322.030000.restart.gsh_15m"
-
-export_fv3
-
-export FHMAX=9
-export NPZ=127
-export NPZP=128
-export NPX=385
-export NPY=385
-export DT_ATMOS=225
-
-export INPES=$INPES_cpl_atmw_gdas
-export JNPES=$JNPES_cpl_atmw_gdas
-export atm_omp_num_threads=$THRD_cpl_atmw_gdas
-export WRTTASK_PER_GROUP=$WPG_cpl_atmw_gdas
-
-WAV_tasks=${WAV_tasks_atmw_gdas}
-
-export SYEAR=2021
-export SMONTH=03
-export SDAY=21
-export SHOUR=18
-export FHROT=3
-export OUTPUT_FH="3 -1"
-export IAU_OFFSET=6
-export CDMBWD=${CDMBWD_c384}
-export OUTPUT_GRID='gaussian_grid'
-export WRITE_DOPOST=.true.
-export IMO=1536
-export JMO=768
-
-export WARM_START=.true.
-export NGGPS_IC=.false.
-export EXTERNAL_IC=.false.
-export MAKE_NH=.false.
-export MOUNTAIN=.true.
-export NA_INIT=0
-export IAU_INC_FILES="'fv_increment3.nc','fv_increment6.nc','fv_increment9.nc'"
-export MODEL_INITIALIZATION=true
-
-export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb',"
-export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb',"
-export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb',"
-export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb',"
-
-export CPL=.true.
-export CPLWAV=.true.
-export UFS_CONFIGURE="ufs.configure.leapfrog_atm_wav_esmf.IN"
-export atm_model='fv3'
-export wav_model='ww3'
-export WW3OUTPUTTYPE=' 1'
-export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step
-#wave
-export WW3_RSTDTHR=9
-export WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))"
-export NFGRIDS=1
-export NMGRIDS=3
-export CPLILINE="'glo_15mxt' F F T F F F F F F"
-export WW3GRIDLINE="'gnh_10m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 1 10 0.00 1.00 F
-'gsh_15m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 2 20 0.00 1.00 F
-'aoc_9km' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 3 30 0.00 1.00 F"
-export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000"
-export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000"
-export OUT_BEG=$RUN_BEG
-export OUT_END=$RUN_END
-export RST_BEG=$RUN_BEG
-export RST_2_BEG=$RUN_BEG
-export RST_END=$RUN_END
-export RST_2_END=$RUN_END
-
-export MODEL_INITIALIZATION=true
-export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control_gdas.nml.IN
diff --git a/tests/tests/control_c48 b/tests/tests/control_c48
index ab76dd503b..9ffa2ce490 100644
--- a/tests/tests/control_c48
+++ b/tests/tests/control_c48
@@ -46,6 +46,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export INPES=1
export JNPES=1
@@ -70,14 +71,11 @@ export IOVR=3
export IMO=192
export JMO=94
-export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb',"
-export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb',"
-export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb',"
-export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb',"
-export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb',"
-export FNMSKH_control="'global_slmask.t62.192.94.grb',"
-
+export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'"
+export FNMSKH_control="'global_slmask.t62.192.94.grb'"
+export FNSMCC=${FNSMCC_control}
+export FNMSKH=${FNMSKH_control}
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_c48.v2.sfc b/tests/tests/control_c48.v2.sfc
index 9e435d8aaa..e2b16a3c25 100644
--- a/tests/tests/control_c48.v2.sfc
+++ b/tests/tests/control_c48.v2.sfc
@@ -45,7 +45,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile5.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
-export_fv3
+export_fv3_v16
export INPES=1
export JNPES=1
diff --git a/tests/tests/control_c768 b/tests/tests/control_c768
index 59b32e456e..7794c7dfed 100644
--- a/tests/tests/control_c768
+++ b/tests/tests/control_c768
@@ -17,8 +17,10 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF03"
-export_fv3
+export ATMRES=C768
+export_fv3
+export_tiled
export INPES=${INPES_c768}
export JNPES=${JNPES_c768}
export atm_omp_num_threads=${THRD_c768}
diff --git a/tests/tests/control_csawmg b/tests/tests/control_csawmg
index a5428a2653..af42aac9f6 100644
--- a/tests/tests/control_csawmg
+++ b/tests/tests/control_csawmg
@@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF24"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export SYEAR=2021
diff --git a/tests/tests/control_csawmg_debug b/tests/tests/control_csawmg_debug
index f2379211d2..26ece68145 100644
--- a/tests/tests/control_csawmg_debug
+++ b/tests/tests/control_csawmg_debug
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \
atmf000.nc \
atmf001.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export SYEAR=2021
diff --git a/tests/tests/control_csawmgt b/tests/tests/control_csawmgt
deleted file mode 100644
index 9ee2f25e90..0000000000
--- a/tests/tests/control_csawmgt
+++ /dev/null
@@ -1,40 +0,0 @@
-###############################################################################
-#
-# Global control csawmgt test
-#
-###############################################################################
-
-export TEST_DESCR="Compare global control csawmgt results with previous trunk version"
-
-export CNTL_DIR=control_csawmgt
-
-export LIST_FILES="sfcf000.nc \
- sfcf024.nc \
- atmf000.nc \
- atmf024.nc \
- GFSFLX.GrbF00 \
- GFSFLX.GrbF24 \
- GFSPRS.GrbF00 \
- GFSPRS.GrbF24"
-
-export_fv3
-export NPZ=127
-export NPZP=128
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export RESTART_INTERVAL=0
-export OUTPUT_GRID='gaussian_grid'
-export NSTF_NAME='2,0,0,0,0'
-export WRITE_DOPOST=.true.
-
-export DT_ATMOS=450
-export IAER=111
-export DIAG_TABLE='diag_table_aod'
-export FIELD_TABLE='field_table_csawmgshoc'
-export USE_MERRA2=.true.
-
-export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16_csawmg
-export INPUT_NML=control_csawmg.nml.IN
diff --git a/tests/tests/control_csawmgt_debug b/tests/tests/control_csawmgt_debug
deleted file mode 100644
index a1f867e000..0000000000
--- a/tests/tests/control_csawmgt_debug
+++ /dev/null
@@ -1,36 +0,0 @@
-###############################################################################
-#
-# Global control csawmgt debug test
-#
-###############################################################################
-
-export TEST_DESCR="Compare global control csawmgt debug results with previous trunk version"
-
-export CNTL_DIR=control_csawmgt_debug
-
-export LIST_FILES="sfcf000.nc \
- sfcf001.nc \
- atmf000.nc \
- atmf001.nc"
-
-export_fv3
-export NPZ=127
-export NPZP=128
-export SYEAR=2021
-export SMONTH=03
-export SDAY=22
-export SHOUR=06
-export OUTPUT_GRID='gaussian_grid'
-export NSTF_NAME='2,0,0,0,0'
-export FHMAX=01
-export OUTPUT_FH="0 1"
-
-export DT_ATMOS=450
-export IAER=111
-export DIAG_TABLE='diag_table_aod'
-export FIELD_TABLE='field_table_csawmgshoc'
-export USE_MERRA2=.true.
-
-export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16_csawmg
-export INPUT_NML=control_csawmg.nml.IN
diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8
index 777e566155..c5f823c4b2 100644
--- a/tests/tests/control_debug_p8
+++ b/tests/tests/control_debug_p8
@@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \
atmf001.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -25,9 +26,7 @@ export SHOUR=06
export OUTPUT_GRID='gaussian_grid'
export FHMAX=1
export OUTPUT_FH="0 1"
-#export WRITE_DOPOST=.true.
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -36,19 +35,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -56,7 +52,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -69,7 +65,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -83,25 +79,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -114,7 +91,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -123,10 +100,9 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
-# P8 RRTMGP
+# RRTMGP
export DO_RRTMGP=.false.
export DOGP_CLDOPTICS_LUT=.true.
export DOGP_LWSCAT=.true.
diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8
index 3b5cbb9732..e9f22a92c0 100644
--- a/tests/tests/control_decomp_p8
+++ b/tests/tests/control_decomp_p8
@@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -66,7 +67,6 @@ export OUTPUT_FH='0 21 24'
export INPES=6
export JNPES=4
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -75,19 +75,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -122,22 +119,7 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
export FSICL=0
export FSICS=0
@@ -153,7 +135,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -162,10 +144,9 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
-# P8 RRTMGP
+# RRTMGP
export DO_RRTMGP=.false.
export DOGP_CLDOPTICS_LUT=.true.
export DOGP_LWSCAT=.true.
diff --git a/tests/tests/control_diag_debug b/tests/tests/control_diag_debug
index 7d2004bece..13fe68ce35 100644
--- a/tests/tests/control_diag_debug
+++ b/tests/tests/control_diag_debug
@@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \
atmf001.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -29,8 +30,8 @@ export FHMAX=1
export OUTPUT_FH="0 1"
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
export FHZERO=1
export LDIAG3D=.true.
diff --git a/tests/tests/control_flake b/tests/tests/control_flake
index 20428c49a9..0cba0cedf1 100644
--- a/tests/tests/control_flake
+++ b/tests/tests/control_flake
@@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF24"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug
index f9d0f551ca..f23f4207a0 100644
--- a/tests/tests/control_flake_debug
+++ b/tests/tests/control_flake_debug
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \
atmf000.nc \
atmf001.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -23,7 +23,7 @@ export SDAY=22
export SHOUR=06
export OUTPUT_GRID='gaussian_grid'
export NSTF_NAME='2,0,0,0,0'
-#export WRITE_DOPOST=.true.
+export WRITE_DOPOST=.true.
export IAER=5111
export FHMAX=1
export OUTPUT_FH="0 1"
diff --git a/tests/tests/control_iovr4 b/tests/tests/control_iovr4
index 123579d3b7..4cd5b68e4a 100644
--- a/tests/tests/control_iovr4
+++ b/tests/tests/control_iovr4
@@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF21 \
GFSPRS.GrbF24"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_iovr5 b/tests/tests/control_iovr5
index db10f3f451..7c288459a5 100644
--- a/tests/tests/control_iovr5
+++ b/tests/tests/control_iovr5
@@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF21 \
GFSPRS.GrbF24"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon
index d72143dc24..a46b819168 100644
--- a/tests/tests/control_latlon
+++ b/tests/tests/control_latlon
@@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF24"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -36,5 +37,5 @@ export OUTPUT_FH='0 24'
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_lndp b/tests/tests/control_lndp
index 51366f41ab..ab1ea0a8ca 100644
--- a/tests/tests/control_lndp
+++ b/tests/tests/control_lndp
@@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF12"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_lndp_debug b/tests/tests/control_lndp_debug
index b47630da54..609050f57b 100644
--- a/tests/tests/control_lndp_debug
+++ b/tests/tests/control_lndp_debug
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \
atmf000.nc \
atmf001.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_noqr_p8 b/tests/tests/control_noqr_p8
index 8ed8408308..dd3cd82113 100644
--- a/tests/tests/control_noqr_p8
+++ b/tests/tests/control_noqr_p8
@@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -77,19 +77,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -110,7 +107,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -124,25 +121,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -155,7 +133,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -164,8 +142,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8 b/tests/tests/control_p8
index 9fa9badfbd..26ab79b7fb 100644
--- a/tests/tests/control_p8
+++ b/tests/tests/control_p8
@@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -123,25 +120,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc
index 3f0c360b53..d08987ae87 100644
--- a/tests/tests/control_p8.v2.sfc
+++ b/tests/tests/control_p8.v2.sfc
@@ -55,6 +55,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -77,19 +77,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -110,7 +107,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -124,25 +121,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -155,7 +133,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -164,8 +142,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export V2_SFC_FILE=true
# RRTMGP
diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd
index 46d6745e30..aecdf87e6f 100644
--- a/tests/tests/control_p8_atmlnd
+++ b/tests/tests/control_p8_atmlnd
@@ -96,6 +96,7 @@ export LIST_FILES="sfcf000.tile1.nc \
ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -109,7 +110,6 @@ export OUTPUT_GRID='cubed_sphere_grid'
export WRITE_DOPOST=.false.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -118,19 +118,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -138,7 +135,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -151,7 +148,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -165,7 +162,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'INPUT/C96.facsf.tileX.nc'"
@@ -174,6 +170,8 @@ export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'"
export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'"
export FNSOTC="'INPUT/C96.soil_type.tileX.nc'"
export FNSOCC="'INPUT/C96.soil_color.tileX.nc'"
+export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'"
+export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'"
export FNSMCC=${FNSMCC_control}
export FNMSKH=${FNMSKH_control}
export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'"
@@ -196,7 +194,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -205,8 +203,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN"
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs
index 704f7936f4..33be5a8b0c 100644
--- a/tests/tests/control_p8_atmlnd_sbs
+++ b/tests/tests/control_p8_atmlnd_sbs
@@ -96,6 +96,7 @@ export LIST_FILES="sfcf000.tile1.nc \
ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -109,7 +110,6 @@ export OUTPUT_GRID='cubed_sphere_grid'
export WRITE_DOPOST=.false.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -118,19 +118,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -138,7 +135,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -151,7 +148,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -165,7 +162,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'INPUT/C96.facsf.tileX.nc'"
@@ -196,7 +192,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -205,8 +201,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN"
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster
index 21b3dda5db..fd02cbf4e0 100644
--- a/tests/tests/control_p8_faster
+++ b/tests/tests/control_p8_faster
@@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -123,25 +120,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp
index 80c4be94be..4f5742b448 100644
--- a/tests/tests/control_p8_lndp
+++ b/tests/tests/control_p8_lndp
@@ -26,6 +26,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF48"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -40,7 +41,6 @@ export WRITE_DOPOST=.true.
export FHMAX=48
export OUTPUT_FH='0 21 24 48'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -49,19 +49,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -69,7 +66,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -82,7 +79,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -96,25 +93,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -127,7 +105,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -136,8 +114,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export LNDP_TYPE=2
export N_VAR_LNDP=1
export LNDP_VAR_LIST="'vgf',"
diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn
index b61adef27d..593b283f63 100644
--- a/tests/tests/control_p8_mynn
+++ b/tests/tests/control_p8_mynn
@@ -53,7 +53,8 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile5.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
-export_fv3
+export_fv3_v16
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -123,25 +120,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8_mynn
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
@@ -175,3 +152,24 @@ export DOGP_SGS_CNV=.true.
export IMFSHALCNV=-1
export SHAL_CNV=.false.
export DO_MYNNEDMF=.true.
+
+export TILEDFIX=.true.
+export FNALBC="'C96.snowfree_albedo.tileX.nc'"
+export FNALBC2="'C96.facsf.tileX.nc'"
+export FNTG3C="'C96.substrate_temperature.tileX.nc'"
+export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
+export FNVETC="'C96.vegetation_type.tileX.nc'"
+export FNSOTC="'C96.soil_type.tileX.nc'"
+export FNSOCC="'C96.soil_color.tileX.nc'"
+export FNSMCC=${FNSMCC_control}
+export FNMSKH=${FNMSKH_control}
+export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
+export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
+export FNSLPC="'C96.slope_type.tileX.nc'"
+export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
+export LANDICE=".false."
+export FSICL=0
+export FSICS=0
+
+export IOVR=3
+export ICLIQ_SW=2
diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp
index b5a93a9580..01daa2ee7a 100644
--- a/tests/tests/control_p8_rrtmgp
+++ b/tests/tests/control_p8_rrtmgp
@@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -123,25 +120,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.true.
diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1
index a8f550c2ec..a62a9c1049 100644
--- a/tests/tests/control_p8_ugwpv1
+++ b/tests/tests/control_p8_ugwpv1
@@ -55,6 +55,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -68,7 +69,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -77,19 +77,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,1,0,0,0
@@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P8 UGWP1
+# UGWP1
export GWD_OPT=2
export CDMBWD=20.0,2.5,1.0,1.0
export DO_UGWP_V1=.true.
@@ -113,7 +110,7 @@ export LDIAG_UGWP=.false.
export KNOB_UGWP_DOKDIS=2
export KNOB_UGWP_NDX4LH=4
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -127,25 +124,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -158,7 +136,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Follwoing not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -167,8 +145,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_ras b/tests/tests/control_ras
index f762518af9..2d730bb52e 100644
--- a/tests/tests/control_ras
+++ b/tests/tests/control_ras
@@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF24"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_ras_debug b/tests/tests/control_ras_debug
index d34b86b816..14b248269f 100644
--- a/tests/tests/control_ras_debug
+++ b/tests/tests/control_ras_debug
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \
atmf000.nc \
atmf001.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=720
diff --git a/tests/tests/control_restart_noqr_p8 b/tests/tests/control_restart_noqr_p8
index 424f4d43ae..f3baca99f7 100644
--- a/tests/tests/control_restart_noqr_p8
+++ b/tests/tests/control_restart_noqr_p8
@@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -67,7 +68,6 @@ export MAKE_NH=.false.
export MOUNTAIN=.true.
export NA_INIT=0
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,0,0,0,0
@@ -96,7 +93,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -123,25 +120,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,10 +141,9 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
-# P8 RRTMGP
+# RRTMGP
export DO_RRTMGP=.false.
export DOGP_CLDOPTICS_LUT=.true.
export DOGP_LWSCAT=.true.
diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8
index c10d7e7a93..50be1ec0dd 100644
--- a/tests/tests/control_restart_p8
+++ b/tests/tests/control_restart_p8
@@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -66,7 +67,6 @@ export MAKE_NH=.false.
export MOUNTAIN=.true.
export NA_INIT=0
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -75,19 +75,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,0,0,0,0
@@ -95,7 +92,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -122,25 +119,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -153,7 +131,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -162,10 +140,9 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
-# P8 RRTMGP
+# RRTMGP
export DO_RRTMGP=.false.
export DOGP_CLDOPTICS_LUT=.true.
export DOGP_LWSCAT=.true.
diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd
index e4e0f3ab2f..2eaa04f779 100644
--- a/tests/tests/control_restart_p8_atmlnd
+++ b/tests/tests/control_restart_p8_atmlnd
@@ -28,6 +28,7 @@ export LIST_FILES="sfcf024.tile1.nc \
ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -49,7 +50,6 @@ export MAKE_NH=.false.
export MOUNTAIN=.true.
export NA_INIT=0
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -58,19 +58,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export IAER=1011
export NSTF_NAME=2,0,0,0,0
@@ -78,7 +75,7 @@ export NSTF_NAME=2,0,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -91,7 +88,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -105,7 +102,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
export TILEDFIX=.true.
export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'"
export FNALBC2="'INPUT/C96.facsf.tileX.nc'"
@@ -136,7 +132,7 @@ export FRAC_GRID=.true.
export MOM6_OUTPUT_DIR=./MOM6_OUTPUT
export MOM6_RESTART_DIR=./RESTART/
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -145,8 +141,7 @@ export FV3_RUN="control_run.IN noahmp_run.IN"
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
-# use same namelist for standalone,coupled P7
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_stochy b/tests/tests/control_stochy
index 1eefdaecff..2c1cbf1ddd 100644
--- a/tests/tests/control_stochy
+++ b/tests/tests/control_stochy
@@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF00 \
GFSPRS.GrbF12"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=600
diff --git a/tests/tests/control_stochy_debug b/tests/tests/control_stochy_debug
index 0aafc10685..82f9866232 100644
--- a/tests/tests/control_stochy_debug
+++ b/tests/tests/control_stochy_debug
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \
atmf000.nc \
atmf001.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=600
diff --git a/tests/tests/control_stochy_restart b/tests/tests/control_stochy_restart
index 7f8d532776..77be313478 100644
--- a/tests/tests/control_stochy_restart
+++ b/tests/tests/control_stochy_restart
@@ -13,7 +13,7 @@ export LIST_FILES="sfcf012.nc \
GFSFLX.GrbF12 \
GFSPRS.GrbF12 "
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=600
diff --git a/tests/tests/control_wam b/tests/tests/control_wam
index ce4499d7de..1b3b7d1543 100644
--- a/tests/tests/control_wam
+++ b/tests/tests/control_wam
@@ -11,7 +11,7 @@ export CNTL_DIR=control_wam
export LIST_FILES="sfcf024.nc \
atmf024.nc"
-export_fv3
+export_fv3_v16
export NPZ=149
export NPZP=150
export DT_ATMOS="225"
diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug
index 6d000e0752..8743e90f83 100644
--- a/tests/tests/control_wam_debug
+++ b/tests/tests/control_wam_debug
@@ -11,7 +11,7 @@ export CNTL_DIR=control_wam_debug
export LIST_FILES="sfcf019.nc \
atmf019.nc"
-export_fv3
+export_fv3_v16
export NPZ=149
export NPZP=150
export DT_ATMOS="225"
@@ -22,7 +22,6 @@ export SHOUR="06"
export FHMAX=19
export OUTPUT_FH="0 19"
-#export WRITE_DOPOST=.true.
export WARM_START=.true.
export NA_INIT=0
diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel
index de957a2eb8..d90184da4d 100644
--- a/tests/tests/control_wrtGauss_netcdf_parallel
+++ b/tests/tests/control_wrtGauss_netcdf_parallel
@@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \
GFSPRS.GrbF24"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -35,5 +36,5 @@ export IDEFLATE=1
export QUANTIZE_NSD=14
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug
index b4a1902574..2988ec0782 100644
--- a/tests/tests/control_wrtGauss_netcdf_parallel_debug
+++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug
@@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \
atmf001.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=720
@@ -32,5 +33,5 @@ export QUANTIZE_NSD=14
export OUTPUT_FH="0 1"
export FV3_RUN=control_run.IN
-export CCPP_SUITE=FV3_GFS_v16
-export INPUT_NML=control.nml.IN
+export CCPP_SUITE=FV3_GFS_v17_p8
+export INPUT_NML=global_control.nml.IN
diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17
index 912c850466..890ff98596 100644
--- a/tests/tests/cpld_control_gfsv17
+++ b/tests/tests/cpld_control_gfsv17
@@ -90,7 +90,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr
export atm_omp_num_threads=$THRD_cpl_unstr
export med_omp_num_threads=$atm_omp_num_threads
-# P8 UGWP1
+# UGWP1
export GWD_OPT=2
export CDMBWD=20.0,2.5,1.0,1.0
export DO_UGWP_V1=.true.
@@ -118,7 +118,7 @@ export FV3_RUN=cpld_control_run.IN
export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
export DIAG_TABLE=diag_table_cpld.IN
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export UFS_CONFIGURE=ufs.configure.s2sw.IN
#GFSv17 settings
diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau
index 83e193208a..6ebbf0047a 100644
--- a/tests/tests/cpld_control_gfsv17_iau
+++ b/tests/tests/cpld_control_gfsv17_iau
@@ -97,7 +97,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr
export atm_omp_num_threads=$THRD_cpl_unstr
export med_omp_num_threads=$atm_omp_num_threads
-# P8 UGWP1
+# UGWP1
export GWD_OPT=2
export CDMBWD=20.0,2.5,1.0,1.0
export DO_UGWP_V1=.true.
@@ -121,7 +121,7 @@ export FV3_RUN=cpld_control_run.IN
export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
export DIAG_TABLE=diag_table_cpld.IN
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export UFS_CONFIGURE=ufs.configure.s2sw.IN
#GFSv17 settings
diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8
index 1f5cbb086e..60e9de59ca 100644
--- a/tests/tests/cpld_control_p8
+++ b/tests/tests/cpld_control_p8
@@ -84,4 +84,4 @@ export FV3_RUN=cpld_control_run.IN
if [[ $MACHINE_ID = derecho ]]; then
TPN=96
-fi
\ No newline at end of file
+fi
diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17
index e4ab5ccf82..6476e7540b 100644
--- a/tests/tests/cpld_debug_gfsv17
+++ b/tests/tests/cpld_debug_gfsv17
@@ -112,7 +112,7 @@ export FV3_RUN=cpld_control_run.IN
export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
export DIAG_TABLE=diag_table_cpld.IN
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export UFS_CONFIGURE=ufs.configure.s2sw.IN
export FV3_RUN=cpld_control_run.IN
diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17
index e3590bbf59..19076b671e 100644
--- a/tests/tests/cpld_mpi_gfsv17
+++ b/tests/tests/cpld_mpi_gfsv17
@@ -99,7 +99,7 @@ export CICE_BLCKY=`expr $NY_GLB / 2`
export atm_omp_num_threads=$THRD_cpl_unstr
export med_omp_num_threads=$atm_omp_num_threads
-# P8 UGWP1
+# UGWP1
export GWD_OPT=2
export CDMBWD=20.0,2.5,1.0,1.0
export DO_UGWP_V1=.true.
@@ -127,7 +127,7 @@ export FV3_RUN=cpld_control_run.IN
export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
export DIAG_TABLE=diag_table_cpld.IN
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export UFS_CONFIGURE=ufs.configure.s2sw.IN
#GFSv17 settings
diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17
index 35192c28d6..62a97d4fb3 100644
--- a/tests/tests/cpld_restart_gfsv17
+++ b/tests/tests/cpld_restart_gfsv17
@@ -98,7 +98,7 @@ WAV_tasks=$WAV_tasks_cpl_unstr
export atm_omp_num_threads=$THRD_cpl_unstr
export med_omp_num_threads=$atm_omp_num_threads
-# P8 UGWP1
+# UGWP1
export GWD_OPT=2
export CDMBWD=20.0,2.5,1.0,1.0
export DO_UGWP_V1=.true.
@@ -127,7 +127,7 @@ export FV3_RUN=cpld_control_run.IN
export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
export DIAG_TABLE=diag_table_cpld.IN
-export INPUT_NML=cpld_control.nml.IN
+export INPUT_NML=global_control.nml.IN
export UFS_CONFIGURE=ufs.configure.s2sw.IN
#GFSv17 settings
diff --git a/tests/tests/gnv1_c96_no_nest_debug b/tests/tests/gnv1_c96_no_nest_debug
index 935079652e..3de6194b95 100644
--- a/tests/tests/gnv1_c96_no_nest_debug
+++ b/tests/tests/gnv1_c96_no_nest_debug
@@ -47,7 +47,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210322.070000.sfc_data.tile5.nc \
RESTART/20210322.070000.sfc_data.tile6.nc"
-export_fv3
+export_fv3_v16
export NPZ=127
export NPZP=128
export DT_ATMOS=300
diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson
index 7e217c27ff..ef206dab97 100644
--- a/tests/tests/merra2_thompson
+++ b/tests/tests/merra2_thompson
@@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20210323.060000.sfc_data.tile6.nc"
export_fv3
+export_tiled
export NPZ=127
export NPZP=128
export DT_ATMOS=600
@@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid'
export WRITE_DOPOST=.true.
export OUTPUT_FH='0 21 24'
-# P7 default
export IALB=2
export IEMS=2
export LSM=2
@@ -76,19 +76,16 @@ export IOPT_CRS=2
export IOPT_RAD=3
export IOPT_ALB=1
export IOPT_STC=3
-# P8
export IOPT_SFC=3
export IOPT_TRS=2
export IOPT_DIAG=2
-# FV3 P7 settings
export D2_BG_K1=0.20
export D2_BG_K2=0.04
export PSM_BC=1
-# P8
export DDDMP=0.1
-# P7 Merra2 Aerosols & NSST
+# Merra2 Aerosols & NSST
export USE_MERRA2=.true.
export LTAEROSOL=.false.
export MRAEROSOL=.true.
@@ -98,7 +95,7 @@ export NSTF_NAME=2,1,0,0,0
export LHEATSTRG=.false.
export LSEASPRAY=.true.
-# P7 UGWP1
+# UGWP1
export GWD_OPT=2
export DO_UGWP_V1=.false.
export KNOB_UGWP_VERSION=0
@@ -111,7 +108,7 @@ export DO_UGWP_V1_OROG_ONLY=.false.
export DO_UGWP_V0_NST_ONLY=.false.
export LDIAG_UGWP=.false.
-# P7 CA
+# CA
export DO_CA=.true.
export CA_SGS=.true.
export CA_GLOBAL=.false.
@@ -125,25 +122,6 @@ export CA_TRIGGER=.true.
export NSPINUP=1
export ISEED_CA=12345
-# P7 settings
-export TILEDFIX=.true.
-export FNALBC="'C96.snowfree_albedo.tileX.nc'"
-export FNALBC2="'C96.facsf.tileX.nc'"
-export FNTG3C="'C96.substrate_temperature.tileX.nc'"
-export FNVEGC="'C96.vegetation_greenness.tileX.nc'"
-export FNVETC="'C96.vegetation_type.tileX.nc'"
-export FNSOTC="'C96.soil_type.tileX.nc'"
-export FNSOCC="'C96.soil_color.tileX.nc'"
-export FNSMCC=${FNSMCC_control}
-export FNMSKH=${FNMSKH_control}
-export FNVMNC="'C96.vegetation_greenness.tileX.nc'"
-export FNVMXC="'C96.vegetation_greenness.tileX.nc'"
-export FNSLPC="'C96.slope_type.tileX.nc'"
-export FNABSC="'C96.maximum_snow_albedo.tileX.nc'"
-export LANDICE=".false."
-export FSICL=0
-export FSICS=0
-
export IMP_PHYSICS=8
export LGFDLMPRAD=.false.
export DO_SAT_ADJ=.false.
@@ -154,7 +132,7 @@ export DZ_MIN=6
export MIN_SEAICE=0.15
export FRAC_GRID=.true.
export MOM6_RESTART_SETTING=n
-# P8 (not used for standalone)
+# Following not used for standalone
export USE_CICE_ALB=.false.
export WRITE_NSFLIP=.true.
@@ -163,8 +141,7 @@ export FV3_RUN=control_run.IN
export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_mr2
export DIAG_TABLE=diag_table_mr2
-# use same namelist for standalone,coupled P7
-export INPUT_NML=merra2_thompson.nml.IN
+export INPUT_NML=global_control.nml.IN
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/regional_2dwrtdecomp b/tests/tests/regional_2dwrtdecomp
index 7900e76b7b..f76c1b97b0 100644
--- a/tests/tests/regional_2dwrtdecomp
+++ b/tests/tests/regional_2dwrtdecomp
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads
index e705ab6747..9d3e3d5ce3 100644
--- a/tests/tests/regional_2threads
+++ b/tests/tests/regional_2threads
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq
index 54fb6f1514..df4603f299 100644
--- a/tests/tests/regional_atmaq
+++ b/tests/tests/regional_atmaq
@@ -22,7 +22,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20190801.180000.phy_data.nc \
RESTART/20190801.180000.sfc_data.nc"
-export_fv3
+export_fv3_v16
export SYEAR=2019
export SMONTH=08
diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug
index 17fcea688a..7cfe2f8489 100644
--- a/tests/tests/regional_atmaq_debug
+++ b/tests/tests/regional_atmaq_debug
@@ -20,7 +20,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20190801.130000.phy_data.nc \
RESTART/20190801.130000.sfc_data.nc"
-export_fv3
+export_fv3_v16
export SYEAR=2019
export SMONTH=08
diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster
index 75f85debf7..6ccb25375a 100644
--- a/tests/tests/regional_atmaq_faster
+++ b/tests/tests/regional_atmaq_faster
@@ -22,7 +22,7 @@ export LIST_FILES="sfcf000.nc \
RESTART/20190801.180000.phy_data.nc \
RESTART/20190801.180000.sfc_data.nc"
-export_fv3
+export_fv3_v16
export SYEAR=2019
export SMONTH=08
diff --git a/tests/tests/regional_control b/tests/tests/regional_control
index 98d50028e7..01cca0e714 100644
--- a/tests/tests/regional_control
+++ b/tests/tests/regional_control
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_control_faster b/tests/tests/regional_control_faster
index 350c2aecf8..17d31fdc0e 100644
--- a/tests/tests/regional_control_faster
+++ b/tests/tests/regional_control_faster
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug
index 64e5921f76..46ff346b68 100644
--- a/tests/tests/regional_debug
+++ b/tests/tests/regional_debug
@@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \
phyf000.nc \
phyf001.nc"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp
index 55566313b2..a3931e4f18 100644
--- a/tests/tests/regional_decomp
+++ b/tests/tests/regional_decomp
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads
index 743707a55c..8e1db314cd 100644
--- a/tests/tests/regional_ifi_2threads
+++ b/tests/tests/regional_ifi_2threads
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control
index 85ab5ae6a9..089d372a78 100644
--- a/tests/tests/regional_ifi_control
+++ b/tests/tests/regional_ifi_control
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp
index 4513f4618c..815587548a 100644
--- a/tests/tests/regional_ifi_decomp
+++ b/tests/tests/regional_ifi_decomp
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel
index 0f20b07d94..13065d2da8 100644
--- a/tests/tests/regional_netcdf_parallel
+++ b/tests/tests/regional_netcdf_parallel
@@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \
phyf000.nc \
phyf006.nc"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt
index a87447702b..2498db9d91 100644
--- a/tests/tests/regional_noquilt
+++ b/tests/tests/regional_noquilt
@@ -14,7 +14,7 @@ export LIST_FILES=" atmos_4xdaily.nc \
RESTART/fv_core.res.tile1_new.nc \
RESTART/fv_tracer.res.tile1_new.nc"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart
index 6ce9242440..c09332019e 100644
--- a/tests/tests/regional_restart
+++ b/tests/tests/regional_restart
@@ -13,7 +13,7 @@ export LIST_FILES="dynf006.nc \
PRSLEV.GrbF06 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
diff --git a/tests/tests/regional_rrfs_a b/tests/tests/regional_rrfs_a
index f1b6d09d93..4aace3f9e2 100644
--- a/tests/tests/regional_rrfs_a
+++ b/tests/tests/regional_rrfs_a
@@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \
phyf000.nc \
phyf001.nc"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_rrfs_a_run.IN
diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb
index 830886bc27..7b79586105 100644
--- a/tests/tests/regional_spp_sppt_shum_skeb
+++ b/tests/tests/regional_spp_sppt_shum_skeb
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF01"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run_stoch.IN
diff --git a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32
index 9431e9b26a..eeb01afe60 100644
--- a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32
+++ b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF01"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run_stoch.IN
diff --git a/tests/tests/regional_wofs b/tests/tests/regional_wofs
index d1ee23a786..3b5a62bf8e 100644
--- a/tests/tests/regional_wofs
+++ b/tests/tests/regional_wofs
@@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \
NATLEV.GrbF00 \
NATLEV.GrbF06"
-export_fv3
+export_fv3_v16
export FV3_RUN=regional_run.IN
From 04bbc15f9abfb25a8864cdeaebdbd439c4332c95 Mon Sep 17 00:00:00 2001
From: jiandewang
Date: Thu, 25 Apr 2024 14:52:00 -0400
Subject: [PATCH 26/33] update MOM6 to its main repo. 20240401 commit (#2241)
* UFSWM -
* MOM6 - update MOM6 to its main repo. 20240401 commit (NCAR-candidate-20240319)
---
MOM6-interface/MOM6 | 2 +-
build.sh | 2 +-
tests/ci/Jenkinsfile.combined | 93 +-
tests/fv3_conf/fv3_slurm.IN_hera | 10 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 156 ++--
.../OpnReqTests_regional_control_hera.log | 61 +-
tests/logs/RT-run-Derecho.log | 415 +++++++++
tests/logs/RT-run-Hercules.log | 16 +
tests/logs/RegressionTests_acorn.log | 563 ++++++------
tests/logs/RegressionTests_derecho.log | 629 ++++++--------
tests/logs/RegressionTests_gaea.log | 584 ++++++-------
tests/logs/RegressionTests_hera.log | 761 ++++++++---------
tests/logs/RegressionTests_hercules.log | 805 ++++++++----------
tests/logs/RegressionTests_jet.log | 499 +++++------
tests/logs/RegressionTests_wcoss2.log | 510 ++++++-----
tests/rt.sh | 16 +-
17 files changed, 2756 insertions(+), 2414 deletions(-)
create mode 100644 tests/logs/RT-run-Derecho.log
create mode 100644 tests/logs/RT-run-Hercules.log
diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6
index ab7bd14d20..0730606b80 160000
--- a/MOM6-interface/MOM6
+++ b/MOM6-interface/MOM6
@@ -1 +1 @@
-Subproject commit ab7bd14d209592d55490e75dbfaa61cb4a62df97
+Subproject commit 0730606b808f2979241d850e763955f5526a980c
diff --git a/build.sh b/build.sh
index a92ee521f2..c1cfe43d8d 100755
--- a/build.sh
+++ b/build.sh
@@ -26,4 +26,4 @@ for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done
cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}"
# Turn off OpenMP threading for parallel builds
# to avoid exhausting the number of user processes
-OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-1}"
\ No newline at end of file
+OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}"
\ No newline at end of file
diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined
index 47fb97ec73..5b3d072320 100644
--- a/tests/ci/Jenkinsfile.combined
+++ b/tests/ci/Jenkinsfile.combined
@@ -11,7 +11,6 @@ for (label in pullRequest.labels) {
if ((label.matches(node.getLabelString()+"(.*)-BL"))) {
generateBaselineNode += node.getLabelString()
}
-
}
}
@@ -60,6 +59,14 @@ def generateStage(nodeLabel) {
chgrp noaa-hpc develop-${BL_DATE}
cd $WORKSPACE/tests
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_hercules.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Orion" ]]
then
echo "Creating baselines on $machine"
@@ -77,24 +84,40 @@ def generateStage(nodeLabel) {
chgrp noaa-hpc develop-${BL_DATE}
cd $WORKSPACE/tests
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_orion.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Gaea" ]]
then
echo "Creating baselines on $machine"
./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
unset LD_LIBRARY_PATH
- export DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT
+ export DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT
cd ${DISKNM}/NEMSfv3gfs/
mkdir develop-${BL_DATE}
- cd /lustre/f2/scratch/role.epic/FV3_RT
+ cd /gpfs/f5/epic/scratch/role.epic/FV3_RT
rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
cd ${DISKNM}/NEMSfv3gfs/
chgrp ncep develop-${BL_DATE}
cd $WORKSPACE/tests
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_gaea.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Hera" ]]
then
echo "Creating baselines on $machine"
- export ACCNR=nems
+ export ACCNR=epic
./rt.sh -a ${ACCNR} -c -r -l rt.conf
export DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT
cd ${DISKNM}/NEMSfv3gfs/
@@ -103,6 +126,14 @@ def generateStage(nodeLabel) {
rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
cd $WORKSPACE/tests
./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_hera.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Derecho" ]]
then
echo "Creating baselines on $machine"
@@ -115,6 +146,14 @@ def generateStage(nodeLabel) {
rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}
cd $WORKSPACE/tests
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_derecho.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
else
echo "Creating baselines on $machine"
./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
@@ -159,32 +198,72 @@ def generateStage(nodeLabel) {
./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
elif [[ $machine =~ "Hercules" ]]
then
- echo "Running regression tests on $machine"
+ echo "Running regression tests on $machine"
export dprefix=/work2/noaa/$ACCNR/$USER
sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
export ACCNR=epic
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_hercules.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Orion" ]]
then
echo "Running regression tests on $machine"
export dprefix=/work2/noaa/$ACCNR/$USER
sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_orion.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Gaea" ]]
then
echo "Running regression tests on $machine"
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
unset LD_LIBRARY_PATH
+ cd logs/
+ cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_gaea.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Hera" ]]
then
echo "Running regression tests on $machine"
- export ACCNR=nems
- ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ export ACCNR=epic
+ ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_hera.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
elif [[ $machine =~ "Derecho" ]]
then
echo "Running regression tests on $machine"
export ACCNR=nral0032
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
+ cd logs/
+ cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace
+ git remote -v
+ git fetch --no-recurse-submodules origin
+ git reset FETCH_HEAD --hard
+ cd .. && cd .. && cd ..
+ cp RegressionTests_derecho.log $WORKSPACE/tests/logs/
+ cd $WORKSPACE/tests/
else
echo "Running regression tests on $machine"
./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera
index 94c3827525..288b0ec78b 100644
--- a/tests/fv3_conf/fv3_slurm.IN_hera
+++ b/tests/fv3_conf/fv3_slurm.IN_hera
@@ -15,9 +15,9 @@ date_s_start=$(date +%s)
echo -n "${date_s_start}," > job_timestamp.txt
set +x
-#MACHINE_ID=hera
+export MACHINE_ID=hera
source ./module-setup.sh
-module use "@[PWD]/modulefiles"
+module use "${PWD}/modulefiles"
module load modules.fv3
module list
set -x
@@ -27,7 +27,8 @@ echo "Model started: ${date_start}"
export MPI_TYPE_DEPTH=20
export OMP_STACKSIZE=512M
-export OMP_NUM_THREADS="@[THRD]"
+# shellcheck disable=SC2125
+export OMP_NUM_THREADS=@[THRD]
export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4
export ESMF_RUNTIME_PROFILE=ON
export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY"
@@ -37,7 +38,8 @@ export PSM_SHAREDCONTEXTS=1
# Avoid job errors because of filesystem synchronization delays
sync && sleep 1
-srun --label -n "@[TASKS]" ./fv3.exe
+# shellcheck disable=SC2102
+srun --label -n @[TASKS] ./fv3.exe
date_end=$(date)
echo "Model ended: ${date_end}"
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 29b8a01b8a..1c5bcbbd00 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Fri Apr 19 19:57:57 UTC 2024
+Wed Apr 24 12:38:17 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 272.557598
- 0: The maximum resident set size (KB) = 1254932
+ 0: The total amount of wall time = 276.967845
+ 0: The maximum resident set size (KB) = 1253216
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 959.903328
- 0: The maximum resident set size (KB) = 1232448
+ 0: The total amount of wall time = 960.176678
+ 0: The maximum resident set size (KB) = 1233464
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 241.225092
- 0: The maximum resident set size (KB) = 1230688
+ 0: The total amount of wall time = 238.109868
+ 0: The maximum resident set size (KB) = 1235600
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 236.258585
- 0: The maximum resident set size (KB) = 1236816
+ 0: The total amount of wall time = 239.999110
+ 0: The maximum resident set size (KB) = 1231020
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 235.269569
- 0: The maximum resident set size (KB) = 1231588
+ 0: The total amount of wall time = 241.494846
+ 0: The maximum resident set size (KB) = 1230996
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.429501
- 0: The maximum resident set size (KB) = 1232412
+ 0: The total amount of wall time = 240.187367
+ 0: The maximum resident set size (KB) = 1237016
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_669166/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.774632
- 0: The maximum resident set size (KB) = 1232820
+ 0: The total amount of wall time = 239.880609
+ 0: The maximum resident set size (KB) = 1228084
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Fri Apr 19 20:59:04 UTC 2024
-Elapsed time: 01h:01m:08s. Have a nice day!
+Wed Apr 24 13:54:57 UTC 2024
+Elapsed time: 01h:16m:40s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 1cbca13a85..29f8955f5e 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 22 14:31:53 UTC 2024
+Wed Apr 24 14:04:01 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,83 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1572.129737
- 0: The maximum resident set size (KB) = 1368184
+ 0: The total amount of wall time = 1311.811572
+ 0: The maximum resident set size (KB) = 1340536
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2291890/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/rst_rst
+Checking test rst results ....
+ Comparing sfcf021.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf021.tile6.nc .....USING NCCMP......OK
+ Comparing atmf021.tile1.nc .....USING NCCMP......OK
+ Comparing atmf021.tile2.nc .....USING NCCMP......OK
+ Comparing atmf021.tile3.nc .....USING NCCMP......OK
+ Comparing atmf021.tile4.nc .....USING NCCMP......OK
+ Comparing atmf021.tile5.nc .....USING NCCMP......OK
+ Comparing atmf021.tile6.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile1.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile2.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile3.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile4.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile5.nc .....USING NCCMP......OK
+ Comparing sfcf024.tile6.nc .....USING NCCMP......OK
+ Comparing atmf024.tile1.nc .....USING NCCMP......OK
+ Comparing atmf024.tile2.nc .....USING NCCMP......OK
+ Comparing atmf024.tile3.nc .....USING NCCMP......OK
+ Comparing atmf024.tile4.nc .....USING NCCMP......OK
+ Comparing atmf024.tile5.nc .....USING NCCMP......OK
+ Comparing atmf024.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
+ Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK
+ Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
+
+ 0: The total amount of wall time = 389.794167
+ 0: The maximum resident set size (KB) = 1341484
+
+Test rst PASS
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -136,80 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 386.377672
- 0: The maximum resident set size (KB) = 1358644
+ 0: The total amount of wall time = 394.333320
+ 0: The maximum resident set size (KB) = 1339512
Test std_base PASS
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3301844/rst_rst
-Checking test rst results ....
- Comparing sfcf021.tile1.nc .....USING NCCMP......OK
- Comparing sfcf021.tile2.nc .....USING NCCMP......OK
- Comparing sfcf021.tile3.nc .....USING NCCMP......OK
- Comparing sfcf021.tile4.nc .....USING NCCMP......OK
- Comparing sfcf021.tile5.nc .....USING NCCMP......OK
- Comparing sfcf021.tile6.nc .....USING NCCMP......OK
- Comparing atmf021.tile1.nc .....USING NCCMP......OK
- Comparing atmf021.tile2.nc .....USING NCCMP......OK
- Comparing atmf021.tile3.nc .....USING NCCMP......OK
- Comparing atmf021.tile4.nc .....USING NCCMP......OK
- Comparing atmf021.tile5.nc .....USING NCCMP......OK
- Comparing atmf021.tile6.nc .....USING NCCMP......OK
- Comparing sfcf024.tile1.nc .....USING NCCMP......OK
- Comparing sfcf024.tile2.nc .....USING NCCMP......OK
- Comparing sfcf024.tile3.nc .....USING NCCMP......OK
- Comparing sfcf024.tile4.nc .....USING NCCMP......OK
- Comparing sfcf024.tile5.nc .....USING NCCMP......OK
- Comparing sfcf024.tile6.nc .....USING NCCMP......OK
- Comparing atmf024.tile1.nc .....USING NCCMP......OK
- Comparing atmf024.tile2.nc .....USING NCCMP......OK
- Comparing atmf024.tile3.nc .....USING NCCMP......OK
- Comparing atmf024.tile4.nc .....USING NCCMP......OK
- Comparing atmf024.tile5.nc .....USING NCCMP......OK
- Comparing atmf024.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK
- Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
-
- 0: The total amount of wall time = 389.040798
- 0: The maximum resident set size (KB) = 1360268
-
-Test rst PASS
-
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 22 19:14:09 UTC 2024
-Elapsed time: 00h:31m:32s. Have a nice day!
+Wed Apr 24 15:05:09 UTC 2024
+Elapsed time: 01h:01m:09s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index c7200df608..c62b1ed7b4 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,28 @@
-Mon Apr 22 12:33:48 UTC 2024
+Wed Apr 24 19:38:47 UTC 2024
Start Operation Requirement Test
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/bit_base_bit_base
+Checking test bit_base results ....
+Moving baseline bit_base files ....
+ Moving dynf000.nc .........OK
+ Moving dynf006.nc .........OK
+ Moving phyf000.nc .........OK
+ Moving phyf006.nc .........OK
+ Moving PRSLEV.GrbF00 .........OK
+ Moving PRSLEV.GrbF06 .........OK
+ Moving NATLEV.GrbF00 .........OK
+ Moving NATLEV.GrbF06 .........OK
+
+ 0: The total amount of wall time = 1236.978294
+ 0: The maximum resident set size (KB) = 577672
+
+Test bit_base PASS
+
+
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +33,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2123.028031
- 0: The maximum resident set size (KB) = 556456
+ 0: The total amount of wall time = 2229.582684
+ 0: The maximum resident set size (KB) = 541864
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +52,32 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2146.624346
- 0: The maximum resident set size (KB) = 561996
+ 0: The total amount of wall time = 2186.237690
+ 0: The maximum resident set size (KB) = 539180
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1881160/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_std
+Checking test std results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
+
+ 0: The total amount of wall time = 2172.179940
+ 0: The maximum resident set size (KB) = 541092
+
+Test std PASS
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,11 +88,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2265.288036
- 0: The maximum resident set size (KB) = 556412
+ 0: The total amount of wall time = 2094.600637
+ 0: The maximum resident set size (KB) = 541332
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 22 14:30:55 UTC 2024
-Elapsed time: 01h:57m:08s. Have a nice day!
+Wed Apr 24 23:19:25 UTC 2024
+Elapsed time: 03h:40m:38s. Have a nice day!
diff --git a/tests/logs/RT-run-Derecho.log b/tests/logs/RT-run-Derecho.log
new file mode 100644
index 0000000000..9dae8589b0
--- /dev/null
+++ b/tests/logs/RT-run-Derecho.log
@@ -0,0 +1,415 @@
+******Regression Testing Script Started******
+derecho6
+Machine: derecho
+Account: nral0032
+rt.sh: Setting up derecho...
+Linking /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 to /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir
+Run regression test in: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018
+rt.sh: Checking & Updating test configuration...
+No update needed to rt.conf
+Verifying ECFLOW support...
+rt_utils.sh: s2swa_32bit_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_p8_mixedmode_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_p8_mixedmode_intel: Creating ECFLOW run task
+rt_utils.sh: s2swa_32bit_pdlib_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_gfsv17_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_gfsv17_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_gfsv17_iau_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_gfsv17_iau_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_gfsv17_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_gfsv17_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_mpi_gfsv17_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_mpi_gfsv17_intel: Creating ECFLOW run task
+rt_utils.sh: s2swa_32bit_pdlib_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_debug_gfsv17_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_debug_gfsv17_intel: Creating ECFLOW run task
+rt_utils.sh: s2swa_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_p8.v2.sfc_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_p8.v2.sfc_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_qr_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_qr_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_qr_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_qr_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_decomp_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_decomp_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_mpi_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_mpi_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_ciceC_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_ciceC_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_c192_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_c192_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_c192_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_c192_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_bmark_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_bmark_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_bmark_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_bmark_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_s2sa_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_s2sa_p8_intel: Creating ECFLOW run task
+rt_utils.sh: s2sw_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_noaero_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_noaero_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Creating ECFLOW run task
+rt_utils.sh: s2swa_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_debug_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_debug_p8_intel: Creating ECFLOW run task
+rt_utils.sh: s2sw_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_debug_noaero_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_debug_noaero_p8_intel: Creating ECFLOW run task
+rt_utils.sh: s2s_aoflux_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Creating ECFLOW run task
+rt_utils.sh: s2s_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_c48_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_c48_intel: Creating ECFLOW run task
+rt_utils.sh: s2swa_faster_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_p8_faster_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_p8_faster_intel: Creating ECFLOW run task
+rt_utils.sh: s2sw_pdlib_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_control_pdlib_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_control_pdlib_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_restart_pdlib_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_restart_pdlib_p8_intel: Creating ECFLOW run task
+rt_utils.sh: cpld_mpi_pdlib_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_mpi_pdlib_p8_intel: Creating ECFLOW run task
+rt_utils.sh: s2sw_pdlib_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: cpld_debug_pdlib_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: cpld_debug_pdlib_p8_intel: Creating ECFLOW run task
+rt_utils.sh: atm_dyn32_intel: Creating ECFLOW compile task
+rt_utils.sh: control_flake_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_flake_intel: Creating ECFLOW run task
+rt_utils.sh: control_CubedSphereGrid_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_CubedSphereGrid_intel: Creating ECFLOW run task
+rt_utils.sh: control_CubedSphereGrid_parallel_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_CubedSphereGrid_parallel_intel: Creating ECFLOW run task
+rt_utils.sh: control_latlon_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_latlon_intel: Creating ECFLOW run task
+rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Creating ECFLOW run task
+rt_utils.sh: control_c48_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_c48_intel: Creating ECFLOW run task
+rt_utils.sh: control_c48.v2.sfc_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_c48.v2.sfc_intel: Creating ECFLOW run task
+rt_utils.sh: control_c192_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_c192_intel: Creating ECFLOW run task
+rt_utils.sh: control_c384_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_c384_intel: Creating ECFLOW run task
+rt_utils.sh: control_c384gdas_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_c384gdas_intel: Creating ECFLOW run task
+rt_utils.sh: control_stochy_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_stochy_intel: Creating ECFLOW run task
+rt_utils.sh: control_stochy_restart_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_stochy_restart_intel: Creating ECFLOW run task
+rt_utils.sh: control_lndp_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_lndp_intel: Creating ECFLOW run task
+rt_utils.sh: control_iovr4_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_iovr4_intel: Creating ECFLOW run task
+rt_utils.sh: control_iovr5_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_iovr5_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8.v2.sfc_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8.v2.sfc_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_ugwpv1_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_ugwpv1_intel: Creating ECFLOW run task
+rt_utils.sh: control_restart_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_restart_p8_intel: Creating ECFLOW run task
+rt_utils.sh: control_noqr_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_noqr_p8_intel: Creating ECFLOW run task
+rt_utils.sh: control_restart_noqr_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_restart_noqr_p8_intel: Creating ECFLOW run task
+rt_utils.sh: control_decomp_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_decomp_p8_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_lndp_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_lndp_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_rrtmgp_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_rrtmgp_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_mynn_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_mynn_intel: Creating ECFLOW run task
+rt_utils.sh: merra2_thompson_intel: Computing PET bounds and tasks.
+rt_utils.sh: merra2_thompson_intel: Creating ECFLOW run task
+rt_utils.sh: regional_control_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_control_intel: Creating ECFLOW run task
+rt_utils.sh: regional_restart_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_restart_intel: Creating ECFLOW run task
+rt_utils.sh: regional_decomp_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_decomp_intel: Creating ECFLOW run task
+rt_utils.sh: regional_noquilt_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_noquilt_intel: Creating ECFLOW run task
+rt_utils.sh: regional_netcdf_parallel_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_netcdf_parallel_intel: Creating ECFLOW run task
+rt_utils.sh: regional_2dwrtdecomp_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_2dwrtdecomp_intel: Creating ECFLOW run task
+rt_utils.sh: regional_wofs_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_wofs_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_intel: Creating ECFLOW compile task
+rt_utils.sh: rap_control_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_intel: Creating ECFLOW run task
+rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Creating ECFLOW run task
+rt_utils.sh: rap_decomp_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_decomp_intel: Creating ECFLOW run task
+rt_utils.sh: rap_restart_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_restart_intel: Creating ECFLOW run task
+rt_utils.sh: rap_sfcdiff_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_sfcdiff_intel: Creating ECFLOW run task
+rt_utils.sh: rap_sfcdiff_decomp_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_sfcdiff_decomp_intel: Creating ECFLOW run task
+rt_utils.sh: rap_sfcdiff_restart_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_sfcdiff_restart_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_decomp_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_decomp_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_2threads_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_2threads_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_restart_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_restart_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_v1beta_intel: Computing PET bounds and tasks.
+rt_utils.sh: rrfs_v1beta_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_v1nssl_intel: Computing PET bounds and tasks.
+rt_utils.sh: rrfs_v1nssl_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Computing PET bounds and tasks.
+rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Creating ECFLOW run task
+rt_utils.sh: csawmg_intel: Creating ECFLOW compile task
+rt_utils.sh: control_csawmg_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_csawmg_intel: Creating ECFLOW run task
+rt_utils.sh: control_ras_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_ras_intel: Creating ECFLOW run task
+rt_utils.sh: wam_intel: Creating ECFLOW compile task
+rt_utils.sh: control_wam_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_wam_intel: Creating ECFLOW run task
+rt_utils.sh: atm_faster_dyn32_intel: Creating ECFLOW compile task
+rt_utils.sh: control_p8_faster_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_faster_intel: Creating ECFLOW run task
+rt_utils.sh: regional_control_faster_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_control_faster_intel: Creating ECFLOW run task
+rt_utils.sh: atm_debug_dyn32_intel: Creating ECFLOW compile task
+rt_utils.sh: control_CubedSphereGrid_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_CubedSphereGrid_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_stochy_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_stochy_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_lndp_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_lndp_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_csawmg_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_csawmg_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_ras_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_ras_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_diag_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_diag_debug_intel: Creating ECFLOW run task
+rt_utils.sh: control_debug_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_debug_p8_intel: Creating ECFLOW run task
+rt_utils.sh: regional_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_control_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_debug_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_debug_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_gf_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_gf_debug_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_c3_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_c3_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_unified_drag_suite_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_unified_drag_suite_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_diag_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_diag_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_cires_ugwp_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_cires_ugwp_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_unified_ugwp_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_unified_ugwp_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_lndp_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_lndp_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_progcld_thompson_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_progcld_thompson_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_noah_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_noah_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_sfcdiff_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_sfcdiff_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_v1beta_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rrfs_v1beta_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_clm_lake_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_clm_lake_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rap_flake_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_flake_debug_intel: Creating ECFLOW run task
+rt_utils.sh: gnv1_c96_no_nest_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: gnv1_c96_no_nest_debug_intel: Creating ECFLOW run task
+rt_utils.sh: wam_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: control_wam_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_wam_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_dyn32_phy32_intel: Creating ECFLOW compile task
+rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: rap_control_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: rap_restart_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_restart_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_dyn32_phy32_faster_intel: Creating ECFLOW compile task
+rt_utils.sh: conus13km_control_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_control_intel: Creating ECFLOW run task
+rt_utils.sh: conus13km_2threads_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_2threads_intel: Creating ECFLOW run task
+rt_utils.sh: conus13km_restart_mismatch_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_restart_mismatch_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_dyn64_phy32_intel: Creating ECFLOW compile task
+rt_utils.sh: rap_control_dyn64_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_dyn64_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_dyn32_phy32_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks.
+rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Creating ECFLOW run task
+rt_utils.sh: conus13km_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_debug_intel: Creating ECFLOW run task
+rt_utils.sh: conus13km_debug_qr_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_debug_qr_intel: Creating ECFLOW run task
+rt_utils.sh: conus13km_radar_tten_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: conus13km_radar_tten_debug_intel: Creating ECFLOW run task
+rt_utils.sh: rrfs_dyn64_phy32_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Creating ECFLOW run task
+rt_utils.sh: hafsw_intel: Creating ECFLOW compile task
+rt_utils.sh: hafs_regional_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_atm_ocn_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_atm_ocn_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_atm_wav_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_atm_wav_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_1nest_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_1nest_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_global_1nest_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_global_1nest_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Creating ECFLOW run task
+rt_utils.sh: gnv1_nested_intel: Computing PET bounds and tasks.
+rt_utils.sh: gnv1_nested_intel: Creating ECFLOW run task
+rt_utils.sh: hafsw_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Creating ECFLOW run task
+rt_utils.sh: hafsw_faster_intel: Creating ECFLOW compile task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_mom6w_intel: Creating ECFLOW compile task
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_all_intel: Creating ECFLOW compile task
+rt_utils.sh: hafs_regional_docn_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_docn_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_docn_oisst_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_docn_oisst_intel: Creating ECFLOW run task
+rt_utils.sh: hafs_regional_datm_cdeps_intel: Computing PET bounds and tasks.
+rt_utils.sh: hafs_regional_datm_cdeps_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_intel: Creating ECFLOW compile task
+rt_utils.sh: datm_cdeps_control_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_control_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_restart_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_restart_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_control_gefs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_control_gefs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_iau_gefs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_iau_gefs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_stochy_gefs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_stochy_gefs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_bulk_gefs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_bulk_gefs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_mx025_gefs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_mx025_gefs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_gfs_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_gfs_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: datm_cdeps_debug_cfsr_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_debug_cfsr_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_faster_intel: Creating ECFLOW compile task
+rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_land_intel: Creating ECFLOW compile task
+rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_lnd_era5_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_lnd_era5_intel: Creating ECFLOW run task
+rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Computing PET bounds and tasks.
+rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Creating ECFLOW run task
+rt_utils.sh: atml_intel: Creating ECFLOW compile task
+rt_utils.sh: control_p8_atmlnd_sbs_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_atmlnd_sbs_intel: Creating ECFLOW run task
+rt_utils.sh: control_p8_atmlnd_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_p8_atmlnd_intel: Creating ECFLOW run task
+rt_utils.sh: control_restart_p8_atmlnd_intel: Computing PET bounds and tasks.
+rt_utils.sh: control_restart_p8_atmlnd_intel: Creating ECFLOW run task
+rt_utils.sh: atmw_intel: Creating ECFLOW compile task
+rt_utils.sh: atmwav_control_noaero_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: atmwav_control_noaero_p8_intel: Creating ECFLOW run task
+rt_utils.sh: atmaero_intel: Creating ECFLOW compile task
+rt_utils.sh: atmaero_control_p8_intel: Computing PET bounds and tasks.
+rt_utils.sh: atmaero_control_p8_intel: Creating ECFLOW run task
+rt_utils.sh: atmaero_control_p8_rad_intel: Computing PET bounds and tasks.
+rt_utils.sh: atmaero_control_p8_rad_intel: Creating ECFLOW run task
+rt_utils.sh: atmaero_control_p8_rad_micro_intel: Computing PET bounds and tasks.
+rt_utils.sh: atmaero_control_p8_rad_micro_intel: Creating ECFLOW run task
+rt_utils.sh: atmaq_debug_intel: Creating ECFLOW compile task
+rt_utils.sh: regional_atmaq_debug_intel: Computing PET bounds and tasks.
+rt_utils.sh: regional_atmaq_debug_intel: Creating ECFLOW run task
+rt_utils.sh: Starting ECFLOW run
+ECF_HOST: derecho6, ECF_PORT: 39982
+ecflow_server is NOT running on derecho6:39982
+Wed 24 Apr 2024 12:50:01 PM UTC
+
+User "38482" attempting to start ecf server on "derecho6" using ECF_PORT "39982" and with:
+ECF_HOME : "/glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018/ecflow_server"
+ECF_LOG : "derecho6.39982.ecf.log"
+ECF_CHECK : "derecho6.39982.check"
+ECF_CHECKOLD : "derecho6.39982.check.b"
+ECF_OUT : "/dev/null"
+
+client version is Ecflow version(5.8.4) boost(1.78.0) compiler(gcc 12.2.0) protocol(JSON cereal 1.3.0) openssl(enabled) Compiled on Sep 20 2023 09:36:19
+Checking if the server is already running on derecho6 and port 39982
+
+Backing up check point and log files
+
+OK starting ecFlow server...
+
+Placing server into RESTART mode...
+restart of server failed
+rt.sh finished
+rt.sh: Cleaning up...
+rt_utils.sh: Stopping ECFLOW Workflow...
diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log
new file mode 100644
index 0000000000..393c54d52a
--- /dev/null
+++ b/tests/logs/RT-run-Hercules.log
@@ -0,0 +1,16 @@
+******Regression Testing Script Started******
+hercules-login-1.hpc.msstate.edu
+Machine: hercules
+Account: epic
+rt.sh: Setting up hercules...
+Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir
+Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786
+rt.sh: Checking & Updating test configuration...
+No update needed to rt.conf
+rt.sh: Getting error information...
+Exited at line 1062 having code 1
+rt.sh: Exited abnormally, killing workflow and cleaning up
+rt_utils.sh: Killing ECFLOW Workflow...
+rt.sh finished
+rt.sh: Cleaning up...
+rt_utils.sh: Stopping ECFLOW Workflow...
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 25a1acb339..19ed992c48 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1
+64df90f39f00b9682ca74b29f783bd0a37994a4a
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,261 +36,326 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22222
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44890
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:24, 10:54]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 02:14](3039 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:31]
-PASS -- TEST 'cpld_control_gfsv17_intel' [03:54, 03:05](1652 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:17, 03:12](1802 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [41:43, 03:14](926 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [03:55, 01:49](1626 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 04:32]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [16:07, 02:55](1678 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:26, 10:38]
-PASS -- TEST 'cpld_control_p8_intel' [08:58, 01:47](3068 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 02:32](3067 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [54:51, 01:57](3124 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 01:49](3095 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [53:20, 01:02](3145 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:58, 02:17](3384 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:58, 01:47](3066 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 02:13](2997 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 01:51](3068 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 01:44](3034 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:25, 10:13]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:59, 01:56](1644 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:59, 02:22](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:25, 09:54]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:59, 02:22](1697 MB)
-
-PASS -- COMPILE 's2s_intel' [12:25, 09:44]
-PASS -- TEST 'cpld_control_c48_intel' [09:58, 00:53](2673 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:09]
-PASS -- TEST 'cpld_control_p8_faster_intel' [04:54, 02:26](3065 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:32, 15:35]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:52, 01:18](1668 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:45, 01:30](973 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [41:16, 01:45](1643 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:24, 04:24]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:01, 01:48](1687 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [16:30, 10:11]
-PASS -- TEST 'control_flake_intel' [59:36, 00:46](634 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [59:36, 01:17](1532 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [59:36, 01:18](1536 MB)
-PASS -- TEST 'control_latlon_intel' [59:36, 00:21](1532 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:36, 00:32](1537 MB)
-PASS -- TEST 'control_c48_intel' [59:35, 01:35](1613 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [59:35, 00:58](736 MB)
-PASS -- TEST 'control_c192_intel' [59:36, 01:24](1650 MB)
-PASS -- TEST 'control_c384_intel' [59:40, 02:05](1969 MB)
-PASS -- TEST 'control_c384gdas_intel' [59:40, 03:24](1150 MB)
-PASS -- TEST 'control_stochy_intel' [59:36, 00:29](590 MB)
-PASS -- TEST 'control_stochy_restart_intel' [54:00, 00:53](393 MB)
-PASS -- TEST 'control_lndp_intel' [59:31, 00:42](591 MB)
-PASS -- TEST 'control_iovr4_intel' [58:33, 00:22](584 MB)
-PASS -- TEST 'control_iovr5_intel' [58:24, 01:10](585 MB)
-PASS -- TEST 'control_p8_intel' [56:39, 02:34](1563 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [56:39, 02:27](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [55:35, 02:25](1572 MB)
-PASS -- TEST 'control_restart_p8_intel' [28:30, 02:18](751 MB)
-PASS -- TEST 'control_noqr_p8_intel' [55:21, 02:33](1558 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [28:30, 02:19](754 MB)
-PASS -- TEST 'control_decomp_p8_intel' [53:33, 02:27](1563 MB)
-PASS -- TEST 'control_2threads_p8_intel' [53:20, 01:06](1653 MB)
-PASS -- TEST 'control_p8_lndp_intel' [52:32, 00:43](1563 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [52:31, 02:24](1619 MB)
-PASS -- TEST 'control_p8_mynn_intel' [51:54, 02:38](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [49:55, 02:52](1579 MB)
-PASS -- TEST 'regional_control_intel' [48:13, 00:48](629 MB)
-PASS -- TEST 'regional_restart_intel' [39:09, 01:08](801 MB)
-PASS -- TEST 'regional_decomp_intel' [47:02, 00:14](628 MB)
-PASS -- TEST 'regional_2threads_intel' [46:57, 00:17](723 MB)
-PASS -- TEST 'regional_noquilt_intel' [45:04, 00:29](1168 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [44:10, 01:06](633 MB)
-PASS -- TEST 'regional_wofs_intel' [43:21, 01:01](1607 MB)
-
-PASS -- COMPILE 'ifi_intel' [09:23, 08:35]
-PASS -- TEST 'regional_ifi_control_intel' [01:36, 00:34](630 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [01:36, 00:51](628 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [01:37, 00:45](718 MB)
-
-PASS -- COMPILE 'rrfs_intel' [31:46, 09:12]
-PASS -- TEST 'rap_control_intel' [38:13, 02:12](970 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [38:14, 00:49](1146 MB)
-PASS -- TEST 'rap_decomp_intel' [37:03, 01:42](970 MB)
-PASS -- TEST 'rap_2threads_intel' [34:44, 02:34](1058 MB)
-PASS -- TEST 'rap_restart_intel' [19:09, 02:24](845 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [32:06, 02:37](972 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:08, 02:07](971 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [18:32, 02:54](847 MB)
-PASS -- TEST 'hrrr_control_intel' [30:25, 02:25](963 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [29:22, 01:52](966 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [28:49, 01:31](1048 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [21:51, 00:32](796 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [28:42, 03:06](965 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [28:38, 00:40](1929 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [27:59, 00:36](1918 MB)
-
-PASS -- COMPILE 'csawmg_intel' [53:14, 08:43]
-PASS -- TEST 'control_csawmg_intel' [16:45, 00:48](656 MB)
-
-PASS -- COMPILE 'wam_intel' [58:20, 08:29]
-PASS -- TEST 'control_wam_intel' [11:07, 00:48](329 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [58:20, 09:05]
-PASS -- TEST 'control_p8_faster_intel' [10:17, 02:47](1559 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:02, 00:32](626 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [53:13, 04:41]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:44, 00:42](1557 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:44, 00:43](1559 MB)
-PASS -- TEST 'control_stochy_debug_intel' [15:44, 00:52](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [15:44, 01:10](761 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [15:44, 00:58](798 MB)
-PASS -- TEST 'control_ras_debug_intel' [15:44, 00:34](767 MB)
-PASS -- TEST 'control_diag_debug_intel' [15:44, 01:07](1619 MB)
-PASS -- TEST 'control_debug_p8_intel' [15:44, 01:13](1589 MB)
-PASS -- TEST 'regional_debug_intel' [15:43, 00:48](687 MB)
-PASS -- TEST 'rap_control_debug_intel' [15:44, 01:06](1146 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [15:44, 00:53](1139 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [15:44, 00:47](1141 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [15:01, 01:10](1141 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:58, 00:19](1151 MB)
-PASS -- TEST 'rap_diag_debug_intel' [12:37, 00:47](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:15, 01:04](1145 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:13, 00:50](1146 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [11:53, 01:13](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:03, 00:47](1146 MB)
-PASS -- TEST 'rap_noah_debug_intel' [10:03, 00:44](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [09:57, 00:28](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:47, 00:35](1141 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:06, 00:43](1139 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:05, 00:40](1147 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:05, 00:31](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:17, 02:53](1148 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [48:05, 03:18]
-PASS -- TEST 'control_wam_debug_intel' [16:48, 00:59](370 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [52:09, 08:29]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:29, 01:16](1015 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:25, 03:07](850 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:21, 03:54](846 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:18, 02:58](914 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:32](897 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:20](849 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [37:41, 01:48](744 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [33:27, 01:10](729 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [54:14, 10:43]
-PASS -- TEST 'conus13km_control_intel' [04:59, 00:46](1056 MB)
-PASS -- TEST 'conus13km_2threads_intel' [30:06, 00:36](1036 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [30:05, 00:37](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [50:04, 08:47]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 00:58](872 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:57, 03:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:38, 01:09](1019 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:38, 01:17](1023 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:38, 01:25](1111 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 01:18](811 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [16:39, 00:36](1100 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:38, 00:21](1177 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:35, 03:23]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:37, 01:03](1044 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:24, 09:50]
-PASS -- TEST 'hafs_regional_atm_intel' [04:20, 02:14](673 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:05, 00:29](1019 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [02:36, 02:17](713 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:41](755 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:16, 01:57](767 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:12, 01:35](439 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:49, 01:50](460 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [59:38, 01:07](332 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:41, 02:35](397 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:27, 01:19](474 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:25, 00:59](470 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:22, 00:51](531 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:16, 00:50](365 MB)
-PASS -- TEST 'gnv1_nested_intel' [57:33, 01:46](732 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:16, 03:46]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:13, 01:32](626 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:24, 10:23]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:22, 01:24](579 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:03, 01:31](746 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:24, 10:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [56:03, 01:10](749 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:34, 09:32]
-PASS -- TEST 'hafs_regional_docn_intel' [55:10, 01:50](709 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [54:23, 01:48](696 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:03, 01:05](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [20:34, 07:49]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:32, 00:24](762 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [48:09, 00:50](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:15, 00:32](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [48:57, 00:14](647 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [46:52, 00:34](645 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [46:13, 00:54](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [45:47, 00:48](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [45:34, 00:54](643 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:24, 01:04](646 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:28, 01:11](629 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:48, 00:53](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [41:30, 00:43](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [41:08, 00:31](2019 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [20:34, 08:27]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [32:27, 01:02](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [20:35, 01:04]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [39:22, 00:18](264 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [39:21, 01:11](413 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [32:44, 00:57](413 MB)
-
-PASS -- COMPILE 'atml_intel' [22:37, 09:51]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:09, 02:56](1599 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [38:02, 02:35](1603 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [26:21, 01:10](802 MB)
-
-PASS -- COMPILE 'atmw_intel' [38:53, 09:03]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [32:38, 02:33](1603 MB)
-
-PASS -- COMPILE 'atmaero_intel' [36:53, 08:52]
-PASS -- TEST 'atmaero_control_p8_intel' [32:43, 01:53](2915 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [32:43, 02:17](2970 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:43, 01:58](2985 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [35:49, 03:27]
-PASS -- TEST 'regional_atmaq_debug_intel' [30:34, 02:09](4495 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:44]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [58:24, 01:49](3039 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:52]
+PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 02:03](1649 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:56, 03:20](1773 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:29](900 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:51](1622 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:19]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [04:31, 03:10](1683 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:24, 10:44]
+PASS -- TEST 'cpld_control_p8_intel' [58:24, 01:33](3065 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:24, 02:02](3066 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [49:22, 01:39](3121 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [58:24, 01:32](3089 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [49:22, 02:16](3142 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [58:24, 01:25](3379 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [58:24, 02:01](3064 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [58:25, 01:50](2994 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:24, 01:57](3065 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [58:24, 02:16](3031 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:23, 10:10]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [59:25, 01:06](1644 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:25, 01:29](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [59:25, 01:30](1697 MB)
+
+PASS -- COMPILE 's2s_intel' [10:24, 09:33]
+PASS -- TEST 'cpld_control_c48_intel' [59:23, 01:03](2672 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39]
+PASS -- TEST 'cpld_control_p8_faster_intel' [52:15, 02:16](3068 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:00]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:41, 01:36](1667 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 01:33](972 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:13, 01:17](1638 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:31, 01:23](1687 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:51]
+PASS -- TEST 'control_flake_intel' [55:07, 01:02](634 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [55:07, 00:41](1528 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:07, 00:47](1542 MB)
+PASS -- TEST 'control_latlon_intel' [55:07, 00:44](1538 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:54](1530 MB)
+PASS -- TEST 'control_c48_intel' [55:06, 01:09](1611 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [55:06, 00:46](736 MB)
+PASS -- TEST 'control_c192_intel' [55:07, 00:54](1649 MB)
+PASS -- TEST 'control_c384_intel' [55:11, 01:52](1966 MB)
+PASS -- TEST 'control_c384gdas_intel' [55:11, 02:44](1150 MB)
+PASS -- TEST 'control_stochy_intel' [55:07, 00:55](590 MB)
+PASS -- TEST 'control_stochy_restart_intel' [36:18, 00:21](392 MB)
+PASS -- TEST 'control_lndp_intel' [55:07, 01:00](589 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_intel' [, ]( MB)
+PASS -- TEST 'control_iovr5_intel' [50:07, 00:25](583 MB)
+PASS -- TEST 'control_p8_intel' [49:02, 01:38](1561 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [48:54, 02:13](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [47:54, 02:26](1573 MB)
+PASS -- TEST 'control_restart_p8_intel' [26:21, 01:57](751 MB)
+PASS -- TEST 'control_noqr_p8_intel' [47:54, 02:13](1557 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [22:31, 01:59](754 MB)
+PASS -- TEST 'control_decomp_p8_intel' [44:08, 02:04](1556 MB)
+PASS -- TEST 'control_2threads_p8_intel' [42:21, 01:52](1657 MB)
+PASS -- TEST 'control_p8_lndp_intel' [38:25, 01:06](1563 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [37:06, 02:25](1621 MB)
+PASS -- TEST 'control_p8_mynn_intel' [36:18, 02:00](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [33:31, 02:54](1578 MB)
+PASS -- TEST 'regional_control_intel' [33:25, 00:25](630 MB)
+PASS -- TEST 'regional_restart_intel' [27:21, 00:56](798 MB)
+PASS -- TEST 'regional_decomp_intel' [33:14, 00:58](628 MB)
+PASS -- TEST 'regional_2threads_intel' [31:23, 00:46](718 MB)
+PASS -- TEST 'regional_noquilt_intel' [30:34, 01:00](1164 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [30:30, 00:52](630 MB)
+PASS -- TEST 'regional_wofs_intel' [30:29, 00:27](1602 MB)
+
+PASS -- COMPILE 'ifi_intel' [09:22, 08:20]
+PASS -- TEST 'regional_ifi_control_intel' [55:07, 00:28](630 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [55:07, 00:25](628 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [55:08, 01:12](725 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:23, 09:05]
+PASS -- TEST 'rap_control_intel' [30:28, 02:41](970 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:17, 00:51](1146 MB)
+PASS -- TEST 'rap_decomp_intel' [29:14, 02:07](974 MB)
+PASS -- TEST 'rap_2threads_intel' [26:59, 02:10](1056 MB)
+PASS -- TEST 'rap_restart_intel' [04:40, 02:17](843 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [25:53, 02:22](972 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:57, 02:06](971 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [48:53, 02:29](843 MB)
+PASS -- TEST 'hrrr_control_intel' [23:55, 02:58](963 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [23:40, 02:52](966 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [23:35, 02:59](1045 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [51:39, 00:21](795 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [23:34, 02:41](965 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [23:24, 00:36](1929 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:06, 01:10](1919 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:23, 08:43]
+PASS -- TEST 'control_csawmg_intel' [22:59, 01:11](656 MB)
+
+PASS -- COMPILE 'wam_intel' [09:23, 08:23]
+PASS -- TEST 'control_wam_intel' [22:31, 00:26](331 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:58]
+PASS -- TEST 'control_p8_faster_intel' [22:16, 02:06](1561 MB)
+PASS -- TEST 'regional_control_faster_intel' [21:28, 00:33](626 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:24]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [55:05, 01:01](1557 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:10, 00:28](1559 MB)
+PASS -- TEST 'control_stochy_debug_intel' [20:26, 00:34](757 MB)
+PASS -- TEST 'control_lndp_debug_intel' [53:10, 00:16](757 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [18:07, 00:35](798 MB)
+PASS -- TEST 'control_ras_debug_intel' [17:37, 00:25](768 MB)
+PASS -- TEST 'control_diag_debug_intel' [17:29, 01:04](1619 MB)
+PASS -- TEST 'control_debug_p8_intel' [15:28, 01:15](1588 MB)
+PASS -- TEST 'regional_debug_intel' [15:14, 00:45](687 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:26, 00:54](1145 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [03:36, 00:54](1140 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [55:40, 00:35](1140 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [54:58, 01:18](1145 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:39, 00:33](1145 MB)
+PASS -- TEST 'rap_diag_debug_intel' [42:00, 00:42](1230 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [53:33, 00:32](1145 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [53:19, 00:44](1145 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [52:30, 00:32](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:44, 01:16](1145 MB)
+PASS -- TEST 'rap_noah_debug_intel' [51:39, 00:40](1148 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [50:59, 00:48](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:46, 00:47](1142 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [36:51, 00:29](1136 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [50:03, 00:28](1144 MB)
+PASS -- TEST 'rap_flake_debug_intel' [49:21, 01:16](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:04, 03:00](1151 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:20, 03:11]
+PASS -- TEST 'control_wam_debug_intel' [48:53, 00:40](369 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:24]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:41, 01:20](1013 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:15, 02:26](851 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:36, 04:11](846 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:56, 02:12](908 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [42:24, 03:12](900 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:58, 02:28](847 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:46, 01:53](743 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:16, 01:07](730 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:29, 10:37]
+PASS -- TEST 'conus13km_control_intel' [41:58, 01:16](1055 MB)
+PASS -- TEST 'conus13km_2threads_intel' [28:24, 00:47](1036 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [26:27, 01:02](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:28, 08:32]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:54, 01:16](875 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:25, 03:17]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [41:50, 00:41](1020 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [41:45, 00:52](1023 MB)
+PASS -- TEST 'conus13km_debug_intel' [41:42, 00:32](1106 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [41:36, 00:32](783 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [41:15, 00:52](1088 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:56, 01:07](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:23, 03:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:49, 00:33](1043 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:34, 09:48]
+PASS -- TEST 'hafs_regional_atm_intel' [38:15, 01:39](673 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:06, 01:14](1025 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:59, 01:50](714 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [37:39, 02:01](753 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:19, 02:07](910 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:16, 01:35](432 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:41, 01:28](456 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [35:22, 01:32](330 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:18, 02:29](400 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:54, 00:57](472 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:01, 01:06](470 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:38, 01:37](532 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:11, 00:57](365 MB)
+PASS -- TEST 'gnv1_nested_intel' [30:08, 01:11](730 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [12:26, 03:51]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:31, 01:00](632 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:35, 10:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:23, 01:05](577 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:35](747 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [31:46, 09:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:18, 01:20](748 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:44, 09:31]
+PASS -- TEST 'hafs_regional_docn_intel' [21:30, 01:49](710 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:15, 01:54](695 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:42, 00:39](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [17:36, 08:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:38, 01:09](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:14, 01:04](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:13, 00:44](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [53:11, 00:55](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:52, 00:13](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:28, 01:09](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:31, 01:05](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [49:18, 00:24](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:18, 00:54](645 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [49:13, 00:52](623 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 00:59](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [47:59, 01:02](2011 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [41:34, 01:00](2015 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [24:44, 08:42]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [37:14, 01:08](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [16:33, 01:04]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:53, 00:20](265 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [29:15, 01:05](413 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:42, 00:59](412 MB)
+
+PASS -- COMPILE 'atml_intel' [25:45, 10:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:46, 02:10](1602 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [26:17, 02:33](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [17:32, 00:50](803 MB)
+
+PASS -- COMPILE 'atmw_intel' [30:51, 09:03]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:08, 02:14](1603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [22:44, 08:58]
+PASS -- TEST 'atmaero_control_p8_intel' [14:04, 02:13](2915 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [14:04, 01:46](2974 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:04, 02:33](2984 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:31, 03:27]
+PASS -- TEST 'regional_atmaq_debug_intel' [18:55, 01:58](4511 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 19:37:15
-Ending Date/Time: 20240422 21:57:39
-Total Time: 02h:20m:51s
+Starting Date/Time: 20240425 13:49:52
+Ending Date/Time: 20240425 17:25:30
+Total Time: 03h:36m:04s
Compiles Completed: 35/35
-Tests Completed: 173/173
+Tests Completed: 172/173
+Failed Tests:
+* TEST control_iovr4_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_acorn/run_control_iovr4_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ACORN REGRESSION TESTING LOG====
+====START OF ACORN REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+64df90f39f00b9682ca74b29f783bd0a37994a4a
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28522
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-b) - NEW BASELINES FROM FILE: test_changes.list
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:44]
+PASS -- TEST 'control_iovr4_intel' [21:34, 00:52](583 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240425 17:28:05
+Ending Date/Time: 20240425 17:42:03
+Total Time: 00h:14m:07s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index b0d8347b23..614b7b6b15 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+fe4bb76565de0a5f3261b276fa392d65cb046e96
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,292 +36,268 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_41899
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_68317
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:10]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:34, 04:53](3075 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:22]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:22, 13:41](1691 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:51, 15:04](1828 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:57, 07:12](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:25, 15:44](1667 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:14, 08:48]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:14, 22:14](1701 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:15, 19:07]
-PASS -- TEST 'cpld_control_p8_intel' [08:58, 05:35](3093 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:35](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:45, 03:18](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:58, 05:37](3130 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:45, 03:18](3178 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:46, 05:32](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:00, 04:38](3397 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:02, 05:36](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:18, 08:45](3639 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:05, 05:58](3615 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [27:45, 09:46](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:58, 07:00](4649 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:31, 05:13](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:19, 18:27]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:11](1682 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:14](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:13, 08:48]
-PASS -- TEST 'cpld_debug_p8_intel' [11:06, 07:50](3154 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:13, 08:15]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:40, 05:18](1712 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:07]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:17](1735 MB)
-
-PASS -- COMPILE 's2s_intel' [15:15, 14:04]
-PASS -- TEST 'cpld_control_c48_intel' [08:20, 06:40](2665 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:27, 24:03]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:15, 05:29](3104 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:14, 19:21]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:47, 13:58](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:14](1013 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:46, 15:56](1673 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 08:50]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:42, 22:56](1720 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:35]
-PASS -- TEST 'control_flake_intel' [04:35, 03:24](671 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:15](740 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
-PASS -- TEST 'control_c384gdas_intel' [16:00, 07:16](1203 MB)
-PASS -- TEST 'control_stochy_intel' [02:32, 01:27](624 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:29, 00:51](438 MB)
-PASS -- TEST 'control_lndp_intel' [02:34, 01:23](629 MB)
-PASS -- TEST 'control_iovr4_intel' [03:38, 02:07](624 MB)
-PASS -- TEST 'control_iovr5_intel' [03:45, 02:06](620 MB)
-PASS -- TEST 'control_p8_intel' [04:26, 02:30](1596 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:25, 02:27](1596 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:25, 02:28](1607 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:31, 01:24](800 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:31, 02:28](1597 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:24](806 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:24, 02:32](1594 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:55, 04:21](1595 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:16](1652 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:20, 02:31](1611 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
-PASS -- TEST 'regional_control_intel' [06:26, 04:28](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:11, 02:32](803 MB)
-PASS -- TEST 'regional_decomp_intel' [06:25, 04:43](630 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:20, 04:24](1162 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 04:29](630 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:21, 04:29](632 MB)
-PASS -- TEST 'regional_wofs_intel' [07:33, 05:41](1604 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:20, 11:17]
-PASS -- TEST 'rap_control_intel' [08:33, 06:13](1008 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 03:41](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [08:54, 06:23](1006 MB)
-PASS -- TEST 'rap_restart_intel' [05:26, 03:12](885 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:40, 06:06](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 06:41](1007 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:34](881 MB)
-PASS -- TEST 'hrrr_control_intel' [06:02, 03:49](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:21, 03:05](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:43, 01:43](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:48, 06:22](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 07:26](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:42, 07:10](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:19, 10:21]
-PASS -- TEST 'control_csawmg_intel' [08:26, 05:48](692 MB)
-PASS -- TEST 'control_ras_intel' [04:09, 02:52](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:17, 09:22]
-PASS -- TEST 'control_wam_intel' [03:38, 01:55](382 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:35]
-PASS -- TEST 'control_p8_faster_intel' [05:07, 02:23](1604 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:01, 04:20](625 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:22]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:36, 02:54](800 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:34](798 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:16](840 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:34, 02:41](807 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
-PASS -- TEST 'control_debug_p8_intel' [04:14, 02:36](1629 MB)
-PASS -- TEST 'regional_debug_intel' [18:09, 16:20](667 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:36, 04:53](1182 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:08, 04:55](1180 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:43, 04:37](1183 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:51, 04:49](1180 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:18, 04:56](1264 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 04:46](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:36, 04:48](1183 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:43, 04:43](1182 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:32](1178 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:44, 04:37](1184 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:28](1184 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:32](1179 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:23](1183 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:34, 04:40](1181 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:20, 07:58](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:17, 05:23]
-PASS -- TEST 'control_wam_debug_intel' [05:24, 04:37](421 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:37]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:24, 03:29](1059 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:02]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:58, 04:58](3073 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:24]
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:47](1689 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 15:04](1824 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:07](959 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:06, 15:46](1665 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:16, 08:59]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:22](1706 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:17, 19:06]
+PASS -- TEST 'cpld_control_p8_intel' [09:05, 05:38](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:14, 05:33](3095 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:17](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:05, 05:33](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:20](3180 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:35](3090 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:37](3385 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:38](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 08:43](3634 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 05:50](3616 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [27:34, 09:39](4341 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:41, 07:03](4648 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:35, 05:12](3064 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:18, 18:31]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:46, 04:09](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:12](1727 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:15, 09:01]
+PASS -- TEST 'cpld_debug_p8_intel' [09:56, 07:36](3151 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:28]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:21, 05:10](1710 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:05]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 04:12](1728 MB)
+
+PASS -- COMPILE 's2s_intel' [15:17, 14:02]
+PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:35](2670 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:20, 22:47]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:27, 05:28](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:28]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:55, 14:03](1708 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 07:16](1019 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:00](1666 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:32]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:46, 22:54](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:20]
+PASS -- TEST 'control_flake_intel' [04:52, 03:23](667 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:25](1567 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 02:27](1572 MB)
+PASS -- TEST 'control_latlon_intel' [04:31, 02:22](1572 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:24](1568 MB)
+PASS -- TEST 'control_c48_intel' [08:28, 06:13](1616 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:17](734 MB)
+PASS -- TEST 'control_c192_intel' [11:09, 08:39](1690 MB)
+PASS -- TEST 'control_c384_intel' [16:38, 08:56](2011 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:05, 07:23](1199 MB)
+PASS -- TEST 'control_stochy_intel' [02:43, 01:25](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](443 MB)
+PASS -- TEST 'control_lndp_intel' [02:42, 01:22](626 MB)
+PASS -- TEST 'control_iovr4_intel' [03:42, 02:05](625 MB)
+PASS -- TEST 'control_iovr5_intel' [03:42, 02:06](624 MB)
+PASS -- TEST 'control_p8_intel' [04:27, 02:30](1601 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 02:30](1598 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:29, 02:28](1602 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:24, 01:24](804 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:26, 02:30](1585 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:29, 01:23](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:32](1591 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:21](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:17](1659 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:46, 02:30](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:44, 02:48](1603 MB)
+PASS -- TEST 'regional_control_intel' [06:07, 04:31](632 MB)
+PASS -- TEST 'regional_restart_intel' [04:16, 02:33](800 MB)
+PASS -- TEST 'regional_decomp_intel' [06:12, 04:43](629 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:03, 04:25](1159 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:04, 04:27](629 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:30](627 MB)
+PASS -- TEST 'regional_wofs_intel' [07:07, 05:35](1606 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:14, 10:56]
+PASS -- TEST 'rap_control_intel' [08:21, 06:06](1008 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 03:41](1191 MB)
+PASS -- TEST 'rap_decomp_intel' [08:22, 06:23](1006 MB)
+PASS -- TEST 'rap_restart_intel' [05:16, 03:11](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:04](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:15, 06:23](1003 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](881 MB)
+PASS -- TEST 'hrrr_control_intel' [05:14, 03:13](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 02:49](1088 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:53, 01:44](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:57](1001 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:21](1956 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:10](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:13, 10:02]
+PASS -- TEST 'control_csawmg_intel' [08:12, 05:48](695 MB)
+PASS -- TEST 'control_ras_intel' [04:36, 02:51](660 MB)
+
+PASS -- COMPILE 'wam_intel' [10:13, 09:21]
+PASS -- TEST 'control_wam_intel' [03:34, 01:53](382 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:20]
+PASS -- TEST 'control_p8_faster_intel' [04:52, 02:26](1606 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:16, 04:17](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:31]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:29](1595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:28](1600 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:50](800 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:46, 02:33](798 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:06, 03:57](840 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:33, 02:40](806 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:38, 02:32](1666 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:10, 02:35](1628 MB)
+PASS -- TEST 'regional_debug_intel' [17:13, 15:49](665 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:38, 04:39](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:33](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 04:35](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:43](1181 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:51](1266 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 04:44](1182 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:37, 04:42](1182 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:48](1184 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:30](1184 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:48](1181 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1182 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:34](1178 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:44, 05:30](1183 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:37, 04:37](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:53](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:12, 05:11]
+PASS -- TEST 'control_wam_debug_intel' [05:24, 04:36](418 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:17, 09:30]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:45, 03:30](1059 MB)
PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:45](884 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 02:53](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:05, 03:53](795 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:30](776 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:54]
-PASS -- TEST 'conus13km_control_intel' [05:05, 01:50](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:53, 00:58](1088 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:47, 09:52]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:07, 03:35](914 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:17, 05:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:28](1058 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:31, 04:29](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:43, 13:23](1135 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 13:27](821 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:57, 13:27](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:42, 06:05]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:30](1088 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:20, 17:40]
-PASS -- TEST 'hafs_regional_atm_intel' [07:01, 04:31](722 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:06, 05:09](1062 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:22](780 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:33, 11:01](798 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:11, 11:55](815 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:31, 04:40](477 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:42](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:18](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 06:19](457 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:16](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:05](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:17, 03:47](590 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:34, 01:14](430 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:24, 03:21](786 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:13, 08:07]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:14](613 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:11]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:21, 07:04](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:19, 07:05](691 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:03, 18:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 05:19](679 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:53, 16:02]
-PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:32](756 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:45, 05:31](739 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:08](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:48, 09:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:31](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:20](643 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:33, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:24](642 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:30](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:24, 02:20](638 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:44, 05:40](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 05:40](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:27](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:33, 03:52](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:35, 03:53](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:49, 06:33]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:31, 05:02](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:17, 07:50]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:31](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:58]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:11](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:06](453 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB)
-
-PASS -- COMPILE 'atml_intel' [14:18, 13:15]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:34, 07:03](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:26, 06:34](1641 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:20, 03:39](855 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:18, 12:49]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:32](1630 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:18, 11:00]
-PASS -- TEST 'atmaero_control_p8_intel' [06:10, 03:37](2950 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 04:15](2998 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:12, 06:25]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:05, 22:02](4537 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:15, 02:45](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 02:53](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:32](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:44]
+PASS -- TEST 'conus13km_control_intel' [04:41, 01:52](1086 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:31, 00:58](1086 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:07](972 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:48]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:36](906 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:04]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:29](1058 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:24](1058 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:03, 13:24](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:34](818 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:26](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:58]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:38](1081 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:21, 16:01]
+PASS -- TEST 'hafs_regional_atm_intel' [06:57, 04:34](720 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:02](1068 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](774 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:48, 10:49](798 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:01](819 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:40](479 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:47, 05:46](493 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:21](393 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:13](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:15](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:02](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 03:45](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:16](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:13, 03:22](787 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:08]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:15, 11:58](612 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:52]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:10](631 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:09](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:44]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:46, 05:17](679 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:19, 14:27]
+PASS -- TEST 'hafs_regional_docn_intel' [07:49, 05:33](755 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 05:33](737 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:09](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:17, 07:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:29, 01:32](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:20](644 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:24](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:24](648 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:31, 02:29](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:23](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:17, 05:39](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:56, 05:39](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:28](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 03:54](2016 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:54](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:11]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:03](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:22, 07:48]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:32](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:20]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:11](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:05](458 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:41](450 MB)
+
+PASS -- COMPILE 'atml_intel' [14:14, 13:00]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:35, 06:59](1628 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:22](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:31](855 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:20, 12:36]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:32](1641 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:13, 11:05]
+PASS -- TEST 'atmaero_control_p8_intel' [05:38, 03:38](2951 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:38, 04:15](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:19](3012 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:20, 06:30]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 22:05](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 06:31:47
-Ending Date/Time: 20240422 08:01:07
-Total Time: 01h:30m:07s
+Starting Date/Time: 20240424 06:22:13
+Ending Date/Time: 20240424 07:49:24
+Total Time: 01h:27m:53s
Compiles Completed: 37/37
-Tests Completed: 159/172
+Tests Completed: 171/172
Failed Tests:
-* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_intel.log
-* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_parallel_intel.log
-* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_latlon_intel.log
-* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_intel.log
-* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c48_intel.log
-* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c192_intel.log
-* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_c384_intel.log
-* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log
-* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_CubedSphereGrid_debug_intel.log
-* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_wrtGauss_netcdf_parallel_debug_intel.log
-* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_control_diag_debug_intel.log
-* TEST rap_progcld_thompson_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_rap_progcld_thompson_debug_intel.log
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_atmaero_control_p8_rad_micro_intel.log
+* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/work/zshrader/rt-2241/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -334,7 +310,7 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+fe4bb76565de0a5f3261b276fa392d65cb046e96
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -354,7 +330,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -369,102 +345,19 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_84317
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_96038
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:43]
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1563 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:27](1574 MB)
-PASS -- TEST 'control_latlon_intel' [04:15, 02:25](1576 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1565 MB)
-PASS -- TEST 'control_c48_intel' [08:20, 06:14](1618 MB)
-PASS -- TEST 'control_c192_intel' [10:38, 08:42](1682 MB)
-PASS -- TEST 'control_c384_intel' [12:47, 08:54](2006 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'merra2_thompson_intel' [, ]( MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:44]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:11, 02:31](1593 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:29](1601 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:42, 02:33](1663 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:34, 04:44](1184 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:19, 11:14]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:19](3013 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240422 09:08:46
-Ending Date/Time: 20240422 09:36:22
-Total Time: 00h:27m:48s
-Compiles Completed: 3/3
-Tests Completed: 12/13
-Failed Tests:
-* TEST merra2_thompson_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/rt-2173/tests/logs/log_derecho/run_merra2_thompson_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_63459
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:33]
-PASS -- TEST 'merra2_thompson_intel' [05:25, 02:47](1611 MB)
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:38]
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:42](1183 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 10:29:36
-Ending Date/Time: 20240422 10:49:44
-Total Time: 00h:20m:17s
+Starting Date/Time: 20240424 08:20:30
+Ending Date/Time: 20240424 08:35:15
+Total Time: 00h:14m:49s
Compiles Completed: 1/1
Tests Completed: 1/1
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 09a3a5fd63..fd4adb3416 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+7639d7a8818635cfa1836d63c56d424d895adb6d
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,338 +36,272 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_187503
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_155270
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:11, 18:05]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:36, 07:13](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:27]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:11, 13:54](1688 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:19, 14:54](1810 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:14, 07:26](946 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 14:58](1671 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:34]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [27:11, 24:23](1708 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:11, 18:17]
-PASS -- TEST 'cpld_control_p8_intel' [11:56, 08:22](3100 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:09](3100 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:32, 05:10](3155 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:56, 08:17](3124 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:12](3177 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 06:42](3412 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:49, 07:54](3099 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:49, 07:16](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:16](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:19, 10:22](3271 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 07:27](3603 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:11, 13:05](4041 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:51, 09:19](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:00, 08:04](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [18:11, 17:46]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:14, 05:10](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:32, 05:23](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:37]
-PASS -- TEST 'cpld_debug_p8_intel' [13:32, 10:12](3132 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:11, 12:04]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:08, 06:01](1701 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:44]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:29, 05:27](1732 MB)
-
-PASS -- COMPILE 's2s_intel' [16:13, 15:56]
-PASS -- TEST 'cpld_control_c48_intel' [08:38, 06:53](2664 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:28]
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:42, 08:06](3098 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:30]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:22, 14:58](1700 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:54](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:40](1681 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:12, 12:12]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:53](1717 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:48]
-PASS -- TEST 'control_flake_intel' [04:36, 03:38](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:14, 03:24](1568 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:14, 03:26](1580 MB)
-PASS -- TEST 'control_latlon_intel' [04:03, 03:02](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 03:17](1569 MB)
-PASS -- TEST 'control_c48_intel' [08:37, 06:42](1604 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:02, 05:39](723 MB)
-PASS -- TEST 'control_c192_intel' [11:28, 10:03](1685 MB)
-PASS -- TEST 'control_c384_intel' [20:53, 18:00](1984 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:51, 14:07](1188 MB)
-PASS -- TEST 'control_stochy_intel' [02:38, 02:05](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:17](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:37, 02:08](628 MB)
-PASS -- TEST 'control_iovr4_intel' [03:38, 02:37](623 MB)
-PASS -- TEST 'control_iovr5_intel' [03:37, 02:37](623 MB)
-PASS -- TEST 'control_p8_intel' [05:46, 03:18](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:28](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 03:44](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:44, 01:52](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:43, 03:33](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:46, 01:57](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:21](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:46](1686 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:44](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:08](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:06, 03:29](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:52, 03:40](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:20, 04:59](615 MB)
-PASS -- TEST 'regional_restart_intel' [03:59, 02:59](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:56, 05:15](615 MB)
-PASS -- TEST 'regional_2threads_intel' [03:57, 02:54](759 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:57, 04:40](1154 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 05:01](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:53, 04:50](615 MB)
-PASS -- TEST 'regional_wofs_intel' [07:55, 06:21](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:11, 12:51]
-PASS -- TEST 'rap_control_intel' [09:53, 07:17](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:32, 04:00](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [09:53, 07:22](1013 MB)
-PASS -- TEST 'rap_2threads_intel' [09:02, 06:09](1099 MB)
-PASS -- TEST 'rap_restart_intel' [05:40, 03:47](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:02, 06:52](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 07:09](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:59](879 MB)
-PASS -- TEST 'hrrr_control_intel' [05:44, 03:49](1004 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 03:56](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:44, 03:08](1078 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:46, 01:59](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:59, 06:46](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:55, 08:12](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:00](1947 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:10, 12:53]
-PASS -- TEST 'control_csawmg_intel' [08:06, 06:41](696 MB)
-PASS -- TEST 'control_ras_intel' [04:35, 03:26](657 MB)
-
-PASS -- COMPILE 'wam_intel' [12:10, 12:08]
-PASS -- TEST 'control_wam_intel' [03:36, 02:09](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:34]
-PASS -- TEST 'control_p8_faster_intel' [05:53, 03:34](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:00, 04:41](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 11:54]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:06, 03:03](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:14, 03:01](1589 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:34, 03:20](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:37, 03:03](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:06, 04:22](823 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:31, 03:12](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:14, 03:03](1641 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:06, 03:25](1618 MB)
-PASS -- TEST 'regional_debug_intel' [18:03, 16:52](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:41, 05:08](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:35, 04:57](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:39, 05:05](1167 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 05:03](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:40, 05:13](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:53, 05:18](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 05:06](1165 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 05:13](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:21](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:13](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:41, 05:17](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 05:09](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:42, 08:25](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 05:16](1162 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:58](1167 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:38, 05:04](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:51, 08:28](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:11, 08:38]
-PASS -- TEST 'control_wam_debug_intel' [05:29, 04:54](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 12:07]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:50, 03:54](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:30, 06:13](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:20](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:22, 05:22](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:48](936 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:31](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:28, 04:30](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 02:08](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:14, 14:32]
-PASS -- TEST 'conus13km_control_intel' [05:41, 02:29](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:17](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:03, 01:28](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 12:04]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:29](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 09:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:52](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:28, 14:16](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:13, 14:06](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1111 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:02, 14:42](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:13, 08:47]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:59](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:11, 16:18]
-PASS -- TEST 'hafs_regional_atm_intel' [07:55, 05:26](706 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:53, 04:42](1059 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 07:42](753 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:31, 11:39](789 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:16, 13:02](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:19](479 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:48, 06:46](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:43, 02:56](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:17](444 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 03:48](507 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:23, 03:45](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:03, 04:49](576 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:47, 01:45](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:44, 04:05](773 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:24, 12:49](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [19:15, 18:29]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:50](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:54](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 16:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:22, 06:09](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:11, 15:10]
-PASS -- TEST 'hafs_regional_docn_intel' [08:46, 06:08](747 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:08](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:59, 20:06](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:39]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:42](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:37](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:34](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:39](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:35](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:32, 02:41](745 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:42](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:34](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 07:21](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:58, 07:21](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:43](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 04:45](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2011 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 07:50]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:21](741 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:29, 02:41](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:48]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:32, 01:53](319 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:29](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:50, 01:06](456 MB)
-
-PASS -- COMPILE 'atml_intel' [16:11, 15:14]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:02](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:21, 07:16](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:14, 03:32](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:12, 14:43]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:44, 02:29](1648 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:13, 12:52]
-PASS -- TEST 'atmaero_control_p8_intel' [08:02, 06:02](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:07, 06:31](3012 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:10, 09:49]
-PASS -- TEST 'regional_atmaq_debug_intel' [24:32, 18:24](4484 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:12, 20:57]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:01, 07:26](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 25:05]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 13:45](1687 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:45](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:11](944 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:22, 15:22](1669 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:49]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 24:28](1706 MB)
+
+PASS -- COMPILE 's2swa_intel' [08:20, 07:49]
+PASS -- TEST 'cpld_control_p8_intel' [14:09, 08:24](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:48, 08:27](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [11:18, 05:14](3153 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:56, 08:45](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:18, 05:44](3174 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 07:07](3410 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [33:57, 08:19](3095 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [11:47, 07:27](3019 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:00, 08:19](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:42](3264 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [22:41, 07:26](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [45:00, 13:46](4038 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:40, 09:26](4346 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:24, 07:52](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:16, 19:28]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 05:01](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:29](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24]
+PASS -- TEST 'cpld_debug_p8_intel' [17:56, 10:09](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:28]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 05:58](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:13, 17:17]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1727 MB)
+
+PASS -- COMPILE 's2s_intel' [18:13, 17:15]
+PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:56](2664 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:12, 23:04]
+PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 08:16](3100 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [26:14, 25:21]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:57, 15:36](1700 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:21, 08:10](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:56, 17:34](1681 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 13:59]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 26:32](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:14, 15:00]
+PASS -- TEST 'control_flake_intel' [05:20, 03:48](675 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:14, 03:11](1567 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:25, 03:07](1580 MB)
+PASS -- TEST 'control_latlon_intel' [05:03, 03:03](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:08](1568 MB)
+PASS -- TEST 'control_c48_intel' [09:35, 06:40](1604 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:45, 05:40](724 MB)
+PASS -- TEST 'control_c192_intel' [13:00, 10:02](1682 MB)
+PASS -- TEST 'control_c384_intel' [23:55, 18:02](1984 MB)
+PASS -- TEST 'control_c384gdas_intel' [28:28, 14:13](1185 MB)
+PASS -- TEST 'control_stochy_intel' [03:20, 01:57](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:40](431 MB)
+PASS -- TEST 'control_lndp_intel' [03:20, 01:52](628 MB)
+PASS -- TEST 'control_iovr4_intel' [04:33, 02:38](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](622 MB)
+PASS -- TEST 'control_p8_intel' [06:51, 03:24](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:31, 03:34](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:25](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:31, 01:52](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:34](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:47](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:51, 03:29](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:39, 02:49](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:27](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [09:07, 04:19](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:19, 03:41](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:01, 04:01](1604 MB)
+PASS -- TEST 'regional_control_intel' [07:40, 05:02](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:26, 02:40](789 MB)
+PASS -- TEST 'regional_decomp_intel' [07:14, 05:06](615 MB)
+PASS -- TEST 'regional_2threads_intel' [05:27, 02:55](756 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:09, 04:41](1155 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:02, 04:45](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:44](615 MB)
+PASS -- TEST 'regional_wofs_intel' [09:36, 06:23](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:17, 14:07]
+PASS -- TEST 'rap_control_intel' [09:22, 06:57](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:25, 04:25](1187 MB)
+PASS -- TEST 'rap_decomp_intel' [09:39, 07:08](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:56, 06:13](1097 MB)
+PASS -- TEST 'rap_restart_intel' [06:15, 03:59](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:14, 06:49](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 07:11](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 04:52](880 MB)
+PASS -- TEST 'hrrr_control_intel' [06:34, 03:53](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:20](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 03:13](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:45, 01:58](838 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:05](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:02](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:57, 08:18](1952 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:17, 13:44]
+PASS -- TEST 'control_csawmg_intel' [08:35, 06:51](695 MB)
+PASS -- TEST 'control_ras_intel' [04:50, 03:31](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:13, 13:56]
+PASS -- TEST 'control_wam_intel' [03:39, 02:19](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 17:00]
+PASS -- TEST 'control_p8_faster_intel' [06:45, 03:19](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:22, 04:38](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [17:12, 17:04]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:29, 03:07](1586 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:56](1589 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:54, 03:11](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:55](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:32](824 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:51, 02:53](793 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:49, 03:05](1640 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:19, 03:18](1618 MB)
+PASS -- TEST 'regional_debug_intel' [18:22, 16:20](632 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:46, 05:09](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:42, 05:03](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:53, 05:00](1166 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:52, 05:17](1166 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:35, 05:19](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:11](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:44, 05:06](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:13](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:50, 05:14](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:43, 05:09](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:47, 05:00](1167 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:54, 05:20](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:55, 08:08](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:14](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:53, 05:56](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:59, 05:04](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:42, 08:28](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [15:17, 14:40]
+PASS -- TEST 'control_wam_debug_intel' [09:47, 05:16](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:22]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:06, 03:47](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:34, 05:56](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:52, 03:24](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:29, 05:21](950 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:10, 02:48](937 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:53, 03:40](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:33, 04:21](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:56, 02:07](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:13, 20:51]
+PASS -- TEST 'conus13km_control_intel' [16:09, 02:09](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:13](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:49](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:37]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:30, 04:40](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:41]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:53, 05:11](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:57, 05:00](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [25:53, 14:08](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [25:43, 14:19](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [19:40, 08:24](1108 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:35, 14:27](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:18, 34:50]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:59, 05:07](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:15, 17:13]
+PASS -- TEST 'hafs_regional_atm_intel' [15:40, 05:21](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 04:48](1059 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 07:39](751 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 11:30](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:16, 12:51](802 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:00, 05:21](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:37, 06:49](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [12:40, 03:02](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:39, 08:15](444 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:59, 03:44](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:06, 03:47](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 04:51](574 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:07, 01:46](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:11, 04:19](766 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [12:16, 11:48]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:32, 13:03](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:12, 19:57]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:12, 07:51](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 07:59](788 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [55:18, 54:16]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:01](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:12, 16:22]
+PASS -- TEST 'hafs_regional_docn_intel' [08:47, 06:08](745 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 06:14](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:12, 20:07](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:39](734 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:38](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:37](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:39, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 02:39](757 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:42, 02:26](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:46, 08:18](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:35, 08:17](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:44](756 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:44, 04:46](2012 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 04:46](2011 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 08:26]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:50, 05:40](729 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:14, 12:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:46](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 04:59]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:27, 02:59](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:26, 02:24](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:22, 01:23](456 MB)
+
+PASS -- COMPILE 'atml_intel' [38:14, 37:39]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:44, 07:32](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:44, 07:37](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:24](837 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:13, 15:59]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:21](1648 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:16, 15:16]
+PASS -- TEST 'atmaero_control_p8_intel' [11:03, 06:33](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:03, 06:50](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:55, 06:49](3019 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:11, 11:13]
+PASS -- TEST 'regional_atmaq_debug_intel' [29:03, 18:39](4495 MB)
SYNOPSIS:
-Starting Date/Time: 20240421 01:23:25
-Ending Date/Time: 20240421 02:55:53
-Total Time: 01h:33m:32s
+Starting Date/Time: 20240423 15:27:48
+Ending Date/Time: 20240423 18:09:15
+Total Time: 02h:42m:47s
Compiles Completed: 37/37
-Tests Completed: 178/179
-Failed Tests:
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2173/ufs-weather-model/tests/logs/log_gaea/run_atmaero_control_p8_rad_micro_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF GAEA REGRESSION TESTING LOG====
-====START OF GAEA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229035
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atmaero_intel' [13:11, 12:52]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:46](3019 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240422 12:23:00
-Ending Date/Time: 20240422 12:46:49
-Total Time: 00h:24m:06s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 179/179
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 59eef863a6..fac7b77819 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+bcc92327e9e244c4ca9db1707f4df177799426b2
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -12,7 +12,7 @@ Submodule hashes used in testing:
da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -25,419 +25,364 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_686177
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3337654
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:00]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:21, 05:33](3188 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:28]
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:09, 17:09](1750 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:18, 17:47](2042 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 08:03](1119 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:04, 20:01](1652 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:40]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:07, 23:32](1686 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:12, 13:01]
-PASS -- TEST 'cpld_control_p8_intel' [07:13, 05:46](3235 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:44](3220 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:25, 04:50](3272 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:13, 05:47](3256 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:25, 04:50](3287 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:26](3557 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:43](3221 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:15, 04:44](3076 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:24, 06:10](3226 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:21, 10:14](3351 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:41, 06:05](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:39, 09:39](4075 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:37, 05:54](4370 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:16, 05:22](3195 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:12, 12:34]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:56, 04:43](1743 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:01, 04:19](1800 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:40]
-PASS -- TEST 'cpld_debug_p8_intel' [11:10, 08:30](3236 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:14]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:41](1747 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:12, 11:22]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:06, 04:20](1782 MB)
-
-PASS -- COMPILE 's2s_intel' [12:12, 11:44]
-PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:24](2828 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:27]
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:19, 06:39](3232 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:22](1771 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 08:23](1178 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:00, 19:40](1692 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:10]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:59, 25:13](1721 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:40]
-PASS -- TEST 'control_flake_intel' [04:25, 03:17](702 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [08:52, 02:51](1606 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:54, 02:57](1614 MB)
-PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1598 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:55, 02:54](1607 MB)
-PASS -- TEST 'control_c48_intel' [08:50, 07:38](1764 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:24](863 MB)
-PASS -- TEST 'control_c192_intel' [15:09, 10:32](1754 MB)
-PASS -- TEST 'control_c384_intel' [15:59, 10:29](2009 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:45, 07:57](1408 MB)
-PASS -- TEST 'control_stochy_intel' [06:22, 01:36](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:24, 00:57](512 MB)
-PASS -- TEST 'control_lndp_intel' [06:21, 01:32](662 MB)
-PASS -- TEST 'control_iovr4_intel' [07:23, 02:26](655 MB)
-PASS -- TEST 'control_iovr5_intel' [06:23, 02:28](657 MB)
-PASS -- TEST 'control_p8_intel' [07:45, 02:57](1629 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 02:58](1631 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:02, 02:50](1635 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:51, 01:36](897 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:57, 02:55](1623 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:35](941 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:54, 03:02](1620 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:44](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:11](1632 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:59, 03:56](1697 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:59, 02:57](1640 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:56, 03:13](1646 MB)
-PASS -- TEST 'regional_control_intel' [06:43, 05:08](854 MB)
-PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB)
-PASS -- TEST 'regional_decomp_intel' [07:42, 05:30](851 MB)
-PASS -- TEST 'regional_2threads_intel' [04:43, 03:13](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:44, 06:35](1368 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 06:36](852 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:16, 05:11](856 MB)
-PASS -- TEST 'regional_wofs_intel' [08:41, 06:43](1909 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:11, 10:38]
-PASS -- TEST 'rap_control_intel' [08:41, 07:41](1113 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:03](1299 MB)
-PASS -- TEST 'rap_decomp_intel' [09:37, 08:06](1042 MB)
-PASS -- TEST 'rap_2threads_intel' [08:34, 07:15](1152 MB)
-PASS -- TEST 'rap_restart_intel' [04:43, 04:02](1104 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:40](1112 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:10](1045 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 05:47](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [05:39, 03:55](1043 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:04](1039 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:41](1113 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:28](1016 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:44, 07:33](1104 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:11](1997 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:06](2063 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:11, 10:14]
-PASS -- TEST 'control_csawmg_intel' [06:44, 05:59](755 MB)
-PASS -- TEST 'control_ras_intel' [04:24, 03:14](755 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:11, 03:41]
-PASS -- TEST 'control_csawmg_gnu' [09:44, 08:18](550 MB)
-
-PASS -- COMPILE 'wam_intel' [10:12, 09:50]
-PASS -- TEST 'control_wam_intel' [02:23, 02:04](650 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:32]
-PASS -- TEST 'control_p8_faster_intel' [03:54, 02:37](1636 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:40, 04:42](847 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:54]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:35](1619 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:29](1619 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](829 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:39](823 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:03](867 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:22, 02:42](830 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:50, 02:44](1679 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:47, 02:47](1651 MB)
-PASS -- TEST 'regional_debug_intel' [17:43, 16:48](836 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:23, 04:50](1213 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:23, 04:46](1205 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:44](1210 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:53](1211 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:56](1209 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:10](1296 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 05:00](1216 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:53](1208 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1209 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:59](1213 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:45](1209 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:51](1213 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 07:51](1203 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:42](1200 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:58](1209 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:43](1208 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:33](1211 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:34]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:08](533 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:11, 03:06]
-PASS -- TEST 'control_wam_debug_intel' [06:22, 05:01](520 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:50]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:00, 03:50](1166 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 06:22](1055 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 03:21](984 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:05](1090 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:34, 03:07](963 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:30, 03:34](937 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:38, 04:49](1048 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:49](950 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:46]
-PASS -- TEST 'conus13km_control_intel' [02:52, 02:03](1203 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:39, 00:52](1126 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:12](1110 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:35]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:08](989 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:23]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:45](1087 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:43](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:45, 14:24](1234 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 14:42](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:15](1160 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:29](1307 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:21]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:59](1126 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:11, 13:09]
-PASS -- TEST 'hafs_regional_atm_intel' [06:19, 04:52](755 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:44](1113 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:49](837 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:15](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:56](894 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 05:25](504 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:21, 06:34](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:45, 02:37](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:00, 07:05](480 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:37](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:47, 03:24](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:55, 04:00](597 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:38, 01:12](410 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:42, 04:00](806 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:42, 03:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 12:59](585 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:12, 13:34]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:00, 08:42](677 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 08:45](747 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:15]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:07, 06:21](737 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:12, 12:50]
-PASS -- TEST 'hafs_regional_docn_intel' [08:12, 06:21](835 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](818 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 16:00](1215 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:12, 06:00]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:43](1151 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:36](1108 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1037 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:36](1024 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:35](1016 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:38](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:39](1156 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:33](1023 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:22, 06:06](1052 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:22, 06:05](1051 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:39](1154 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:48](2494 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:51](2445 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:28]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:15](1082 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:28]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:36](1153 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:57]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:44](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:45](329 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:28](330 MB)
-
-PASS -- COMPILE 'atml_intel' [12:12, 11:33]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:03, 04:06](1629 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 04:04](1616 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:10](918 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:12, 10:39]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:40](1682 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:12, 10:41]
-PASS -- TEST 'atmaero_control_p8_intel' [05:57, 03:57](3019 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:53](3092 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:28]
-PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 24:27](4453 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:12, 03:40]
-PASS -- TEST 'control_c48_gnu' [12:43, 11:09](1544 MB)
-PASS -- TEST 'control_stochy_gnu' [04:21, 03:22](507 MB)
-PASS -- TEST 'control_ras_gnu' [05:21, 04:45](515 MB)
-PASS -- TEST 'control_p8_gnu' [05:57, 04:41](1268 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:32](1270 MB)
-PASS -- TEST 'control_flake_gnu' [11:23, 10:38](550 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [04:12, 03:44]
-PASS -- TEST 'rap_control_gnu' [12:32, 11:04](858 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:34, 11:03](859 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:35, 09:50](947 MB)
-PASS -- TEST 'rap_restart_gnu' [06:36, 05:20](584 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:37, 10:50](857 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:37, 10:47](859 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:36, 08:00](589 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:31, 05:35](855 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:28, 05:36](845 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:35, 05:02](932 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:33](859 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:24, 02:53](574 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:49](666 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:43, 10:24](858 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:38]
-PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:37](1289 MB)
-PASS -- TEST 'regional_debug_gnu' [11:40, 10:41](562 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:33](873 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 02:30](874 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:30](877 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:32](877 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:32, 02:49](961 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 04:03](871 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](876 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:33](873 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](506 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:40](500 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:38](1260 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:35](872 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:45](880 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:11](884 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:58]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:12, 03:41]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:19](720 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:34, 04:59](714 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:42](764 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:27, 04:29](757 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:09](715 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:32, 06:54](564 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:31](550 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:55, 03:07](887 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:31](888 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:45](561 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:12, 05:21]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:36](742 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:29](723 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:27](721 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:48, 06:47](899 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:52](590 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:39, 07:31](903 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 06:54](969 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:43]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:37](745 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:12, 14:35]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:27]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:14, 09:59](1360 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:34]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:12]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:56, 22:02](1327 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:21]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:55, 16:34](1334 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 14:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:01](699 MB)
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [12:43, 12:43]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:23, 05:34](3166 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:58, 15:58]
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:56, 17:09](1739 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 17:50](2011 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:04](1097 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:58, 19:17](1630 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:57](1691 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:44, 12:44]
+PASS -- TEST 'cpld_control_p8_intel' [06:45, 05:51](3196 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:40, 05:48](3208 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:29](3257 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:51, 05:58](3241 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:44, 03:35](3243 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3560 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:53](3192 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](3053 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:37, 05:46](3189 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:56, 10:20](3317 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:56, 06:33](3550 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:13, 09:51](4144 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 05:56](4342 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:27, 05:38](3150 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:19, 12:19]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1735 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:30, 04:42](1767 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:19, 04:19]
+PASS -- TEST 'cpld_debug_p8_intel' [09:49, 08:47](3218 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [03:59, 03:59]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:48](1765 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:36]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 04:38](1755 MB)
+
+PASS -- COMPILE 's2s_intel' [11:15, 11:15]
+PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:40](2832 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:27, 16:27]
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:33](3193 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:20, 15:20]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:00, 17:11](1757 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:58, 08:01](1149 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:37, 19:49](1666 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:18]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:05](1678 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:13, 11:13]
+PASS -- TEST 'control_flake_intel' [03:33, 03:21](686 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:35, 02:53](1573 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:58](1580 MB)
+PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1576 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:31, 02:57](1576 MB)
+PASS -- TEST 'control_c48_intel' [08:16, 07:38](1744 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 06:22](850 MB)
+PASS -- TEST 'control_c192_intel' [11:19, 10:35](1712 MB)
+PASS -- TEST 'control_c384_intel' [11:52, 10:30](1992 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:40, 08:11](1353 MB)
+PASS -- TEST 'control_stochy_intel' [01:52, 01:37](643 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](483 MB)
+PASS -- TEST 'control_lndp_intel' [01:47, 01:32](641 MB)
+PASS -- TEST 'control_iovr4_intel' [02:42, 02:30](639 MB)
+PASS -- TEST 'control_iovr5_intel' [02:38, 02:25](638 MB)
+PASS -- TEST 'control_p8_intel' [03:40, 02:58](1609 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:59](1603 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1611 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:11, 01:36](875 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:57](1584 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:37](923 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:05](1578 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:18, 02:44](1698 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:16](1595 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 03:55](1678 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:58](1617 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:59, 03:17](1619 MB)
+PASS -- TEST 'regional_control_intel' [05:39, 05:09](834 MB)
+PASS -- TEST 'regional_restart_intel' [03:10, 02:45](1005 MB)
+PASS -- TEST 'regional_decomp_intel' [05:58, 05:30](827 MB)
+PASS -- TEST 'regional_2threads_intel' [03:44, 03:15](825 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:34, 05:09](1349 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:13](837 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:11](836 MB)
+PASS -- TEST 'regional_wofs_intel' [07:07, 06:41](1897 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:35, 10:35]
+PASS -- TEST 'rap_control_intel' [08:09, 07:41](1097 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 04:05](1287 MB)
+PASS -- TEST 'rap_decomp_intel' [08:29, 08:07](1023 MB)
+PASS -- TEST 'rap_2threads_intel' [07:49, 07:26](1160 MB)
+PASS -- TEST 'rap_restart_intel' [04:33, 04:01](1082 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:09, 07:43](1094 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 08:06](1025 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:25, 05:56](1122 MB)
+PASS -- TEST 'hrrr_control_intel' [04:18, 03:57](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 04:05](1031 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:04, 03:38](1103 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:29, 02:10](990 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:03, 07:35](1088 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:19](1965 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 09:02](2046 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:16, 10:16]
+PASS -- TEST 'control_csawmg_intel' [06:31, 06:02](740 MB)
+PASS -- TEST 'control_ras_intel' [03:25, 03:15](739 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33]
+PASS -- TEST 'control_csawmg_gnu' [08:53, 08:24](540 MB)
+
+PASS -- COMPILE 'wam_intel' [09:55, 09:55]
+PASS -- TEST 'control_wam_intel' [02:12, 02:02](638 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:41, 10:41]
+PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1610 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:18, 04:47](829 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:47, 04:47]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:45](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:15, 02:43](1577 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:13](780 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:43](783 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:08](832 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:09, 02:57](790 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:23, 02:46](1635 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:32, 02:59](1605 MB)
+PASS -- TEST 'regional_debug_intel' [17:47, 17:20](810 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:12, 04:58](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:08, 04:54](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 04:59](1170 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:59](1171 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1170 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:10](1253 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:04](1174 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 05:17](1182 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:21](1171 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:59](1186 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:10, 04:56](1185 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 05:08](1167 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 08:11](1188 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 05:00](1181 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:36, 06:25](1187 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:18, 05:06](1190 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 08:22](1171 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:43, 02:43]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](508 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15]
+PASS -- TEST 'control_wam_debug_intel' [05:11, 04:59](468 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:11]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1140 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 06:24](1032 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:25](985 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 06:06](1067 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 03:14](946 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:40](916 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:25, 04:50](1009 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:13, 01:52](916 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 12:24]
+PASS -- TEST 'conus13km_control_intel' [02:54, 02:06](1187 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:24, 00:53](1099 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:15](1090 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 10:18]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:14](969 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:03, 04:51](1093 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:59, 04:47](1087 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:27, 14:54](1269 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:16, 14:40](920 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 08:20](1143 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:11, 14:44](1305 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:02, 04:52](1134 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:34, 11:33]
+PASS -- TEST 'hafs_regional_atm_intel' [06:01, 05:04](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 06:03](1118 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:56](838 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:33, 13:35](863 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:13, 15:11](896 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:39](505 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:58](521 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:38](376 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 07:32](470 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 03:54](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:19, 03:41](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 04:12](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:13](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:44, 04:12](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:50, 03:50]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:29, 12:49](572 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:00, 12:00]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:52](672 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:39, 08:50](705 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:56, 11:56]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:40](737 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:14, 11:13]
+PASS -- TEST 'hafs_regional_docn_intel' [07:57, 06:49](829 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:57, 06:51](820 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 16:03](1212 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:19, 06:18]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:58, 02:49](1149 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:41](1095 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:47, 02:38](1022 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:37](1025 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1017 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:51, 02:44](1146 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:43](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:38](1016 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:25](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:12](1041 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:51, 02:45](1146 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:09, 03:57](2486 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2441 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:58]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 06:27](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [05:58, 05:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:49, 02:40](1146 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:53](262 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 00:58](330 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](328 MB)
+
+PASS -- COMPILE 'atml_intel' [11:55, 11:54]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:05, 04:16](1561 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:14](1589 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:14, 02:38](876 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:55, 10:54]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:24, 01:46](1647 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:42, 10:41]
+PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](3039 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:58](3099 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 05:01](3093 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:36, 03:35]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 24:01](4452 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:52, 03:51]
+PASS -- TEST 'control_c48_gnu' [11:48, 11:17](1544 MB)
+PASS -- TEST 'control_stochy_gnu' [03:36, 03:23](507 MB)
+PASS -- TEST 'control_ras_gnu' [04:52, 04:39](515 MB)
+PASS -- TEST 'control_p8_gnu' [05:29, 04:40](1266 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:22, 04:38](1267 MB)
+PASS -- TEST 'control_flake_gnu' [10:46, 10:33](549 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:52, 03:51]
+PASS -- TEST 'rap_control_gnu' [11:06, 10:41](855 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](858 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:06, 09:42](940 MB)
+PASS -- TEST 'rap_restart_gnu' [06:21, 05:40](587 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [10:55, 10:29](858 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:27, 11:01](858 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:59, 08:19](588 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:52, 05:28](857 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:30](847 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:56](928 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:41](856 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:54](572 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:56](667 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:33](855 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:40, 03:39]
+PASS -- TEST 'control_diag_debug_gnu' [02:26, 01:46](1285 MB)
+PASS -- TEST 'regional_debug_gnu' [11:44, 11:12](568 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:10, 02:54](871 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:05, 02:47](871 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:36](874 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:50, 02:40](878 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:14, 02:52](960 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:06](870 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:40](835 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:42](867 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:42](506 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:50](499 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:22, 01:45](1253 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:58, 02:45](871 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:11, 02:54](874 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 04:19](879 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:39, 03:39]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:55, 09:28](712 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 05:04](713 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:04, 08:38](765 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:59, 04:34](760 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 05:11](713 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 07:08](550 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:59, 02:36](532 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:59, 03:16](869 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [05:38, 05:06](874 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:52](546 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:27, 05:26]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:22, 05:53](738 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:41, 03:40]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:43, 02:30](696 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](699 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:36, 06:57](870 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 06:59](559 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [07:30, 07:02](871 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:55](936 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:41, 03:40]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:57, 02:40](720 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:39, 14:38]
+
+PASS -- COMPILE 's2s_gnu' [14:37, 14:37]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:44, 06:42](1341 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:33, 02:32]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:22, 22:25](1308 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:23, 02:22]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:52, 12:56](1306 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:06](696 MB)
SYNOPSIS:
-Starting Date/Time: 20240421 00:24:06
-Ending Date/Time: 20240421 02:15:52
-Total Time: 01h:52m:03s
+Starting Date/Time: 20240423 18:57:22
+Ending Date/Time: 20240424 03:03:55
+Total Time: 08h:06m:50s
Compiles Completed: 53/53
-Tests Completed: 238/239
-Failed Tests:
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2173/ufs-weather-model/tests/logs/log_hera/run_atmaero_control_p8_rad_micro_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERA REGRESSION TESTING LOG====
-====START OF HERA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_24155
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: atmaero_control_p8_rad_micro
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atmaero_intel' [14:12, 10:40]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:40, 05:00](3094 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240422 16:20:37
-Ending Date/Time: 20240422 16:43:49
-Total Time: 00h:23m:20s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 239/239
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 9a94f7e473..e5677021cf 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+fe4bb76565de0a5f3261b276fa392d65cb046e96
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,472 +36,359 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1104065
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_12578
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:30]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:12, 07:43](1892 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:31]
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:29, 13:22](1766 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:52, 14:22](2146 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:43, 06:37](1196 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:23, 15:33](1687 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:44]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:30, 20:57](1730 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:11, 11:27]
-PASS -- TEST 'cpld_control_p8_intel' [15:11, 07:46](2077 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:27, 07:47](2084 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:23, 04:20](1951 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:11, 07:43](1972 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:20, 04:24](1731 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [16:04, 08:59](2492 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [15:03, 07:46](2066 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:07, 06:32](1889 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:25, 07:37](2061 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [21:04, 15:03](2811 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:37, 06:01](2922 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:27, 10:44](3660 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:17, 06:52](3624 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 04:58](2026 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:11, 10:42]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [13:02, 07:01](1774 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 04:01](1831 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:14]
-PASS -- TEST 'cpld_debug_p8_intel' [09:14, 06:56](2063 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:59]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:13, 04:52](1788 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:11, 09:19]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:16, 03:57](1830 MB)
-
-PASS -- COMPILE 's2s_intel' [09:10, 08:56]
-PASS -- TEST 'cpld_control_c48_intel' [08:56, 07:19](2839 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:37]
-PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 07:18](2094 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:48]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 14:27](1809 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:19, 06:45](1280 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:06, 15:22](1742 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:58]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:09, 21:24](1765 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:45]
-PASS -- TEST 'control_flake_intel' [11:23, 02:51](706 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [14:33, 05:44](864 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
-PASS -- TEST 'control_c384gdas_intel' [22:17, 07:24](1530 MB)
-PASS -- TEST 'control_stochy_intel' [08:23, 01:25](672 MB)
-PASS -- TEST 'control_stochy_restart_intel' [07:32, 00:55](546 MB)
-PASS -- TEST 'control_lndp_intel' [10:21, 01:22](670 MB)
-PASS -- TEST 'control_iovr4_intel' [13:28, 02:04](661 MB)
-PASS -- TEST 'control_iovr5_intel' [12:23, 02:06](664 MB)
-PASS -- TEST 'control_p8_intel' [10:51, 02:40](1640 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [09:03, 02:42](1635 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:32](1637 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:59, 01:29](923 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:55, 02:38](1635 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [09:05, 01:38](982 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:53, 02:42](1638 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:51, 02:27](1731 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:38, 04:39](1650 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:03, 03:30](1719 MB)
-PASS -- TEST 'control_p8_mynn_intel' [08:09, 02:33](1652 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
-PASS -- TEST 'regional_control_intel' [08:38, 04:36](960 MB)
-PASS -- TEST 'regional_restart_intel' [07:39, 02:34](1107 MB)
-PASS -- TEST 'regional_decomp_intel' [08:32, 04:56](946 MB)
-PASS -- TEST 'regional_2threads_intel' [06:33, 02:58](917 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:34, 04:29](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:37, 04:39](958 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [08:30, 04:59](943 MB)
-PASS -- TEST 'regional_wofs_intel' [08:31, 05:48](2084 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:10, 07:51]
-PASS -- TEST 'rap_control_intel' [12:12, 06:39](1204 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:53, 03:46](1454 MB)
-PASS -- TEST 'rap_decomp_intel' [12:47, 06:52](1145 MB)
-PASS -- TEST 'rap_2threads_intel' [12:46, 06:25](1375 MB)
-PASS -- TEST 'rap_restart_intel' [05:11, 03:38](1130 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:57, 06:38](1201 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 06:53](1141 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [16:08, 04:57](1235 MB)
-PASS -- TEST 'hrrr_control_intel' [08:56, 03:28](1074 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [09:44, 03:32](1041 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [08:46, 03:12](1123 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:36, 01:49](1030 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:59, 06:29](1187 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:24, 07:49](2010 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 07:34](2159 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:10, 07:29]
-PASS -- TEST 'control_csawmg_intel' [10:39, 05:22](814 MB)
-PASS -- TEST 'control_ras_intel' [07:22, 02:55](820 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [09:11, 03:51]
-PASS -- TEST 'control_csawmg_gnu' [10:41, 06:39](809 MB)
-
-PASS -- COMPILE 'wam_intel' [10:11, 06:36]
-PASS -- TEST 'control_wam_intel' [05:27, 02:06](791 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 09:42]
-PASS -- TEST 'control_p8_faster_intel' [06:03, 02:25](1645 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:34, 04:11](960 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 04:00]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:22, 02:30](843 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:18](825 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:37, 03:27](870 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:20, 02:16](828 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
-PASS -- TEST 'control_debug_p8_intel' [04:43, 02:21](1655 MB)
-PASS -- TEST 'regional_debug_intel' [15:39, 14:20](891 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:24, 04:07](1209 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [14:23, 04:03](1214 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [14:21, 04:03](1221 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [14:21, 04:05](1230 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:22, 04:01](1231 MB)
-PASS -- TEST 'rap_diag_debug_intel' [15:29, 04:17](1292 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:22, 04:13](1213 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:21, 04:13](1220 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [14:22, 04:08](1214 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:22, 04:12](1219 MB)
-PASS -- TEST 'rap_noah_debug_intel' [14:22, 04:07](1222 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [14:22, 04:14](1221 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:21, 06:38](1218 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [14:20, 03:59](1221 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [15:20, 04:51](1216 MB)
-PASS -- TEST 'rap_flake_debug_intel' [14:22, 04:03](1209 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:03, 07:00](1218 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 03:53]
-PASS -- TEST 'control_csawmg_debug_gnu' [15:39, 01:48](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:11, 02:29]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:20]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:52, 03:36](1285 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:58, 05:37](1158 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [16:09, 03:05](1030 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:38, 05:20](1289 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:51, 02:53](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:49, 03:08](1001 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:00, 04:08](1094 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:26, 01:38](960 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 09:13]
-PASS -- TEST 'conus13km_control_intel' [06:47, 01:56](1303 MB)
-PASS -- TEST 'conus13km_2threads_intel' [08:36, 01:02](1206 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [08:40, 01:08](1148 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:10, 07:04]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:41, 03:51](1097 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:23, 03:54](1097 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 03:51](1094 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:43, 11:49](1345 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:43, 11:55](987 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:32, 06:49](1218 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 12:03](1416 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:11]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:21, 04:06](1155 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:11, 10:14]
-PASS -- TEST 'hafs_regional_atm_intel' [08:08, 05:34](880 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:27, 05:14](1282 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:23, 06:36](955 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [19:10, 14:23](979 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:19, 16:16](1016 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:05, 05:58](604 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:23, 07:30](618 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [09:57, 03:09](432 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:24, 08:22](542 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:53, 04:43](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:52, 03:54](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:58, 05:13](674 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:28, 01:40](446 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:10, 02:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:54, 11:24](632 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [17:11, 10:47]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:01, 17:10](732 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:11, 16:18](810 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 10:05]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:04, 10:10](790 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:11, 09:55]
-PASS -- TEST 'hafs_regional_docn_intel' [13:08, 05:41](956 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:08, 06:01](915 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:45, 16:34](1333 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:10, 06:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:20, 02:10](1133 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:24](1079 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:16, 02:05](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:07](1019 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:17, 02:07](1013 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:11](1130 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:11](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:04](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:03, 04:57](1160 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:56, 04:56](1140 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:10](1147 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2330 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:18, 03:03](2432 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 03:03]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:12](1077 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 05:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:09](1128 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 01:03](328 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 01:02](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:35](560 MB)
-
-PASS -- COMPILE 'atml_intel' [11:11, 08:16]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:27, 05:49](1644 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:20, 05:40](1657 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:58](946 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:11, 09:44]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:08, 01:34](1693 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:11, 08:12]
-PASS -- TEST 'atmaero_control_p8_intel' [05:09, 03:41](1792 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:07, 04:16](1798 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:49]
-PASS -- TEST 'regional_atmaq_debug_intel' [19:39, 17:12](4590 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:10, 03:41]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_gnu' [, ]( MB)
-PASS -- TEST 'control_stochy_gnu' [03:22, 02:19](730 MB)
-PASS -- TEST 'control_ras_gnu' [05:20, 03:39](730 MB)
-PASS -- TEST 'control_p8_gnu' [04:57, 03:34](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:50, 03:37](1513 MB)
-PASS -- TEST 'control_flake_gnu' [05:20, 04:22](809 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [08:10, 05:01]
-PASS -- TEST 'rap_control_gnu' [08:53, 07:44](1086 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:46, 07:45](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [08:43, 07:12](1122 MB)
-PASS -- TEST 'rap_restart_gnu' [09:58, 03:55](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:54, 08:29](1086 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:49, 07:47](1085 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:58, 05:43](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:47, 04:02](1076 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:43, 04:03](1134 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:38](1021 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 04:00](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:26, 02:05](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:26, 02:05](934 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:10, 07:46](1082 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 05:52]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_gnu' [, ]( MB)
-PASS -- TEST 'regional_debug_gnu' [07:38, 06:27](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:22, 01:58](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:56](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 01:59](1095 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 01:59](1094 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:29, 02:05](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 03:06](1095 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:21, 01:57](1097 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 01:56](1090 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:15](726 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:21](722 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:18](1506 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:26, 01:59](1097 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:10](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:03, 03:21](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:10, 03:21]
-PASS -- TEST 'control_wam_debug_gnu' [03:31, 02:03](501 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:49]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:52, 07:27](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:10, 03:54](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:47, 06:51](995 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:45, 03:36](893 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:45, 03:57](957 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:49, 05:26](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 01:58](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [06:48, 02:42](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:05](1174 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:29](930 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 11:32]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:38, 04:28](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:11, 09:44]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 01:59](978 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:20, 01:55](968 MB)
-PASS -- TEST 'conus13km_debug_gnu' [10:40, 05:30](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [10:38, 05:37](968 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:33, 03:22](1191 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:35, 05:28](1350 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:11, 09:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [07:24, 01:59](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [22:12, 17:59]
-
-PASS -- COMPILE 's2s_gnu' [19:11, 17:30]
-
-PASS -- COMPILE 's2swa_debug_gnu' [10:11, 09:01]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:17]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 04:23]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 14:16]
+PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:56, 07:29](1894 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:14]
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:31](1767 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:03](2190 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 06:20](1175 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:54, 15:07](1691 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:51]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:07, 20:22](1725 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:10, 10:45]
+PASS -- TEST 'cpld_control_p8_intel' [08:52, 07:30](2086 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:27](2077 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:15](1955 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:50, 07:40](1979 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:11, 04:18](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 08:51](2498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:45](2070 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:54, 06:14](1900 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:26](2069 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:34, 14:53](2799 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 05:37](2920 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [13:43, 08:20](3632 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:10](3627 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:53, 04:52](2019 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:10, 11:18]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:07](1773 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:53, 03:56](1814 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:33]
+PASS -- TEST 'cpld_debug_p8_intel' [08:02, 06:55](2039 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:25]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:45, 04:44](1790 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 03:57](1815 MB)
+
+PASS -- COMPILE 's2s_intel' [10:10, 09:35]
+PASS -- TEST 'cpld_control_c48_intel' [08:37, 07:17](2833 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:53]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:58, 07:19](2055 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:06]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:47, 13:43](1812 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:42](1304 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:56, 15:13](1726 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:12]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:40](1763 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:07]
+PASS -- TEST 'control_flake_intel' [03:18, 02:50](716 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:28](1610 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:32](1621 MB)
+PASS -- TEST 'control_latlon_intel' [03:30, 02:30](1611 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:31](1615 MB)
+PASS -- TEST 'control_c48_intel' [07:32, 06:59](1749 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 05:42](844 MB)
+PASS -- TEST 'control_c192_intel' [09:39, 08:55](1761 MB)
+PASS -- TEST 'control_c384_intel' [10:14, 09:07](2038 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:41, 06:59](1530 MB)
+PASS -- TEST 'control_stochy_intel' [02:18, 01:24](671 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:52](549 MB)
+PASS -- TEST 'control_lndp_intel' [02:18, 01:19](667 MB)
+PASS -- TEST 'control_iovr4_intel' [03:19, 02:05](659 MB)
+PASS -- TEST 'control_iovr5_intel' [02:23, 02:06](672 MB)
+PASS -- TEST 'control_p8_intel' [03:49, 02:31](1650 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:50, 02:31](1638 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:49, 02:26](1649 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:44, 01:22](908 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:40, 02:28](1631 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:21](991 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:38, 02:35](1634 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:38, 02:18](1728 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:21](1629 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:48, 03:25](1718 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:31](1646 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:53, 02:45](1653 MB)
+PASS -- TEST 'regional_control_intel' [05:28, 04:31](956 MB)
+PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1101 MB)
+PASS -- TEST 'regional_decomp_intel' [05:27, 04:45](949 MB)
+PASS -- TEST 'regional_2threads_intel' [03:27, 02:47](912 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:29, 04:17](1484 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:24](959 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:25](959 MB)
+PASS -- TEST 'regional_wofs_intel' [06:26, 05:29](2070 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:10, 07:14]
+PASS -- TEST 'rap_control_intel' [07:32, 06:31](1208 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 03:22](1402 MB)
+PASS -- TEST 'rap_decomp_intel' [07:31, 06:47](1141 MB)
+PASS -- TEST 'rap_2threads_intel' [06:46, 06:07](1352 MB)
+PASS -- TEST 'rap_restart_intel' [04:41, 03:26](1148 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:46, 06:26](1196 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:45](1132 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 04:54](1193 MB)
+PASS -- TEST 'hrrr_control_intel' [04:34, 03:19](1068 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 03:23](1054 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:01](1124 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:33, 01:48](1037 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:19](1195 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 07:48](2012 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:29](2166 MB)
+
+PASS -- COMPILE 'csawmg_intel' [07:10, 07:03]
+PASS -- TEST 'control_csawmg_intel' [06:27, 05:15](805 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:48](804 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:58]
+PASS -- TEST 'control_csawmg_gnu' [07:27, 06:28](812 MB)
+
+PASS -- COMPILE 'wam_intel' [07:10, 06:35]
+PASS -- TEST 'control_wam_intel' [02:25, 01:47](786 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:17]
+PASS -- TEST 'control_p8_faster_intel' [03:50, 02:14](1628 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:26, 04:06](960 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:45]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:09](1638 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:32, 02:08](1627 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:28](823 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:13](820 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:25, 03:24](878 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:16, 02:14](835 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:34, 02:13](1682 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:30, 02:19](1662 MB)
+PASS -- TEST 'regional_debug_intel' [14:27, 13:56](895 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:18, 03:59](1216 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:47](1210 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:55](1221 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 03:57](1226 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:54](1227 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:10](1304 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1216 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 03:58](1215 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:01](1220 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1210 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:59](1223 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:17](1211 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:52](1215 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:48](1230 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:59](1224 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:49](1222 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:10]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:41](793 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:10, 02:47]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:31]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:21](1284 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:21](1170 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:55, 02:52](1036 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:01](1288 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:35](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](978 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:02](1094 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:34](962 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:11, 08:51]
+PASS -- TEST 'conus13km_control_intel' [02:35, 01:40](1302 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:45](1200 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:03](1145 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:43]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 03:40](1096 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:01]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:54](1102 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:48](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:30, 11:25](1333 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:42](995 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:31](1239 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1404 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 03:01]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 03:57](1149 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:11, 10:11]
+PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:16](880 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:49](1273 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:17](953 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:01, 13:47](980 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:15, 15:14](1003 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:17](604 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 06:44](614 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 02:48](435 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:28](543 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](615 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:39, 03:33](614 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:40](684 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:23](453 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:11, 02:53]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 11:10](627 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:12]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:47, 16:25](764 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:52, 15:57](842 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:44](835 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:11, 10:03]
+PASS -- TEST 'hafs_regional_docn_intel' [07:05, 05:18](945 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:24](932 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:26](1346 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:40]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:08](1150 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:17](1101 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 02:05](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:04](1007 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:06](1010 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:06](1156 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:01](1010 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:49, 04:52](1157 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 04:48](1143 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:06](1150 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2388 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2380 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:00]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1077 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:57]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1155 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:58](329 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:52](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:29](556 MB)
+
+PASS -- COMPILE 'atml_intel' [08:10, 07:47]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 05:28](1638 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:16](1648 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:59](951 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:10, 09:15]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:46, 01:31](1686 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:10, 07:16]
+PASS -- TEST 'atmaero_control_p8_intel' [04:48, 03:28](1797 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 04:07](1799 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:12](1832 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:41]
+PASS -- TEST 'regional_atmaq_debug_intel' [18:14, 16:14](4603 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:10, 03:46]
+PASS -- TEST 'control_c48_gnu' [10:35, 09:22](1558 MB)
+PASS -- TEST 'control_stochy_gnu' [03:17, 02:12](733 MB)
+PASS -- TEST 'control_ras_gnu' [04:16, 03:38](737 MB)
+PASS -- TEST 'control_p8_gnu' [04:45, 03:29](1516 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:24](1514 MB)
+PASS -- TEST 'control_flake_gnu' [05:17, 04:18](800 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [07:10, 06:32]
+PASS -- TEST 'rap_control_gnu' [08:30, 07:30](1090 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:30, 07:42](1088 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:45, 07:00](1128 MB)
+PASS -- TEST 'rap_restart_gnu' [04:41, 03:53](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:36, 07:33](1087 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:44](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:39, 05:43](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [04:44, 03:57](1075 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [04:33, 03:55](1136 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:30](1027 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:53](1080 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:02](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:01](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:30](1084 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:11, 09:50]
+PASS -- TEST 'control_diag_debug_gnu' [01:33, 01:09](1628 MB)
+PASS -- TEST 'regional_debug_gnu' [07:28, 06:20](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:58](1097 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 01:56](1087 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:56](1094 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:22, 01:58](1094 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:04](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:04](1093 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:55](1095 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:57](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:08](724 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](722 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:31, 01:15](1501 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1096 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:52, 03:13](1095 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [06:11, 05:10]
+PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 07:25]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:10](964 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:43, 03:43](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:36](978 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:24](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:51](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:40, 05:21](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:57](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:36, 02:32](1264 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:28, 01:05](1174 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:25](944 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:42]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:21](987 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 10:58]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](974 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:51](972 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:35](1278 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:32](953 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:10](1185 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:27](1347 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 11:57]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:59](1000 MB)
+
+PASS -- COMPILE 's2swa_gnu' [17:11, 16:24]
+
+PASS -- COMPILE 's2s_gnu' [17:11, 16:48]
+
+PASS -- COMPILE 's2swa_debug_gnu' [11:10, 10:37]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:48]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:17]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:42]
SYNOPSIS:
-Starting Date/Time: 20240422 07:29:32
-Ending Date/Time: 20240422 09:17:34
-Total Time: 01h:48m:46s
+Starting Date/Time: 20240425 07:05:44
+Ending Date/Time: 20240425 08:15:15
+Total Time: 01h:09m:54s
Compiles Completed: 53/53
-Tests Completed: 220/234
-Failed Tests:
-* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_intel.log
-* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_parallel_intel.log
-* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_latlon_intel.log
-* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_intel.log
-* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_intel.log
-* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c192_intel.log
-* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c384_intel.log
-* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_merra2_thompson_intel.log
-* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_CubedSphereGrid_debug_intel.log
-* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_wrtGauss_netcdf_parallel_debug_intel.log
-* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_intel.log
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_atmaero_control_p8_rad_micro_intel.log
-* TEST control_c48_gnu: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_c48_gnu.log
-* TEST control_diag_debug_gnu: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work/noaa/nems/zshrader/hercules/rt-2173/tests/logs/log_hercules/run_control_diag_debug_gnu.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERCULES REGRESSION TESTING LOG====
-====START OF HERCULES REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1349963
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:28]
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 02:43](1600 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:40, 02:40](1629 MB)
-PASS -- TEST 'control_latlon_intel' [03:35, 02:46](1605 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:40](1606 MB)
-PASS -- TEST 'control_c48_intel' [07:43, 07:02](1748 MB)
-PASS -- TEST 'control_c192_intel' [10:56, 09:11](1766 MB)
-PASS -- TEST 'control_c384_intel' [12:28, 09:41](2053 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:45, 03:02](1658 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:38, 02:22](1632 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:40, 02:09](1644 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:42, 02:24](1686 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:10, 07:56]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:35, 04:30](1814 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:10, 04:47]
-PASS -- TEST 'control_c48_gnu' [10:45, 09:45](1574 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:37]
-PASS -- TEST 'control_diag_debug_gnu' [02:36, 01:19](1625 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240422 10:21:26
-Ending Date/Time: 20240422 10:44:31
-Total Time: 00h:23m:27s
-Compiles Completed: 5/5
-Tests Completed: 14/14
+Tests Completed: 234/234
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index f4fce114d9..2055263dc5 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+59efb751087aed49bf96c2f722ba7013cbe33785
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,246 +36,248 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2785867
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4037119
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [39:14, 38:39]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 07:08](1789 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:23]
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:03, 20:45](1667 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 22:21](1888 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:10, 10:19](993 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:37, 23:57](1622 MB)
-
-PASS -- COMPILE 's2swa_intel' [39:14, 38:48]
-PASS -- TEST 'cpld_control_p8_intel' [09:24, 07:38](1825 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:45, 07:56](1826 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:46, 04:31](1714 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:40](1853 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:47, 05:07](1728 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:26, 07:02](2274 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:59](1822 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:41, 06:51](1781 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 07:34](1826 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:35, 07:12](1787 MB)
-
-PASS -- COMPILE 's2sw_intel' [36:13, 36:04]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:24, 05:52](1658 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:39](1710 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:32]
-PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:34](1846 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:40]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:27, 07:13](1676 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:02]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:41](1719 MB)
-
-PASS -- COMPILE 's2s_intel' [33:13, 32:17]
-PASS -- TEST 'cpld_control_c48_intel' [15:32, 13:21](2798 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:19, 32:56]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:57, 07:00](1818 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:18]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:40, 20:42](1678 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:25](1038 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:43, 23:57](1658 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:56]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:30, 32:11](1688 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:43]
-PASS -- TEST 'control_flake_intel' [05:30, 04:34](643 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:12, 04:05](1545 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:17, 04:13](1551 MB)
-PASS -- TEST 'control_latlon_intel' [05:08, 04:03](1546 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 04:07](1548 MB)
-PASS -- TEST 'control_c48_intel' [13:22, 11:53](1734 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:43, 10:12](843 MB)
-PASS -- TEST 'control_c192_intel' [15:30, 14:01](1675 MB)
-PASS -- TEST 'control_c384_intel' [21:20, 18:20](1827 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:47, 14:00](1013 MB)
-PASS -- TEST 'control_stochy_intel' [03:32, 02:15](600 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:22](434 MB)
-PASS -- TEST 'control_lndp_intel' [03:31, 02:08](605 MB)
-PASS -- TEST 'control_iovr4_intel' [04:36, 03:18](599 MB)
-PASS -- TEST 'control_iovr5_intel' [06:32, 05:34](593 MB)
-PASS -- TEST 'control_p8_intel' [06:32, 04:20](1574 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 04:02](1571 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 04:00](1575 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:10, 02:19](811 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:46, 04:05](1571 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:14, 02:15](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:32, 04:06](1564 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:48, 03:53](1663 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:14, 07:15](1569 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:21](1628 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:48, 04:21](1578 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:05, 04:33](1574 MB)
-PASS -- TEST 'regional_control_intel' [09:06, 07:14](761 MB)
-PASS -- TEST 'regional_restart_intel' [04:43, 03:44](934 MB)
-PASS -- TEST 'regional_decomp_intel' [14:06, 12:46](762 MB)
-PASS -- TEST 'regional_2threads_intel' [05:44, 04:37](758 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:50, 06:54](759 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 07:00](765 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:13, 32:30]
-PASS -- TEST 'rap_control_intel' [12:18, 10:10](993 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 05:47](1217 MB)
-PASS -- TEST 'rap_decomp_intel' [11:56, 10:34](987 MB)
-PASS -- TEST 'rap_2threads_intel' [14:00, 12:25](1088 MB)
-PASS -- TEST 'rap_restart_intel' [07:16, 05:13](994 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:12, 10:12](993 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:02, 10:46](988 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:29](996 MB)
-PASS -- TEST 'hrrr_control_intel' [06:14, 05:08](985 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:00, 05:24](984 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:59, 04:53](1051 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:47](919 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:30, 10:00](983 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:27, 12:10](1949 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:27, 12:18](1941 MB)
-
-PASS -- COMPILE 'csawmg_intel' [31:13, 30:58]
-PASS -- TEST 'control_csawmg_intel' [08:51, 08:01](695 MB)
-PASS -- TEST 'control_ras_intel' [05:27, 04:26](665 MB)
-
-PASS -- COMPILE 'wam_intel' [30:12, 29:35]
-PASS -- TEST 'control_wam_intel' [03:26, 02:44](503 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:12, 32:05]
-PASS -- TEST 'control_p8_faster_intel' [05:37, 03:36](1581 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:47, 06:28](764 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:38]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:51, 03:27](1558 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:27](1554 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:53](765 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:24, 03:26](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:46, 05:21](812 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:24, 03:23](772 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:54, 03:29](1622 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:52, 03:35](1598 MB)
-PASS -- TEST 'regional_debug_intel' [22:46, 21:38](774 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:29, 06:00](1158 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:52](1156 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 06:02](1145 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:59](1144 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:25, 06:00](1148 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:41, 06:19](1234 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 06:09](1150 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 06:06](1154 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:27, 06:08](1150 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 06:00](1155 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:53](1149 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 06:01](1153 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 09:51](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 06:02](1148 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 07:20](1153 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:28, 06:00](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:29, 10:27](1153 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:45]
-PASS -- TEST 'control_wam_debug_intel' [07:27, 06:09](465 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:13, 29:43]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:10, 05:07](1073 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:57, 08:09](901 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:03, 04:20](874 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:21, 07:46](946 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 04:00](908 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:35](853 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 06:09](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:21](847 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 42:39]
-PASS -- TEST 'conus13km_control_intel' [05:11, 03:26](1103 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1055 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:39](1022 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:16]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:01, 05:29](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:27, 05:57](1033 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:49](1027 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:58, 18:28](1132 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:58, 18:36](852 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:42](1084 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:52, 18:14](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:53]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 06:04](1073 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:13, 35:06]
-PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:00](715 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 06:59](1082 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:45, 09:21](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:23](802 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:16](823 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:24, 07:41](779 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:13, 31:31]
-PASS -- TEST 'hafs_regional_docn_intel' [10:26, 08:48](773 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:30, 09:00](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 03:35](1069 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:15](1029 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:31](924 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](928 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 03:35](929 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 03:35](1081 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:38](1066 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:22, 03:32](937 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:20, 07:57](884 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:20, 08:03](842 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:19, 03:35](1077 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:24, 05:01](2399 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 05:03](2403 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:13]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:59](996 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:01]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:22, 03:36](1054 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:51]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 01:47](232 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:30, 04:53](266 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:53](251 MB)
-
-PASS -- COMPILE 'atml_intel' [39:14, 38:47]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:29](1600 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:51](870 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:13, 31:19]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:17](1609 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:12, 30:48]
-PASS -- TEST 'atmaero_control_p8_intel' [06:24, 05:09](1693 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:20, 06:25](1717 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [38:58, 38:57]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 06:54](1772 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:04]
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:34, 20:51](1656 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 22:28](1871 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 10:26](993 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:41, 23:57](1618 MB)
+
+PASS -- COMPILE 's2swa_intel' [38:54, 38:53]
+PASS -- TEST 'cpld_control_p8_intel' [08:51, 07:30](1831 MB)
+FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:51, 04:24](1711 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:08, 07:43](1825 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:31](1733 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:27, 07:11](2265 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 07:36](1813 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:46, 06:25](1773 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:37](1813 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 07:16](1753 MB)
+
+PASS -- COMPILE 's2sw_intel' [36:24, 36:23]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:56, 05:52](1669 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 05:44](1710 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:15, 05:14]
+PASS -- TEST 'cpld_debug_p8_intel' [11:55, 10:36](1846 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:51, 04:50]
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 07:16](1651 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:12]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 05:44](1707 MB)
+
+PASS -- COMPILE 's2s_intel' [32:46, 32:46]
+PASS -- TEST 'cpld_control_c48_intel' [13:29, 12:45](2799 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:22]
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 07:14](1821 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [53:05, 53:05]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:01, 20:51](1669 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:51, 10:31](1024 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:01, 21:54](1646 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:03, 05:02]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:16, 32:11](1682 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:04, 35:04]
+PASS -- TEST 'control_flake_intel' [04:46, 04:29](646 MB)
+FAILED: TEST TIMED OUT -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 04:00](1541 MB)
+PASS -- TEST 'control_latlon_intel' [04:27, 03:51](1529 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 04:07](1529 MB)
+PASS -- TEST 'control_c48_intel' [12:32, 11:54](1718 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:27, 10:08](848 MB)
+PASS -- TEST 'control_c192_intel' [15:17, 14:18](1678 MB)
+PASS -- TEST 'control_c384_intel' [19:48, 18:10](1826 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:16, 13:36](1001 MB)
+PASS -- TEST 'control_stochy_intel' [02:27, 02:11](602 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:19](434 MB)
+PASS -- TEST 'control_lndp_intel' [02:23, 02:07](602 MB)
+PASS -- TEST 'control_iovr4_intel' [03:31, 03:17](595 MB)
+PASS -- TEST 'control_iovr5_intel' [03:31, 03:17](603 MB)
+PASS -- TEST 'control_p8_intel' [05:11, 04:05](1549 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 04:00](1579 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:13, 03:53](1574 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:09, 02:13](808 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:01, 03:53](1564 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:07](849 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:03, 04:02](1563 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:54, 03:46](1651 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:40, 07:02](1573 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 05:29](1608 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:18, 04:05](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:45, 04:19](1581 MB)
+PASS -- TEST 'regional_control_intel' [07:44, 07:09](758 MB)
+PASS -- TEST 'regional_restart_intel' [04:14, 03:48](930 MB)
+PASS -- TEST 'regional_decomp_intel' [08:08, 07:33](759 MB)
+PASS -- TEST 'regional_2threads_intel' [05:06, 04:31](757 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:04](761 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:04](761 MB)
+
+PASS -- COMPILE 'rrfs_intel' [32:59, 32:58]
+PASS -- TEST 'rap_control_intel' [11:08, 10:04](991 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:32, 05:35](1214 MB)
+PASS -- TEST 'rap_decomp_intel' [11:41, 10:35](989 MB)
+PASS -- TEST 'rap_2threads_intel' [10:43, 09:38](1071 MB)
+PASS -- TEST 'rap_restart_intel' [05:56, 05:17](993 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [11:03, 10:01](991 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:45, 10:42](987 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 07:39](999 MB)
+PASS -- TEST 'hrrr_control_intel' [06:19, 05:09](973 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 05:13](980 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 04:42](1065 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:13, 02:55](910 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:03, 09:57](989 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:38, 12:21](1944 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:22, 12:08](1921 MB)
+
+PASS -- COMPILE 'csawmg_intel' [31:27, 31:27]
+PASS -- TEST 'control_csawmg_intel' [08:36, 08:06](693 MB)
+PASS -- TEST 'control_ras_intel' [04:36, 04:24](667 MB)
+
+PASS -- COMPILE 'wam_intel' [29:55, 29:55]
+PASS -- TEST 'control_wam_intel' [03:01, 02:50](497 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [31:50, 31:49]
+PASS -- TEST 'control_p8_faster_intel' [04:52, 03:38](1568 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:10, 06:36](769 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:58, 05:58]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:55, 03:19](1564 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 03:16](1565 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:03, 03:46](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:38, 03:24](769 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:48, 05:17](811 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:45, 03:28](770 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:23, 03:44](1607 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:31, 03:53](1599 MB)
+PASS -- TEST 'regional_debug_intel' [23:12, 22:35](783 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:24, 06:07](1156 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:08, 05:55](1151 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 06:04](1149 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 06:06](1157 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:05](1160 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:41, 06:19](1236 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 06:13](1151 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:14](1151 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:07](1153 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 06:12](1160 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:18, 06:03](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 06:09](1150 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:12, 10:01](1153 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:13, 06:00](1151 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 07:22](1151 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 06:04](1147 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 10:30](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:00, 04:00]
+PASS -- TEST 'control_wam_debug_intel' [06:22, 06:10](445 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:01, 30:00]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:10, 05:14](1071 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:20, 08:19](901 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 04:29](862 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:54, 07:52](957 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:06](911 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 04:42](853 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 06:14](902 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 02:23](848 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:46, 42:46]
+PASS -- TEST 'conus13km_control_intel' [03:43, 03:01](1104 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:04, 01:27](1054 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:14, 01:38](1022 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:43, 30:42]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:06, 05:33](911 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:13, 06:00](1029 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:10, 05:54](1031 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:09, 18:30](1121 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:12, 18:33](884 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 10:41](1066 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:57, 18:22](1205 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:11]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 06:05](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [34:28, 34:28]
+PASS -- TEST 'hafs_regional_atm_intel' [08:15, 07:01](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:54, 06:31](1094 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 09:13](776 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [17:56, 16:15](801 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:43, 18:12](821 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:36, 05:43](773 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:14, 32:14]
+PASS -- TEST 'hafs_regional_docn_intel' [09:58, 08:43](767 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 08:46](756 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:07, 08:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 03:35](1077 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 02:13](1039 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:34](925 MB)
+FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_iau_gefs_intel' [, ]( MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 03:41](931 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:54, 03:43](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:42, 03:34](1056 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:45, 03:34](927 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:54, 07:54](881 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:48, 07:51](842 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:41, 03:34](1063 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2408 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 05:44](2391 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:19, 03:19]
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:10](1008 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:17]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 03:32](1072 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:55, 01:55]
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:01, 01:36](233 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:37, 01:19](256 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:12, 00:55](256 MB)
+
+PASS -- COMPILE 'atml_intel' [39:04, 39:03]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 07:42](1597 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 07:42](1593 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 03:59](863 MB)
+
+PASS -- COMPILE 'atmw_intel' [31:47, 31:46]
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 02:16](1600 MB)
+
+PASS -- COMPILE 'atmaero_intel' [30:44, 30:44]
+PASS -- TEST 'atmaero_control_p8_intel' [06:30, 05:22](1674 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 06:23](1706 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 06:28](1732 MB)
SYNOPSIS:
-Starting Date/Time: 20240421 00:24:53
-Ending Date/Time: 20240421 04:39:18
-Total Time: 04h:14m:58s
+Starting Date/Time: 20240424 18:28:23
+Ending Date/Time: 20240425 00:58:46
+Total Time: 06h:30m:55s
Compiles Completed: 32/32
-Tests Completed: 156/158
+Tests Completed: 155/158
Failed Tests:
-* TEST control_p8_atmlnd_sbs_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_control_p8_atmlnd_sbs_intel.log
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2173/ufs-weather-model/tests/logs/log_jet/run_atmaero_control_p8_rad_micro_intel.log
+* TEST cpld_control_p8.v2.sfc_intel: FAILED: TEST TIMED OUT
+-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_cpld_control_p8.v2.sfc_intel.log
+* TEST control_CubedSphereGrid_intel: FAILED: TEST TIMED OUT
+-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_control_CubedSphereGrid_intel.log
+* TEST datm_cdeps_iau_gefs_intel: FAILED: TEST TIMED OUT
+-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_datm_cdeps_iau_gefs_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -288,7 +290,7 @@ Result: FAILURE
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+59efb751087aed49bf96c2f722ba7013cbe33785
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -308,7 +310,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -323,25 +325,28 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3224491
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3617777
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
-* (-l) - USE CONFIG FILE: rt.conf.rerun
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'atml_intel' [35:13, 34:29]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:46](1611 MB)
+PASS -- COMPILE 's2swa_intel' [39:13, 38:28]
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:53, 07:28](1828 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:41]
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 03:57](1538 MB)
-PASS -- COMPILE 'atmaero_intel' [31:13, 30:45]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:26, 06:28](1735 MB)
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:57]
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:35](923 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 16:28:22
-Ending Date/Time: 20240422 17:15:58
-Total Time: 00h:47m:49s
-Compiles Completed: 2/2
-Tests Completed: 2/2
+Starting Date/Time: 20240425 12:08:23
+Ending Date/Time: 20240425 12:58:47
+Total Time: 00h:50m:35s
+Compiles Completed: 3/3
+Tests Completed: 3/3
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 4493b88e42..f6db2418d3 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ac0c99fef9ec63df227e1ffff63088c8ec7ecbb1
+bcc92327e9e244c4ca9db1707f4df177799426b2
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,7 +11,7 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
@@ -36,233 +36,299 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107473
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185658
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:50, 28:24]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:46, 01:30](2975 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:12]
-PASS -- TEST 'cpld_control_gfsv17_intel' [42:52, 01:51](1594 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:49, 02:21](1708 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [24:39, 01:59](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:59, 02:28](1573 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [29:50, 28:55]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:58, 02:06](1604 MB)
-
-PASS -- COMPILE 's2swa_intel' [23:40, 22:52]
-PASS -- TEST 'cpld_control_p8_intel' [35:42, 01:12](3004 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:42, 01:39](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [27:20, 01:49](3062 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [35:42, 01:08](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [27:21, 01:46](3081 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [35:42, 01:40](3317 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [35:42, 01:08](2996 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [35:43, 01:32](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [35:42, 01:26](3001 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [35:51, 04:40](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:25, 04:10](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [35:42, 01:47](2967 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:31, 14:50]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [43:51, 00:58](1583 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:13, 01:54](1637 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:25]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:59, 02:04](1640 MB)
-
-PASS -- COMPILE 's2s_intel' [20:36, 19:49]
-PASS -- TEST 'cpld_control_c48_intel' [38:46, 01:34](2657 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:54]
-PASS -- TEST 'cpld_control_p8_faster_intel' [42:52, 01:41](3004 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 16:58]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:51, 00:59](1606 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:27, 01:31](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 01:37](1576 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:19, 04:14]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:04, 01:37](1615 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [22:40, 22:06]
-PASS -- TEST 'control_flake_intel' [31:23, 00:22](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [31:23, 00:28](1475 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:23, 00:28](1486 MB)
-PASS -- TEST 'control_latlon_intel' [31:23, 00:24](1469 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:23, 01:29](1468 MB)
-PASS -- TEST 'control_c48_intel' [31:22, 00:56](1597 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [31:22, 00:52](715 MB)
-PASS -- TEST 'control_c192_intel' [20:26, 00:35](1587 MB)
-PASS -- TEST 'control_c384_intel' [31:27, 01:54](1909 MB)
-PASS -- TEST 'control_c384gdas_intel' [31:27, 02:34](1094 MB)
-PASS -- TEST 'control_stochy_intel' [31:23, 00:26](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [28:56, 01:01](331 MB)
-PASS -- TEST 'control_lndp_intel' [31:23, 00:31](527 MB)
-PASS -- TEST 'control_iovr4_intel' [30:43, 00:41](525 MB)
-PASS -- TEST 'control_iovr5_intel' [28:05, 00:43](523 MB)
-PASS -- TEST 'control_p8_intel' [27:54, 01:35](1507 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [27:39, 01:55](1498 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [27:36, 01:54](1502 MB)
-PASS -- TEST 'control_restart_p8_intel' [22:48, 00:57](695 MB)
-PASS -- TEST 'control_noqr_p8_intel' [27:32, 01:35](1491 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [22:23, 00:55](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [27:31, 01:25](1496 MB)
-PASS -- TEST 'control_2threads_p8_intel' [27:30, 01:12](1592 MB)
-PASS -- TEST 'control_p8_lndp_intel' [27:29, 01:05](1505 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [27:11, 01:57](1566 MB)
-PASS -- TEST 'control_p8_mynn_intel' [27:10, 01:50](1512 MB)
-PASS -- TEST 'merra2_thompson_intel' [27:03, 01:40](1511 MB)
-PASS -- TEST 'regional_control_intel' [26:56, 01:13](608 MB)
-PASS -- TEST 'regional_restart_intel' [20:09, 00:24](782 MB)
-PASS -- TEST 'regional_decomp_intel' [26:53, 00:57](608 MB)
-PASS -- TEST 'regional_2threads_intel' [26:27, 00:56](662 MB)
-PASS -- TEST 'regional_noquilt_intel' [26:22, 00:22](1142 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [26:04, 00:22](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [25:55, 00:12](609 MB)
-PASS -- TEST 'regional_wofs_intel' [24:36, 00:47](1577 MB)
-
-PASS -- COMPILE 'rrfs_intel' [32:48, 31:37]
-PASS -- TEST 'rap_control_intel' [14:57, 01:15](919 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:01, 01:05](1093 MB)
-PASS -- TEST 'rap_decomp_intel' [13:51, 01:28](920 MB)
-PASS -- TEST 'rap_2threads_intel' [13:44, 01:18](1008 MB)
-PASS -- TEST 'rap_restart_intel' [06:25, 01:11](785 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [13:43, 02:12](914 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:37, 01:51](913 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [04:16, 01:45](787 MB)
-PASS -- TEST 'hrrr_control_intel' [12:47, 01:23](912 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [12:30, 01:02](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [12:09, 01:19](997 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [07:24, 01:03](739 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:35, 01:19](907 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:15, 01:00](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 01:17](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:27, 12:54]
-PASS -- TEST 'control_csawmg_intel' [23:04, 00:35](600 MB)
-PASS -- TEST 'control_ras_intel' [22:26, 00:52](559 MB)
-
-PASS -- COMPILE 'wam_intel' [22:39, 21:31]
-PASS -- TEST 'control_wam_intel' [20:11, 00:52](270 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:48]
-PASS -- TEST 'control_p8_faster_intel' [33:28, 02:04](1516 MB)
-PASS -- TEST 'regional_control_faster_intel' [33:27, 00:23](613 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:42]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:03, 01:18](1487 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:01, 00:29](1491 MB)
-PASS -- TEST 'control_stochy_debug_intel' [21:40, 00:52](693 MB)
-PASS -- TEST 'control_lndp_debug_intel' [21:39, 01:10](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [21:23, 00:40](735 MB)
-PASS -- TEST 'control_ras_debug_intel' [20:40, 01:06](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [20:38, 01:17](1555 MB)
-PASS -- TEST 'control_debug_p8_intel' [20:37, 01:05](1517 MB)
-PASS -- TEST 'regional_debug_intel' [20:31, 00:41](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [20:32, 00:54](1075 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [20:17, 00:58](1072 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [20:16, 00:55](1075 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [19:26, 00:56](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:03, 00:59](1073 MB)
-PASS -- TEST 'rap_diag_debug_intel' [18:48, 00:50](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:10, 00:46](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [17:54, 00:52](1079 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [17:24, 00:51](1077 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:13, 00:53](1075 MB)
-PASS -- TEST 'rap_noah_debug_intel' [17:12, 00:59](1072 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [17:11, 00:54](1077 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [16:55, 00:47](1073 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [16:42, 00:59](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [16:26, 01:05](1076 MB)
-PASS -- TEST 'rap_flake_debug_intel' [16:12, 00:50](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [06:12, 02:13](1079 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:19, 05:55]
-PASS -- TEST 'control_wam_debug_intel' [32:27, 00:58](299 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:29, 13:45]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:48, 01:21](953 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:43, 01:17](791 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:16, 02:15](784 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 01:45](849 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:21, 02:17](841 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:42, 02:06](790 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:08](685 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:28, 00:16](667 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [26:43, 25:49]
-PASS -- TEST 'conus13km_control_intel' [05:45, 00:59](1003 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:53](1007 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:46, 00:39](884 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:37, 21:40]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:40, 01:22](812 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:13, 01:00](948 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:28, 01:09](952 MB)
-PASS -- TEST 'conus13km_debug_intel' [09:16, 01:23](1033 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [08:56, 01:12](706 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:55, 00:26](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [51:27, 01:15](1099 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:29, 13:59]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:22, 00:54](982 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:27, 12:07]
-PASS -- TEST 'hafs_regional_atm_intel' [07:26, 01:55](617 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:18, 01:18](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:02, 01:37](661 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [05:02, 02:22](700 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [04:51, 01:49](711 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:31, 01:02](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [04:17, 02:06](408 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:54, 01:28](283 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [03:57, 02:06](532 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [03:46, 01:30](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:45, 00:46](414 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [03:00, 01:36](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:51, 01:17](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [10:24, 09:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:48, 01:31](499 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:28, 13:04]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:45, 01:45](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [02:17, 01:49](712 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:54]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [59:43, 01:59](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:31, 14:18]
-PASS -- TEST 'hafs_regional_docn_intel' [01:41, 02:02](660 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [01:32, 01:59](650 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [01:18, 00:29](880 MB)
-
-PASS -- COMPILE 'atml_intel' [17:34, 16:41]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:02, 02:19](1551 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [59:19, 02:13](1545 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [51:33, 01:16](741 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:31, 14:58]
-PASS -- TEST 'atmaero_control_p8_intel' [59:15, 01:23](2849 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [59:05, 01:49](2912 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [59:05, 01:49](2922 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:21, 03:29]
-PASS -- TEST 'regional_atmaq_debug_intel' [58:51, 02:09](4447 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [27:46, 27:26]
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:19, 01:21](2970 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:51]
+PASS -- TEST 'cpld_control_gfsv17_intel' [14:36, 02:00](1594 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:37, 01:52](1717 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [56:37, 01:31](850 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:44, 01:30](1569 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:29]
+PASS -- TEST 'cpld_debug_gfsv17_intel' [21:46, 01:50](1601 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:34, 15:27]
+PASS -- TEST 'cpld_control_p8_intel' [10:29, 01:22](3007 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 01:47](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [02:08, 01:43](3066 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:29, 01:20](3027 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [02:10, 01:40](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:29, 01:07](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 01:17](3002 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:30, 01:27](2928 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:29, 01:49](3003 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [10:38, 03:00](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [53:25, 03:56](4251 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 01:53](2967 MB)
+
+PASS -- COMPILE 's2sw_intel' [14:29, 13:58]
+PASS -- TEST 'cpld_control_noaero_p8_intel' [12:36, 00:47](1582 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:36, 01:52](1639 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:24, 10:10]
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:40, 00:56](1638 MB)
+
+PASS -- COMPILE 's2s_intel' [25:45, 24:32]
+PASS -- TEST 'cpld_control_c48_intel' [01:18, 00:40](2654 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [27:46, 26:37]
+PASS -- TEST 'cpld_control_p8_faster_intel' [59:19, 01:33](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 12:08]
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:35, 01:13](1605 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:05, 00:41](902 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [57:06, 01:40](1582 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:35, 15:50]
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:30, 01:38](1613 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [26:42, 25:46]
+PASS -- TEST 'control_flake_intel' [55:02, 00:29](571 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [55:01, 00:24](1477 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [51:16, 01:19](1474 MB)
+PASS -- TEST 'control_latlon_intel' [55:01, 00:22](1475 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:01, 00:31](1467 MB)
+PASS -- TEST 'control_c48_intel' [55:00, 00:50](1594 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [55:00, 00:50](714 MB)
+PASS -- TEST 'control_c192_intel' [55:01, 01:22](1584 MB)
+PASS -- TEST 'control_c384_intel' [55:05, 01:59](1911 MB)
+PASS -- TEST 'control_c384gdas_intel' [55:05, 02:25](1089 MB)
+PASS -- TEST 'control_stochy_intel' [55:01, 00:31](527 MB)
+PASS -- TEST 'control_stochy_restart_intel' [52:32, 00:56](336 MB)
+PASS -- TEST 'control_lndp_intel' [55:01, 00:36](526 MB)
+PASS -- TEST 'control_iovr4_intel' [55:01, 00:49](523 MB)
+PASS -- TEST 'control_iovr5_intel' [55:01, 00:50](527 MB)
+PASS -- TEST 'control_p8_intel' [55:01, 01:55](1502 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [55:01, 01:52](1513 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [55:01, 01:57](1511 MB)
+PASS -- TEST 'control_restart_p8_intel' [49:30, 00:48](693 MB)
+PASS -- TEST 'control_noqr_p8_intel' [55:01, 01:54](1499 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 00:52](700 MB)
+PASS -- TEST 'control_decomp_p8_intel' [54:34, 01:25](1499 MB)
+PASS -- TEST 'control_2threads_p8_intel' [53:10, 01:22](1589 MB)
+PASS -- TEST 'control_p8_lndp_intel' [52:33, 01:24](1501 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [51:35, 02:02](1556 MB)
+PASS -- TEST 'control_p8_mynn_intel' [51:29, 01:57](1513 MB)
+PASS -- TEST 'merra2_thompson_intel' [51:29, 01:44](1513 MB)
+PASS -- TEST 'regional_control_intel' [51:20, 00:20](608 MB)
+PASS -- TEST 'regional_restart_intel' [45:35, 00:13](778 MB)
+PASS -- TEST 'regional_decomp_intel' [51:14, 00:54](608 MB)
+PASS -- TEST 'regional_2threads_intel' [51:11, 00:56](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [51:03, 00:23](1141 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [50:46, 00:28](609 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [50:29, 00:22](609 MB)
+PASS -- TEST 'regional_wofs_intel' [49:33, 00:58](1580 MB)
+
+PASS -- COMPILE 'rrfs_intel' [30:47, 30:16]
+PASS -- TEST 'rap_control_intel' [45:48, 01:46](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:21, 00:33](1099 MB)
+PASS -- TEST 'rap_decomp_intel' [44:57, 01:11](917 MB)
+PASS -- TEST 'rap_2threads_intel' [44:56, 00:45](1012 MB)
+PASS -- TEST 'rap_restart_intel' [36:22, 01:12](789 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [44:45, 01:26](914 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:32, 01:40](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [33:21, 01:20](783 MB)
+PASS -- TEST 'hrrr_control_intel' [44:26, 01:23](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [43:32, 01:19](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [43:14, 01:36](993 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [36:15, 01:05](741 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [42:58, 01:44](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [42:56, 01:16](1874 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:27, 01:03](1863 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:30, 14:57]
+PASS -- TEST 'control_csawmg_intel' [59:06, 00:32](602 MB)
+PASS -- TEST 'control_ras_intel' [59:06, 00:51](560 MB)
+
+PASS -- COMPILE 'wam_intel' [09:23, 08:32]
+PASS -- TEST 'control_wam_intel' [05:11, 00:58](270 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [24:39, 23:52]
+PASS -- TEST 'control_p8_faster_intel' [47:51, 01:29](1507 MB)
+PASS -- TEST 'regional_control_faster_intel' [46:59, 00:57](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [34:51, 33:49]
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:59, 00:41](1488 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:54, 00:51](1492 MB)
+PASS -- TEST 'control_stochy_debug_intel' [33:54, 00:41](690 MB)
+PASS -- TEST 'control_lndp_debug_intel' [33:42, 00:24](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [33:41, 01:08](733 MB)
+PASS -- TEST 'control_ras_debug_intel' [33:14, 00:41](703 MB)
+PASS -- TEST 'control_diag_debug_intel' [32:47, 01:14](1542 MB)
+PASS -- TEST 'control_debug_p8_intel' [32:38, 01:05](1518 MB)
+PASS -- TEST 'regional_debug_intel' [32:28, 00:45](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [32:19, 00:54](1073 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [32:07, 00:57](1067 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [32:00, 00:57](1075 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [31:54, 00:50](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [31:36, 00:47](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [31:33, 00:44](1155 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:22, 00:49](1072 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:04, 00:50](1076 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [30:09, 00:53](1076 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:03, 00:53](1072 MB)
+PASS -- TEST 'rap_noah_debug_intel' [29:55, 01:00](1076 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [29:53, 00:54](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:28, 00:49](1076 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [29:17, 01:00](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [29:17, 01:07](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [28:54, 00:52](1076 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:47, 01:13](1081 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:18, 05:00]
+PASS -- TEST 'control_wam_debug_intel' [05:10, 01:00](298 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:29, 15:03]
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:33, 01:15](955 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:30, 01:07](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:59, 02:19](788 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:22, 01:13](856 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:58, 01:07](837 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:30, 00:57](787 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:14, 01:36](690 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:50, 00:49](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:53]
+PASS -- TEST 'conus13km_control_intel' [46:28, 00:31](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [41:50, 00:30](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [41:34, 00:36](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:22]
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:22, 00:53](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:47]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:19, 00:33](953 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:20, 00:43](948 MB)
+PASS -- TEST 'conus13km_debug_intel' [45:54, 01:09](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [41:30, 01:03](709 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [41:25, 00:26](1036 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:38, 01:16](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 05:25]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:07, 00:58](980 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:31, 16:09]
+PASS -- TEST 'hafs_regional_atm_intel' [40:40, 02:04](618 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:16, 00:33](965 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:45, 01:29](662 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [39:45, 02:14](696 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:41, 02:04](712 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:06, 00:54](387 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:59, 02:13](413 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [38:56, 01:22](281 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:28, 02:17](370 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:30, 01:18](419 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:11, 00:49](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:58, 01:32](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:46, 01:11](312 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:19]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [36:18, 01:32](494 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [10:23, 10:01]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:35](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:59, 01:37](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:28]
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:18, 00:55](709 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:24, 09:42]
+PASS -- TEST 'hafs_regional_docn_intel' [35:44, 01:23](665 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:02, 01:19](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:56, 00:25](881 MB)
+
+PASS -- COMPILE 'atml_intel' [22:38, 20:33]
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [25:20, 01:16](1543 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:46, 00:23](739 MB)
+
+PASS -- COMPILE 'atmaero_intel' [18:35, 16:03]
+PASS -- TEST 'atmaero_control_p8_intel' [27:13, 01:30](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [27:11, 00:52](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:00, 01:50](2920 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:27]
+PASS -- TEST 'regional_atmaq_debug_intel' [25:58, 01:23](4432 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 20:00:17
-Ending Date/Time: 20240422 21:30:47
-Total Time: 01h:31m:05s
+Starting Date/Time: 20240423 18:32:37
+Ending Date/Time: 20240423 20:00:11
+Total Time: 01h:28m:12s
Compiles Completed: 30/30
-Tests Completed: 155/155
+Tests Completed: 154/155
+Failed Tests:
+* TEST control_p8_atmlnd_sbs_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_control_p8_atmlnd_sbs_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF WCOSS2 REGRESSION TESTING LOG====
+====START OF WCOSS2 REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+bcc92327e9e244c4ca9db1707f4df177799426b2
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66976
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-b) - NEW BASELINES FROM FILE: test_changes.list
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atml_intel' [10:25, 10:08]
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:51, 01:10](1543 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240423 20:04:01
+Ending Date/Time: 20240423 20:27:55
+Total Time: 00h:24m:14s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/rt.sh b/tests/rt.sh
index 201ce697f8..5279f68ff8 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -62,10 +62,6 @@ update_rtconf() {
[[ -s "${NEW_BASELINES_FILE}" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..."
TEST_WITH_COMPILE=()
readarray -t TEST_WITH_COMPILE < "${NEW_BASELINES_FILE}"
- # else USER CHOSE THE -l OPTION
- elif [[ ${DEFINE_CONF_FILE} == true ]]; then
- echo "No update needed to TESTS_FILE"
- return
# else USER CHOSE THE -n OPTION
elif [[ ${RUN_SINGLE_TEST} == true ]]; then
TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}")
@@ -662,6 +658,8 @@ done
[[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time"
[[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time"
[[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time"
+#B&N not run together
+[[ ${NEW_BASELINES_FILE} != '' && ${RUN_SINGLE_TEST} == true ]] && die "-b and -n options cannot be used at the same time"
[[ -o xtrace ]] && set_x='set -x' || set_x='set +x'
@@ -1029,11 +1027,6 @@ case ${MACHINE_ID} in
esac
eval "${set_x}"
-# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST
-[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST"
-[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST"
-[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST"
-
mkdir -p "${STMP}/${USER}"
NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST
@@ -1046,6 +1039,11 @@ echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir"
ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir"
echo "Run regression test in: ${RUNDIR_ROOT}"
+# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST
+[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST"
+[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST"
+[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST"
+
update_rtconf
if [[ ${TESTS_FILE} =~ '35d' ]] || [[ ${TESTS_FILE} =~ 'weekly' ]]; then
From f234a3e42f2a03095f53fe1708a9c6b8a8993a33 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ufuk=20Turun=C3=A7o=C4=9Flu?=
Date: Tue, 30 Apr 2024 11:35:25 -0600
Subject: [PATCH 27/33] Fix for land component model (#2191)
* UFSWM - fix fully coupled land component configuration
* NOAHMP - get fixed information from surface file
---
NOAHMP-interface/noahmp | 2 +-
cmake/Intel.cmake | 3 +
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 82 +-
tests/logs/RT-run-Derecho.log | 415 ----------
tests/logs/RT-run-Hercules.log | 16 -
tests/logs/RegressionTests_acorn.log | 531 ++++++------
tests/logs/RegressionTests_derecho.log | 616 ++++++++------
tests/logs/RegressionTests_gaea.log | 589 ++++++++------
tests/logs/RegressionTests_hera.log | 764 ++++++++++--------
tests/logs/RegressionTests_hercules.log | 762 +++++++++--------
tests/logs/RegressionTests_jet.log | 541 ++++++-------
tests/logs/RegressionTests_orion.log | 597 +++++++-------
tests/logs/RegressionTests_wcoss2.log | 525 ++++++------
tests/rt.conf | 3 +
tests/rt.sh | 72 +-
tests/test_changes.list | 18 +-
tests/tests/control_p8_atmlnd | 1 +
tests/tests/control_p8_atmlnd_debug | 84 ++
tests/tests/control_p8_atmlnd_sbs | 1 +
tests/tests/control_restart_p8_atmlnd | 1 +
23 files changed, 2721 insertions(+), 2976 deletions(-)
delete mode 100644 tests/logs/RT-run-Derecho.log
delete mode 100644 tests/logs/RT-run-Hercules.log
create mode 100644 tests/tests/control_p8_atmlnd_debug
diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp
index 6a51f0295b..1e259014c1 160000
--- a/NOAHMP-interface/noahmp
+++ b/NOAHMP-interface/noahmp
@@ -1 +1 @@
-Subproject commit 6a51f0295bc1a877475b527157a33aa86eb532fe
+Subproject commit 1e259014c1eba9070cec7027d8b4b479ae54275a
diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake
index a18ff15fc2..73564f1783 100644
--- a/cmake/Intel.cmake
+++ b/cmake/Intel.cmake
@@ -7,6 +7,9 @@ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462")
# remark #7712: This variable has not been used.
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712")
+# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291")
+
if(CMAKE_Platform STREQUAL "derecho.intel")
set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries")
endif()
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 2c9c09b289..ba022070b2 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240419
+export BL_DATE=20240426
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 1c5bcbbd00..1390b3f6f6 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Apr 24 12:38:17 UTC 2024
+Mon Apr 29 18:57:13 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 276.967845
- 0: The maximum resident set size (KB) = 1253216
+ 0: The total amount of wall time = 269.680202
+ 0: The maximum resident set size (KB) = 1266668
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 960.176678
- 0: The maximum resident set size (KB) = 1233464
+ 0: The total amount of wall time = 949.326805
+ 0: The maximum resident set size (KB) = 1255152
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.109868
- 0: The maximum resident set size (KB) = 1235600
+ 0: The total amount of wall time = 240.344326
+ 0: The maximum resident set size (KB) = 1245676
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.999110
- 0: The maximum resident set size (KB) = 1231020
+ 0: The total amount of wall time = 237.351607
+ 0: The maximum resident set size (KB) = 1245716
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 241.494846
- 0: The maximum resident set size (KB) = 1230996
+ 0: The total amount of wall time = 242.201971
+ 0: The maximum resident set size (KB) = 1246024
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 240.187367
- 0: The maximum resident set size (KB) = 1237016
+ 0: The total amount of wall time = 238.461943
+ 0: The maximum resident set size (KB) = 1245616
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1818248/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.880609
- 0: The maximum resident set size (KB) = 1228084
+ 0: The total amount of wall time = 249.430767
+ 0: The maximum resident set size (KB) = 1247248
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 24 13:54:57 UTC 2024
-Elapsed time: 01h:16m:40s. Have a nice day!
+Mon Apr 29 20:17:04 UTC 2024
+Elapsed time: 01h:19m:51s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 29f8955f5e..4e0876efed 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed Apr 24 14:04:01 UTC 2024
+Mon Apr 29 23:05:39 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1311.811572
- 0: The maximum resident set size (KB) = 1340536
+ 0: The total amount of wall time = 1323.060262
+ 0: The maximum resident set size (KB) = 1364380
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 389.794167
- 0: The maximum resident set size (KB) = 1341484
+ 0: The total amount of wall time = 393.654864
+ 0: The maximum resident set size (KB) = 1360348
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2151810/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 394.333320
- 0: The maximum resident set size (KB) = 1339512
+ 0: The total amount of wall time = 398.993468
+ 0: The maximum resident set size (KB) = 1358812
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 24 15:05:09 UTC 2024
-Elapsed time: 01h:01m:09s. Have a nice day!
+Tue Apr 30 00:03:24 UTC 2024
+Elapsed time: 00h:57m:46s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index c62b1ed7b4..6e16879d1f 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,28 +1,9 @@
-Wed Apr 24 19:38:47 UTC 2024
+Tue Apr 30 00:26:07 UTC 2024
Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/bit_base_bit_base
-Checking test bit_base results ....
-Moving baseline bit_base files ....
- Moving dynf000.nc .........OK
- Moving dynf006.nc .........OK
- Moving phyf000.nc .........OK
- Moving phyf006.nc .........OK
- Moving PRSLEV.GrbF00 .........OK
- Moving PRSLEV.GrbF06 .........OK
- Moving NATLEV.GrbF00 .........OK
- Moving NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 1236.978294
- 0: The maximum resident set size (KB) = 577672
-
-Test bit_base PASS
-
-
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -33,14 +14,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2229.582684
- 0: The maximum resident set size (KB) = 541864
+ 0: The total amount of wall time = 2131.450659
+ 0: The maximum resident set size (KB) = 555224
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -52,15 +33,15 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2186.237690
- 0: The maximum resident set size (KB) = 539180
+ 0: The total amount of wall time = 2150.481127
+ 0: The maximum resident set size (KB) = 553380
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/std_std
-Checking test std results ....
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/thr_thr
+Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
Comparing phyf000.nc .....USING NCCMP......OK
@@ -70,29 +51,36 @@ Checking test std results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2172.179940
- 0: The maximum resident set size (KB) = 541092
+ 0: The total amount of wall time = 2147.836334
+ 0: The maximum resident set size (KB) = 554792
-Test std PASS
+Test thr PASS
+OPERATION REQUIREMENT TEST WAS SUCCESSFUL
+Tue Apr 30 02:20:21 UTC 2024
+Elapsed time: 01h:54m:14s. Have a nice day!
+Tue Apr 30 16:20:31 UTC 2024
+Start Operation Requirement Test
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_777322/thr_thr
-Checking test thr results ....
- Comparing dynf000.nc .....USING NCCMP......OK
- Comparing dynf006.nc .....USING NCCMP......OK
- Comparing phyf000.nc .....USING NCCMP......OK
- Comparing phyf006.nc .....USING NCCMP......OK
- Comparing PRSLEV.GrbF00 .....USING CMP......OK
- Comparing PRSLEV.GrbF06 .....USING CMP......OK
- Comparing NATLEV.GrbF00 .....USING CMP......OK
- Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2094.600637
- 0: The maximum resident set size (KB) = 541332
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1270533/bit_base_bit_base
+Checking test bit_base results ....
+Moving baseline bit_base files ....
+ Moving dynf000.nc .........OK
+ Moving dynf006.nc .........OK
+ Moving phyf000.nc .........OK
+ Moving phyf006.nc .........OK
+ Moving PRSLEV.GrbF00 .........OK
+ Moving PRSLEV.GrbF06 .........OK
+ Moving NATLEV.GrbF00 .........OK
+ Moving NATLEV.GrbF06 .........OK
+
+ 0: The total amount of wall time = 1420.618445
+ 0: The maximum resident set size (KB) = 583292
-Test thr PASS
+Test bit_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed Apr 24 23:19:25 UTC 2024
-Elapsed time: 03h:40m:38s. Have a nice day!
+Tue Apr 30 16:49:13 UTC 2024
+Elapsed time: 00h:28m:43s. Have a nice day!
diff --git a/tests/logs/RT-run-Derecho.log b/tests/logs/RT-run-Derecho.log
deleted file mode 100644
index 9dae8589b0..0000000000
--- a/tests/logs/RT-run-Derecho.log
+++ /dev/null
@@ -1,415 +0,0 @@
-******Regression Testing Script Started******
-derecho6
-Machine: derecho
-Account: nral0032
-rt.sh: Setting up derecho...
-Linking /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018 to /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir
-Run regression test in: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018
-rt.sh: Checking & Updating test configuration...
-No update needed to rt.conf
-Verifying ECFLOW support...
-rt_utils.sh: s2swa_32bit_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_p8_mixedmode_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_p8_mixedmode_intel: Creating ECFLOW run task
-rt_utils.sh: s2swa_32bit_pdlib_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_gfsv17_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_gfsv17_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_gfsv17_iau_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_gfsv17_iau_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_gfsv17_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_gfsv17_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_mpi_gfsv17_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_mpi_gfsv17_intel: Creating ECFLOW run task
-rt_utils.sh: s2swa_32bit_pdlib_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_debug_gfsv17_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_debug_gfsv17_intel: Creating ECFLOW run task
-rt_utils.sh: s2swa_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_p8.v2.sfc_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_p8.v2.sfc_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_qr_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_qr_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_qr_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_qr_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_decomp_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_decomp_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_mpi_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_mpi_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_ciceC_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_ciceC_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_c192_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_c192_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_c192_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_c192_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_bmark_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_bmark_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_bmark_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_bmark_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_s2sa_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_s2sa_p8_intel: Creating ECFLOW run task
-rt_utils.sh: s2sw_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_noaero_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_noaero_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_nowave_noaero_p8_intel: Creating ECFLOW run task
-rt_utils.sh: s2swa_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_debug_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_debug_p8_intel: Creating ECFLOW run task
-rt_utils.sh: s2sw_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_debug_noaero_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_debug_noaero_p8_intel: Creating ECFLOW run task
-rt_utils.sh: s2s_aoflux_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_noaero_p8_agrid_intel: Creating ECFLOW run task
-rt_utils.sh: s2s_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_c48_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_c48_intel: Creating ECFLOW run task
-rt_utils.sh: s2swa_faster_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_p8_faster_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_p8_faster_intel: Creating ECFLOW run task
-rt_utils.sh: s2sw_pdlib_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_control_pdlib_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_control_pdlib_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_restart_pdlib_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_restart_pdlib_p8_intel: Creating ECFLOW run task
-rt_utils.sh: cpld_mpi_pdlib_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_mpi_pdlib_p8_intel: Creating ECFLOW run task
-rt_utils.sh: s2sw_pdlib_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: cpld_debug_pdlib_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: cpld_debug_pdlib_p8_intel: Creating ECFLOW run task
-rt_utils.sh: atm_dyn32_intel: Creating ECFLOW compile task
-rt_utils.sh: control_flake_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_flake_intel: Creating ECFLOW run task
-rt_utils.sh: control_CubedSphereGrid_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_CubedSphereGrid_intel: Creating ECFLOW run task
-rt_utils.sh: control_CubedSphereGrid_parallel_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_CubedSphereGrid_parallel_intel: Creating ECFLOW run task
-rt_utils.sh: control_latlon_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_latlon_intel: Creating ECFLOW run task
-rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_wrtGauss_netcdf_parallel_intel: Creating ECFLOW run task
-rt_utils.sh: control_c48_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_c48_intel: Creating ECFLOW run task
-rt_utils.sh: control_c48.v2.sfc_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_c48.v2.sfc_intel: Creating ECFLOW run task
-rt_utils.sh: control_c192_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_c192_intel: Creating ECFLOW run task
-rt_utils.sh: control_c384_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_c384_intel: Creating ECFLOW run task
-rt_utils.sh: control_c384gdas_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_c384gdas_intel: Creating ECFLOW run task
-rt_utils.sh: control_stochy_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_stochy_intel: Creating ECFLOW run task
-rt_utils.sh: control_stochy_restart_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_stochy_restart_intel: Creating ECFLOW run task
-rt_utils.sh: control_lndp_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_lndp_intel: Creating ECFLOW run task
-rt_utils.sh: control_iovr4_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_iovr4_intel: Creating ECFLOW run task
-rt_utils.sh: control_iovr5_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_iovr5_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8.v2.sfc_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8.v2.sfc_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_ugwpv1_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_ugwpv1_intel: Creating ECFLOW run task
-rt_utils.sh: control_restart_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_restart_p8_intel: Creating ECFLOW run task
-rt_utils.sh: control_noqr_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_noqr_p8_intel: Creating ECFLOW run task
-rt_utils.sh: control_restart_noqr_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_restart_noqr_p8_intel: Creating ECFLOW run task
-rt_utils.sh: control_decomp_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_decomp_p8_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_lndp_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_lndp_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_rrtmgp_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_rrtmgp_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_mynn_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_mynn_intel: Creating ECFLOW run task
-rt_utils.sh: merra2_thompson_intel: Computing PET bounds and tasks.
-rt_utils.sh: merra2_thompson_intel: Creating ECFLOW run task
-rt_utils.sh: regional_control_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_control_intel: Creating ECFLOW run task
-rt_utils.sh: regional_restart_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_restart_intel: Creating ECFLOW run task
-rt_utils.sh: regional_decomp_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_decomp_intel: Creating ECFLOW run task
-rt_utils.sh: regional_noquilt_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_noquilt_intel: Creating ECFLOW run task
-rt_utils.sh: regional_netcdf_parallel_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_netcdf_parallel_intel: Creating ECFLOW run task
-rt_utils.sh: regional_2dwrtdecomp_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_2dwrtdecomp_intel: Creating ECFLOW run task
-rt_utils.sh: regional_wofs_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_wofs_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_intel: Creating ECFLOW compile task
-rt_utils.sh: rap_control_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_intel: Creating ECFLOW run task
-rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_spp_sppt_shum_skeb_intel: Creating ECFLOW run task
-rt_utils.sh: rap_decomp_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_decomp_intel: Creating ECFLOW run task
-rt_utils.sh: rap_restart_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_restart_intel: Creating ECFLOW run task
-rt_utils.sh: rap_sfcdiff_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_sfcdiff_intel: Creating ECFLOW run task
-rt_utils.sh: rap_sfcdiff_decomp_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_sfcdiff_decomp_intel: Creating ECFLOW run task
-rt_utils.sh: rap_sfcdiff_restart_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_sfcdiff_restart_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_decomp_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_decomp_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_2threads_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_2threads_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_restart_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_restart_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_v1beta_intel: Computing PET bounds and tasks.
-rt_utils.sh: rrfs_v1beta_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_v1nssl_intel: Computing PET bounds and tasks.
-rt_utils.sh: rrfs_v1nssl_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Computing PET bounds and tasks.
-rt_utils.sh: rrfs_v1nssl_nohailnoccn_intel: Creating ECFLOW run task
-rt_utils.sh: csawmg_intel: Creating ECFLOW compile task
-rt_utils.sh: control_csawmg_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_csawmg_intel: Creating ECFLOW run task
-rt_utils.sh: control_ras_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_ras_intel: Creating ECFLOW run task
-rt_utils.sh: wam_intel: Creating ECFLOW compile task
-rt_utils.sh: control_wam_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_wam_intel: Creating ECFLOW run task
-rt_utils.sh: atm_faster_dyn32_intel: Creating ECFLOW compile task
-rt_utils.sh: control_p8_faster_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_faster_intel: Creating ECFLOW run task
-rt_utils.sh: regional_control_faster_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_control_faster_intel: Creating ECFLOW run task
-rt_utils.sh: atm_debug_dyn32_intel: Creating ECFLOW compile task
-rt_utils.sh: control_CubedSphereGrid_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_CubedSphereGrid_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_wrtGauss_netcdf_parallel_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_stochy_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_stochy_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_lndp_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_lndp_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_csawmg_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_csawmg_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_ras_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_ras_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_diag_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_diag_debug_intel: Creating ECFLOW run task
-rt_utils.sh: control_debug_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_debug_p8_intel: Creating ECFLOW run task
-rt_utils.sh: regional_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_control_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_debug_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_debug_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_gf_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_gf_debug_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_c3_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_c3_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_unified_drag_suite_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_unified_drag_suite_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_diag_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_diag_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_cires_ugwp_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_cires_ugwp_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_unified_ugwp_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_unified_ugwp_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_lndp_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_lndp_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_progcld_thompson_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_progcld_thompson_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_noah_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_noah_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_sfcdiff_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_sfcdiff_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_noah_sfcdiff_cires_ugwp_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_v1beta_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rrfs_v1beta_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_clm_lake_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_clm_lake_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rap_flake_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_flake_debug_intel: Creating ECFLOW run task
-rt_utils.sh: gnv1_c96_no_nest_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: gnv1_c96_no_nest_debug_intel: Creating ECFLOW run task
-rt_utils.sh: wam_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: control_wam_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_wam_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_dyn32_phy32_intel: Creating ECFLOW compile task
-rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_spp_sppt_shum_skeb_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: rap_control_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_decomp_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: rap_restart_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_restart_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_restart_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_dyn32_phy32_faster_intel: Creating ECFLOW compile task
-rt_utils.sh: conus13km_control_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_control_intel: Creating ECFLOW run task
-rt_utils.sh: conus13km_2threads_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_2threads_intel: Creating ECFLOW run task
-rt_utils.sh: conus13km_restart_mismatch_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_restart_mismatch_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_dyn64_phy32_intel: Creating ECFLOW compile task
-rt_utils.sh: rap_control_dyn64_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_dyn64_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_dyn32_phy32_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_debug_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Computing PET bounds and tasks.
-rt_utils.sh: hrrr_control_debug_dyn32_phy32_intel: Creating ECFLOW run task
-rt_utils.sh: conus13km_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_debug_intel: Creating ECFLOW run task
-rt_utils.sh: conus13km_debug_qr_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_debug_qr_intel: Creating ECFLOW run task
-rt_utils.sh: conus13km_radar_tten_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: conus13km_radar_tten_debug_intel: Creating ECFLOW run task
-rt_utils.sh: rrfs_dyn64_phy32_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: rap_control_dyn64_phy32_debug_intel: Creating ECFLOW run task
-rt_utils.sh: hafsw_intel: Creating ECFLOW compile task
-rt_utils.sh: hafs_regional_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_atm_thompson_gfdlsf_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_atm_ocn_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_atm_ocn_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_atm_wav_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_atm_wav_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_atm_ocn_wav_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_1nest_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_1nest_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_telescopic_2nests_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_global_1nest_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_global_1nest_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_global_multiple_4nests_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_specified_moving_1nest_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_global_storm_following_1nest_atm_intel: Creating ECFLOW run task
-rt_utils.sh: gnv1_nested_intel: Computing PET bounds and tasks.
-rt_utils.sh: gnv1_nested_intel: Creating ECFLOW run task
-rt_utils.sh: hafsw_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_debug_intel: Creating ECFLOW run task
-rt_utils.sh: hafsw_faster_intel: Creating ECFLOW compile task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_mom6w_intel: Creating ECFLOW compile task
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_all_intel: Creating ECFLOW compile task
-rt_utils.sh: hafs_regional_docn_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_docn_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_docn_oisst_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_docn_oisst_intel: Creating ECFLOW run task
-rt_utils.sh: hafs_regional_datm_cdeps_intel: Computing PET bounds and tasks.
-rt_utils.sh: hafs_regional_datm_cdeps_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_intel: Creating ECFLOW compile task
-rt_utils.sh: datm_cdeps_control_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_control_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_restart_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_restart_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_control_gefs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_control_gefs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_iau_gefs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_iau_gefs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_stochy_gefs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_stochy_gefs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_ciceC_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_bulk_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_bulk_gefs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_bulk_gefs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_mx025_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_mx025_gefs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_mx025_gefs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_multiple_files_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_3072x1536_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_gfs_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_gfs_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: datm_cdeps_debug_cfsr_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_debug_cfsr_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_faster_intel: Creating ECFLOW compile task
-rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_control_cfsr_faster_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_land_intel: Creating ECFLOW compile task
-rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_lnd_gswp3_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_lnd_era5_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_lnd_era5_intel: Creating ECFLOW run task
-rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Computing PET bounds and tasks.
-rt_utils.sh: datm_cdeps_lnd_era5_rst_intel: Creating ECFLOW run task
-rt_utils.sh: atml_intel: Creating ECFLOW compile task
-rt_utils.sh: control_p8_atmlnd_sbs_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_atmlnd_sbs_intel: Creating ECFLOW run task
-rt_utils.sh: control_p8_atmlnd_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_p8_atmlnd_intel: Creating ECFLOW run task
-rt_utils.sh: control_restart_p8_atmlnd_intel: Computing PET bounds and tasks.
-rt_utils.sh: control_restart_p8_atmlnd_intel: Creating ECFLOW run task
-rt_utils.sh: atmw_intel: Creating ECFLOW compile task
-rt_utils.sh: atmwav_control_noaero_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: atmwav_control_noaero_p8_intel: Creating ECFLOW run task
-rt_utils.sh: atmaero_intel: Creating ECFLOW compile task
-rt_utils.sh: atmaero_control_p8_intel: Computing PET bounds and tasks.
-rt_utils.sh: atmaero_control_p8_intel: Creating ECFLOW run task
-rt_utils.sh: atmaero_control_p8_rad_intel: Computing PET bounds and tasks.
-rt_utils.sh: atmaero_control_p8_rad_intel: Creating ECFLOW run task
-rt_utils.sh: atmaero_control_p8_rad_micro_intel: Computing PET bounds and tasks.
-rt_utils.sh: atmaero_control_p8_rad_micro_intel: Creating ECFLOW run task
-rt_utils.sh: atmaq_debug_intel: Creating ECFLOW compile task
-rt_utils.sh: regional_atmaq_debug_intel: Computing PET bounds and tasks.
-rt_utils.sh: regional_atmaq_debug_intel: Creating ECFLOW run task
-rt_utils.sh: Starting ECFLOW run
-ECF_HOST: derecho6, ECF_PORT: 39982
-ecflow_server is NOT running on derecho6:39982
-Wed 24 Apr 2024 12:50:01 PM UTC
-
-User "38482" attempting to start ecf server on "derecho6" using ECF_PORT "39982" and with:
-ECF_HOME : "/glade/derecho/scratch/epicufsrt/FV3_RT/rt_128018/ecflow_server"
-ECF_LOG : "derecho6.39982.ecf.log"
-ECF_CHECK : "derecho6.39982.check"
-ECF_CHECKOLD : "derecho6.39982.check.b"
-ECF_OUT : "/dev/null"
-
-client version is Ecflow version(5.8.4) boost(1.78.0) compiler(gcc 12.2.0) protocol(JSON cereal 1.3.0) openssl(enabled) Compiled on Sep 20 2023 09:36:19
-Checking if the server is already running on derecho6 and port 39982
-
-Backing up check point and log files
-
-OK starting ecFlow server...
-
-Placing server into RESTART mode...
-restart of server failed
-rt.sh finished
-rt.sh: Cleaning up...
-rt_utils.sh: Stopping ECFLOW Workflow...
diff --git a/tests/logs/RT-run-Hercules.log b/tests/logs/RT-run-Hercules.log
deleted file mode 100644
index 393c54d52a..0000000000
--- a/tests/logs/RT-run-Hercules.log
+++ /dev/null
@@ -1,16 +0,0 @@
-******Regression Testing Script Started******
-hercules-login-1.hpc.msstate.edu
-Machine: hercules
-Account: epic
-rt.sh: Setting up hercules...
-Linking /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786 to /work/noaa/epic/role-epic/jenkins/workspace/s-weather-model_pipeline_PR-2241/tests/run_dir
-Run regression test in: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3789786
-rt.sh: Checking & Updating test configuration...
-No update needed to rt.conf
-rt.sh: Getting error information...
-Exited at line 1062 having code 1
-rt.sh: Exited abnormally, killing workflow and cleaning up
-rt_utils.sh: Killing ECFLOW Workflow...
-rt.sh finished
-rt.sh: Cleaning up...
-rt_utils.sh: Stopping ECFLOW Workflow...
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 19ed992c48..4f9b548922 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-64df90f39f00b9682ca74b29f783bd0a37994a4a
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,265 +35,268 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44890
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_105869
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:44]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [58:24, 01:49](3039 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:52]
-PASS -- TEST 'cpld_control_gfsv17_intel' [52:45, 02:03](1649 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:56, 03:20](1773 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 02:29](900 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 02:51](1622 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:19]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [04:31, 03:10](1683 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:24, 10:44]
-PASS -- TEST 'cpld_control_p8_intel' [58:24, 01:33](3065 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [58:24, 02:02](3066 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [49:22, 01:39](3121 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [58:24, 01:32](3089 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [49:22, 02:16](3142 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [58:24, 01:25](3379 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [58:24, 02:01](3064 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [58:25, 01:50](2994 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [58:24, 01:57](3065 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [58:24, 02:16](3031 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:23, 10:10]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [59:25, 01:06](1644 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:25, 01:29](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [59:25, 01:30](1697 MB)
-
-PASS -- COMPILE 's2s_intel' [10:24, 09:33]
-PASS -- TEST 'cpld_control_c48_intel' [59:23, 01:03](2672 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39]
-PASS -- TEST 'cpld_control_p8_faster_intel' [52:15, 02:16](3068 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:00]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:41, 01:36](1667 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:38, 01:33](972 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:13, 01:17](1638 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:31, 01:23](1687 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:51]
-PASS -- TEST 'control_flake_intel' [55:07, 01:02](634 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [55:07, 00:41](1528 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [55:07, 00:47](1542 MB)
-PASS -- TEST 'control_latlon_intel' [55:07, 00:44](1538 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:07, 00:54](1530 MB)
-PASS -- TEST 'control_c48_intel' [55:06, 01:09](1611 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [55:06, 00:46](736 MB)
-PASS -- TEST 'control_c192_intel' [55:07, 00:54](1649 MB)
-PASS -- TEST 'control_c384_intel' [55:11, 01:52](1966 MB)
-PASS -- TEST 'control_c384gdas_intel' [55:11, 02:44](1150 MB)
-PASS -- TEST 'control_stochy_intel' [55:07, 00:55](590 MB)
-PASS -- TEST 'control_stochy_restart_intel' [36:18, 00:21](392 MB)
-PASS -- TEST 'control_lndp_intel' [55:07, 01:00](589 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_iovr4_intel' [, ]( MB)
-PASS -- TEST 'control_iovr5_intel' [50:07, 00:25](583 MB)
-PASS -- TEST 'control_p8_intel' [49:02, 01:38](1561 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [48:54, 02:13](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [47:54, 02:26](1573 MB)
-PASS -- TEST 'control_restart_p8_intel' [26:21, 01:57](751 MB)
-PASS -- TEST 'control_noqr_p8_intel' [47:54, 02:13](1557 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [22:31, 01:59](754 MB)
-PASS -- TEST 'control_decomp_p8_intel' [44:08, 02:04](1556 MB)
-PASS -- TEST 'control_2threads_p8_intel' [42:21, 01:52](1657 MB)
-PASS -- TEST 'control_p8_lndp_intel' [38:25, 01:06](1563 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [37:06, 02:25](1621 MB)
-PASS -- TEST 'control_p8_mynn_intel' [36:18, 02:00](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [33:31, 02:54](1578 MB)
-PASS -- TEST 'regional_control_intel' [33:25, 00:25](630 MB)
-PASS -- TEST 'regional_restart_intel' [27:21, 00:56](798 MB)
-PASS -- TEST 'regional_decomp_intel' [33:14, 00:58](628 MB)
-PASS -- TEST 'regional_2threads_intel' [31:23, 00:46](718 MB)
-PASS -- TEST 'regional_noquilt_intel' [30:34, 01:00](1164 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [30:30, 00:52](630 MB)
-PASS -- TEST 'regional_wofs_intel' [30:29, 00:27](1602 MB)
-
-PASS -- COMPILE 'ifi_intel' [09:22, 08:20]
-PASS -- TEST 'regional_ifi_control_intel' [55:07, 00:28](630 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [55:07, 00:25](628 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [55:08, 01:12](725 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:23, 09:05]
-PASS -- TEST 'rap_control_intel' [30:28, 02:41](970 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [30:17, 00:51](1146 MB)
-PASS -- TEST 'rap_decomp_intel' [29:14, 02:07](974 MB)
-PASS -- TEST 'rap_2threads_intel' [26:59, 02:10](1056 MB)
-PASS -- TEST 'rap_restart_intel' [04:40, 02:17](843 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [25:53, 02:22](972 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:57, 02:06](971 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [48:53, 02:29](843 MB)
-PASS -- TEST 'hrrr_control_intel' [23:55, 02:58](963 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [23:40, 02:52](966 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [23:35, 02:59](1045 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [51:39, 00:21](795 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [23:34, 02:41](965 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [23:24, 00:36](1929 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:06, 01:10](1919 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:23, 08:43]
-PASS -- TEST 'control_csawmg_intel' [22:59, 01:11](656 MB)
-
-PASS -- COMPILE 'wam_intel' [09:23, 08:23]
-PASS -- TEST 'control_wam_intel' [22:31, 00:26](331 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 08:58]
-PASS -- TEST 'control_p8_faster_intel' [22:16, 02:06](1561 MB)
-PASS -- TEST 'regional_control_faster_intel' [21:28, 00:33](626 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:24]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [55:05, 01:01](1557 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:10, 00:28](1559 MB)
-PASS -- TEST 'control_stochy_debug_intel' [20:26, 00:34](757 MB)
-PASS -- TEST 'control_lndp_debug_intel' [53:10, 00:16](757 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [18:07, 00:35](798 MB)
-PASS -- TEST 'control_ras_debug_intel' [17:37, 00:25](768 MB)
-PASS -- TEST 'control_diag_debug_intel' [17:29, 01:04](1619 MB)
-PASS -- TEST 'control_debug_p8_intel' [15:28, 01:15](1588 MB)
-PASS -- TEST 'regional_debug_intel' [15:14, 00:45](687 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:26, 00:54](1145 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [03:36, 00:54](1140 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [55:40, 00:35](1140 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [54:58, 01:18](1145 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [54:39, 00:33](1145 MB)
-PASS -- TEST 'rap_diag_debug_intel' [42:00, 00:42](1230 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [53:33, 00:32](1145 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [53:19, 00:44](1145 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [52:30, 00:32](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:44, 01:16](1145 MB)
-PASS -- TEST 'rap_noah_debug_intel' [51:39, 00:40](1148 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [50:59, 00:48](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [50:46, 00:47](1142 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [36:51, 00:29](1136 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [50:03, 00:28](1144 MB)
-PASS -- TEST 'rap_flake_debug_intel' [49:21, 01:16](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [49:04, 03:00](1151 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:20, 03:11]
-PASS -- TEST 'control_wam_debug_intel' [48:53, 00:40](369 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:27, 08:24]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:41, 01:20](1013 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:15, 02:26](851 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:36, 04:11](846 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:56, 02:12](908 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [42:24, 03:12](900 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:58, 02:28](847 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [32:46, 01:53](743 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:16, 01:07](730 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:29, 10:37]
-PASS -- TEST 'conus13km_control_intel' [41:58, 01:16](1055 MB)
-PASS -- TEST 'conus13km_2threads_intel' [28:24, 00:47](1036 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [26:27, 01:02](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:28, 08:32]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:54, 01:16](875 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:25, 03:17]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [41:50, 00:41](1020 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [41:45, 00:52](1023 MB)
-PASS -- TEST 'conus13km_debug_intel' [41:42, 00:32](1106 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [41:36, 00:32](783 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [41:15, 00:52](1088 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:56, 01:07](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:23, 03:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [38:49, 00:33](1043 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:34, 09:48]
-PASS -- TEST 'hafs_regional_atm_intel' [38:15, 01:39](673 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:06, 01:14](1025 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:59, 01:50](714 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [37:39, 02:01](753 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:19, 02:07](910 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [36:16, 01:35](432 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:41, 01:28](456 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [35:22, 01:32](330 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:18, 02:29](400 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [33:54, 00:57](472 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:01, 01:06](470 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [32:38, 01:37](532 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [30:11, 00:57](365 MB)
-PASS -- TEST 'gnv1_nested_intel' [30:08, 01:11](730 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [12:26, 03:51]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:31, 01:00](632 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:35, 10:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:23, 01:05](577 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:55, 01:35](747 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [31:46, 09:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:18, 01:20](748 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:44, 09:31]
-PASS -- TEST 'hafs_regional_docn_intel' [21:30, 01:49](710 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:15, 01:54](695 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [10:42, 00:39](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [17:36, 08:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:38, 01:09](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:14, 01:04](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:13, 00:44](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [53:11, 00:55](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:52, 00:13](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:28, 01:09](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:31, 01:05](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [49:18, 00:24](638 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [49:18, 00:54](645 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [49:13, 00:52](623 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [48:32, 00:59](760 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [47:59, 01:02](2011 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [41:34, 01:00](2015 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [24:44, 08:42]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [37:14, 01:08](760 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [16:33, 01:04]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:53, 00:20](265 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [29:15, 01:05](413 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:42, 00:59](412 MB)
-
-PASS -- COMPILE 'atml_intel' [25:45, 10:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [28:46, 02:10](1602 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [26:17, 02:33](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [17:32, 00:50](803 MB)
-
-PASS -- COMPILE 'atmw_intel' [30:51, 09:03]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:08, 02:14](1603 MB)
-
-PASS -- COMPILE 'atmaero_intel' [22:44, 08:58]
-PASS -- TEST 'atmaero_control_p8_intel' [14:04, 02:13](2915 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [14:04, 01:46](2974 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:04, 02:33](2984 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:31, 03:27]
-PASS -- TEST 'regional_atmaq_debug_intel' [18:55, 01:58](4511 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:47] ( 3 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:06, 02:05](3043 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 18:17] ( 3 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [05:54, 02:49](1652 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:21, 03:29](1773 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [33:36, 02:54](900 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:27, 02:54](1623 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:11] ( 1527 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [19:13, 02:28](1679 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:05, 01:37](3067 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 01:56](3064 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:03, 02:05](3121 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 01:33](3089 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:03, 02:02](3142 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:05, 02:13](3063 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [13:06, 01:59](2993 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 02:05](3067 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:05, 02:18](3035 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:24, 09:55] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [03:42, 01:10](1642 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:25](1696 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] ( 2 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:07, 01:32](1695 MB)
+
+PASS -- COMPILE 's2s_intel' [10:23, 09:33] ( 2 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:06, 01:04](2673 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:06] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:01, 02:16](3070 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:34] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:33, 01:04](1669 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:28, 01:00](965 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:58, 01:40](1639 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 03:57] ( 1562 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:13, 01:19](1686 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:39] ( 3 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [09:48, 00:55](634 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 00:42](1528 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:48, 01:07](1541 MB)
+PASS -- TEST 'control_latlon_intel' [09:48, 00:57](1539 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:48, 00:56](1538 MB)
+PASS -- TEST 'control_c48_intel' [09:47, 01:24](1611 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 00:54](737 MB)
+PASS -- TEST 'control_c192_intel' [09:48, 01:08](1649 MB)
+PASS -- TEST 'control_c384_intel' [09:52, 01:49](1968 MB)
+PASS -- TEST 'control_c384gdas_intel' [09:52, 03:15](1152 MB)
+PASS -- TEST 'control_stochy_intel' [09:48, 00:38](591 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:28](390 MB)
+PASS -- TEST 'control_lndp_intel' [09:48, 00:19](588 MB)
+PASS -- TEST 'control_iovr4_intel' [09:48, 01:14](586 MB)
+PASS -- TEST 'control_iovr5_intel' [09:48, 01:04](584 MB)
+PASS -- TEST 'control_p8_intel' [02:34, 02:53](1561 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [02:33, 02:22](1561 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [01:41, 02:07](1573 MB)
+PASS -- TEST 'control_restart_p8_intel' [48:46, 02:57](751 MB)
+PASS -- TEST 'control_noqr_p8_intel' [00:05, 02:21](1557 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [48:46, 02:59](754 MB)
+PASS -- TEST 'control_decomp_p8_intel' [59:06, 01:27](1563 MB)
+PASS -- TEST 'control_2threads_p8_intel' [58:06, 01:43](1645 MB)
+PASS -- TEST 'control_p8_lndp_intel' [58:02, 00:59](1564 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [57:20, 02:21](1619 MB)
+PASS -- TEST 'control_p8_mynn_intel' [56:28, 01:48](1577 MB)
+PASS -- TEST 'merra2_thompson_intel' [55:21, 03:08](1576 MB)
+PASS -- TEST 'regional_control_intel' [55:16, 01:09](629 MB)
+PASS -- TEST 'regional_restart_intel' [48:11, 00:32](798 MB)
+PASS -- TEST 'regional_decomp_intel' [55:12, 00:59](632 MB)
+PASS -- TEST 'regional_2threads_intel' [55:07, 01:01](726 MB)
+PASS -- TEST 'regional_noquilt_intel' [53:10, 01:05](1165 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [52:47, 00:36](630 MB)
+PASS -- TEST 'regional_wofs_intel' [52:46, 00:52](1602 MB)
+
+PASS -- COMPILE 'ifi_intel' [09:22, 08:16] ( 2 warnings )
+PASS -- TEST 'regional_ifi_control_intel' [09:48, 00:34](630 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [09:48, 00:37](629 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [09:49, 01:14](723 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:23, 09:03] ( 5 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [52:32, 02:28](973 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:28, 00:43](1147 MB)
+PASS -- TEST 'rap_decomp_intel' [49:47, 02:06](974 MB)
+PASS -- TEST 'rap_2threads_intel' [49:38, 02:50](1060 MB)
+PASS -- TEST 'rap_restart_intel' [40:07, 02:54](844 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [49:25, 02:15](968 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:25, 03:01](972 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 02:41](843 MB)
+PASS -- TEST 'hrrr_control_intel' [49:03, 02:59](966 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [48:52, 02:15](965 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [48:18, 02:34](1045 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [20:58, 00:19](794 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:06](965 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [47:29, 01:28](1923 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 00:57](1918 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:23, 08:41] ( 3 warnings )
+PASS -- TEST 'control_csawmg_intel' [14:28, 00:52](656 MB)
+
+PASS -- COMPILE 'wam_intel' [09:22, 08:28] ( 2 warnings )
+PASS -- TEST 'control_wam_intel' [46:07, 00:40](329 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 09:05] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [46:06, 02:38](1560 MB)
+PASS -- TEST 'regional_control_faster_intel' [46:02, 00:35](627 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:25] ( 887 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:50, 01:13](1557 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:39, 00:30](1558 MB)
+PASS -- TEST 'control_stochy_debug_intel' [44:12, 01:07](758 MB)
+PASS -- TEST 'control_lndp_debug_intel' [44:10, 01:14](759 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [42:59, 01:05](800 MB)
+PASS -- TEST 'control_ras_debug_intel' [42:46, 01:09](768 MB)
+PASS -- TEST 'control_diag_debug_intel' [42:05, 01:08](1624 MB)
+PASS -- TEST 'control_debug_p8_intel' [41:56, 00:52](1588 MB)
+PASS -- TEST 'regional_debug_intel' [40:40, 01:06](688 MB)
+PASS -- TEST 'rap_control_debug_intel' [40:07, 00:53](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [40:07, 00:58](1139 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [40:04, 01:30](1146 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [38:54, 01:08](1140 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [38:22, 00:24](1145 MB)
+PASS -- TEST 'rap_diag_debug_intel' [20:24, 01:26](1231 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:30, 01:08](1146 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:30, 01:05](1145 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [18:13, 00:29](1152 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:21, 00:59](1145 MB)
+PASS -- TEST 'rap_noah_debug_intel' [15:02, 00:46](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [14:14, 00:39](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:00, 00:56](1142 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [13:54, 01:03](1139 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [13:24, 00:34](1145 MB)
+PASS -- TEST 'rap_flake_debug_intel' [13:15, 00:35](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:11, 02:40](1149 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [28:43, 03:10] ( 857 warnings )
+PASS -- TEST 'control_wam_debug_intel' [11:49, 00:33](370 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:53, 08:31] ( 5 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:32, 01:23](1018 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:27, 02:22](850 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:33, 03:40](846 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 01:26](912 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:03, 03:22](898 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 02:44](847 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:44, 02:20](744 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:52, 00:23](731 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:59, 10:38] ( 5 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [06:06, 01:00](1053 MB)
+PASS -- TEST 'conus13km_2threads_intel' [47:36, 00:20](1035 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [44:52, 00:42](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:55, 08:34] ( 5 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:23, 01:18](872 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [44:00, 03:16] ( 789 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 00:20](1021 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:14, 00:49](1021 MB)
+PASS -- TEST 'conus13km_debug_intel' [03:09, 00:35](1111 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [02:58, 00:25](808 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [01:15, 00:22](1090 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:43, 00:56](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [45:02, 03:15] ( 789 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:43, 00:33](1043 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:29, 09:51] ( 3 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [53:18, 01:39](670 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:18, 01:12](1023 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:16, 01:53](715 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [53:16, 01:53](761 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:17, 01:36](909 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:16, 00:53](443 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [52:08, 01:54](458 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [51:09, 01:54](332 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [50:39, 03:13](436 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:27, 01:27](468 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:08, 01:40](469 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:13, 01:42](540 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:03, 01:17](368 MB)
+PASS -- TEST 'gnv1_nested_intel' [44:22, 01:45](732 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:35, 03:51] ( 1469 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:09, 01:38](632 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [25:47, 09:58] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:57, 01:51](580 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:57, 01:30](745 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [33:49, 09:57] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:40, 01:27](747 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:38, 09:30] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [20:27, 02:00](710 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:27, 01:59](693 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:25, 01:10](894 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:31, 08:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:34, 00:30](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:07, 00:49](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:34, 00:18](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:29, 00:38](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:48, 01:00](643 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:04, 00:28](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:39, 00:21](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 00:37](640 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:23, 01:46](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [01:17, 01:00](631 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:42, 00:42](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:40, 00:47](2015 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [56:12, 00:33](2016 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 08:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [53:19, 01:06](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:17, 01:05] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:43, 00:47](264 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [22:43, 00:39](413 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [29:17, 00:22](412 MB)
+
+PASS -- COMPILE 'atml_intel' [07:26, 10:04] ( 10 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:16, 02:22](1597 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [52:59, 02:29](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:58, 01:09](805 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [13:31, 04:08] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [49:50, 02:34](1630 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:28, 09:09] ( 2 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:47, 02:00](1610 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:27, 08:54] ( 2 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [39:40, 02:14](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [39:40, 01:35](2970 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:40, 02:18](2988 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [54:08, 03:23] ( 886 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [43:47, 01:48](4484 MB)
SYNOPSIS:
-Starting Date/Time: 20240425 13:49:52
-Ending Date/Time: 20240425 17:25:30
-Total Time: 03h:36m:04s
-Compiles Completed: 35/35
-Tests Completed: 172/173
+Starting Date/Time: 20240429 16:35:18
+Ending Date/Time: 20240429 19:55:24
+Total Time: 03h:20m:22s
+Compiles Completed: 36/36
+Tests Completed: 173/174
Failed Tests:
-* TEST control_iovr4_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_acorn/run_control_iovr4_intel.log
+* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/uturuncoglu/ufs-weather-model/tests/logs/log_acorn/run_cpld_2threads_p8_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -306,7 +309,7 @@ Result: FAILURE
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-64df90f39f00b9682ca74b29f783bd0a37994a4a
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -326,10 +329,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -340,20 +343,20 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28522
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_142305
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-b) - NEW BASELINES FROM FILE: test_changes.list
-PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:44]
-PASS -- TEST 'control_iovr4_intel' [21:34, 00:52](583 MB)
+PASS -- COMPILE 's2swa_intel' [11:24, 10:39] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_2threads_p8_intel' [50:22, 00:56](3379 MB)
SYNOPSIS:
-Starting Date/Time: 20240425 17:28:05
-Ending Date/Time: 20240425 17:42:03
-Total Time: 00h:14m:07s
+Starting Date/Time: 20240429 19:58:16
+Ending Date/Time: 20240429 20:16:53
+Total Time: 00h:18m:42s
Compiles Completed: 1/1
Tests Completed: 1/1
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 614b7b6b15..d871a84370 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-fe4bb76565de0a5f3261b276fa392d65cb046e96
+aef829f3311f718f3cef6b1102e849370da1a983
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,269 +35,283 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_68317
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_44306
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:19, 19:02]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:58, 04:58](3073 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:16, 20:24]
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:47](1689 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 15:04](1824 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:07](959 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:06, 15:46](1665 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:16, 08:59]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:47, 21:22](1706 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:17, 19:06]
-PASS -- TEST 'cpld_control_p8_intel' [09:05, 05:38](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:14, 05:33](3095 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:50, 03:17](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:05, 05:33](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:54, 03:20](3180 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:35](3090 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:37](3385 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:11, 05:38](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:09, 08:43](3634 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [14:48, 05:50](3616 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [27:34, 09:39](4341 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:41, 07:03](4648 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:35, 05:12](3064 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:18, 18:31]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:46, 04:09](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:59, 04:12](1727 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:15, 09:01]
-PASS -- TEST 'cpld_debug_p8_intel' [09:56, 07:36](3151 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:15, 08:28]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:21, 05:10](1710 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:05]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 04:12](1728 MB)
-
-PASS -- COMPILE 's2s_intel' [15:17, 14:02]
-PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:35](2670 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:20, 22:47]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:27, 05:28](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:28]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:55, 14:03](1708 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 07:16](1019 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:00](1666 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:32]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:46, 22:54](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:20]
-PASS -- TEST 'control_flake_intel' [04:52, 03:23](667 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:25](1567 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 02:27](1572 MB)
-PASS -- TEST 'control_latlon_intel' [04:31, 02:22](1572 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:24](1568 MB)
-PASS -- TEST 'control_c48_intel' [08:28, 06:13](1616 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:39, 05:17](734 MB)
-PASS -- TEST 'control_c192_intel' [11:09, 08:39](1690 MB)
-PASS -- TEST 'control_c384_intel' [16:38, 08:56](2011 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:05, 07:23](1199 MB)
-PASS -- TEST 'control_stochy_intel' [02:43, 01:25](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:45, 00:52](443 MB)
-PASS -- TEST 'control_lndp_intel' [02:42, 01:22](626 MB)
-PASS -- TEST 'control_iovr4_intel' [03:42, 02:05](625 MB)
-PASS -- TEST 'control_iovr5_intel' [03:42, 02:06](624 MB)
-PASS -- TEST 'control_p8_intel' [04:27, 02:30](1601 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:28, 02:30](1598 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:29, 02:28](1602 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:24, 01:24](804 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:26, 02:30](1585 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:29, 01:23](805 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:32](1591 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:28, 04:21](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:17](1659 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:46, 02:30](1607 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:44, 02:48](1603 MB)
-PASS -- TEST 'regional_control_intel' [06:07, 04:31](632 MB)
-PASS -- TEST 'regional_restart_intel' [04:16, 02:33](800 MB)
-PASS -- TEST 'regional_decomp_intel' [06:12, 04:43](629 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:03, 04:25](1159 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:04, 04:27](629 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:30](627 MB)
-PASS -- TEST 'regional_wofs_intel' [07:07, 05:35](1606 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:14, 10:56]
-PASS -- TEST 'rap_control_intel' [08:21, 06:06](1008 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:00, 03:41](1191 MB)
-PASS -- TEST 'rap_decomp_intel' [08:22, 06:23](1006 MB)
-PASS -- TEST 'rap_restart_intel' [05:16, 03:11](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:04](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:15, 06:23](1003 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:12, 04:35](881 MB)
-PASS -- TEST 'hrrr_control_intel' [05:14, 03:13](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:18](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 02:49](1088 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:53, 01:44](832 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:05, 05:57](1001 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:21](1956 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:10](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:13, 10:02]
-PASS -- TEST 'control_csawmg_intel' [08:12, 05:48](695 MB)
-PASS -- TEST 'control_ras_intel' [04:36, 02:51](660 MB)
-
-PASS -- COMPILE 'wam_intel' [10:13, 09:21]
-PASS -- TEST 'control_wam_intel' [03:34, 01:53](382 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:20]
-PASS -- TEST 'control_p8_faster_intel' [04:52, 02:26](1606 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:16, 04:17](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:31]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:09, 02:29](1595 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:28](1600 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:50](800 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:46, 02:33](798 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:06, 03:57](840 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:33, 02:40](806 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:38, 02:32](1666 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:10, 02:35](1628 MB)
-PASS -- TEST 'regional_debug_intel' [17:13, 15:49](665 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:38, 04:39](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:33](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:32, 04:35](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:43](1181 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:30, 04:51](1266 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:28, 04:44](1182 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:37, 04:42](1182 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:48](1184 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:30](1184 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:48](1181 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:36, 07:27](1182 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:41, 04:34](1178 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:44, 05:30](1183 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:37, 04:37](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 07:53](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:12, 05:11]
-PASS -- TEST 'control_wam_debug_intel' [05:24, 04:36](418 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:17, 09:30]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:45, 03:30](1059 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:07](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:15, 02:45](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 02:53](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:06, 03:52](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:47, 01:32](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:19, 11:44]
-PASS -- TEST 'conus13km_control_intel' [04:41, 01:52](1086 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:31, 00:58](1086 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:07](972 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 09:48]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:07, 03:36](906 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 06:04]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:29](1058 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:30, 04:24](1058 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:03, 13:24](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:02, 13:34](818 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:26](1203 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:19, 05:58]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:38](1081 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:21, 16:01]
-PASS -- TEST 'hafs_regional_atm_intel' [06:57, 04:34](720 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:02, 05:02](1068 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](774 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:48, 10:49](798 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:01](819 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:26, 04:40](479 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:47, 05:46](493 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:21](393 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:59, 06:13](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:15](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:02](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:37, 03:45](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:16](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:13, 03:22](787 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:15, 11:58](612 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:52]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 07:10](631 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:25, 07:09](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:19, 16:44]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:46, 05:17](679 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:19, 14:27]
-PASS -- TEST 'hafs_regional_docn_intel' [07:49, 05:33](755 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 05:33](737 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:21, 16:09](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:17, 07:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:29, 01:32](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:20](644 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:24](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:24](648 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:31, 02:29](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:25, 02:23](638 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:17, 05:39](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:56, 05:39](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:28](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:35, 03:54](2016 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:54](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:11]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:29, 05:03](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:22, 07:48]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:32](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:20]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:11](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:05](458 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:37, 00:41](450 MB)
-
-PASS -- COMPILE 'atml_intel' [14:14, 13:00]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:35, 06:59](1628 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 06:22](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 03:31](855 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:20, 12:36]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:32](1641 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:13, 11:05]
-PASS -- TEST 'atmaero_control_p8_intel' [05:38, 03:38](2951 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:38, 04:15](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:19](3012 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:20, 06:30]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:29, 22:05](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:14, 19:15] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:07, 04:52](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 20:33] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:44](1689 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:55](1829 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:00](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:02, 15:45](1659 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:05] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:20](1705 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:15, 19:14] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:52, 05:33](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:00, 05:34](3090 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:27, 03:14](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 05:33](3129 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:27, 03:14](3182 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:38, 05:27](3091 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:24, 04:30](3384 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:56, 05:33](3099 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [12:39, 08:40](3635 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:27, 05:40](3613 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:39, 09:36](4345 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 06:47](4648 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:16](3070 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:15, 18:31] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:41, 04:08](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:55, 04:11](1736 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:13, 08:59] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [09:46, 07:43](3156 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:31] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:26, 05:16](1704 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:09] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 04:13](1733 MB)
+
+PASS -- COMPILE 's2s_intel' [15:15, 14:08] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:00, 06:31](2668 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:16, 22:40] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:29](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:18, 19:41] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:00](1707 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 07:04](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 15:58](1675 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:33] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:39, 22:59](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:28] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:42, 03:22](671 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](1569 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:25](1573 MB)
+PASS -- TEST 'control_latlon_intel' [04:29, 02:22](1576 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:30, 02:23](1563 MB)
+PASS -- TEST 'control_c48_intel' [08:30, 06:14](1612 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 05:15](739 MB)
+PASS -- TEST 'control_c192_intel' [11:06, 08:38](1690 MB)
+PASS -- TEST 'control_c384_intel' [15:32, 08:50](2001 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:15, 07:13](1200 MB)
+PASS -- TEST 'control_stochy_intel' [02:37, 01:23](625 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB)
+PASS -- TEST 'control_lndp_intel' [02:35, 01:19](627 MB)
+PASS -- TEST 'control_iovr4_intel' [03:37, 02:03](619 MB)
+PASS -- TEST 'control_iovr5_intel' [03:34, 02:03](622 MB)
+PASS -- TEST 'control_p8_intel' [04:33, 02:27](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 02:27](1596 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:25](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:15, 01:23](801 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:26](1585 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:21](808 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:33, 02:31](1598 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:19](1594 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 03:16](1653 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:31](1606 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:36, 02:47](1607 MB)
+PASS -- TEST 'regional_control_intel' [06:01, 04:29](631 MB)
+PASS -- TEST 'regional_restart_intel' [04:12, 02:28](798 MB)
+PASS -- TEST 'regional_decomp_intel' [06:04, 04:41](628 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:01, 04:23](1160 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:26](625 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:59, 04:28](632 MB)
+PASS -- TEST 'regional_wofs_intel' [06:53, 05:36](1603 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:12, 11:02] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:08, 06:06](1008 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 03:49](1194 MB)
+PASS -- TEST 'rap_decomp_intel' [08:14, 06:19](1003 MB)
+PASS -- TEST 'rap_restart_intel' [05:07, 03:13](878 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:11, 06:03](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:20](1002 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:34](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:06, 03:10](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:15](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:46](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:44](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:20](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:05](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:00, 05:47](692 MB)
+PASS -- TEST 'control_ras_intel' [04:32, 02:50](658 MB)
+
+PASS -- COMPILE 'wam_intel' [10:12, 09:28] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:25, 01:56](381 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:23] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:36, 02:25](1594 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:01, 04:15](624 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:20] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:30](1600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 02:26](1591 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:53](801 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:33](801 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:17, 04:00](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:28, 02:35](806 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:45, 02:32](1654 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:05, 02:38](1623 MB)
+PASS -- TEST 'regional_debug_intel' [17:52, 16:13](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:34, 04:40](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:34](1181 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:30, 04:41](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:41](1178 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:59, 04:49](1265 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1180 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 04:43](1184 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:42](1180 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:44](1180 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:30, 04:37](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:29, 04:36](1179 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 07:25](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:44](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:27](1183 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:44](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:11, 08:00](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:12, 05:08] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:24, 04:36](424 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:37] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:25](1061 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:05](881 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:45](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:59, 02:49](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 03:49](797 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:31](780 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 11:34] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:14, 01:50](1083 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:44, 00:54](1083 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:05](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:33] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 03:35](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 05:31] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 04:29](1060 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:22](1061 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:54, 13:22](1137 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:53](820 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:16](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:18] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:31](1082 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:18, 15:39] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:25, 04:26](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 04:56](1072 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:50, 06:19](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:49](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:08, 11:56](815 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 04:37](474 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 05:39](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:15](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:40, 06:08](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:14](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:00](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:26, 03:42](591 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:10](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:14, 03:16](791 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:12, 06:49] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:34, 11:59](615 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:25] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:25, 07:00](633 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:04](692 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:18, 16:23] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:32, 05:15](677 MB)
+
+FAILED: UNABLE TO COMPILE -- COMPILE 'hafs_all_intel' [, ]
+FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_datm_cdeps_intel' [, ]( MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:36] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:32, 02:20](640 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:22](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:22](643 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:26](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:28](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:18](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 05:35](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:35](672 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:26](748 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:26, 03:50](2016 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:26, 03:49](2019 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:53] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:03](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:34] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:14] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 01:00](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:31, 00:39](454 MB)
+
+PASS -- COMPILE 'atml_intel' [14:13, 12:51] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 05:41](1631 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 05:16](1644 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:15, 02:48](856 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [08:19, 07:23] ( 885 warnings 2 remarks )
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'atmw_intel' [14:13, 12:29] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 01:31](1638 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:13, 10:56] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:25, 03:35](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:11](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:14, 04:16](3011 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:05] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:50](4535 MB)
SYNOPSIS:
-Starting Date/Time: 20240424 06:22:13
-Ending Date/Time: 20240424 07:49:24
-Total Time: 01h:27m:53s
-Compiles Completed: 37/37
-Tests Completed: 171/172
+Starting Date/Time: 20240428 22:53:16
+Ending Date/Time: 20240429 00:51:54
+Total Time: 01h:59m:25s
+Compiles Completed: 37/38
+Tests Completed: 168/173
+Failed Compiles:
+* COMPILE hafs_all_intel: FAILED: UNABLE TO COMPILE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/compile_hafs_all_intel.log
Failed Tests:
-* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/work/zshrader/rt-2241/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log
+* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_stochy_restart_intel.log
+* TEST hafs_regional_docn_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST hafs_regional_datm_cdeps_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_p8_atmlnd_debug_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -310,7 +324,7 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-fe4bb76565de0a5f3261b276fa392d65cb046e96
+7441d3bb7300d6f41e7eb17bd98aac0539164065
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -330,10 +344,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -344,20 +358,88 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_96038
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14461
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'hafs_all_intel' [15:13, 13:53] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:13, 05:29](758 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:10, 05:31](734 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 16:12](894 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:20] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_stochy_intel' [02:24, 01:26](629 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](441 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240429 11:36:19
+Ending Date/Time: 20240429 12:11:02
+Total Time: 00h:34m:59s
+Compiles Completed: 2/2
+Tests Completed: 5/5
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_28144
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:38]
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:42](1183 MB)
+PASS -- COMPILE 'atml_debug_intel' [08:19, 07:29] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:33, 05:28](1658 MB)
SYNOPSIS:
-Starting Date/Time: 20240424 08:20:30
-Ending Date/Time: 20240424 08:35:15
-Total Time: 00h:14m:49s
+Starting Date/Time: 20240429 10:55:02
+Ending Date/Time: 20240429 11:10:55
+Total Time: 00h:16m:05s
Compiles Completed: 1/1
Tests Completed: 1/1
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index fd4adb3416..add817f40d 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7639d7a8818635cfa1836d63c56d424d895adb6d
+fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,273 +35,338 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_155270
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_176475
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:12, 20:57]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:01, 07:26](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 25:05]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:43, 13:45](1687 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 14:45](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:28, 07:11](944 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:22, 15:22](1669 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:49]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [30:10, 24:28](1706 MB)
-
-PASS -- COMPILE 's2swa_intel' [08:20, 07:49]
-PASS -- TEST 'cpld_control_p8_intel' [14:09, 08:24](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:48, 08:27](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [11:18, 05:14](3153 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:56, 08:45](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:18, 05:44](3174 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 07:07](3410 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [33:57, 08:19](3095 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [11:47, 07:27](3019 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:00, 08:19](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [24:12, 10:42](3264 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [22:41, 07:26](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [45:00, 13:46](4038 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:40, 09:26](4346 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:24, 07:52](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:16, 19:28]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 05:01](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:28, 05:29](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24]
-PASS -- TEST 'cpld_debug_p8_intel' [17:56, 10:09](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:28]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:29, 05:58](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:13, 17:17]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1727 MB)
-
-PASS -- COMPILE 's2s_intel' [18:13, 17:15]
-PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:56](2664 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:12, 23:04]
-PASS -- TEST 'cpld_control_p8_faster_intel' [14:58, 08:16](3100 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [26:14, 25:21]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:57, 15:36](1700 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:21, 08:10](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:56, 17:34](1681 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:12, 13:59]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 26:32](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:14, 15:00]
-PASS -- TEST 'control_flake_intel' [05:20, 03:48](675 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:14, 03:11](1567 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:25, 03:07](1580 MB)
-PASS -- TEST 'control_latlon_intel' [05:03, 03:03](1570 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:06, 03:08](1568 MB)
-PASS -- TEST 'control_c48_intel' [09:35, 06:40](1604 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:45, 05:40](724 MB)
-PASS -- TEST 'control_c192_intel' [13:00, 10:02](1682 MB)
-PASS -- TEST 'control_c384_intel' [23:55, 18:02](1984 MB)
-PASS -- TEST 'control_c384gdas_intel' [28:28, 14:13](1185 MB)
-PASS -- TEST 'control_stochy_intel' [03:20, 01:57](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:48, 01:40](431 MB)
-PASS -- TEST 'control_lndp_intel' [03:20, 01:52](628 MB)
-PASS -- TEST 'control_iovr4_intel' [04:33, 02:38](623 MB)
-PASS -- TEST 'control_iovr5_intel' [04:33, 02:38](622 MB)
-PASS -- TEST 'control_p8_intel' [06:51, 03:24](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:31, 03:34](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:04, 03:25](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:31, 01:52](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:34](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:31, 01:47](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:51, 03:29](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:39, 02:49](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [08:25, 05:27](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [09:07, 04:19](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:19, 03:41](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:01, 04:01](1604 MB)
-PASS -- TEST 'regional_control_intel' [07:40, 05:02](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:26, 02:40](789 MB)
-PASS -- TEST 'regional_decomp_intel' [07:14, 05:06](615 MB)
-PASS -- TEST 'regional_2threads_intel' [05:27, 02:55](756 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:09, 04:41](1155 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:02, 04:45](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:44](615 MB)
-PASS -- TEST 'regional_wofs_intel' [09:36, 06:23](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:17, 14:07]
-PASS -- TEST 'rap_control_intel' [09:22, 06:57](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:25, 04:25](1187 MB)
-PASS -- TEST 'rap_decomp_intel' [09:39, 07:08](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:56, 06:13](1097 MB)
-PASS -- TEST 'rap_restart_intel' [06:15, 03:59](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:14, 06:49](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:41, 07:11](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:08, 04:52](880 MB)
-PASS -- TEST 'hrrr_control_intel' [06:34, 03:53](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:48, 04:20](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:54, 03:13](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:45, 01:58](838 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [10:06, 07:05](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:02](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:57, 08:18](1952 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:17, 13:44]
-PASS -- TEST 'control_csawmg_intel' [08:35, 06:51](695 MB)
-PASS -- TEST 'control_ras_intel' [04:50, 03:31](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:13, 13:56]
-PASS -- TEST 'control_wam_intel' [03:39, 02:19](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 17:00]
-PASS -- TEST 'control_p8_faster_intel' [06:45, 03:19](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:22, 04:38](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [17:12, 17:04]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:29, 03:07](1586 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:56](1589 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:54, 03:11](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:50, 02:55](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:22, 04:32](824 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:51, 02:53](793 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:49, 03:05](1640 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:19, 03:18](1618 MB)
-PASS -- TEST 'regional_debug_intel' [18:22, 16:20](632 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:46, 05:09](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:42, 05:03](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:53, 05:00](1166 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:52, 05:17](1166 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:35, 05:19](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:58, 05:11](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:44, 05:06](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:13](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:50, 05:14](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:43, 05:09](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:47, 05:00](1167 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:54, 05:20](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:55, 08:08](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:49, 05:14](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:53, 05:56](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:59, 05:04](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:42, 08:28](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [15:17, 14:40]
-PASS -- TEST 'control_wam_debug_intel' [09:47, 05:16](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:22]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [21:06, 03:47](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:34, 05:56](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:52, 03:24](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:29, 05:21](950 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:10, 02:48](937 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [12:53, 03:40](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:33, 04:21](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:56, 02:07](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:13, 20:51]
-PASS -- TEST 'conus13km_control_intel' [16:09, 02:09](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:02, 01:13](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:21, 01:49](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:37]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:30, 04:40](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:12, 10:41]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:53, 05:11](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [14:57, 05:00](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [25:53, 14:08](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [25:43, 14:19](805 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [19:40, 08:24](1108 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:35, 14:27](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:18, 34:50]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:59, 05:07](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:15, 17:13]
-PASS -- TEST 'hafs_regional_atm_intel' [15:40, 05:21](706 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 04:48](1059 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:58, 07:39](751 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [22:06, 11:30](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:16, 12:51](802 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:00, 05:21](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:37, 06:49](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [12:40, 03:02](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:39, 08:15](444 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:59, 03:44](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:06, 03:47](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:39, 04:51](574 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:07, 01:46](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:11, 04:19](766 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [12:16, 11:48]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [24:32, 13:03](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:12, 19:57]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:12, 07:51](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:15, 07:59](788 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [55:18, 54:16]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:48, 06:01](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:12, 16:22]
-PASS -- TEST 'hafs_regional_docn_intel' [08:47, 06:08](745 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:33, 06:14](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:12, 20:07](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:50, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:38, 01:39](734 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:36, 02:38](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:53, 02:37](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:39, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:47, 02:39](757 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:42, 02:26](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:46, 08:18](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:35, 08:17](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:44](756 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:44, 04:46](2012 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:55, 04:46](2011 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:10, 08:26]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:50, 05:40](729 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:14, 12:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:37, 02:46](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 04:59]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:27, 02:59](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:26, 02:24](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:22, 01:23](456 MB)
-
-PASS -- COMPILE 'atml_intel' [38:14, 37:39]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:44, 07:32](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:44, 07:37](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:44, 04:24](837 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:13, 15:59]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 02:21](1648 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:16, 15:16]
-PASS -- TEST 'atmaero_control_p8_intel' [11:03, 06:33](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:03, 06:50](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:55, 06:49](3019 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:11, 11:13]
-PASS -- TEST 'regional_atmaq_debug_intel' [29:03, 18:39](4495 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:23] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:29](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:13, 25:58] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 14:04](1685 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 14:08](1809 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 07:18](944 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:51](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:16, 16:04] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [30:51, 24:25](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:16, 20:58] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [17:25, 08:11](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:15, 08:12](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [13:57, 06:37](3152 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 08:08](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 05:26](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 06:39](3408 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:56, 07:57](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:21](3019 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:15, 08:21](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [19:54, 10:44](3270 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:55, 07:30](3600 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 13:37](4035 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:52, 09:23](4345 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [12:58, 08:06](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:15, 20:09] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:30, 05:00](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:10, 05:13](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [16:16, 15:15] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [14:38, 10:02](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:11] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 05:57](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [42:16, 41:22] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:45, 05:52](1727 MB)
+
+PASS -- COMPILE 's2s_intel' [19:16, 18:06] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:44, 06:54](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:13, 24:42] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [20:34, 08:42](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 23:12] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 15:39](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:24, 07:20](999 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:42, 17:45](1682 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 13:06] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:56, 27:51](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:17, 14:56] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [09:32, 04:08](673 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [10:01, 03:18](1568 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:02, 03:41](1580 MB)
+PASS -- TEST 'control_latlon_intel' [09:51, 03:37](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:36](1569 MB)
+PASS -- TEST 'control_c48_intel' [15:22, 06:38](1604 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [14:08, 05:47](722 MB)
+PASS -- TEST 'control_c192_intel' [18:05, 10:24](1683 MB)
+PASS -- TEST 'control_c384_intel' [26:39, 18:25](1985 MB)
+PASS -- TEST 'control_c384gdas_intel' [25:34, 14:33](1186 MB)
+PASS -- TEST 'control_stochy_intel' [05:24, 02:17](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [05:19, 01:24](430 MB)
+PASS -- TEST 'control_lndp_intel' [05:24, 02:26](628 MB)
+PASS -- TEST 'control_iovr4_intel' [05:39, 03:10](623 MB)
+PASS -- TEST 'control_iovr5_intel' [06:43, 03:12](623 MB)
+PASS -- TEST 'control_p8_intel' [13:28, 03:47](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:49, 03:49](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [10:54, 03:39](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:43, 01:43](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:10, 03:20](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:46](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:00, 03:40](1594 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:00, 03:09](1685 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:42, 05:49](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [11:10, 04:41](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:12, 03:28](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [08:48, 04:10](1604 MB)
+PASS -- TEST 'regional_control_intel' [08:24, 04:57](616 MB)
+PASS -- TEST 'regional_restart_intel' [04:06, 02:38](789 MB)
+PASS -- TEST 'regional_decomp_intel' [08:15, 05:28](615 MB)
+PASS -- TEST 'regional_2threads_intel' [06:22, 03:08](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:17, 05:03](1155 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:42](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:28, 06:02](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:15, 13:28] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [10:22, 06:57](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:59](1181 MB)
+PASS -- TEST 'rap_decomp_intel' [11:36, 07:17](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [10:42, 06:13](1099 MB)
+PASS -- TEST 'rap_restart_intel' [07:45, 03:44](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:35, 06:55](1006 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:37, 07:03](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:20](880 MB)
+PASS -- TEST 'hrrr_control_intel' [07:26, 03:53](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:51](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 03:15](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:13, 02:16](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:11, 07:15](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:08, 08:12](1966 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:03, 07:49](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:16, 13:41] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:22, 06:39](696 MB)
+PASS -- TEST 'control_ras_intel' [05:06, 03:32](657 MB)
+
+PASS -- COMPILE 'wam_intel' [14:15, 13:52]
+PASS -- TEST 'control_wam_intel' [04:19, 02:38](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:27] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [07:20, 04:06](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:42, 04:49](615 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 12:26] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 03:18](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:13, 03:21](1589 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:12](786 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:15](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:15, 04:21](824 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:06, 02:55](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:05, 03:02](1641 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:51, 03:14](1618 MB)
+PASS -- TEST 'regional_debug_intel' [18:56, 16:33](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:06](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:02](1166 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 05:06](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 05:02](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:19](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:16](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:14](1166 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:14, 05:08](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:08, 05:13](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:07, 04:51](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:35, 05:18](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:10, 07:50](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:07, 05:13](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:59, 06:08](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:03, 05:11](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:24](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:15, 09:47] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:35, 04:55](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:27, 03:54](1048 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:48](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 03:34](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 05:23](950 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 02:50](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:35, 03:39](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 04:33](782 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:42](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 15:50] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:55, 02:10](1094 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:10](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:17, 01:29](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 14:43] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:22](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:23, 10:36] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:53, 05:00](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:53](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:44, 14:19](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 14:43](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:10, 08:28](1109 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:56, 14:07](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:58] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:18, 18:47] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [09:23, 05:15](707 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:26](1055 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:37](755 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 11:38](784 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:14, 12:43](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:04, 05:17](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:42](496 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 02:55](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 08:03](434 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:54](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:29](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:40, 04:42](571 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 01:44](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:19, 03:56](766 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:15, 12:33] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 13:03](583 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:16, 21:05] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:37](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:37, 07:48](786 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:43] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:51](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [35:19, 34:44] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:30](748 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:28](730 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:07](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:16, 13:53] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:49, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:34](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:50, 02:45](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:10, 02:27](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:59, 02:31](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:44, 02:33](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:34](745 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 06:05](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:07](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:35](2011 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:37](2011 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 08:44] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:28](743 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 12:30] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:49, 02:33](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:22, 03:47] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:59, 02:02](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:46](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 01:05](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:16, 16:46] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:42, 08:34](1632 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:48, 08:39](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:09, 04:37](837 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [13:13, 12:13] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [37:55, 35:04](1651 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:16, 16:04] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:44, 02:50](1648 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:19, 15:07] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [09:24, 06:40](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 06:43](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:02, 06:42](3017 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:56] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [21:10, 18:25](4477 MB)
SYNOPSIS:
-Starting Date/Time: 20240423 15:27:48
-Ending Date/Time: 20240423 18:09:15
-Total Time: 02h:42m:47s
-Compiles Completed: 37/37
-Tests Completed: 179/179
+Starting Date/Time: 20240429 01:08:25
+Ending Date/Time: 20240429 03:14:52
+Total Time: 02h:07m:46s
+Compiles Completed: 38/38
+Tests Completed: 180/180
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF GAEA REGRESSION TESTING LOG====
+====START OF GAEA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_221543
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atml_debug_intel' [11:12, 10:35] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:13, 06:16](1651 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240429 13:52:13
+Ending Date/Time: 20240429 14:13:58
+Total Time: 00h:22m:05s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index fac7b77819..db58d92d42 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-bcc92327e9e244c4ca9db1707f4df177799426b2
+5175ca7ecbd16473b4778a533ab9c52b065a1eb4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -12,8 +12,8 @@ Submodule hashes used in testing:
da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -24,365 +24,419 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3337654
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2646060
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
* (-r) - USE ROCOTO
-PASS -- COMPILE 's2swa_32bit_intel' [12:43, 12:43]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:23, 05:34](3166 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:58, 15:58]
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:56, 17:09](1739 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:47, 17:50](2011 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:56, 08:04](1097 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:58, 19:17](1630 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:18, 04:18]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:43, 22:57](1691 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:44, 12:44]
-PASS -- TEST 'cpld_control_p8_intel' [06:45, 05:51](3196 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:40, 05:48](3208 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:29, 03:29](3257 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:51, 05:58](3241 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:44, 03:35](3243 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:16, 05:31](3560 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:40, 05:53](3192 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:32, 04:46](3053 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:37, 05:46](3189 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:56, 10:20](3317 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:56, 06:33](3550 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:13, 09:51](4144 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:44, 05:56](4342 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:27, 05:38](3150 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:19, 12:19]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1735 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:30, 04:42](1767 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:19, 04:19]
-PASS -- TEST 'cpld_debug_p8_intel' [09:49, 08:47](3218 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [03:59, 03:59]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:38, 05:48](1765 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:36, 11:36]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:27, 04:38](1755 MB)
-
-PASS -- COMPILE 's2s_intel' [11:15, 11:15]
-PASS -- TEST 'cpld_control_c48_intel' [10:11, 09:40](2832 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:27, 16:27]
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:33](3193 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:20, 15:20]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:00, 17:11](1757 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:58, 08:01](1149 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:37, 19:49](1666 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:18]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:51, 25:05](1678 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:13, 11:13]
-PASS -- TEST 'control_flake_intel' [03:33, 03:21](686 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:35, 02:53](1573 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:58](1580 MB)
-PASS -- TEST 'control_latlon_intel' [03:24, 02:56](1576 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:31, 02:57](1576 MB)
-PASS -- TEST 'control_c48_intel' [08:16, 07:38](1744 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:44, 06:22](850 MB)
-PASS -- TEST 'control_c192_intel' [11:19, 10:35](1712 MB)
-PASS -- TEST 'control_c384_intel' [11:52, 10:30](1992 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:40, 08:11](1353 MB)
-PASS -- TEST 'control_stochy_intel' [01:52, 01:37](643 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:11, 00:58](483 MB)
-PASS -- TEST 'control_lndp_intel' [01:47, 01:32](641 MB)
-PASS -- TEST 'control_iovr4_intel' [02:42, 02:30](639 MB)
-PASS -- TEST 'control_iovr5_intel' [02:38, 02:25](638 MB)
-PASS -- TEST 'control_p8_intel' [03:40, 02:58](1609 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:41, 02:59](1603 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1611 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:11, 01:36](875 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:57](1584 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:15, 01:37](923 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:39, 03:05](1578 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:18, 02:44](1698 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:16](1595 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:36, 03:55](1678 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:41, 02:58](1617 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:59, 03:17](1619 MB)
-PASS -- TEST 'regional_control_intel' [05:39, 05:09](834 MB)
-PASS -- TEST 'regional_restart_intel' [03:10, 02:45](1005 MB)
-PASS -- TEST 'regional_decomp_intel' [05:58, 05:30](827 MB)
-PASS -- TEST 'regional_2threads_intel' [03:44, 03:15](825 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:34, 05:09](1349 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:40, 05:13](837 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:37, 05:11](836 MB)
-PASS -- TEST 'regional_wofs_intel' [07:07, 06:41](1897 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:35, 10:35]
-PASS -- TEST 'rap_control_intel' [08:09, 07:41](1097 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 04:05](1287 MB)
-PASS -- TEST 'rap_decomp_intel' [08:29, 08:07](1023 MB)
-PASS -- TEST 'rap_2threads_intel' [07:49, 07:26](1160 MB)
-PASS -- TEST 'rap_restart_intel' [04:33, 04:01](1082 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:09, 07:43](1094 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 08:06](1025 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:25, 05:56](1122 MB)
-PASS -- TEST 'hrrr_control_intel' [04:18, 03:57](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:26, 04:05](1031 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:04, 03:38](1103 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:29, 02:10](990 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:03, 07:35](1088 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:33, 09:19](1965 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 09:02](2046 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:16, 10:16]
-PASS -- TEST 'control_csawmg_intel' [06:31, 06:02](740 MB)
-PASS -- TEST 'control_ras_intel' [03:25, 03:15](739 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:34, 03:33]
-PASS -- TEST 'control_csawmg_gnu' [08:53, 08:24](540 MB)
-
-PASS -- COMPILE 'wam_intel' [09:55, 09:55]
-PASS -- TEST 'control_wam_intel' [02:12, 02:02](638 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:41, 10:41]
-PASS -- TEST 'control_p8_faster_intel' [03:21, 02:39](1610 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:18, 04:47](829 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:47, 04:47]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:20, 02:45](1570 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:15, 02:43](1577 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:23, 03:13](780 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:54, 02:43](783 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:38, 04:08](832 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:09, 02:57](790 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:23, 02:46](1635 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:32, 02:59](1605 MB)
-PASS -- TEST 'regional_debug_intel' [17:47, 17:20](810 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:12, 04:58](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:08, 04:54](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:14, 04:59](1170 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:59](1171 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 05:01](1170 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:10](1253 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:16, 05:04](1174 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:32, 05:17](1182 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:37, 05:21](1171 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:59](1186 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:10, 04:56](1185 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 05:08](1167 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 08:11](1188 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 05:00](1181 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:36, 06:25](1187 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:18, 05:06](1190 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:46, 08:22](1171 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:43, 02:43]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:36, 02:10](508 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:16, 03:15]
-PASS -- TEST 'control_wam_debug_intel' [05:11, 04:59](468 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:11]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:36, 03:53](1140 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 06:24](1032 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:25](985 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:28, 06:06](1067 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 03:14](946 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:00, 03:40](916 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:25, 04:50](1009 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:13, 01:52](916 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:24, 12:24]
-PASS -- TEST 'conus13km_control_intel' [02:54, 02:06](1187 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:24, 00:53](1099 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:49, 01:15](1090 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 10:18]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:49, 04:14](969 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:42, 03:42]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:03, 04:51](1093 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:59, 04:47](1087 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:27, 14:54](1269 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:16, 14:40](920 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:47, 08:20](1143 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:11, 14:44](1305 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:02, 04:52](1134 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:34, 11:33]
-PASS -- TEST 'hafs_regional_atm_intel' [06:01, 05:04](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 06:03](1118 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:59, 06:56](838 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:33, 13:35](863 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:13, 15:11](896 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:19, 05:39](505 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:00, 06:58](521 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:07, 02:38](376 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:33, 07:32](470 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 03:54](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:19, 03:41](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:56, 04:12](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:32, 01:13](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:44, 04:12](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:50, 03:50]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:29, 12:49](572 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:00, 12:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:38, 08:52](672 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:39, 08:50](705 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:56, 11:56]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:27, 06:40](737 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:14, 11:13]
-PASS -- TEST 'hafs_regional_docn_intel' [07:57, 06:49](829 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:57, 06:51](820 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:44, 16:03](1212 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:19, 06:18]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:58, 02:49](1149 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:41](1095 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:47, 02:38](1022 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:47, 02:37](1025 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:47, 02:39](1017 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:51, 02:44](1146 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:43](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:38](1016 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:29, 06:25](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:16, 06:12](1041 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:51, 02:45](1146 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:09, 03:57](2486 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:05, 03:56](2441 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [02:59, 02:58]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 06:27](1056 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [05:58, 05:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:49, 02:40](1146 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:05, 01:05]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:15, 00:53](262 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:16, 00:58](330 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:44, 00:31](328 MB)
-
-PASS -- COMPILE 'atml_intel' [11:55, 11:54]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:05, 04:16](1561 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:00, 04:14](1589 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:14, 02:38](876 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:55, 10:54]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:24, 01:46](1647 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:42, 10:41]
-PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:58](3039 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:58](3099 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 05:01](3093 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:36, 03:35]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:40, 24:01](4452 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:52, 03:51]
-PASS -- TEST 'control_c48_gnu' [11:48, 11:17](1544 MB)
-PASS -- TEST 'control_stochy_gnu' [03:36, 03:23](507 MB)
-PASS -- TEST 'control_ras_gnu' [04:52, 04:39](515 MB)
-PASS -- TEST 'control_p8_gnu' [05:29, 04:40](1266 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:22, 04:38](1267 MB)
-PASS -- TEST 'control_flake_gnu' [10:46, 10:33](549 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:52, 03:51]
-PASS -- TEST 'rap_control_gnu' [11:06, 10:41](855 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:22, 10:59](858 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:06, 09:42](940 MB)
-PASS -- TEST 'rap_restart_gnu' [06:21, 05:40](587 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [10:55, 10:29](858 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:27, 11:01](858 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:59, 08:19](588 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:52, 05:28](857 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:54, 05:30](847 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:19, 04:56](928 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:07, 05:41](856 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:54](572 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:56](667 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:09, 10:33](855 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:40, 03:39]
-PASS -- TEST 'control_diag_debug_gnu' [02:26, 01:46](1285 MB)
-PASS -- TEST 'regional_debug_gnu' [11:44, 11:12](568 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:10, 02:54](871 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:05, 02:47](871 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:47, 02:36](874 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:50, 02:40](878 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:14, 02:52](960 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:06](870 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:54, 02:40](835 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:54, 02:42](867 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:57, 01:42](506 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:50](499 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:22, 01:45](1253 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:58, 02:45](871 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:11, 02:54](874 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 04:19](879 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:53, 01:52]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:39, 03:39]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:55, 09:28](712 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 05:04](713 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:04, 08:38](765 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:59, 04:34](760 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 05:11](713 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 07:08](550 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:59, 02:36](532 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:59, 03:16](869 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [05:38, 05:06](874 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:22, 01:52](546 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:27, 05:26]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:22, 05:53](738 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:41, 03:40]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:43, 02:30](696 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](699 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:36, 06:57](870 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:33, 06:59](559 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [07:30, 07:02](871 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:55](936 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:41, 03:40]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:57, 02:40](720 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:39, 14:38]
-
-PASS -- COMPILE 's2s_gnu' [14:37, 14:37]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:44, 06:42](1341 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:33, 02:32]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:17, 14:17]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:22, 22:25](1308 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:23, 02:22]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:52, 12:56](1306 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:14, 14:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:06](696 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:38, 05:49](3171 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:46, 16:46] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [17:59, 17:12](1706 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 17:52](1998 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:54, 08:03](1123 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1628 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:39, 04:38] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 22:55](1687 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:00, 13:00] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:47](3212 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:49](3195 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [04:20, 03:23](3268 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:49](3247 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 03:34](3277 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:37](3543 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3203 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:27, 04:43](3062 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:43, 05:53](3197 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [11:44, 10:07](3279 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:17, 06:11](3597 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:12, 09:34](4060 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:23, 06:17](4362 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:22, 05:31](3147 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:13, 12:13] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [05:28, 04:41](1732 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:14, 04:23](1722 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [09:27, 08:30](3237 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:25, 04:25] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:47](1727 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:39, 11:39] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1759 MB)
+
+PASS -- COMPILE 's2s_intel' [11:29, 11:29] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:54, 09:25](2833 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:28, 16:28] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [06:16, 05:25](3210 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:30] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 17:13](1791 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:06, 08:08](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:39](1690 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:23, 04:22] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:40, 24:55](1697 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:26, 11:26] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [03:32, 03:20](711 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:54](1600 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:59](1616 MB)
+PASS -- TEST 'control_latlon_intel' [03:22, 02:55](1608 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 03:01](1578 MB)
+PASS -- TEST 'control_c48_intel' [08:16, 07:48](1738 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 06:25](876 MB)
+PASS -- TEST 'control_c192_intel' [11:14, 10:31](1720 MB)
+PASS -- TEST 'control_c384_intel' [12:02, 10:38](2011 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:22, 08:05](1395 MB)
+PASS -- TEST 'control_stochy_intel' [01:47, 01:37](663 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:59](506 MB)
+PASS -- TEST 'control_lndp_intel' [01:44, 01:33](659 MB)
+PASS -- TEST 'control_iovr4_intel' [02:41, 02:27](657 MB)
+PASS -- TEST 'control_iovr5_intel' [02:47, 02:33](657 MB)
+PASS -- TEST 'control_p8_intel' [03:47, 03:13](1617 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:42, 03:00](1586 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](890 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:54](1600 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:37](930 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:38, 03:03](1588 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:45](1719 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:17](1617 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:43, 04:07](1674 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:00](1604 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:58, 03:22](1621 MB)
+PASS -- TEST 'regional_control_intel' [05:35, 05:10](850 MB)
+PASS -- TEST 'regional_restart_intel' [03:08, 02:43](1019 MB)
+PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](849 MB)
+PASS -- TEST 'regional_2threads_intel' [03:36, 03:11](850 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:33, 05:08](1356 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:05](850 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 05:09](848 MB)
+PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1900 MB)
+
+PASS -- COMPILE 'rrfs_intel' [10:31, 10:31] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:07, 07:43](1105 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:02](1294 MB)
+PASS -- TEST 'rap_decomp_intel' [08:25, 08:05](1035 MB)
+PASS -- TEST 'rap_2threads_intel' [07:39, 07:15](1185 MB)
+PASS -- TEST 'rap_restart_intel' [04:32, 04:02](1114 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:07, 07:41](1095 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 08:08](1038 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:18, 05:49](1126 MB)
+PASS -- TEST 'hrrr_control_intel' [04:25, 03:58](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 04:06](1030 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:59, 03:38](1123 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:09](1002 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:06, 07:37](1103 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 09:19](1962 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:04](2048 MB)
+
+PASS -- COMPILE 'csawmg_intel' [10:17, 10:17] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:24, 05:58](735 MB)
+PASS -- TEST 'control_ras_intel' [03:23, 03:14](748 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [03:39, 03:39]
+PASS -- TEST 'control_csawmg_gnu' [08:44, 08:18](548 MB)
+
+PASS -- COMPILE 'wam_intel' [09:53, 09:52] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [02:20, 02:09](656 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:22, 02:46](1612 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:09, 04:43](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:53, 04:53] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:43](1571 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:44](1615 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:07, 02:58](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:48](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:33, 04:09](869 MB)
+PASS -- TEST 'control_ras_debug_intel' [02:58, 02:47](826 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:20, 02:47](1675 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1648 MB)
+PASS -- TEST 'regional_debug_intel' [17:30, 17:05](844 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1205 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:53, 04:42](1202 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:47](1207 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:00, 04:49](1201 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:09, 04:59](1214 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:27, 05:07](1287 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:10, 04:59](1211 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 05:04](1207 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:01, 04:51](1183 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 04:58](1204 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:52](1204 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:04, 04:53](1205 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:04](1201 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:03, 04:53](1199 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:14, 06:04](1207 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:13, 05:02](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:25](1210 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:37]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:13](528 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:15, 03:14] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:05, 04:56](511 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:59, 09:58] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1163 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:47, 06:21](1049 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:22](990 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:22, 06:02](1085 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:08](963 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:35](936 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:10, 04:46](1028 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](937 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:33, 12:33] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:40, 02:06](1204 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:54](1118 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:47, 01:14](1112 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:13, 10:13] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:09](983 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:24, 03:24] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:02, 04:51](1089 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:45](1087 MB)
+PASS -- TEST 'conus13km_debug_intel' [14:56, 14:13](1233 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:17](894 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:39, 08:06](1156 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:26](1296 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:58](1137 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:34, 11:34] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](738 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:11, 05:46](1119 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:55](826 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:20](871 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](884 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:14, 05:31](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:42](520 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:10, 02:43](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:12](483 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:42](525 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:30](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 04:04](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](411 MB)
+PASS -- TEST 'gnv1_nested_intel' [04:34, 04:04](801 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:54, 03:54] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:41](566 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:32, 08:47](671 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 08:45](748 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:53, 11:53] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:05, 06:20](741 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:16, 11:16] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:14, 06:23](823 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:26](812 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:11](1212 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:13, 06:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:36](1157 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:42, 01:34](1102 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:38, 02:32](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:37](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:48, 02:41](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:44](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:37](1012 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:33](1065 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:02, 06:12](1049 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:48, 02:45](1128 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:59, 03:53](2492 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2437 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:01, 03:01] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 06:15](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:02, 06:02]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:45, 02:39](1148 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:11] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:59, 00:42](263 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:45](331 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:41, 00:28](324 MB)
+
+PASS -- COMPILE 'atml_intel' [11:47, 11:47] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:54, 04:10](1581 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [04:54, 04:09](1599 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:46, 02:13](895 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:26, 04:26] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [34:07, 33:23](1613 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:58, 10:58] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:45](1654 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:48, 10:48] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:47, 04:05](3022 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:55](3104 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 04:57](3116 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:45, 03:45] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 21:18](4450 MB)
+
+PASS -- COMPILE 'atm_gnu' [03:39, 03:39]
+PASS -- TEST 'control_c48_gnu' [11:47, 11:18](1545 MB)
+PASS -- TEST 'control_stochy_gnu' [03:36, 03:25](511 MB)
+PASS -- TEST 'control_ras_gnu' [05:02, 04:52](517 MB)
+PASS -- TEST 'control_p8_gnu' [05:27, 04:44](1267 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:28](1267 MB)
+PASS -- TEST 'control_flake_gnu' [10:49, 10:38](551 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [03:39, 03:39]
+PASS -- TEST 'rap_control_gnu' [11:02, 10:39](858 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:14, 10:50](862 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:16, 09:50](940 MB)
+PASS -- TEST 'rap_restart_gnu' [06:00, 05:32](588 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:11, 10:46](857 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:13, 10:52](858 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:29, 08:02](587 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:03, 05:28](855 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:48, 05:27](844 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:00](936 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:51, 05:27](858 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:51](574 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:03, 02:47](668 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:12, 10:40](850 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:39, 03:39]
+PASS -- TEST 'control_diag_debug_gnu' [02:12, 01:35](1284 MB)
+PASS -- TEST 'regional_debug_gnu' [10:20, 09:55](560 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:46, 02:36](867 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:34](867 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:36](873 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](872 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:46](950 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:04](868 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 02:36](868 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:38](861 MB)
+PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:36](505 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [01:52, 01:42](499 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:13, 01:41](1253 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:41](866 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:53](878 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 04:19](878 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:41, 03:41]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:51, 09:26](712 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:20, 04:56](712 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:08, 08:46](764 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:58, 04:36](758 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 05:03](714 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 07:03](561 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:36](544 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:48, 03:10](886 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:26, 05:56](894 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:19, 01:50](568 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:22, 05:22]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:45](737 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:38, 03:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:34](722 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:32](722 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:30, 06:58](903 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](595 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:24](905 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 07:00](968 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:43, 03:43]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:39](748 MB)
+
+PASS -- COMPILE 's2swa_gnu' [14:45, 14:45]
+
+PASS -- COMPILE 's2s_gnu' [14:21, 14:21]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:19, 11:19](1350 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [02:40, 02:40]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [14:28, 14:28]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:07, 25:18](1325 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:40, 02:40]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 14:08](1326 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:16, 14:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:03](701 MB)
SYNOPSIS:
-Starting Date/Time: 20240423 18:57:22
-Ending Date/Time: 20240424 03:03:55
-Total Time: 08h:06m:50s
-Compiles Completed: 53/53
-Tests Completed: 239/239
+Starting Date/Time: 20240429 13:36:09
+Ending Date/Time: 20240429 20:01:09
+Total Time: 06h:25m:17s
+Compiles Completed: 54/54
+Tests Completed: 240/240
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF HERA REGRESSION TESTING LOG====
+
+====START OF HERA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+7441d3bb7300d6f41e7eb17bd98aac0539164065
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4106538
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 04:26] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:28](1634 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240429 18:31:57
+Ending Date/Time: 20240429 18:47:17
+Total Time: 00h:15m:24s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index e5677021cf..3682c894e9 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-fe4bb76565de0a5f3261b276fa392d65cb046e96
+aef829f3311f718f3cef6b1102e849370da1a983
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,360 +35,424 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_12578
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3885348
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:10, 12:09]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:56, 07:29](1894 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:14]
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:31](1767 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:03](2190 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:11, 06:20](1175 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:54, 15:07](1691 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:51]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:07, 20:22](1725 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:10, 10:45]
-PASS -- TEST 'cpld_control_p8_intel' [08:52, 07:30](2086 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 07:27](2077 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:15](1955 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:50, 07:40](1979 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:11, 04:18](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 08:51](2498 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:45](2070 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:54, 06:14](1900 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:59, 07:26](2069 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:34, 14:53](2799 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:06, 05:37](2920 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [13:43, 08:20](3632 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [12:42, 05:10](3627 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:53, 04:52](2019 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:10, 11:18]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 07:07](1773 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:53, 03:56](1814 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:33]
-PASS -- TEST 'cpld_debug_p8_intel' [08:02, 06:55](2039 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:25]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:45, 04:44](1790 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 03:57](1815 MB)
-
-PASS -- COMPILE 's2s_intel' [10:10, 09:35]
-PASS -- TEST 'cpld_control_c48_intel' [08:37, 07:17](2833 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:53]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:58, 07:19](2055 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:06]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:47, 13:43](1812 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:42](1304 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:56, 15:13](1726 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:12]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:40](1763 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:07]
-PASS -- TEST 'control_flake_intel' [03:18, 02:50](716 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:28](1610 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:32](1621 MB)
-PASS -- TEST 'control_latlon_intel' [03:30, 02:30](1611 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:31](1615 MB)
-PASS -- TEST 'control_c48_intel' [07:32, 06:59](1749 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:22, 05:42](844 MB)
-PASS -- TEST 'control_c192_intel' [09:39, 08:55](1761 MB)
-PASS -- TEST 'control_c384_intel' [10:14, 09:07](2038 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:41, 06:59](1530 MB)
-PASS -- TEST 'control_stochy_intel' [02:18, 01:24](671 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:52](549 MB)
-PASS -- TEST 'control_lndp_intel' [02:18, 01:19](667 MB)
-PASS -- TEST 'control_iovr4_intel' [03:19, 02:05](659 MB)
-PASS -- TEST 'control_iovr5_intel' [02:23, 02:06](672 MB)
-PASS -- TEST 'control_p8_intel' [03:49, 02:31](1650 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:50, 02:31](1638 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:49, 02:26](1649 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:44, 01:22](908 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:40, 02:28](1631 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:49, 01:21](991 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:38, 02:35](1634 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:38, 02:18](1728 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:21](1629 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:48, 03:25](1718 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:31](1646 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:53, 02:45](1653 MB)
-PASS -- TEST 'regional_control_intel' [05:28, 04:31](956 MB)
-PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1101 MB)
-PASS -- TEST 'regional_decomp_intel' [05:27, 04:45](949 MB)
-PASS -- TEST 'regional_2threads_intel' [03:27, 02:47](912 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:29, 04:17](1484 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:24](959 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:25](959 MB)
-PASS -- TEST 'regional_wofs_intel' [06:26, 05:29](2070 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:10, 07:14]
-PASS -- TEST 'rap_control_intel' [07:32, 06:31](1208 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 03:22](1402 MB)
-PASS -- TEST 'rap_decomp_intel' [07:31, 06:47](1141 MB)
-PASS -- TEST 'rap_2threads_intel' [06:46, 06:07](1352 MB)
-PASS -- TEST 'rap_restart_intel' [04:41, 03:26](1148 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:46, 06:26](1196 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:45](1132 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 04:54](1193 MB)
-PASS -- TEST 'hrrr_control_intel' [04:34, 03:19](1068 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 03:23](1054 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:46, 03:01](1124 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:33, 01:48](1037 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:51, 06:19](1195 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:18, 07:48](2012 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:29](2166 MB)
-
-PASS -- COMPILE 'csawmg_intel' [07:10, 07:03]
-PASS -- TEST 'control_csawmg_intel' [06:27, 05:15](805 MB)
-PASS -- TEST 'control_ras_intel' [03:18, 02:48](804 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 03:58]
-PASS -- TEST 'control_csawmg_gnu' [07:27, 06:28](812 MB)
-
-PASS -- COMPILE 'wam_intel' [07:10, 06:35]
-PASS -- TEST 'control_wam_intel' [02:25, 01:47](786 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:17]
-PASS -- TEST 'control_p8_faster_intel' [03:50, 02:14](1628 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:26, 04:06](960 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:45]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:09](1638 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:32, 02:08](1627 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:28](823 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:13](820 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:25, 03:24](878 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:16, 02:14](835 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:34, 02:13](1682 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:30, 02:19](1662 MB)
-PASS -- TEST 'regional_debug_intel' [14:27, 13:56](895 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:18, 03:59](1216 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:47](1210 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:55](1221 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 03:57](1226 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:54](1227 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:10](1304 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1216 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:17, 03:58](1215 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:18, 04:01](1220 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1217 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1210 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:59](1223 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:17](1211 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:52](1215 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:48](1230 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:19, 03:59](1224 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:49](1222 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:10]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:41](793 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:10, 02:47]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:31]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:50, 03:21](1284 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:21](1170 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:55, 02:52](1036 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:42, 05:01](1288 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:35](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](978 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:40, 04:02](1094 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:34](962 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:11, 08:51]
-PASS -- TEST 'conus13km_control_intel' [02:35, 01:40](1302 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:45](1200 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:03](1145 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:43]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:27, 03:40](1096 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:01]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:54](1102 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:48](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:30, 11:25](1333 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:42](995 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:29, 06:31](1239 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1404 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 03:01]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:18, 03:57](1149 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:11, 10:11]
-PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:16](880 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:20, 04:49](1273 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:11, 06:17](953 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:01, 13:47](980 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:15, 15:14](1003 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 05:17](604 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 06:44](614 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 02:48](435 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:56, 07:28](543 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](615 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:39, 03:33](614 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:40](684 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:23](453 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:11, 02:53]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:39, 11:10](627 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:12]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:47, 16:25](764 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:52, 15:57](842 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 10:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:44](835 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:11, 10:03]
-PASS -- TEST 'hafs_regional_docn_intel' [07:05, 05:18](945 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:03, 05:24](932 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:26](1346 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [05:11, 04:40]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:08](1150 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:17](1101 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:13, 02:05](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:04](1007 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:06](1010 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:14, 02:06](1156 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:06](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:01](1010 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:49, 04:52](1157 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:45, 04:48](1143 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:06](1150 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2388 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2380 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:00]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1077 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:57]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1155 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:24, 00:58](329 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:52](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:29](556 MB)
-
-PASS -- COMPILE 'atml_intel' [08:10, 07:47]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:01, 05:28](1638 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:16](1648 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:59](951 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:10, 09:15]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:46, 01:31](1686 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:10, 07:16]
-PASS -- TEST 'atmaero_control_p8_intel' [04:48, 03:28](1797 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:46, 04:07](1799 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:12](1832 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:41]
-PASS -- TEST 'regional_atmaq_debug_intel' [18:14, 16:14](4603 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:10, 03:46]
-PASS -- TEST 'control_c48_gnu' [10:35, 09:22](1558 MB)
-PASS -- TEST 'control_stochy_gnu' [03:17, 02:12](733 MB)
-PASS -- TEST 'control_ras_gnu' [04:16, 03:38](737 MB)
-PASS -- TEST 'control_p8_gnu' [04:45, 03:29](1516 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:37, 03:24](1514 MB)
-PASS -- TEST 'control_flake_gnu' [05:17, 04:18](800 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [07:10, 06:32]
-PASS -- TEST 'rap_control_gnu' [08:30, 07:30](1090 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:30, 07:42](1088 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:45, 07:00](1128 MB)
-PASS -- TEST 'rap_restart_gnu' [04:41, 03:53](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [08:36, 07:33](1087 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:44](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:39, 05:43](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [04:44, 03:57](1075 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [04:33, 03:55](1136 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:30](1027 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:53](1080 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:02](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:01](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:30](1084 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:11, 09:50]
-PASS -- TEST 'control_diag_debug_gnu' [01:33, 01:09](1628 MB)
-PASS -- TEST 'regional_debug_gnu' [07:28, 06:20](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:58](1097 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 01:56](1087 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:56](1094 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:22, 01:58](1094 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:04](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:04](1093 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:55](1095 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 01:57](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:08](724 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:16](722 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:31, 01:15](1501 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:17, 01:56](1096 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1098 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:52, 03:13](1095 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [06:11, 05:10]
-PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 07:25]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:10](964 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:43, 03:43](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:36](978 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:24](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:51](950 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:40, 05:21](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:57](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:36, 02:32](1264 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:28, 01:05](1174 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:25](944 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:42]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:21](987 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:11, 10:58]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](974 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:18, 01:51](972 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:35, 05:35](1278 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:32](953 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:26, 03:10](1185 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:27](1347 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 11:57]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:59](1000 MB)
-
-PASS -- COMPILE 's2swa_gnu' [17:11, 16:24]
-
-PASS -- COMPILE 's2s_gnu' [17:11, 16:48]
-
-PASS -- COMPILE 's2swa_debug_gnu' [11:10, 10:37]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:48]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:10, 09:17]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:42]
+PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:42] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:07, 07:39](1901 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 18:09] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:12, 13:23](1774 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:21, 14:25](2195 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:28](1173 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:09, 15:07](1682 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:39] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:29](1731 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:10, 12:08] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:05, 07:46](2058 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 07:50](2061 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:26, 04:23](1960 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 07:35](1986 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:25, 04:29](1728 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:51, 09:18](2496 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:33](2058 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:34](1888 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:05, 07:29](2091 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 15:47](2811 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:24, 06:21](2922 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [17:34, 09:06](3635 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:22, 05:21](3618 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:52, 04:56](2044 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:10, 11:51] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:49, 07:07](1779 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:11](1819 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:34] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [07:56, 06:52](2060 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [04:10, 03:27] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:58, 04:46](1798 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:58](1832 MB)
+
+PASS -- COMPILE 's2s_intel' [08:10, 07:43] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:47, 07:25](2839 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:10, 13:28] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 07:25](2091 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:05] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:54](1813 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:53](1274 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:20](1727 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:11] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:56, 21:32](1770 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:54] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [05:21, 02:49](707 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [07:38, 02:26](1608 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:38, 02:34](1615 MB)
+PASS -- TEST 'control_latlon_intel' [06:30, 02:26](1609 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:40, 02:41](1615 MB)
+PASS -- TEST 'control_c48_intel' [12:37, 06:59](1751 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 05:46](853 MB)
+PASS -- TEST 'control_c192_intel' [12:43, 09:04](1761 MB)
+PASS -- TEST 'control_c384_intel' [12:28, 09:38](2047 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:54, 07:24](1522 MB)
+PASS -- TEST 'control_stochy_intel' [04:20, 01:33](673 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](538 MB)
+PASS -- TEST 'control_lndp_intel' [03:19, 01:26](668 MB)
+PASS -- TEST 'control_iovr4_intel' [06:22, 02:07](658 MB)
+PASS -- TEST 'control_iovr5_intel' [05:23, 02:10](672 MB)
+PASS -- TEST 'control_p8_intel' [04:51, 02:52](1645 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:49, 02:54](1646 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:52](1649 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:42, 01:29](922 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:29](1625 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](983 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:59](1619 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:48](1738 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:35](1650 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:29](1702 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1657 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:04, 02:57](1650 MB)
+PASS -- TEST 'regional_control_intel' [06:29, 04:31](960 MB)
+PASS -- TEST 'regional_restart_intel' [03:30, 02:29](1104 MB)
+PASS -- TEST 'regional_decomp_intel' [06:26, 04:46](947 MB)
+PASS -- TEST 'regional_2threads_intel' [04:26, 02:51](914 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:30, 04:20](1486 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:33, 04:33](961 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 04:25](958 MB)
+PASS -- TEST 'regional_wofs_intel' [06:26, 05:35](2073 MB)
+
+PASS -- COMPILE 'rrfs_intel' [07:11, 06:53] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [07:42, 06:38](1202 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:05, 03:27](1444 MB)
+PASS -- TEST 'rap_decomp_intel' [07:40, 06:57](1120 MB)
+PASS -- TEST 'rap_2threads_intel' [07:39, 06:12](1370 MB)
+PASS -- TEST 'rap_restart_intel' [05:04, 03:24](1157 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:53, 06:31](1194 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:52](1173 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 06:07](1202 MB)
+PASS -- TEST 'hrrr_control_intel' [04:38, 03:26](1087 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:39, 03:27](1051 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:03](1123 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:25, 01:50](1025 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:16](1198 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:35](2018 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:21](2168 MB)
+
+PASS -- COMPILE 'csawmg_intel' [07:11, 06:58] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:29, 05:22](792 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:56](809 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53]
+PASS -- TEST 'control_csawmg_gnu' [08:32, 07:43](803 MB)
+
+PASS -- COMPILE 'wam_intel' [07:11, 06:39]
+PASS -- TEST 'control_wam_intel' [02:27, 01:52](790 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:54] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:54, 02:14](1646 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:25, 04:04](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:40] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:10](1637 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:08](1641 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:32](827 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:15](828 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](872 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:18, 02:15](832 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:32, 02:14](1698 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:39, 02:20](1669 MB)
+PASS -- TEST 'regional_debug_intel' [14:34, 14:06](887 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:22, 04:02](1216 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:52](1218 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1220 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:56](1222 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 03:59](1216 MB)
+PASS -- TEST 'rap_diag_debug_intel' [04:24, 04:08](1300 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:05](1220 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:57](1195 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1226 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:56](1225 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1218 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:55](1229 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 06:19](1219 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:58](1215 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:50](1221 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:59](1219 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:53](1217 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:29]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:33, 02:02](791 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 02:43] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:46] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 03:11](1311 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:33, 05:22](1133 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:50](1028 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 05:05](1295 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:36](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:00](984 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:51, 04:06](1106 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:51](968 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 09:14] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:38, 01:43](1285 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:46](1205 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:27, 01:25](1153 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 07:16] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:41](1073 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:56](1103 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:47](1093 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:37, 11:27](1343 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:35, 13:45](1003 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:44](1245 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1410 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:19] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:14](1151 MB)
+
+PASS -- COMPILE 'hafsw_intel' [11:12, 09:48] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:22](874 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 05:21](1275 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:14, 06:23](948 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:00, 13:45](988 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:07](1011 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:28](609 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:52](618 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 03:07](438 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 08:37](539 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 04:33](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:41](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:49](680 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:49](440 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:39] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:13](635 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:11] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:46, 16:48](773 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:45](844 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:37] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 10:42](830 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:12, 10:02] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](940 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:32](934 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:18](1342 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:48] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:09](1159 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1097 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:04](1007 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:06](1006 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:06](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1152 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 02:09](1147 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:02](1010 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 04:58](1159 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:43, 04:50](1144 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:07](1148 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2429 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2442 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:11](1078 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:43] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1147 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:57] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:50](335 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:45](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:29](557 MB)
+
+PASS -- COMPILE 'atml_intel' [08:13, 07:37] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 05:43](1631 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:56, 05:07](1644 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:55](947 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [03:10, 03:05] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:00, 28:51](1661 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:11, 09:40] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:28](1706 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:10, 07:26] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:50, 03:26](1798 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 04:13](1805 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:16](1806 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:36] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [18:17, 16:18](4567 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:11, 06:15]
+PASS -- TEST 'control_c48_gnu' [10:39, 09:23](1555 MB)
+PASS -- TEST 'control_stochy_gnu' [03:23, 02:14](734 MB)
+PASS -- TEST 'control_ras_gnu' [04:19, 03:43](735 MB)
+PASS -- TEST 'control_p8_gnu' [04:51, 03:48](1516 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:27](1518 MB)
+PASS -- TEST 'control_flake_gnu' [05:18, 04:16](814 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:11, 06:06]
+PASS -- TEST 'rap_control_gnu' [08:45, 07:36](1088 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:33, 07:39](1087 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:35, 07:05](1122 MB)
+PASS -- TEST 'rap_restart_gnu' [05:06, 04:01](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 07:38](1088 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:43, 09:45](1083 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:46, 05:47](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [04:37, 03:59](1071 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:00](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:35](1045 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:30, 03:57](1077 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:18, 02:03](880 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:04](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:33](1082 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:04]
+PASS -- TEST 'control_diag_debug_gnu' [02:32, 01:16](1627 MB)
+PASS -- TEST 'regional_debug_gnu' [07:27, 06:11](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1103 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 02:00](1089 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:20](1096 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:04](1104 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:06](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:18, 03:09](1095 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:19, 01:56](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:00](1094 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:08](727 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:14](723 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:13](1502 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1099 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:18](1101 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:34]
+PASS -- TEST 'control_wam_debug_gnu' [02:21, 01:56](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:13, 06:14]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:16](971 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:50](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:37](970 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:45, 03:27](889 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:45](949 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:56, 05:24](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 01:58](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:36, 02:26](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:02](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:37, 01:35](922 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:44]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:36, 04:46](993 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 04:13]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](977 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:56](975 MB)
+PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:25](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:29](970 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:17](1188 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:24](1348 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:18]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 01:56](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:11, 15:18]
+
+PASS -- COMPILE 's2s_gnu' [16:10, 16:00]
+
+PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:34]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:13]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:42]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:18]
SYNOPSIS:
-Starting Date/Time: 20240425 07:05:44
-Ending Date/Time: 20240425 08:15:15
-Total Time: 01h:09m:54s
-Compiles Completed: 53/53
-Tests Completed: 234/234
+Starting Date/Time: 20240428 23:52:40
+Ending Date/Time: 20240429 01:12:23
+Total Time: 01h:20m:09s
+Compiles Completed: 54/54
+Tests Completed: 235/235
+
+NOTES:
+A file 'test_changes.list' was generated but is empty.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: SUCCESS
+
+====END OF HERCULES REGRESSION TESTING LOG====
+====START OF HERCULES REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4097341
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+
+PASS -- COMPILE 'atml_debug_intel' [04:10, 03:24] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:53](1661 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240429 12:39:56
+Ending Date/Time: 20240429 12:51:25
+Total Time: 00h:11m:32s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 2055263dc5..1299d6635f 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-59efb751087aed49bf96c2f722ba7013cbe33785
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,318 +35,245 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_4037119
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: h-nems
-* (-l) - USE CONFIG FILE: rt.conf
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [38:58, 38:57]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:16, 06:54](1772 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:05, 48:04]
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:34, 20:51](1656 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:16, 22:28](1871 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 10:26](993 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:41, 23:57](1618 MB)
-
-PASS -- COMPILE 's2swa_intel' [38:54, 38:53]
-PASS -- TEST 'cpld_control_p8_intel' [08:51, 07:30](1831 MB)
-FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8.v2.sfc_intel' [, ]( MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:51, 04:24](1711 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:08, 07:43](1825 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:31](1733 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:27, 07:11](2265 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 07:36](1813 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:46, 06:25](1773 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:58, 07:37](1813 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 07:16](1753 MB)
-
-PASS -- COMPILE 's2sw_intel' [36:24, 36:23]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:56, 05:52](1669 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 05:44](1710 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:15, 05:14]
-PASS -- TEST 'cpld_debug_p8_intel' [11:55, 10:36](1846 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:51, 04:50]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 07:16](1651 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [32:13, 32:12]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:04, 05:44](1707 MB)
-
-PASS -- COMPILE 's2s_intel' [32:46, 32:46]
-PASS -- TEST 'cpld_control_c48_intel' [13:29, 12:45](2799 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:23, 34:22]
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:40, 07:14](1821 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [53:05, 53:05]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:01, 20:51](1669 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:51, 10:31](1024 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:01, 21:54](1646 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:03, 05:02]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:16, 32:11](1682 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:04, 35:04]
-PASS -- TEST 'control_flake_intel' [04:46, 04:29](646 MB)
-FAILED: TEST TIMED OUT -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 04:00](1541 MB)
-PASS -- TEST 'control_latlon_intel' [04:27, 03:51](1529 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:51, 04:07](1529 MB)
-PASS -- TEST 'control_c48_intel' [12:32, 11:54](1718 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:27, 10:08](848 MB)
-PASS -- TEST 'control_c192_intel' [15:17, 14:18](1678 MB)
-PASS -- TEST 'control_c384_intel' [19:48, 18:10](1826 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:16, 13:36](1001 MB)
-PASS -- TEST 'control_stochy_intel' [02:27, 02:11](602 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:19](434 MB)
-PASS -- TEST 'control_lndp_intel' [02:23, 02:07](602 MB)
-PASS -- TEST 'control_iovr4_intel' [03:31, 03:17](595 MB)
-PASS -- TEST 'control_iovr5_intel' [03:31, 03:17](603 MB)
-PASS -- TEST 'control_p8_intel' [05:11, 04:05](1549 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 04:00](1579 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:13, 03:53](1574 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:09, 02:13](808 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:01, 03:53](1564 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:07](849 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:03, 04:02](1563 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:54, 03:46](1651 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:40, 07:02](1573 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 05:29](1608 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:18, 04:05](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:45, 04:19](1581 MB)
-PASS -- TEST 'regional_control_intel' [07:44, 07:09](758 MB)
-PASS -- TEST 'regional_restart_intel' [04:14, 03:48](930 MB)
-PASS -- TEST 'regional_decomp_intel' [08:08, 07:33](759 MB)
-PASS -- TEST 'regional_2threads_intel' [05:06, 04:31](757 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 07:04](761 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 07:04](761 MB)
-
-PASS -- COMPILE 'rrfs_intel' [32:59, 32:58]
-PASS -- TEST 'rap_control_intel' [11:08, 10:04](991 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:32, 05:35](1214 MB)
-PASS -- TEST 'rap_decomp_intel' [11:41, 10:35](989 MB)
-PASS -- TEST 'rap_2threads_intel' [10:43, 09:38](1071 MB)
-PASS -- TEST 'rap_restart_intel' [05:56, 05:17](993 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [11:03, 10:01](991 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:45, 10:42](987 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 07:39](999 MB)
-PASS -- TEST 'hrrr_control_intel' [06:19, 05:09](973 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 05:13](980 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 04:42](1065 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:13, 02:55](910 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:03, 09:57](989 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [12:38, 12:21](1944 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:22, 12:08](1921 MB)
-
-PASS -- COMPILE 'csawmg_intel' [31:27, 31:27]
-PASS -- TEST 'control_csawmg_intel' [08:36, 08:06](693 MB)
-PASS -- TEST 'control_ras_intel' [04:36, 04:24](667 MB)
-
-PASS -- COMPILE 'wam_intel' [29:55, 29:55]
-PASS -- TEST 'control_wam_intel' [03:01, 02:50](497 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [31:50, 31:49]
-PASS -- TEST 'control_p8_faster_intel' [04:52, 03:38](1568 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:10, 06:36](769 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:58, 05:58]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:55, 03:19](1564 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 03:16](1565 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:03, 03:46](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:38, 03:24](769 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:48, 05:17](811 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:45, 03:28](770 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:23, 03:44](1607 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:31, 03:53](1599 MB)
-PASS -- TEST 'regional_debug_intel' [23:12, 22:35](783 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:24, 06:07](1156 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:08, 05:55](1151 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 06:04](1149 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 06:06](1157 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 06:05](1160 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:41, 06:19](1236 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 06:13](1151 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 06:14](1151 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:20, 06:07](1153 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 06:12](1160 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:18, 06:03](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 06:09](1150 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:12, 10:01](1153 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:13, 06:00](1151 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:36, 07:22](1151 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:21, 06:04](1147 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:40, 10:30](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:00, 04:00]
-PASS -- TEST 'control_wam_debug_intel' [06:22, 06:10](445 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:01, 30:00]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:10, 05:14](1071 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:20, 08:19](901 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:53, 04:29](862 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:54, 07:52](957 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:06](911 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:08, 04:42](853 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 06:14](902 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:38, 02:23](848 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:46, 42:46]
-PASS -- TEST 'conus13km_control_intel' [03:43, 03:01](1104 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:04, 01:27](1054 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:14, 01:38](1022 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:43, 30:42]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:06, 05:33](911 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:19, 04:19]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:13, 06:00](1029 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:10, 05:54](1031 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:09, 18:30](1121 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:12, 18:33](884 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:16, 10:41](1066 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:57, 18:22](1205 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:11]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:17, 06:05](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [34:28, 34:28]
-PASS -- TEST 'hafs_regional_atm_intel' [08:15, 07:01](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:54, 06:31](1094 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:41, 09:13](776 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [17:56, 16:15](801 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:43, 18:12](821 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:36, 05:43](773 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:14, 32:14]
-PASS -- TEST 'hafs_regional_docn_intel' [09:58, 08:43](767 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 08:46](756 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:07, 08:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:45, 03:35](1077 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:26, 02:13](1039 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 03:34](925 MB)
-FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_iau_gefs_intel' [, ]( MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:52, 03:41](931 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:54, 03:43](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:42, 03:34](1056 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:45, 03:34](927 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:54, 07:54](881 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:48, 07:51](842 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:41, 03:34](1063 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:11, 05:01](2408 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 05:44](2391 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:19, 03:19]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:10](1008 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 08:17]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 03:32](1072 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:55, 01:55]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:01, 01:36](233 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:37, 01:19](256 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:12, 00:55](256 MB)
-
-PASS -- COMPILE 'atml_intel' [39:04, 39:03]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 07:42](1597 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 07:42](1593 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:36, 03:59](863 MB)
-
-PASS -- COMPILE 'atmw_intel' [31:47, 31:46]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 02:16](1600 MB)
-
-PASS -- COMPILE 'atmaero_intel' [30:44, 30:44]
-PASS -- TEST 'atmaero_control_p8_intel' [06:30, 05:22](1674 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:31, 06:23](1706 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:20, 06:28](1732 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240424 18:28:23
-Ending Date/Time: 20240425 00:58:46
-Total Time: 06h:30m:55s
-Compiles Completed: 32/32
-Tests Completed: 155/158
-Failed Tests:
-* TEST cpld_control_p8.v2.sfc_intel: FAILED: TEST TIMED OUT
--- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_cpld_control_p8.v2.sfc_intel.log
-* TEST control_CubedSphereGrid_intel: FAILED: TEST TIMED OUT
--- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_control_CubedSphereGrid_intel.log
-* TEST datm_cdeps_iau_gefs_intel: FAILED: TEST TIMED OUT
--- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2241/tests/logs/log_jet/run_datm_cdeps_iau_gefs_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF JET REGRESSION TESTING LOG====
-====START OF JET REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-59efb751087aed49bf96c2f722ba7013cbe33785
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_3617777
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4164149
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_intel' [39:13, 38:28]
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:53, 07:28](1828 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:41]
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:58, 03:57](1538 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:57]
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:35](923 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [41:16, 40:08] ( 2 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:38, 06:57](1794 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 50:07] ( 2 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [46:04, 20:47](1666 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:20, 22:40](1890 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [31:06, 10:18](989 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:45, 24:04](1629 MB)
+
+PASS -- COMPILE 's2swa_intel' [41:16, 40:08] ( 1 warnings 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [28:12, 07:34](1823 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:47, 07:29](1828 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [31:57, 04:30](1714 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [20:07, 07:36](1837 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [40:03, 04:30](1728 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [12:59, 07:12](2258 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [20:00, 07:44](1828 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 06:34](1780 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:29, 07:33](1809 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [34:33, 07:22](1776 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:14, 37:51] ( 1 warnings 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:39](1659 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 06:23](1703 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:42](1839 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:25] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:27, 07:20](1663 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:16, 32:18] ( 1 warnings 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:59, 05:49](1719 MB)
+
+PASS -- COMPILE 's2s_intel' [34:14, 33:57] ( 1 warnings 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [16:23, 12:49](2786 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:26, 33:08] ( 1 warnings 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 07:13](1825 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:31] ( 1 warnings 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:40, 20:53](1684 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:38, 09:37](1036 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:45, 23:56](1668 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 05:01] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:40, 32:15](1695 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:16, 34:17] ( 2 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [17:34, 04:30](643 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 03:49](1547 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:20, 04:08](1551 MB)
+PASS -- TEST 'control_latlon_intel' [17:10, 03:54](1544 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:23, 04:04](1543 MB)
+PASS -- TEST 'control_c48_intel' [14:22, 11:49](1735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 10:08](846 MB)
+PASS -- TEST 'control_c192_intel' [36:37, 14:19](1686 MB)
+PASS -- TEST 'control_c384_intel' [41:27, 18:39](1813 MB)
+PASS -- TEST 'control_c384gdas_intel' [38:04, 13:43](1019 MB)
+PASS -- TEST 'control_stochy_intel' [12:33, 02:16](606 MB)
+PASS -- TEST 'control_stochy_restart_intel' [16:33, 01:20](434 MB)
+PASS -- TEST 'control_lndp_intel' [15:32, 02:09](602 MB)
+PASS -- TEST 'control_iovr4_intel' [14:35, 03:24](593 MB)
+PASS -- TEST 'control_iovr5_intel' [14:37, 03:22](598 MB)
+PASS -- TEST 'control_p8_intel' [21:42, 04:04](1587 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [32:59, 04:00](1572 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [22:56, 03:44](1575 MB)
+PASS -- TEST 'control_restart_p8_intel' [20:27, 02:13](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [21:47, 03:48](1564 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [20:21, 02:09](834 MB)
+PASS -- TEST 'control_decomp_p8_intel' [19:42, 03:59](1570 MB)
+PASS -- TEST 'control_2threads_p8_intel' [19:41, 03:47](1673 MB)
+PASS -- TEST 'control_p8_lndp_intel' [26:18, 07:02](1574 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [19:59, 05:08](1642 MB)
+PASS -- TEST 'control_p8_mynn_intel' [31:00, 04:02](1583 MB)
+PASS -- TEST 'merra2_thompson_intel' [21:03, 04:27](1584 MB)
+PASS -- TEST 'regional_control_intel' [21:58, 07:06](762 MB)
+PASS -- TEST 'regional_restart_intel' [19:47, 03:46](934 MB)
+PASS -- TEST 'regional_decomp_intel' [13:43, 07:33](760 MB)
+PASS -- TEST 'regional_2threads_intel' [09:39, 04:29](757 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [13:52, 07:03](767 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [22:47, 07:00](766 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:13, 32:41] ( 4 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [31:42, 10:05](991 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:14, 05:51](1217 MB)
+PASS -- TEST 'rap_decomp_intel' [32:09, 10:52](987 MB)
+PASS -- TEST 'rap_2threads_intel' [32:08, 09:52](1082 MB)
+PASS -- TEST 'rap_restart_intel' [08:37, 05:16](985 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [32:28, 10:21](994 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:01, 11:01](989 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:25, 07:30](999 MB)
+PASS -- TEST 'hrrr_control_intel' [26:00, 05:16](986 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [26:01, 05:30](985 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [25:24, 04:46](1063 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:48](920 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [29:38, 10:14](987 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [29:36, 12:43](1936 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:34, 12:24](1933 MB)
+
+PASS -- COMPILE 'csawmg_intel' [33:13, 31:00] ( 2 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [23:44, 08:19](695 MB)
+PASS -- TEST 'control_ras_intel' [18:30, 04:29](670 MB)
+
+PASS -- COMPILE 'wam_intel' [41:15, 29:55] ( 1 warnings 982 remarks )
+PASS -- TEST 'control_wam_intel' [08:25, 02:58](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [48:19, 31:41] ( 1 warnings 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:32, 03:33](1576 MB)
+PASS -- TEST 'regional_control_faster_intel' [08:44, 06:30](766 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [23:14, 05:37] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:50, 03:41](1562 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:53, 03:42](1578 MB)
+PASS -- TEST 'control_stochy_debug_intel' [14:32, 03:46](763 MB)
+PASS -- TEST 'control_lndp_debug_intel' [13:30, 03:23](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [16:52, 05:20](812 MB)
+PASS -- TEST 'control_ras_debug_intel' [11:33, 03:24](775 MB)
+PASS -- TEST 'control_diag_debug_intel' [10:59, 03:25](1624 MB)
+PASS -- TEST 'control_debug_p8_intel' [11:54, 03:48](1589 MB)
+PASS -- TEST 'regional_debug_intel' [26:52, 21:47](778 MB)
+PASS -- TEST 'rap_control_debug_intel' [10:26, 06:02](1157 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:54](1145 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [11:31, 06:02](1154 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [10:30, 06:05](1153 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:25, 06:02](1159 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:34, 06:25](1237 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:12](1152 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:11](1153 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:12](1152 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 06:03](1158 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:01](1152 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:04](1154 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:55](1151 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:25](1159 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:04](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:22, 10:33](1156 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [22:15, 04:01] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [09:24, 06:11](441 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:18, 30:17] ( 4 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 05:45](1073 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:09, 08:22](903 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:18, 04:26](869 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:09, 07:57](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:24, 04:03](910 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:18, 04:40](857 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:22, 06:16](903 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:36, 02:30](846 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:35] ( 4 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [11:09, 02:56](1111 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:21](1055 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:59, 01:34](1026 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [36:13, 30:44] ( 4 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:58, 05:31](908 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:09] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:06](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:52](1024 MB)
+PASS -- TEST 'conus13km_debug_intel' [20:58, 18:22](1140 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:37](854 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:40](1082 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:55, 18:20](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:10] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:06](1071 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:16, 34:59] ( 2 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:14](715 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:38, 06:33](1079 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:52, 09:18](774 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [23:35, 16:10](799 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:54, 18:09](825 MB)
+PASS -- TEST 'gnv1_nested_intel' [13:34, 05:41](773 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:13, 31:42] ( 1 warnings 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [17:29, 09:08](770 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:33, 08:52](752 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:00] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:24, 03:36](1053 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:24, 02:12](1034 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:22, 03:34](923 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:24, 03:33](925 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:36](926 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1058 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:24, 03:37](1053 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:24, 03:31](922 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:25, 07:55](888 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 08:18](839 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:36](1066 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 05:08](2344 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2339 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:25] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1006 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:00] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:25, 03:38](1067 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [08:11, 01:49] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:37, 01:35](231 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:34, 01:22](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:49](254 MB)
+
+PASS -- COMPILE 'atml_intel' [39:14, 34:04] ( 9 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:04](1602 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [16:49, 07:52](1598 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:22](865 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [11:12, 05:14] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:27](1615 MB)
+
+PASS -- COMPILE 'atmw_intel' [38:14, 31:57] ( 1 warnings 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:29, 02:19](1615 MB)
+
+PASS -- COMPILE 'atmaero_intel' [36:17, 30:30] ( 1 warnings 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:14](1697 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [13:31, 06:24](1725 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:16, 06:34](1726 MB)
SYNOPSIS:
-Starting Date/Time: 20240425 12:08:23
-Ending Date/Time: 20240425 12:58:47
-Total Time: 00h:50m:35s
-Compiles Completed: 3/3
-Tests Completed: 3/3
+Starting Date/Time: 20240429 17:50:27
+Ending Date/Time: 20240429 21:45:18
+Total Time: 03h:55m:28s
+Compiles Completed: 33/33
+Tests Completed: 159/159
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 65abf9421d..97ee167d89 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -21,10 +21,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,311 +35,288 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400870
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_453139
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:56]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:18](3112 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24]
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 16:34](1744 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:01, 17:20](2026 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:09, 08:05](1112 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:51, 18:36](1644 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:18]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 23:09](1683 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:11, 15:26]
-PASS -- TEST 'cpld_control_p8_intel' [08:02, 05:39](3210 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:22, 05:41](3211 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:07, 03:18](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 05:46](3237 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 03:21](3272 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:06, 06:18](3556 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:44](3199 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:50, 04:43](3072 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:26, 05:46](3212 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:01](3339 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 06:13](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:57, 11:05](4120 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:22, 07:03](4371 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:07, 05:19](3176 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:11, 12:53]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:04, 04:23](1734 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:30, 04:18](1780 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:16]
-PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:41](3251 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18]
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 06:02](1756 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:11, 13:00]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:26](1775 MB)
-
-PASS -- COMPILE 's2s_intel' [14:11, 14:07]
-PASS -- TEST 'cpld_control_c48_intel' [10:07, 08:09](2835 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:10]
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:43, 05:21](3152 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:59]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 16:40](1764 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:27, 08:14](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:18, 18:45](1685 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:24]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:12, 24:12](1720 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33]
-PASS -- TEST 'control_flake_intel' [04:32, 03:30](698 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_latlon_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c48_intel' [, ]( MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 06:00](872 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c192_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_c384_intel' [, ]( MB)
-PASS -- TEST 'control_c384gdas_intel' [12:18, 08:58](1359 MB)
-PASS -- TEST 'control_stochy_intel' [02:25, 01:42](658 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:22, 00:59](502 MB)
-PASS -- TEST 'control_lndp_intel' [02:26, 01:34](653 MB)
-PASS -- TEST 'control_iovr4_intel' [03:26, 02:32](650 MB)
-PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](654 MB)
-PASS -- TEST 'control_p8_intel' [04:43, 03:04](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:43, 02:59](1638 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:40, 02:51](1626 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:35, 01:37](899 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:36, 02:59](1619 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:17, 01:37](934 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:20, 03:00](1608 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:19, 03:03](1719 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:59, 05:10](1634 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:55](1691 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:34, 02:59](1633 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'merra2_thompson_intel' [, ]( MB)
-PASS -- TEST 'regional_control_intel' [06:52, 05:13](817 MB)
-PASS -- TEST 'regional_restart_intel' [03:42, 02:45](987 MB)
-PASS -- TEST 'regional_decomp_intel' [06:36, 05:33](851 MB)
-PASS -- TEST 'regional_2threads_intel' [04:33, 03:47](847 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:47, 05:03](1369 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:50, 05:10](857 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:11](858 MB)
-PASS -- TEST 'regional_wofs_intel' [07:45, 06:43](1923 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 11:29]
-PASS -- TEST 'rap_control_intel' [09:34, 07:43](1106 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 04:48](1297 MB)
-PASS -- TEST 'rap_decomp_intel' [09:00, 08:06](1024 MB)
-PASS -- TEST 'rap_2threads_intel' [08:57, 07:52](1183 MB)
-PASS -- TEST 'rap_restart_intel' [05:21, 04:03](1102 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:33, 07:40](1106 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:29, 08:07](1025 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:21, 05:50](1129 MB)
-PASS -- TEST 'hrrr_control_intel' [05:10, 04:00](1035 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 04:08](1028 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:03, 03:26](1111 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:10](994 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:22, 07:33](1091 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 09:09](1990 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 08:57](2071 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:10, 11:05]
-PASS -- TEST 'control_csawmg_intel' [06:42, 05:59](750 MB)
-PASS -- TEST 'control_ras_intel' [04:23, 03:21](735 MB)
-
-PASS -- COMPILE 'wam_intel' [11:10, 11:04]
-PASS -- TEST 'control_wam_intel' [02:22, 02:03](650 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:23]
-PASS -- TEST 'control_p8_faster_intel' [04:29, 02:39](1623 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:47, 04:35](856 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:17]
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:01](820 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:50](819 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:13](863 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:23, 02:48](830 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_diag_debug_intel' [, ]( MB)
-PASS -- TEST 'control_debug_p8_intel' [03:50, 02:45](1650 MB)
-PASS -- TEST 'regional_debug_intel' [18:44, 17:17](810 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:24, 04:58](1198 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:51](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1197 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:57](1205 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 05:03](1155 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:37, 05:05](1280 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:55](1203 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1204 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1200 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:52](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:00](1206 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 08:04](1196 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1194 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:04](1199 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:23, 05:02](1205 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:24, 08:26](1206 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 03:13]
-PASS -- TEST 'control_wam_debug_intel' [05:23, 05:00](507 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:32]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:06, 04:25](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:15, 06:25](1051 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 03:22](986 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:57, 06:39](1043 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:18, 03:47](959 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:36](920 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:51](996 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](928 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 14:26]
-PASS -- TEST 'conus13km_control_intel' [02:55, 02:07](1203 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:23](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:19](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:26]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:13](998 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:26]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:50](1084 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:56](1075 MB)
-PASS -- TEST 'conus13km_debug_intel' [14:49, 14:08](1230 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:41](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:34, 08:20](1159 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:40, 14:21](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:04]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:05](1128 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:11, 13:30]
-PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:36](744 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 06:05](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:32, 06:57](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:17, 12:41](862 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 14:37](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:01, 06:21](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:33](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:55, 03:12](375 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:31, 08:01](474 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:10](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 04:01](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 05:19](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:26](400 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:59, 04:35](805 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:36]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:58, 13:08](569 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:11, 14:08]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:02, 09:35](656 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:06, 09:41](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 14:00]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 07:03](731 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:11, 12:43]
-PASS -- TEST 'hafs_regional_docn_intel' [08:17, 06:19](836 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:25](819 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:58, 15:51](1208 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:44](1135 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:41](1092 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:36](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:40](1017 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:40](1020 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:42](1117 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:45](1137 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1013 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:12, 05:54](1059 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:10, 05:51](1036 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1126 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:17, 03:37](2497 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:41](2442 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:42]
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:16](1063 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:30]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:40](1126 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:44]
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:50](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](309 MB)
-
-PASS -- COMPILE 'atml_intel' [15:11, 14:20]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:14](1615 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:13](1601 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:44, 02:20](893 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:10, 12:19]
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:18, 01:46](1661 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:11, 11:33]
-PASS -- TEST 'atmaero_control_p8_intel' [05:11, 03:57](3019 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:43](3092 MB)
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'atmaero_control_p8_rad_micro_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:33]
-PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 20:29](4572 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:24] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:09, 05:32](3175 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:33] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:22](1756 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:51](2032 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:23](1113 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 19:27](1653 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:15] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 23:02](1685 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:11, 15:04] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:52, 05:47](3211 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 05:48](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:59, 03:26](3248 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 05:50](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:25](3277 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 06:12](3550 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 05:48](3201 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 04:49](3068 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:47](3209 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 10:25](3343 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:33](3630 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:06, 11:03](4125 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 06:54](4372 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 05:35](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:18] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 04:46](1742 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:59, 04:30](1779 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:32] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:59, 08:34](3246 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:15] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 06:03](1751 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:10] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 04:41](1778 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 13:22] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:12](2831 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:20] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:19](3213 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 16:01] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:11, 17:31](1765 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:30](1168 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 19:47](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:00] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 24:43](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:54] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [07:26, 03:34](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [07:53, 02:53](1605 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 03:03](1606 MB)
+PASS -- TEST 'control_latlon_intel' [07:49, 02:54](1605 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:57, 03:00](1598 MB)
+PASS -- TEST 'control_c48_intel' [11:57, 07:09](1757 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:02](868 MB)
+PASS -- TEST 'control_c192_intel' [12:09, 10:41](1743 MB)
+PASS -- TEST 'control_c384_intel' [16:17, 11:37](2003 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:28, 09:10](1361 MB)
+PASS -- TEST 'control_stochy_intel' [03:25, 01:43](658 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:06](504 MB)
+PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB)
+PASS -- TEST 'control_iovr4_intel' [03:27, 02:36](659 MB)
+PASS -- TEST 'control_iovr5_intel' [03:28, 02:33](652 MB)
+PASS -- TEST 'control_p8_intel' [04:15, 03:01](1631 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 03:02](1635 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:38, 02:57](1636 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:16, 01:41](890 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:28, 02:52](1621 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:38](928 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:24, 03:01](1617 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:05](1713 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:17](1628 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:57](1699 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:36, 03:01](1637 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:40, 03:20](1635 MB)
+PASS -- TEST 'regional_control_intel' [06:44, 05:13](859 MB)
+PASS -- TEST 'regional_restart_intel' [08:47, 02:46](1025 MB)
+PASS -- TEST 'regional_decomp_intel' [06:40, 05:34](851 MB)
+PASS -- TEST 'regional_2threads_intel' [05:42, 03:44](852 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:43, 05:09](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 05:11](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](858 MB)
+PASS -- TEST 'regional_wofs_intel' [07:45, 06:40](1922 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:11, 11:36] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:32, 07:45](1110 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:44](1290 MB)
+PASS -- TEST 'rap_decomp_intel' [10:01, 08:07](1030 MB)
+PASS -- TEST 'rap_2threads_intel' [10:04, 07:57](1191 MB)
+PASS -- TEST 'rap_restart_intel' [06:24, 04:13](1102 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:46](1110 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:48](1038 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:50](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [06:00, 04:03](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:06](1028 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:23](1104 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:28, 02:10](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:29, 07:38](1095 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:13](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:01](2068 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:12, 10:59] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:41, 06:06](748 MB)
+PASS -- TEST 'control_ras_intel' [05:25, 03:19](738 MB)
+
+PASS -- COMPILE 'wam_intel' [12:12, 10:36] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [04:28, 02:06](659 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 11:11] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:41, 02:40](1628 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:45, 04:40](856 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 04:22] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:41](1620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:58, 02:44](1611 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:10](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:55](819 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:21](811 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](826 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:56, 02:43](1673 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:47, 02:52](1651 MB)
+PASS -- TEST 'regional_debug_intel' [20:48, 17:26](849 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:24, 04:47](1198 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:50](1202 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 04:56](1195 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1201 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:56](1200 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:11](1290 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 04:55](1209 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:59](1209 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:01](1205 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 04:53](1206 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:52](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:54](1198 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:55](1205 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1138 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:49](1204 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:49](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:31, 08:31](1209 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:10, 04:09] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:21, 04:59](525 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:34] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:28](1166 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 06:31](1047 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:16, 03:32](987 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:08](1089 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 03:00](969 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:37](922 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:24, 04:52](1033 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:53](933 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 13:55] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1198 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:01](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:39, 01:16](1114 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 10:44] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:17](1002 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:03] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:53](1075 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:50](1076 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:53, 14:33](1227 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:46](931 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:26](1101 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:38](1297 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:07] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:00](1114 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:11, 12:04] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](743 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 06:00](1111 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:59](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:15](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:36, 14:56](882 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 06:19](461 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:31](516 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 03:12](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:06](475 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 04:05](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 05:19](581 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:27](396 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:51, 04:36](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:06] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:54](568 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:28] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:45](651 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:07, 09:54](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:14] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:06](696 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:30](778 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:28](815 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:54](1204 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:37](1133 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:42](1080 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:33](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:35](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:35](1016 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:40](1120 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:32](1013 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:58](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:54](1034 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:37](1122 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:32](2488 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:32](2500 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:05] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:14](1063 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:29]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1141 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:21] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:52](325 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](321 MB)
+
+PASS -- COMPILE 'atml_intel' [13:11, 12:30] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:15](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:15](1608 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:46, 02:22](896 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 04:04] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:33, 33:19](1629 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:11, 12:17] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:45](1675 MB)
+
+PASS -- COMPILE 'atmaero_intel' [16:11, 12:06] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:03](3023 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:52](3089 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:00](3114 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:06] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 21:34](4320 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 07:29:19
-Ending Date/Time: 20240422 08:52:50
-Total Time: 01h:23m:58s
-Compiles Completed: 37/37
-Tests Completed: 167/179
-Failed Tests:
-* TEST control_CubedSphereGrid_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_intel.log
-* TEST control_CubedSphereGrid_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_parallel_intel.log
-* TEST control_latlon_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_latlon_intel.log
-* TEST control_wrtGauss_netcdf_parallel_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_intel.log
-* TEST control_c48_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c48_intel.log
-* TEST control_c192_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c192_intel.log
-* TEST control_c384_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_c384_intel.log
-* TEST merra2_thompson_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_merra2_thompson_intel.log
-* TEST control_CubedSphereGrid_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_CubedSphereGrid_debug_intel.log
-* TEST control_wrtGauss_netcdf_parallel_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_wrtGauss_netcdf_parallel_debug_intel.log
-* TEST control_diag_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_control_diag_debug_intel.log
-* TEST atmaero_control_p8_rad_micro_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /work2/noaa/stmp/zshrader/orion/rt-2173/tests/logs/log_orion/run_atmaero_control_p8_rad_micro_intel.log
+Starting Date/Time: 20240429 07:54:50
+Ending Date/Time: 20240429 09:33:25
+Total Time: 01h:39m:22s
+Compiles Completed: 38/38
+Tests Completed: 180/180
NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+A file 'test_changes.list' was generated but is empty.
If you are using this log as a pull request verification, please commit 'test_changes.list'.
-Result: FAILURE
+Result: SUCCESS
====END OF ORION REGRESSION TESTING LOG====
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d47726e50be21a6b878bfb05f03b0b9fbe725775
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -359,10 +336,10 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- ab7bd14d209592d55490e75dbfaa61cb4a62df97 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10032-gab7bd14d2)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -373,38 +350,22 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_141822
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_205619
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:33]
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:49, 02:56](1598 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:51, 04:16](1604 MB)
-PASS -- TEST 'control_latlon_intel' [03:46, 02:54](1588 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:55, 03:00](1599 MB)
-PASS -- TEST 'control_c48_intel' [08:50, 07:10](1774 MB)
-PASS -- TEST 'control_c192_intel' [11:58, 10:27](1749 MB)
-PASS -- TEST 'control_c384_intel' [13:55, 11:23](2001 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:39, 03:14](1640 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 05:06]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:50](1606 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:47](1612 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:52, 02:58](1664 MB)
-PASS -- COMPILE 'atmaero_intel' [12:11, 11:46]
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:03, 04:48](3109 MB)
+PASS -- COMPILE 'atml_debug_intel' [09:11, 04:19] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:13, 05:46](1632 MB)
SYNOPSIS:
-Starting Date/Time: 20240422 10:08:06
-Ending Date/Time: 20240422 10:36:28
-Total Time: 00h:28m:37s
-Compiles Completed: 3/3
-Tests Completed: 12/12
+Starting Date/Time: 20240429 11:52:48
+Ending Date/Time: 20240429 12:14:12
+Total Time: 00h:21m:32s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index f6db2418d3..7d7cd4c611 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,30 +1,30 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-bcc92327e9e244c4ca9db1707f4df177799426b2
+d35f6da7caf2a4d320aeb75613de67533a11d1b7
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.6.2-89-g3d7067a)
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps0.9.2-32-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4)
+ da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (remotes/origin/HEAD-11-gda95cc4)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4226-g9b0ac7b1)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
+ 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,300 +35,237 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185658
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_121661
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [27:46, 27:26]
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [59:19, 01:21](2970 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:51]
-PASS -- TEST 'cpld_control_gfsv17_intel' [14:36, 02:00](1594 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [56:37, 01:52](1717 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [56:37, 01:31](850 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [55:44, 01:30](1569 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:29]
-PASS -- TEST 'cpld_debug_gfsv17_intel' [21:46, 01:50](1601 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:34, 15:27]
-PASS -- TEST 'cpld_control_p8_intel' [10:29, 01:22](3007 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 01:47](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [02:08, 01:43](3066 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:29, 01:20](3027 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [02:10, 01:40](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:29, 01:07](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:29, 01:17](3002 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:30, 01:27](2928 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:29, 01:49](3003 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [10:38, 03:00](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [53:25, 03:56](4251 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 01:53](2967 MB)
-
-PASS -- COMPILE 's2sw_intel' [14:29, 13:58]
-PASS -- TEST 'cpld_control_noaero_p8_intel' [12:36, 00:47](1582 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:36, 01:52](1639 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:24, 10:10]
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:40, 00:56](1638 MB)
-
-PASS -- COMPILE 's2s_intel' [25:45, 24:32]
-PASS -- TEST 'cpld_control_c48_intel' [01:18, 00:40](2654 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [27:46, 26:37]
-PASS -- TEST 'cpld_control_p8_faster_intel' [59:19, 01:33](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:29, 12:08]
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:35, 01:13](1605 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [57:05, 00:41](902 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [57:06, 01:40](1582 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:35, 15:50]
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [10:30, 01:38](1613 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [26:42, 25:46]
-PASS -- TEST 'control_flake_intel' [55:02, 00:29](571 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [55:01, 00:24](1477 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [51:16, 01:19](1474 MB)
-PASS -- TEST 'control_latlon_intel' [55:01, 00:22](1475 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [55:01, 00:31](1467 MB)
-PASS -- TEST 'control_c48_intel' [55:00, 00:50](1594 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [55:00, 00:50](714 MB)
-PASS -- TEST 'control_c192_intel' [55:01, 01:22](1584 MB)
-PASS -- TEST 'control_c384_intel' [55:05, 01:59](1911 MB)
-PASS -- TEST 'control_c384gdas_intel' [55:05, 02:25](1089 MB)
-PASS -- TEST 'control_stochy_intel' [55:01, 00:31](527 MB)
-PASS -- TEST 'control_stochy_restart_intel' [52:32, 00:56](336 MB)
-PASS -- TEST 'control_lndp_intel' [55:01, 00:36](526 MB)
-PASS -- TEST 'control_iovr4_intel' [55:01, 00:49](523 MB)
-PASS -- TEST 'control_iovr5_intel' [55:01, 00:50](527 MB)
-PASS -- TEST 'control_p8_intel' [55:01, 01:55](1502 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [55:01, 01:52](1513 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [55:01, 01:57](1511 MB)
-PASS -- TEST 'control_restart_p8_intel' [49:30, 00:48](693 MB)
-PASS -- TEST 'control_noqr_p8_intel' [55:01, 01:54](1499 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [49:30, 00:52](700 MB)
-PASS -- TEST 'control_decomp_p8_intel' [54:34, 01:25](1499 MB)
-PASS -- TEST 'control_2threads_p8_intel' [53:10, 01:22](1589 MB)
-PASS -- TEST 'control_p8_lndp_intel' [52:33, 01:24](1501 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [51:35, 02:02](1556 MB)
-PASS -- TEST 'control_p8_mynn_intel' [51:29, 01:57](1513 MB)
-PASS -- TEST 'merra2_thompson_intel' [51:29, 01:44](1513 MB)
-PASS -- TEST 'regional_control_intel' [51:20, 00:20](608 MB)
-PASS -- TEST 'regional_restart_intel' [45:35, 00:13](778 MB)
-PASS -- TEST 'regional_decomp_intel' [51:14, 00:54](608 MB)
-PASS -- TEST 'regional_2threads_intel' [51:11, 00:56](665 MB)
-PASS -- TEST 'regional_noquilt_intel' [51:03, 00:23](1141 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [50:46, 00:28](609 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [50:29, 00:22](609 MB)
-PASS -- TEST 'regional_wofs_intel' [49:33, 00:58](1580 MB)
-
-PASS -- COMPILE 'rrfs_intel' [30:47, 30:16]
-PASS -- TEST 'rap_control_intel' [45:48, 01:46](921 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:21, 00:33](1099 MB)
-PASS -- TEST 'rap_decomp_intel' [44:57, 01:11](917 MB)
-PASS -- TEST 'rap_2threads_intel' [44:56, 00:45](1012 MB)
-PASS -- TEST 'rap_restart_intel' [36:22, 01:12](789 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [44:45, 01:26](914 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:32, 01:40](915 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [33:21, 01:20](783 MB)
-PASS -- TEST 'hrrr_control_intel' [44:26, 01:23](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [43:32, 01:19](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [43:14, 01:36](993 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [36:15, 01:05](741 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [42:58, 01:44](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [42:56, 01:16](1874 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [42:27, 01:03](1863 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:30, 14:57]
-PASS -- TEST 'control_csawmg_intel' [59:06, 00:32](602 MB)
-PASS -- TEST 'control_ras_intel' [59:06, 00:51](560 MB)
-
-PASS -- COMPILE 'wam_intel' [09:23, 08:32]
-PASS -- TEST 'control_wam_intel' [05:11, 00:58](270 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [24:39, 23:52]
-PASS -- TEST 'control_p8_faster_intel' [47:51, 01:29](1507 MB)
-PASS -- TEST 'regional_control_faster_intel' [46:59, 00:57](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [34:51, 33:49]
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:59, 00:41](1488 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:54, 00:51](1492 MB)
-PASS -- TEST 'control_stochy_debug_intel' [33:54, 00:41](690 MB)
-PASS -- TEST 'control_lndp_debug_intel' [33:42, 00:24](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [33:41, 01:08](733 MB)
-PASS -- TEST 'control_ras_debug_intel' [33:14, 00:41](703 MB)
-PASS -- TEST 'control_diag_debug_intel' [32:47, 01:14](1542 MB)
-PASS -- TEST 'control_debug_p8_intel' [32:38, 01:05](1518 MB)
-PASS -- TEST 'regional_debug_intel' [32:28, 00:45](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [32:19, 00:54](1073 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [32:07, 00:57](1067 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [32:00, 00:57](1075 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [31:54, 00:50](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [31:36, 00:47](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [31:33, 00:44](1155 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:22, 00:49](1072 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:04, 00:50](1076 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [30:09, 00:53](1076 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:03, 00:53](1072 MB)
-PASS -- TEST 'rap_noah_debug_intel' [29:55, 01:00](1076 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [29:53, 00:54](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [29:28, 00:49](1076 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [29:17, 01:00](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [29:17, 01:07](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [28:54, 00:52](1076 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [28:47, 01:13](1081 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:18, 05:00]
-PASS -- TEST 'control_wam_debug_intel' [05:10, 01:00](298 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:29, 15:03]
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:33, 01:15](955 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [49:30, 01:07](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [48:59, 02:19](788 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [48:22, 01:13](856 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:58, 01:07](837 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:30, 00:57](787 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:14, 01:36](690 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:50, 00:49](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:53]
-PASS -- TEST 'conus13km_control_intel' [46:28, 00:31](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [41:50, 00:30](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [41:34, 00:36](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:22]
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:22, 00:53](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 04:47]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:19, 00:33](953 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:20, 00:43](948 MB)
-PASS -- TEST 'conus13km_debug_intel' [45:54, 01:09](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [41:30, 01:03](709 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [41:25, 00:26](1036 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [40:38, 01:16](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 05:25]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:07, 00:58](980 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:31, 16:09]
-PASS -- TEST 'hafs_regional_atm_intel' [40:40, 02:04](618 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:16, 00:33](965 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [39:45, 01:29](662 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [39:45, 02:14](696 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:41, 02:04](712 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:06, 00:54](387 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:59, 02:13](413 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [38:56, 01:22](281 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:28, 02:17](370 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:30, 01:18](419 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:11, 00:49](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [36:58, 01:32](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [36:46, 01:11](312 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:19]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [36:18, 01:32](494 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [10:23, 10:01]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:59, 01:35](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:59, 01:37](710 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:24, 10:28]
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:18, 00:55](709 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:24, 09:42]
-PASS -- TEST 'hafs_regional_docn_intel' [35:44, 01:23](665 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [28:02, 01:19](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:56, 00:25](881 MB)
-
-PASS -- COMPILE 'atml_intel' [22:38, 20:33]
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_atmlnd_sbs_intel' [, ]( MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [25:20, 01:16](1543 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:46, 00:23](739 MB)
-
-PASS -- COMPILE 'atmaero_intel' [18:35, 16:03]
-PASS -- TEST 'atmaero_control_p8_intel' [27:13, 01:30](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [27:11, 00:52](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:00, 01:50](2920 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:27]
-PASS -- TEST 'regional_atmaq_debug_intel' [25:58, 01:23](4432 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:28] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:29, 01:21](2971 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:50, 29:44] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [53:09, 02:07](1559 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:00, 02:00](1718 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [34:38, 01:33](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:10, 01:47](1579 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:36, 15:28] ( 1506 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [07:24, 02:13](1600 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:41, 22:00] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [01:18, 01:31](3006 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:18, 01:56](3005 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [52:55, 00:55](3059 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [01:18, 01:32](3029 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [52:56, 00:51](3082 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [01:18, 01:15](3316 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [01:18, 01:39](3000 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [01:19, 01:37](2930 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:18, 01:56](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [01:27, 03:22](3953 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 03:18](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [01:18, 01:02](2965 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:43, 22:29] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [01:16, 01:08](1585 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:16, 01:14](1636 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:21] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:34, 01:08](1632 MB)
+
+PASS -- COMPILE 's2s_intel' [14:33, 13:46] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:25, 00:54](2654 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [31:52, 31:44] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [52:07, 01:49](3002 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:38] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:29, 01:06](1574 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [54:08, 00:52](901 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:09, 00:58](1583 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:33, 13:28] ( 1542 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:27, 00:50](1611 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [22:35, 21:59] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [48:58, 00:33](571 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [48:58, 00:36](1476 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:58, 00:34](1475 MB)
+PASS -- TEST 'control_latlon_intel' [48:58, 00:32](1461 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:58, 00:43](1481 MB)
+PASS -- TEST 'control_c48_intel' [48:18, 01:08](1593 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [47:25, 01:06](714 MB)
+PASS -- TEST 'control_c192_intel' [47:20, 00:47](1587 MB)
+PASS -- TEST 'control_c384_intel' [47:24, 01:38](1909 MB)
+PASS -- TEST 'control_c384gdas_intel' [46:09, 02:15](1093 MB)
+PASS -- TEST 'control_stochy_intel' [45:21, 00:36](530 MB)
+PASS -- TEST 'control_stochy_restart_intel' [42:56, 00:15](333 MB)
+PASS -- TEST 'control_lndp_intel' [45:17, 00:40](528 MB)
+PASS -- TEST 'control_iovr4_intel' [45:15, 00:54](524 MB)
+PASS -- TEST 'control_iovr5_intel' [45:09, 00:55](523 MB)
+PASS -- TEST 'control_p8_intel' [44:41, 00:56](1512 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [44:38, 01:08](1502 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [44:38, 01:10](1512 MB)
+PASS -- TEST 'control_restart_p8_intel' [40:22, 01:07](696 MB)
+PASS -- TEST 'control_noqr_p8_intel' [44:38, 00:56](1490 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [40:22, 01:07](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [44:33, 00:46](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [44:33, 01:07](1587 MB)
+PASS -- TEST 'control_p8_lndp_intel' [43:35, 00:26](1508 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [42:58, 01:26](1565 MB)
+PASS -- TEST 'control_p8_mynn_intel' [42:55, 01:08](1510 MB)
+PASS -- TEST 'merra2_thompson_intel' [41:48, 01:59](1513 MB)
+PASS -- TEST 'regional_control_intel' [41:41, 00:24](609 MB)
+PASS -- TEST 'regional_restart_intel' [35:59, 00:33](778 MB)
+PASS -- TEST 'regional_decomp_intel' [35:58, 01:07](608 MB)
+PASS -- TEST 'regional_2threads_intel' [41:36, 00:13](672 MB)
+PASS -- TEST 'regional_noquilt_intel' [41:35, 00:31](1145 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [41:27, 00:34](607 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [41:18, 00:24](609 MB)
+PASS -- TEST 'regional_wofs_intel' [41:17, 01:00](1581 MB)
+
+PASS -- COMPILE 'rrfs_intel' [21:43, 21:04] ( 4 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [49:45, 01:00](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:46, 00:24](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [49:45, 00:49](919 MB)
+PASS -- TEST 'rap_2threads_intel' [49:45, 01:37](1008 MB)
+PASS -- TEST 'rap_restart_intel' [41:18, 01:25](789 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [49:45, 01:21](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:45, 01:07](918 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [41:12, 01:54](784 MB)
+PASS -- TEST 'hrrr_control_intel' [49:45, 01:20](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [49:45, 01:15](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [49:46, 01:37](996 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [41:05, 00:14](744 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [49:45, 01:32](914 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [49:45, 00:15](1876 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:45, 00:31](1860 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:35, 12:53] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [57:54, 00:45](602 MB)
+PASS -- TEST 'control_ras_intel' [57:54, 01:06](562 MB)
+
+PASS -- COMPILE 'wam_intel' [17:43, 17:30] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [51:43, 01:04](274 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:39, 17:12] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [51:46, 01:07](1502 MB)
+PASS -- TEST 'regional_control_faster_intel' [51:45, 00:31](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [21:35, 20:40] ( 871 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:02, 00:26](1487 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 00:38](1490 MB)
+PASS -- TEST 'control_stochy_debug_intel' [40:22, 01:01](693 MB)
+PASS -- TEST 'control_lndp_debug_intel' [40:22, 00:19](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [40:17, 00:47](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [40:07, 00:17](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [40:07, 00:28](1555 MB)
+PASS -- TEST 'control_debug_p8_intel' [34:35, 00:11](1518 MB)
+PASS -- TEST 'regional_debug_intel' [38:21, 01:01](631 MB)
+PASS -- TEST 'rap_control_debug_intel' [37:56, 01:04](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [37:37, 00:18](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [37:13, 01:08](1074 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [31:34, 01:06](1077 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:03, 00:10](1072 MB)
+PASS -- TEST 'rap_diag_debug_intel' [37:03, 01:10](1157 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [36:57, 00:59](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [36:49, 00:58](1076 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [36:42, 01:05](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:17, 01:06](1073 MB)
+PASS -- TEST 'rap_noah_debug_intel' [36:10, 00:14](1069 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [36:03, 00:12](1070 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:56, 00:57](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [35:55, 00:14](1072 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [35:46, 00:16](1078 MB)
+PASS -- TEST 'rap_flake_debug_intel' [35:34, 00:11](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [35:26, 01:24](1082 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:17, 04:21] ( 843 warnings )
+PASS -- TEST 'control_wam_debug_intel' [56:00, 00:08](299 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:39, 18:00] ( 4 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:33, 00:30](958 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:30, 01:32](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:20, 02:39](780 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:35, 01:27](853 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:24, 02:01](841 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [32:57, 02:07](792 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:05, 01:28](685 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:25, 00:28](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:38, 16:24] ( 4 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [32:14, 01:12](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [28:28, 01:04](1005 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [28:25, 00:52](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:38, 15:20] ( 4 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:59, 00:30](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:27] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:33, 00:14](952 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:27, 00:19](955 MB)
+PASS -- TEST 'conus13km_debug_intel' [30:56, 00:43](1035 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [30:43, 00:31](703 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [30:41, 00:46](1036 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:31, 00:44](1103 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:40, 16:45] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 01:08](979 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:35, 13:43] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [30:27, 01:23](620 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:23, 00:53](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:21, 02:06](661 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [30:13, 01:59](699 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:59, 01:49](705 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:51, 01:18](387 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:33, 01:27](407 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [29:18, 00:42](294 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:18, 02:43](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:46, 00:45](413 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [27:28, 01:04](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:22, 01:11](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [26:44, 00:34](311 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:53] ( 1450 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:27, 00:50](501 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:35, 14:05] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:08, 00:56](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:04, 00:56](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:32, 15:16] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:01, 01:11](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:35, 16:01] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [25:47, 01:37](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:46, 01:33](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:13, 00:35](880 MB)
+
+PASS -- COMPILE 'atml_intel' [20:38, 20:07] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [25:04, 01:14](1548 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [24:55, 01:09](1548 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:28, 00:38](740 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:24, 04:33] ( 867 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:38, 01:48](1566 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:35, 10:52] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [24:11, 01:34](2852 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [23:58, 01:01](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:46, 00:56](2925 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:51] ( 871 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 00:50](4433 MB)
SYNOPSIS:
-Starting Date/Time: 20240423 18:32:37
-Ending Date/Time: 20240423 20:00:11
-Total Time: 01h:28m:12s
-Compiles Completed: 30/30
-Tests Completed: 154/155
-Failed Tests:
-* TEST control_p8_atmlnd_sbs_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/jiandewang/ufs-weather-model/tests/logs/log_wcoss2/run_control_p8_atmlnd_sbs_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF WCOSS2 REGRESSION TESTING LOG====
-====START OF WCOSS2 REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-bcc92327e9e244c4ca9db1707f4df177799426b2
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (da95cc4)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 6d0150d6c212c7052e73aa8ab76418d5b28fb780 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10045-g6d0150d6c)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 6a51f0295bc1a877475b527157a33aa86eb532fe NOAHMP-interface/noahmp (v3.7.1-426-g6a51f02)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240419
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66976
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
-* (-b) - NEW BASELINES FROM FILE: test_changes.list
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atml_intel' [10:25, 10:08]
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:51, 01:10](1543 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240423 20:04:01
-Ending Date/Time: 20240423 20:27:55
-Total Time: 00h:24m:14s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Starting Date/Time: 20240429 16:35:39
+Ending Date/Time: 20240429 18:02:24
+Total Time: 01h:27m:18s
+Compiles Completed: 31/31
+Tests Completed: 156/156
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/rt.conf b/tests/rt.conf
index 626d29a6bc..1af875400f 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -298,6 +298,9 @@ RUN | control_p8_atmlnd_sbs | - noaacloud | baseline
RUN | control_p8_atmlnd | - noaacloud | baseline |
RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd
+COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 |
+RUN | control_p8_atmlnd_debug | - noaacloud | baseline |
+
### ATM-WAV tests ###
#mediator (cmeps)
COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 |
diff --git a/tests/rt.sh b/tests/rt.sh
index 5279f68ff8..790fd85843 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -36,7 +36,7 @@ usage() {
update_rtconf() {
echo "rt.sh: Checking & Updating test configuration..."
find_match() {
- # This function finds if a test in $TESTS_FILE matches one
+ # This function finds if a test in $TESTS_FILE matches one
# in our list of tests to be run.
THIS_TEST_WITH_COMPILER=$1
shift
@@ -78,7 +78,7 @@ update_rtconf() {
[[ -n "${line}" ]] || continue
[[ ${#line} == 0 ]] && continue
[[ ${line} == \#* ]] && continue
-
+
if [[ ${line} =~ COMPILE ]] ; then
MACHINES=$(cut -d'|' -f5 <<< "${line}")
MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}")
@@ -86,7 +86,7 @@ update_rtconf() {
RT_COMPILER_IN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER_IN}")
if [[ ${MACHINES} == '' ]]; then
compile_line=${line}
- COMPILE_LINE_USED=false
+ COMPILE_LINE_USED=false
elif [[ ${MACHINES} == -* ]]; then
[[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=${line}; COMPILE_LINE_USED=false
elif [[ ${MACHINES} == +* ]]; then
@@ -110,10 +110,10 @@ update_rtconf() {
fi
if [[ ${to_run_test} == true ]]; then
TEST_IDX=$(set -e; find_match "${tmp_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}")
-
+
if [[ ${TEST_IDX} != -1 ]]; then
if [[ ${COMPILE_LINE_USED} == false ]]; then
- echo -en '\n' >> "${RT_TEMP_CONF}"
+ echo -en '\n' >> "${RT_TEMP_CONF}"
echo "${compile_line}" >> "${RT_TEMP_CONF}"
COMPILE_LINE_USED=true
@@ -121,7 +121,7 @@ update_rtconf() {
dep_test=$(grep -w "${tmp_test}" <<< "${line}")
dep_test=$(cut -d'|' -f5 <<< "${dep_test}")
dep_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${dep_test}")
-
+
if [[ ${dep_test} != '' ]]; then
find_match_result=$(set -e; find_match "${dep_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}")
if [[ ${find_match_result} == -1 ]]; then
@@ -131,7 +131,7 @@ update_rtconf() {
dep_line=$(tr -d '\n' <<< "${dep_line}")
CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "${dep_line}")
CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "${dep_line}")
-
+
if [[ ${RT_COMPILER_IN} == "intel" ]]; then
echo "RUN ${CORRECT_LINE[1]}" >> "${RT_TEMP_CONF}"
elif [[ ${RT_COMPILER_IN} == "gnu" ]]; then
@@ -140,7 +140,7 @@ update_rtconf() {
fi
fi
echo "${line}" >> "${RT_TEMP_CONF}"
- fi
+ fi
fi
fi
done < "${TESTS_FILE}"
@@ -155,6 +155,7 @@ update_rtconf() {
generate_log() {
echo "rt.sh: Generating Regression Testing Log..."
+ set -x
COMPILE_COUNTER=0
FAILED_COMPILES=()
TEST_COUNTER=0
@@ -181,7 +182,7 @@ EOF
fi
echo; echo >> "${REGRESSIONTEST_LOG}"
cd tests
-
+
cat << EOF >> "${REGRESSIONTEST_LOG}"
NOTES:
@@ -222,10 +223,10 @@ EOF
local valid_test=false
if [[ ${line} == COMPILE* ]] ; then
-
+
CMACHINES=$(cut -d'|' -f5 <<< "${line}")
CMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${CMACHINES}")
-
+
COMPILER=$(cut -d'|' -f3 <<< "${line}")
COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILER}")
@@ -233,7 +234,7 @@ EOF
COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}")
COMPILE_ID=${COMPILE_NAME}_${COMPILER}
-
+
if [[ ${CMACHINES} == '' ]]; then
valid_compile=true
elif [[ ${CMACHINES} == -* ]]; then
@@ -249,6 +250,7 @@ EOF
TIME_FILE=""
COMPILE_TIME=""
RT_COMPILE_TIME=""
+ COMPILE_WARNINGS=""
if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then
COMPILE_RESULT="FAILED: UNABLE TO START COMPILE"
FAIL_LOG="N/A"
@@ -262,8 +264,18 @@ EOF
COMPILE_RESULT="FAILED: TEST TIMED OUT"
FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log"
fi
- else
+ else
COMPILE_RESULT="PASS"
+ if [[ ${COMPILER} == "intel" ]]; then
+ COMPILE_NUM_WARNINGS=$(grep -c ": warning #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true)
+ COMPILE_NUM_REMARKS=$(grep -c ": remark #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true)
+ if [[ ${COMPILE_NUM_WARNINGS} -gt 0 || ${COMPILE_NUM_REMARKS} -gt 0 ]]; then
+ COMPILE_WARNINGS+=" ("
+ [[ ${COMPILE_NUM_WARNINGS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_WARNINGS} warnings"
+ [[ ${COMPILE_NUM_REMARKS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_REMARKS} remarks"
+ COMPILE_WARNINGS+=" )"
+ fi
+ fi
TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt"
if [[ -f "${TIME_FILE}" ]]; then
while read -r times || [[ -n "${times}" ]]; do
@@ -278,11 +290,11 @@ EOF
RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S')
done < "${TIME_FILE}"
-
+
fi
fi
echo >> "${REGRESSIONTEST_LOG}"
- echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}"
+ echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]${COMPILE_WARNINGS}" >> "${REGRESSIONTEST_LOG}"
[[ -n ${FAIL_LOG} ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}")
[[ -n ${FAIL_LOG} ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}")
fi
@@ -299,7 +311,7 @@ EOF
TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}")
GEN_BASELINE=$(cut -d '|' -f4 <<< "${line}")
GEN_BASELINE=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${GEN_BASELINE}")
-
+
if [[ ${RMACHINES} == '' ]]; then
valid_test=true
elif [[ ${RMACHINES} == -* ]]; then
@@ -328,7 +340,7 @@ EOF
TEST_RESULT="FAILED: UNABLE TO RUN COMPARISON"
FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"
# We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists
- # I'm not sure why this can happen.
+ # I am not sure why this can happen.
elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then
TEST_RESULT="PASS"
else
@@ -377,9 +389,9 @@ EOF
fi
fi
done < "${TESTS_FILE}"
-
+
elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) )
-
+
cat << EOF >> "${REGRESSIONTEST_LOG}"
SYNOPSIS:
@@ -397,18 +409,18 @@ EOF
echo "-- LOG: ${FAILED_COMPILE_LOGS[${i}]}" >> "${REGRESSIONTEST_LOG}"
done
fi
-
+
# PRINT FAILED TESTS
if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
-
+
echo "Failed Tests:" >> "${REGRESSIONTEST_LOG}"
for j in "${!FAILED_TESTS[@]}"; do
echo "* ${FAILED_TESTS[${j}]}" >> "${REGRESSIONTEST_LOG}"
echo "-- LOG: ${FAILED_TEST_LOGS[${j}]}" >> "${REGRESSIONTEST_LOG}"
done
-
+
fi
-
+
# WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG
if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then
for item in "${FAILED_TEST_ID[@]}"; do
@@ -721,7 +733,7 @@ case ${MACHINE_ID} in
# ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="slurm"
fi
-
+
export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6
module load PrgEnv-intel/8.3.3
module load intel-classic/2023.1.0
@@ -806,7 +818,7 @@ case ${MACHINE_ID} in
COMPILE_QUEUE="batch"
PARTITION="orion"
dprefix="/work/noaa/stmp/${USER}"
- DISKNM=/"work/noaa/epic/UFS-WM_RT"
+ DISKNM="/work/noaa/epic/UFS-WM_RT"
STMP="${dprefix}/stmp"
PTMP="${dprefix}/stmp"
@@ -854,7 +866,7 @@ case ${MACHINE_ID} in
echo "=======Please, move to Rocky8 node fe[5-8]======="
exit 1
fi
-
+
if [[ "${ROCOTO:-false}" == true ]] ; then
module load rocoto
# ROCOTORUN=$(command -v rocotorun)
@@ -955,7 +967,7 @@ case ${MACHINE_ID} in
cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN
cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN
-
+
if [[ "${ROCOTO:-false}" == true ]] ; then
# ROCOTORUN=$(command -v rocotorun)
# ROCOTOSTAT=$(command -v rocotostat)
@@ -1110,9 +1122,9 @@ rm -rf "${LOG_DIR}"
mkdir -p "${LOG_DIR}"
if [[ ${ROCOTO} == true ]]; then
-
+
echo "rt.sh: Verifying ROCOTO support..."
-
+
case ${MACHINE_ID} in
wcoss2|acorn|expanse|stampede)
die "Rocoto not supported on this machine, please do not use '-r'."
@@ -1125,7 +1137,7 @@ if [[ ${ROCOTO} == true ]]; then
ROCOTOSTAT="$(command -v rocotostat)"
ROCOTOCOMPLETE="$(command -v rocotocomplete)"
export ROCOTOCOMPLETE ROCOTOSTAT ROCOTORUN
-
+
ROCOTO_XML=${PATHRT}/rocoto_workflow.xml
ROCOTO_STATE=${PATHRT}/rocoto_workflow.state
ROCOTO_DB=${PATHRT}/rocoto_workflow.db
diff --git a/tests/test_changes.list b/tests/test_changes.list
index bce4315fbb..41e638ce0e 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,14 +1,4 @@
-control_c192 intel
-control_c384 intel
-control_c48 intel
-control_CubedSphereGrid_debug intel
-control_CubedSphereGrid intel
-control_CubedSphereGrid_parallel intel
-control_diag_debug intel
-control_latlon intel
-control_wrtGauss_netcdf_parallel_debug intel
-control_wrtGauss_netcdf_parallel intel
-merra2_thompson intel
-atmaero_control_p8_rad_micro intel
-control_c48 gnu
-control_diag_debug gnu
+control_p8_atmlnd_sbs intel
+control_p8_atmlnd intel
+control_restart_p8_atmlnd intel
+control_p8_atmlnd_debug intel
diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd
index aecdf87e6f..68b65d0e5b 100644
--- a/tests/tests/control_p8_atmlnd
+++ b/tests/tests/control_p8_atmlnd
@@ -204,6 +204,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
export INPUT_NML=global_control.nml.IN
+export V2_SFC_FILE=true
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_p8_atmlnd_debug b/tests/tests/control_p8_atmlnd_debug
new file mode 100644
index 0000000000..1f5d4eb2d7
--- /dev/null
+++ b/tests/tests/control_p8_atmlnd_debug
@@ -0,0 +1,84 @@
+###############################################################################
+#
+# Global control debug test GFSv16 atmosphere-land only at C96L127, P8 configuration
+#
+###############################################################################
+
+source tests/control_p8_atmlnd
+
+export TEST_DESCR="Compare global control results with previous trunk version"
+
+export CNTL_DIR=control_p8_atmlnd_debug
+
+export LIST_FILES="sfcf000.tile1.nc \
+ sfcf000.tile2.nc \
+ sfcf000.tile3.nc \
+ sfcf000.tile4.nc \
+ sfcf000.tile5.nc \
+ sfcf000.tile6.nc \
+ sfcf003.tile1.nc \
+ sfcf003.tile2.nc \
+ sfcf003.tile3.nc \
+ sfcf003.tile4.nc \
+ sfcf003.tile5.nc \
+ sfcf003.tile6.nc \
+ atmf000.tile1.nc \
+ atmf000.tile2.nc \
+ atmf000.tile3.nc \
+ atmf000.tile4.nc \
+ atmf000.tile5.nc \
+ atmf000.tile6.nc \
+ atmf003.tile1.nc \
+ atmf003.tile2.nc \
+ atmf003.tile3.nc \
+ atmf003.tile4.nc \
+ atmf003.tile5.nc \
+ atmf003.tile6.nc \
+ RESTART/20210322.090000.ca_data.tile1.nc \
+ RESTART/20210322.090000.ca_data.tile2.nc \
+ RESTART/20210322.090000.ca_data.tile3.nc \
+ RESTART/20210322.090000.ca_data.tile4.nc \
+ RESTART/20210322.090000.ca_data.tile5.nc \
+ RESTART/20210322.090000.ca_data.tile6.nc \
+ RESTART/20210322.090000.coupler.res \
+ RESTART/20210322.090000.fv_core.res.nc \
+ RESTART/20210322.090000.fv_core.res.tile1.nc \
+ RESTART/20210322.090000.fv_core.res.tile2.nc \
+ RESTART/20210322.090000.fv_core.res.tile3.nc \
+ RESTART/20210322.090000.fv_core.res.tile4.nc \
+ RESTART/20210322.090000.fv_core.res.tile5.nc \
+ RESTART/20210322.090000.fv_core.res.tile6.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \
+ RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile1.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile2.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile3.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile4.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile5.nc \
+ RESTART/20210322.090000.fv_tracer.res.tile6.nc \
+ RESTART/20210322.090000.phy_data.tile1.nc \
+ RESTART/20210322.090000.phy_data.tile2.nc \
+ RESTART/20210322.090000.phy_data.tile3.nc \
+ RESTART/20210322.090000.phy_data.tile4.nc \
+ RESTART/20210322.090000.phy_data.tile5.nc \
+ RESTART/20210322.090000.phy_data.tile6.nc \
+ RESTART/20210322.090000.sfc_data.tile1.nc \
+ RESTART/20210322.090000.sfc_data.tile2.nc \
+ RESTART/20210322.090000.sfc_data.tile3.nc \
+ RESTART/20210322.090000.sfc_data.tile4.nc \
+ RESTART/20210322.090000.sfc_data.tile5.nc \
+ RESTART/20210322.090000.sfc_data.tile6.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile1.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile2.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile3.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile4.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile5.nc \
+ ufs.cpld.lnd.out.2021-03-22-32400.tile6.nc"
+
+export RESTART_INTERVAL="3 -1"
+export OUTPUT_FH='0 3'
+export FHMAX=3
diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs
index 33be5a8b0c..56a3a888f8 100644
--- a/tests/tests/control_p8_atmlnd_sbs
+++ b/tests/tests/control_p8_atmlnd_sbs
@@ -202,6 +202,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
export INPUT_NML=global_control.nml.IN
+export V2_SFC_FILE=true
# RRTMGP
export DO_RRTMGP=.false.
diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd
index 2eaa04f779..a52c955dbe 100644
--- a/tests/tests/control_restart_p8_atmlnd
+++ b/tests/tests/control_restart_p8_atmlnd
@@ -142,6 +142,7 @@ export CCPP_SUITE=FV3_GFS_v17_p8
export FIELD_TABLE=field_table_thompson_noaero_tke
export DIAG_TABLE=diag_table_cpld.IN
export INPUT_NML=global_control.nml.IN
+export V2_SFC_FILE=true
# RRTMGP
export DO_RRTMGP=.false.
From 26cb9e60479958c4109a826c834333dcdd728a92 Mon Sep 17 00:00:00 2001
From: AnningCheng-NOAA <48297505+AnningCheng-NOAA@users.noreply.github.com>
Date: Thu, 2 May 2024 07:53:47 -0400
Subject: [PATCH 28/33] fixed excessive evaporation when both innerloop and
mraerosol=T (#2221)
* NWFA Induced evaporation is turn off , but evaporation not related to aerosol is turned on to prevent excessive evaporation when Inner loop and mraerosol=T
* ccpp/framework hash update
* Cleanup unused code and variables, fix wcoss2 issue starting ecflow
* Bring in @DusanJovic-NOAA trap changes
* Merge some machine ecflow starts together and move to case statements
---
FV3 | 2 +-
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 68 +-
tests/logs/RegressionTests_acorn.log | 554 ++++++-------
tests/logs/RegressionTests_derecho.log | 626 +++++++-------
tests/logs/RegressionTests_gaea.log | 592 ++++++--------
tests/logs/RegressionTests_hera.log | 767 ++++++++----------
tests/logs/RegressionTests_hercules.log | 765 ++++++++---------
tests/logs/RegressionTests_jet.log | 472 +++++------
tests/logs/RegressionTests_orion.log | 589 ++++++--------
tests/logs/RegressionTests_wcoss2.log | 458 +++++------
tests/rt.sh | 69 +-
tests/rt_utils.sh | 77 +-
tests/test_changes.list | 6 +-
16 files changed, 2377 insertions(+), 2742 deletions(-)
diff --git a/FV3 b/FV3
index da95cc428d..683061b3fd 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit da95cc428d8b626e99250fd57a4279b4980044f8
+Subproject commit 683061b3fd58716625eed61d7a7143e985f733d4
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index ba022070b2..40b36bd83a 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240426
+export BL_DATE=20240430
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 1390b3f6f6..98af0db899 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 29 18:57:13 UTC 2024
+Wed May 1 16:47:10 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 269.680202
- 0: The maximum resident set size (KB) = 1266668
+ 0: The total amount of wall time = 273.804433
+ 0: The maximum resident set size (KB) = 1253420
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 949.326805
- 0: The maximum resident set size (KB) = 1255152
+ 0: The total amount of wall time = 960.167656
+ 0: The maximum resident set size (KB) = 1231384
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 240.344326
- 0: The maximum resident set size (KB) = 1245676
+ 0: The total amount of wall time = 247.343877
+ 0: The maximum resident set size (KB) = 1232416
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.351607
- 0: The maximum resident set size (KB) = 1245716
+ 0: The total amount of wall time = 245.896195
+ 0: The maximum resident set size (KB) = 1231104
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.201971
- 0: The maximum resident set size (KB) = 1246024
+ 0: The total amount of wall time = 251.053244
+ 0: The maximum resident set size (KB) = 1228068
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 238.461943
- 0: The maximum resident set size (KB) = 1245616
+ 0: The total amount of wall time = 253.154960
+ 0: The maximum resident set size (KB) = 1233000
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2538358/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 249.430767
- 0: The maximum resident set size (KB) = 1247248
+ 0: The total amount of wall time = 242.649383
+ 0: The maximum resident set size (KB) = 1233424
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon Apr 29 20:17:04 UTC 2024
-Elapsed time: 01h:19m:51s. Have a nice day!
+Wed May 1 17:54:31 UTC 2024
+Elapsed time: 01h:07m:25s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 4e0876efed..24258447f8 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon Apr 29 23:05:39 UTC 2024
+Wed May 1 15:19:59 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1323.060262
- 0: The maximum resident set size (KB) = 1364380
+ 0: The total amount of wall time = 1448.267808
+ 0: The maximum resident set size (KB) = 1364020
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 393.654864
- 0: The maximum resident set size (KB) = 1360348
+ 0: The total amount of wall time = 444.246604
+ 0: The maximum resident set size (KB) = 1359328
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3667018/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 398.993468
- 0: The maximum resident set size (KB) = 1358812
+ 0: The total amount of wall time = 448.797587
+ 0: The maximum resident set size (KB) = 1359444
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 30 00:03:24 UTC 2024
-Elapsed time: 00h:57m:46s. Have a nice day!
+Wed May 1 16:30:01 UTC 2024
+Elapsed time: 01h:10m:03s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 6e16879d1f..653742ca0c 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,28 @@
-Tue Apr 30 00:26:07 UTC 2024
+Wed May 1 12:44:33 UTC 2024
Start Operation Requirement Test
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/bit_base_bit_base
+Checking test bit_base results ....
+Moving baseline bit_base files ....
+ Moving dynf000.nc .........OK
+ Moving dynf006.nc .........OK
+ Moving phyf000.nc .........OK
+ Moving phyf006.nc .........OK
+ Moving PRSLEV.GrbF00 .........OK
+ Moving PRSLEV.GrbF06 .........OK
+ Moving NATLEV.GrbF00 .........OK
+ Moving NATLEV.GrbF06 .........OK
+
+ 0: The total amount of wall time = 1265.539423
+ 0: The maximum resident set size (KB) = 593464
+
+Test bit_base PASS
+
+
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -14,14 +33,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2131.450659
- 0: The maximum resident set size (KB) = 555224
+ 0: The total amount of wall time = 2156.871537
+ 0: The maximum resident set size (KB) = 548144
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -33,14 +52,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2150.481127
- 0: The maximum resident set size (KB) = 553380
+ 0: The total amount of wall time = 2145.775444
+ 0: The maximum resident set size (KB) = 556196
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4130396/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -51,36 +70,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2147.836334
- 0: The maximum resident set size (KB) = 554792
+ 0: The total amount of wall time = 2148.252094
+ 0: The maximum resident set size (KB) = 561788
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 30 02:20:21 UTC 2024
-Elapsed time: 01h:54m:14s. Have a nice day!
-Tue Apr 30 16:20:31 UTC 2024
-Start Operation Requirement Test
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1270533/bit_base_bit_base
-Checking test bit_base results ....
-Moving baseline bit_base files ....
- Moving dynf000.nc .........OK
- Moving dynf006.nc .........OK
- Moving phyf000.nc .........OK
- Moving phyf006.nc .........OK
- Moving PRSLEV.GrbF00 .........OK
- Moving PRSLEV.GrbF06 .........OK
- Moving NATLEV.GrbF00 .........OK
- Moving NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 1420.618445
- 0: The maximum resident set size (KB) = 583292
-
-Test bit_base PASS
-
-OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue Apr 30 16:49:13 UTC 2024
-Elapsed time: 00h:28m:43s. Have a nice day!
+Wed May 1 15:05:29 UTC 2024
+Elapsed time: 02h:20m:57s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 4f9b548922..0f9cea2320 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
+185711d25b9d234f2d48a5cfb21b8e8295193f61
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,268 +35,275 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_105869
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5114
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:47] ( 3 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:06, 02:05](3043 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 18:17] ( 3 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [05:54, 02:49](1652 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:21, 03:29](1773 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [33:36, 02:54](900 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:27, 02:54](1623 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:11] ( 1527 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [19:13, 02:28](1679 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:25, 10:33] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [13:05, 01:37](3067 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:05, 01:56](3064 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:03, 02:05](3121 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 01:33](3089 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:03, 02:02](3142 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_2threads_p8_intel' [, ]( MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:05, 02:13](3063 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [13:06, 01:59](2993 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 02:05](3067 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:05, 02:18](3035 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:24, 09:55] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [03:42, 01:10](1642 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [03:33, 02:25](1696 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:33] ( 2 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:07, 01:32](1695 MB)
-
-PASS -- COMPILE 's2s_intel' [10:23, 09:33] ( 2 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [14:06, 01:04](2673 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:06] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:01, 02:16](3070 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:34] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [03:33, 01:04](1669 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [37:28, 01:00](965 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:58, 01:40](1639 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 03:57] ( 1562 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [20:13, 01:19](1686 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:39] ( 3 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [09:48, 00:55](634 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:48, 00:42](1528 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:48, 01:07](1541 MB)
-PASS -- TEST 'control_latlon_intel' [09:48, 00:57](1539 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:48, 00:56](1538 MB)
-PASS -- TEST 'control_c48_intel' [09:47, 01:24](1611 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:47, 00:54](737 MB)
-PASS -- TEST 'control_c192_intel' [09:48, 01:08](1649 MB)
-PASS -- TEST 'control_c384_intel' [09:52, 01:49](1968 MB)
-PASS -- TEST 'control_c384gdas_intel' [09:52, 03:15](1152 MB)
-PASS -- TEST 'control_stochy_intel' [09:48, 00:38](591 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:09, 00:28](390 MB)
-PASS -- TEST 'control_lndp_intel' [09:48, 00:19](588 MB)
-PASS -- TEST 'control_iovr4_intel' [09:48, 01:14](586 MB)
-PASS -- TEST 'control_iovr5_intel' [09:48, 01:04](584 MB)
-PASS -- TEST 'control_p8_intel' [02:34, 02:53](1561 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [02:33, 02:22](1561 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [01:41, 02:07](1573 MB)
-PASS -- TEST 'control_restart_p8_intel' [48:46, 02:57](751 MB)
-PASS -- TEST 'control_noqr_p8_intel' [00:05, 02:21](1557 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [48:46, 02:59](754 MB)
-PASS -- TEST 'control_decomp_p8_intel' [59:06, 01:27](1563 MB)
-PASS -- TEST 'control_2threads_p8_intel' [58:06, 01:43](1645 MB)
-PASS -- TEST 'control_p8_lndp_intel' [58:02, 00:59](1564 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [57:20, 02:21](1619 MB)
-PASS -- TEST 'control_p8_mynn_intel' [56:28, 01:48](1577 MB)
-PASS -- TEST 'merra2_thompson_intel' [55:21, 03:08](1576 MB)
-PASS -- TEST 'regional_control_intel' [55:16, 01:09](629 MB)
-PASS -- TEST 'regional_restart_intel' [48:11, 00:32](798 MB)
-PASS -- TEST 'regional_decomp_intel' [55:12, 00:59](632 MB)
-PASS -- TEST 'regional_2threads_intel' [55:07, 01:01](726 MB)
-PASS -- TEST 'regional_noquilt_intel' [53:10, 01:05](1165 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [52:47, 00:36](630 MB)
-PASS -- TEST 'regional_wofs_intel' [52:46, 00:52](1602 MB)
-
-PASS -- COMPILE 'ifi_intel' [09:22, 08:16] ( 2 warnings )
-PASS -- TEST 'regional_ifi_control_intel' [09:48, 00:34](630 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [09:48, 00:37](629 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [09:49, 01:14](723 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:23, 09:03] ( 5 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [52:32, 02:28](973 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [52:28, 00:43](1147 MB)
-PASS -- TEST 'rap_decomp_intel' [49:47, 02:06](974 MB)
-PASS -- TEST 'rap_2threads_intel' [49:38, 02:50](1060 MB)
-PASS -- TEST 'rap_restart_intel' [40:07, 02:54](844 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [49:25, 02:15](968 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:25, 03:01](972 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [00:16, 02:41](843 MB)
-PASS -- TEST 'hrrr_control_intel' [49:03, 02:59](966 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [48:52, 02:15](965 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [48:18, 02:34](1045 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [20:58, 00:19](794 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [48:09, 03:06](965 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [47:29, 01:28](1923 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 00:57](1918 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:23, 08:41] ( 3 warnings )
-PASS -- TEST 'control_csawmg_intel' [14:28, 00:52](656 MB)
-
-PASS -- COMPILE 'wam_intel' [09:22, 08:28] ( 2 warnings )
-PASS -- TEST 'control_wam_intel' [46:07, 00:40](329 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 09:05] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [46:06, 02:38](1560 MB)
-PASS -- TEST 'regional_control_faster_intel' [46:02, 00:35](627 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [08:21, 04:25] ( 887 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:50, 01:13](1557 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:39, 00:30](1558 MB)
-PASS -- TEST 'control_stochy_debug_intel' [44:12, 01:07](758 MB)
-PASS -- TEST 'control_lndp_debug_intel' [44:10, 01:14](759 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [42:59, 01:05](800 MB)
-PASS -- TEST 'control_ras_debug_intel' [42:46, 01:09](768 MB)
-PASS -- TEST 'control_diag_debug_intel' [42:05, 01:08](1624 MB)
-PASS -- TEST 'control_debug_p8_intel' [41:56, 00:52](1588 MB)
-PASS -- TEST 'regional_debug_intel' [40:40, 01:06](688 MB)
-PASS -- TEST 'rap_control_debug_intel' [40:07, 00:53](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [40:07, 00:58](1139 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [40:04, 01:30](1146 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [38:54, 01:08](1140 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [38:22, 00:24](1145 MB)
-PASS -- TEST 'rap_diag_debug_intel' [20:24, 01:26](1231 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:30, 01:08](1146 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:30, 01:05](1145 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [18:13, 00:29](1152 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:21, 00:59](1145 MB)
-PASS -- TEST 'rap_noah_debug_intel' [15:02, 00:46](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [14:14, 00:39](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:00, 00:56](1142 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [13:54, 01:03](1139 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [13:24, 00:34](1145 MB)
-PASS -- TEST 'rap_flake_debug_intel' [13:15, 00:35](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:11, 02:40](1149 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [28:43, 03:10] ( 857 warnings )
-PASS -- TEST 'control_wam_debug_intel' [11:49, 00:33](370 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:53, 08:31] ( 5 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:32, 01:23](1018 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:27, 02:22](850 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:33, 03:40](846 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 01:26](912 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:03, 03:22](898 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:00, 02:44](847 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:44, 02:20](744 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [44:52, 00:23](731 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:59, 10:38] ( 5 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [06:06, 01:00](1053 MB)
-PASS -- TEST 'conus13km_2threads_intel' [47:36, 00:20](1035 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [44:52, 00:42](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [41:55, 08:34] ( 5 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:23, 01:18](872 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [44:00, 03:16] ( 789 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:52, 00:20](1021 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [03:14, 00:49](1021 MB)
-PASS -- TEST 'conus13km_debug_intel' [03:09, 00:35](1111 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [02:58, 00:25](808 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [01:15, 00:22](1090 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:43, 00:56](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [45:02, 03:15] ( 789 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [57:43, 00:33](1043 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:29, 09:51] ( 3 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [53:18, 01:39](670 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:18, 01:12](1023 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:16, 01:53](715 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [53:16, 01:53](761 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:17, 01:36](909 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:16, 00:53](443 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [52:08, 01:54](458 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [51:09, 01:54](332 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [50:39, 03:13](436 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [50:27, 01:27](468 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:08, 01:40](469 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:13, 01:42](540 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:03, 01:17](368 MB)
-PASS -- TEST 'gnv1_nested_intel' [44:22, 01:45](732 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:35, 03:51] ( 1469 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:09, 01:38](632 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [25:47, 09:58] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:57, 01:51](580 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:57, 01:30](745 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [33:49, 09:57] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:40, 01:27](747 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [20:38, 09:30] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [20:27, 02:00](710 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [20:27, 01:59](693 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:25, 01:10](894 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:31, 08:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [16:34, 00:30](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [10:07, 00:49](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:34, 00:18](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [14:29, 00:38](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:48, 01:00](643 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [10:04, 00:28](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:39, 00:21](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 00:37](640 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:23, 01:46](647 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [01:17, 01:00](631 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:42, 00:42](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:40, 00:47](2015 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [56:12, 00:33](2016 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:24, 08:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [53:19, 01:06](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:17, 01:05] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [22:43, 00:47](264 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [22:43, 00:39](413 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [29:17, 00:22](412 MB)
-
-PASS -- COMPILE 'atml_intel' [07:26, 10:04] ( 10 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [53:16, 02:22](1597 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [52:59, 02:29](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:58, 01:09](805 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [13:31, 04:08] ( 882 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [49:50, 02:34](1630 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:28, 09:09] ( 2 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [39:47, 02:00](1610 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:27, 08:54] ( 2 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [39:40, 02:14](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [39:40, 01:35](2970 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:40, 02:18](2988 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [54:08, 03:23] ( 886 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [43:47, 01:48](4484 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:31] ( 3 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:09, 01:58](2991 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:39] ( 3 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [01:02, 03:28](1617 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:22, 03:20](1739 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [27:46, 02:21](877 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:03, 03:01](1594 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:14] ( 1527 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [13:16, 03:04](1645 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:24, 10:31] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [07:09, 01:31](3020 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:09, 02:04](3020 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [58:06, 02:30](3077 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 01:43](3043 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [39:37, 02:22](3096 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:09, 01:56](3328 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:09, 01:30](3016 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:10, 01:55](2944 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:09, 02:00](3020 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 02:17](2986 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:23, 10:10] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:10, 01:07](1614 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:10, 01:32](1643 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:40] ( 2 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 01:32](1645 MB)
+
+PASS -- COMPILE 's2s_intel' [10:24, 09:37] ( 2 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:08, 01:00](2638 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:47] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [02:03, 01:59](3020 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:17] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:03, 01:50](1630 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:52, 01:09](934 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:38, 01:06](1603 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] ( 1562 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [14:16, 01:20](1659 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:55, 09:46] ( 3 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [36:59, 01:13](610 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [34:46, 00:44](1500 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:45, 00:56](1508 MB)
+PASS -- TEST 'control_latlon_intel' [32:46, 00:42](1504 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:42, 00:55](1503 MB)
+PASS -- TEST 'control_c48_intel' [32:41, 01:06](1585 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [32:41, 00:46](713 MB)
+PASS -- TEST 'control_c192_intel' [32:42, 00:44](1620 MB)
+PASS -- TEST 'control_c384_intel' [32:46, 02:19](1932 MB)
+PASS -- TEST 'control_c384gdas_intel' [32:34, 03:43](1118 MB)
+PASS -- TEST 'control_stochy_intel' [31:41, 00:54](567 MB)
+PASS -- TEST 'control_stochy_restart_intel' [27:08, 00:18](372 MB)
+PASS -- TEST 'control_lndp_intel' [31:40, 01:00](565 MB)
+PASS -- TEST 'control_iovr4_intel' [30:50, 00:34](561 MB)
+PASS -- TEST 'control_iovr5_intel' [30:09, 01:16](561 MB)
+PASS -- TEST 'control_p8_intel' [30:02, 02:49](1534 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [23:59, 02:30](1535 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [29:36, 02:15](1537 MB)
+PASS -- TEST 'control_restart_p8_intel' [21:20, 02:07](726 MB)
+PASS -- TEST 'control_noqr_p8_intel' [29:04, 01:28](1525 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [20:10, 01:37](732 MB)
+PASS -- TEST 'control_decomp_p8_intel' [29:04, 01:21](1529 MB)
+PASS -- TEST 'control_2threads_p8_intel' [27:44, 01:18](1621 MB)
+PASS -- TEST 'control_p8_lndp_intel' [27:08, 01:04](1535 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [26:37, 02:08](1588 MB)
+PASS -- TEST 'control_p8_mynn_intel' [26:37, 02:31](1539 MB)
+PASS -- TEST 'merra2_thompson_intel' [26:36, 01:41](1539 MB)
+PASS -- TEST 'regional_control_intel' [26:33, 01:02](606 MB)
+PASS -- TEST 'regional_restart_intel' [14:19, 00:23](776 MB)
+PASS -- TEST 'regional_decomp_intel' [26:22, 01:09](605 MB)
+PASS -- TEST 'regional_2threads_intel' [26:19, 00:28](695 MB)
+PASS -- TEST 'regional_noquilt_intel' [26:17, 00:26](1139 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 00:51](606 MB)
+PASS -- TEST 'regional_wofs_intel' [25:46, 00:12](1573 MB)
+
+PASS -- COMPILE 'ifi_intel' [34:51, 08:24] ( 2 warnings )
+PASS -- TEST 'regional_ifi_control_intel' [37:50, 00:55](606 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [37:49, 00:26](606 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [37:49, 00:56](695 MB)
+
+PASS -- COMPILE 'rrfs_intel' [29:47, 09:09] ( 5 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [24:15, 02:56](943 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:43, 01:34](1112 MB)
+PASS -- TEST 'rap_decomp_intel' [23:33, 02:24](943 MB)
+PASS -- TEST 'rap_2threads_intel' [22:33, 02:18](1027 MB)
+PASS -- TEST 'rap_restart_intel' [07:49, 02:20](814 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [21:57, 03:13](940 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 02:50](943 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 03:06](813 MB)
+PASS -- TEST 'hrrr_control_intel' [12:29, 02:24](935 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [19:12, 02:58](937 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [16:44, 01:28](1013 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:58, 00:25](769 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [15:16, 02:48](936 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [15:14, 00:42](1902 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:52, 00:26](1891 MB)
+
+PASS -- COMPILE 'csawmg_intel' [29:47, 08:45] ( 3 warnings )
+PASS -- TEST 'control_csawmg_intel' [14:48, 01:24](632 MB)
+
+PASS -- COMPILE 'wam_intel' [29:47, 08:30] ( 2 warnings )
+PASS -- TEST 'control_wam_intel' [14:39, 01:13](309 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [28:42, 09:05] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [14:11, 02:01](1533 MB)
+PASS -- TEST 'regional_control_faster_intel' [14:08, 00:26](605 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [24:38, 04:30] ( 887 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:30, 00:37](1532 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:21, 00:53](1533 MB)
+PASS -- TEST 'control_stochy_debug_intel' [42:30, 00:56](741 MB)
+PASS -- TEST 'control_lndp_debug_intel' [42:30, 01:15](742 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [42:30, 00:56](777 MB)
+PASS -- TEST 'control_ras_debug_intel' [42:30, 01:15](752 MB)
+PASS -- TEST 'control_diag_debug_intel' [42:30, 00:26](1594 MB)
+PASS -- TEST 'control_debug_p8_intel' [42:30, 01:09](1564 MB)
+PASS -- TEST 'regional_debug_intel' [42:29, 00:17](645 MB)
+PASS -- TEST 'rap_control_debug_intel' [42:30, 00:47](1120 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [42:30, 00:50](1113 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [42:30, 00:24](1116 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [42:30, 00:23](1117 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:30, 01:10](1120 MB)
+PASS -- TEST 'rap_diag_debug_intel' [42:30, 00:43](1202 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:30, 00:16](1120 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:30, 00:51](1119 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [42:30, 00:28](1122 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:30, 01:00](1120 MB)
+PASS -- TEST 'rap_noah_debug_intel' [42:30, 00:53](1118 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [42:30, 00:51](1117 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:30, 00:44](1118 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [41:20, 01:03](1112 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [39:28, 00:33](1120 MB)
+PASS -- TEST 'rap_flake_debug_intel' [39:17, 00:44](1120 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 02:29](1122 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [18:33, 03:15] ( 857 warnings )
+PASS -- TEST 'control_wam_debug_intel' [43:29, 01:00](353 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:33] ( 5 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:20, 01:00](980 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:50, 02:48](822 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:47, 03:22](821 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:14, 02:35](878 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:12, 02:13](868 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:08, 02:27](818 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:21, 01:30](718 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 00:34](700 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:38, 10:46] ( 5 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [08:38, 01:08](1030 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:20, 00:42](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:19, 00:24](911 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:39] ( 5 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:08, 00:56](845 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:17] ( 789 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 01:06](997 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 01:03](996 MB)
+PASS -- TEST 'conus13km_debug_intel' [07:34, 00:42](1084 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 00:26](758 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [06:23, 00:20](1059 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:58, 01:16](1151 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 03:20] ( 789 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:30, 00:43](1017 MB)
+
+PASS -- COMPILE 'hafsw_intel' [45:01, 09:49] ( 3 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [53:25, 01:37](643 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:25, 00:45](989 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:23, 01:29](693 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [53:23, 01:42](726 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:24, 01:44](744 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:23, 00:57](412 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:24, 02:24](435 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [53:24, 01:52](310 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:27, 02:53](375 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:23, 01:22](445 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:23, 01:41](446 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:25, 00:45](512 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:24, 00:30](339 MB)
+PASS -- TEST 'gnv1_nested_intel' [53:24, 01:53](699 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [38:54, 03:46] ( 1469 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [59:31, 00:42](540 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [45:00, 10:02] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:24, 00:56](552 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:24, 01:12](723 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 09:53] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:23, 01:18](723 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [45:00, 09:29] ( 2 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [53:21, 02:04](684 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:21, 02:08](672 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:19, 00:49](888 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [47:01, 09:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:10, 00:14](756 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:43, 00:33](745 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:10, 00:53](634 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:45, 00:58](636 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:10, 00:16](634 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [50:40, 00:55](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:11, 00:19](756 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [50:11, 00:30](634 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:16, 01:51](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [48:01, 01:15](622 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [46:53, 00:18](756 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [46:47, 00:39](2010 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [46:47, 00:43](2010 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [46:01, 08:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [51:17, 00:53](745 MB)
+
+FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_land_intel' [, ]
+FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_gswp3_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB)
+
+PASS -- COMPILE 'atml_intel' [44:00, 09:57] ( 10 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [45:28, 02:13](1572 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [44:45, 02:39](1573 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 01:10](779 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:17, 04:06] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:13, 02:31](1605 MB)
+
+PASS -- COMPILE 'atmw_intel' [09:23, 09:02] ( 2 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:02, 02:38](1574 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:21, 08:59] ( 2 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [43:04, 01:50](2870 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [41:45, 02:07](2930 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:44, 01:46](2942 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:16, 03:27] ( 886 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [41:33, 02:19](4338 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 16:35:18
-Ending Date/Time: 20240429 19:55:24
-Total Time: 03h:20m:22s
-Compiles Completed: 36/36
-Tests Completed: 173/174
+Starting Date/Time: 20240501 14:40:58
+Ending Date/Time: 20240501 17:04:01
+Total Time: 02h:23m:30s
+Compiles Completed: 35/36
+Tests Completed: 171/174
+Failed Compiles:
+* COMPILE datm_cdeps_land_intel: FAILED: UNABLE TO COMPILE
+-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/compile_datm_cdeps_land_intel.log
Failed Tests:
-* TEST cpld_2threads_p8_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/uturuncoglu/ufs-weather-model/tests/logs/log_acorn/run_cpld_2threads_p8_intel.log
+* TEST datm_cdeps_lnd_gswp3_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST datm_cdeps_lnd_era5_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST datm_cdeps_lnd_era5_rst_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -309,7 +316,7 @@ Result: FAILURE
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
+185711d25b9d234f2d48a5cfb21b8e8295193f61
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -319,10 +326,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -332,7 +339,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -343,22 +350,25 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_142305
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29444
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-b) - NEW BASELINES FROM FILE: test_changes.list
+* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_intel' [11:24, 10:39] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_2threads_p8_intel' [50:22, 00:56](3379 MB)
+PASS -- COMPILE 'datm_cdeps_land_intel' [15:28, 01:07] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:25, 00:50](269 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:25, 00:43](407 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [31:53, 01:01](408 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 19:58:16
-Ending Date/Time: 20240429 20:16:53
-Total Time: 00h:18m:42s
+Starting Date/Time: 20240501 17:09:54
+Ending Date/Time: 20240501 17:31:57
+Total Time: 00h:22m:12s
Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 3/3
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index d871a84370..5e21b08bec 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-aef829f3311f718f3cef6b1102e849370da1a983
+521f9348ebc590effdc0b5054b94946e209679d4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,283 +35,272 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_44306
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_24021
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:14, 19:15] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:07, 04:52](3076 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:14, 20:33] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:55, 13:44](1689 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:23, 14:55](1829 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:33, 07:00](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:02, 15:45](1659 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:14, 09:05] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 21:20](1705 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:15, 19:14] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:52, 05:33](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:00, 05:34](3090 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:27, 03:14](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 05:33](3129 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:27, 03:14](3182 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:38, 05:27](3091 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:24, 04:30](3384 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:56, 05:33](3099 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [12:39, 08:40](3635 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:27, 05:40](3613 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:39, 09:36](4345 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:29, 06:47](4648 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:16](3070 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:15, 18:31] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:41, 04:08](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:55, 04:11](1736 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:13, 08:59] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [09:46, 07:43](3156 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:14, 08:31] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:26, 05:16](1704 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:15, 14:09] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:56, 04:13](1733 MB)
-
-PASS -- COMPILE 's2s_intel' [15:15, 14:08] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:00, 06:31](2668 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:16, 22:40] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:29](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:18, 19:41] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:00](1707 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 07:04](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:45, 15:58](1675 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:33] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:39, 22:59](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:17, 12:28] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:42, 03:22](671 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](1569 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:25](1573 MB)
-PASS -- TEST 'control_latlon_intel' [04:29, 02:22](1576 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:30, 02:23](1563 MB)
-PASS -- TEST 'control_c48_intel' [08:30, 06:14](1612 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:41, 05:15](739 MB)
-PASS -- TEST 'control_c192_intel' [11:06, 08:38](1690 MB)
-PASS -- TEST 'control_c384_intel' [15:32, 08:50](2001 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:15, 07:13](1200 MB)
-PASS -- TEST 'control_stochy_intel' [02:37, 01:23](625 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_stochy_restart_intel' [, ]( MB)
-PASS -- TEST 'control_lndp_intel' [02:35, 01:19](627 MB)
-PASS -- TEST 'control_iovr4_intel' [03:37, 02:03](619 MB)
-PASS -- TEST 'control_iovr5_intel' [03:34, 02:03](622 MB)
-PASS -- TEST 'control_p8_intel' [04:33, 02:27](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:29, 02:27](1596 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:23, 02:25](1599 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:15, 01:23](801 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:26](1585 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:21](808 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:33, 02:31](1598 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:33, 04:19](1594 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:35, 03:16](1653 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:36, 02:31](1606 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:36, 02:47](1607 MB)
-PASS -- TEST 'regional_control_intel' [06:01, 04:29](631 MB)
-PASS -- TEST 'regional_restart_intel' [04:12, 02:28](798 MB)
-PASS -- TEST 'regional_decomp_intel' [06:04, 04:41](628 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:01, 04:23](1160 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:26](625 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:59, 04:28](632 MB)
-PASS -- TEST 'regional_wofs_intel' [06:53, 05:36](1603 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:12, 11:02] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:08, 06:06](1008 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 03:49](1194 MB)
-PASS -- TEST 'rap_decomp_intel' [08:14, 06:19](1003 MB)
-PASS -- TEST 'rap_restart_intel' [05:07, 03:13](878 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:11, 06:03](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:05, 06:20](1002 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:34](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:06, 03:10](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:15](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:46](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:41, 01:44](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:02, 05:56](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:39, 07:20](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:05](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:12, 09:58] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:00, 05:47](692 MB)
-PASS -- TEST 'control_ras_intel' [04:32, 02:50](658 MB)
-
-PASS -- COMPILE 'wam_intel' [10:12, 09:28] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:25, 01:56](381 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:19, 12:23] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:36, 02:25](1594 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:01, 04:15](624 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:17, 08:20] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:15, 02:30](1600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:17, 02:26](1591 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:53](801 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:33](801 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:17, 04:00](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:28, 02:35](806 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:45, 02:32](1654 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:05, 02:38](1623 MB)
-PASS -- TEST 'regional_debug_intel' [17:52, 16:13](661 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:34, 04:40](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:40, 04:34](1181 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:30, 04:41](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 04:41](1178 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:59, 04:49](1265 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1180 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:34, 04:43](1184 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:29, 04:42](1180 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:44](1180 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:30, 04:37](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:29, 04:36](1179 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:30, 07:25](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 04:44](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:27](1183 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:44](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:11, 08:00](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:12, 05:08] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:24, 04:36](424 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:18, 09:37] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:25](1061 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:05](881 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:45](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:59, 02:49](885 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:08, 03:49](797 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 01:31](780 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:13, 11:34] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:14, 01:50](1083 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:44, 00:54](1083 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:05](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:33] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:52, 03:35](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:12, 05:31] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 04:29](1060 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:22](1061 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:54, 13:22](1137 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 13:53](820 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:16](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:18] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:30, 04:31](1082 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:18, 15:39] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:25, 04:26](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 04:56](1072 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:50, 06:19](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:43, 10:49](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:08, 11:56](815 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:15, 04:37](474 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 05:39](492 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:15](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:40, 06:08](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:14](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:00](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:26, 03:42](591 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:37, 01:10](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:14, 03:16](791 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:12, 06:49] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:34, 11:59](615 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:20, 19:25] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:25, 07:00](633 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:04](692 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:18, 16:23] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:32, 05:15](677 MB)
-
-FAILED: UNABLE TO COMPILE -- COMPILE 'hafs_all_intel' [, ]
-FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'hafs_regional_datm_cdeps_intel' [, ]( MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:36] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:32, 02:20](640 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:22](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:22](643 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:26](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:28](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:18](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:23, 05:35](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:10, 05:35](672 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:26](748 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:26, 03:50](2016 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:26, 03:49](2019 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:17, 04:53] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:03](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:18, 07:34] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:27](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:14] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:03](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:37, 01:00](453 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:31, 00:39](454 MB)
-
-PASS -- COMPILE 'atml_intel' [14:13, 12:51] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 05:41](1631 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 05:16](1644 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:15, 02:48](856 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [08:19, 07:23] ( 885 warnings 2 remarks )
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'control_p8_atmlnd_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'atmw_intel' [14:13, 12:29] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 01:31](1638 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:13, 10:56] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:25, 03:35](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:11](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:14, 04:16](3011 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:05] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [25:06, 21:50](4535 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:16, 19:14] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 04:51](3073 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:26] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:43](1692 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 14:58](1825 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 07:03](959 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:59, 15:42](1662 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:18, 09:05] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:40, 21:19](1695 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:15, 19:15] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [12:33, 05:36](3093 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:36](3093 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [15:43, 03:15](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:40, 05:35](3123 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 03:15](3176 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:34, 05:30](3091 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:36](3387 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:48, 05:35](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [34:45, 08:44](3638 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:02, 05:47](3613 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 09:44](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:29, 06:48](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:17](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:14, 18:33] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:09](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:43, 04:14](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:06] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [09:48, 07:37](3155 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:33] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:29, 05:16](1703 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:15, 14:15] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:10, 04:12](1726 MB)
+
+PASS -- COMPILE 's2s_intel' [16:15, 14:11] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:37](2668 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:51] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 05:28](3103 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:18] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 14:14](1705 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:07](1018 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 15:59](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:34] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:48, 22:58](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:32] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:35, 03:23](672 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:22](1563 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:16, 02:25](1574 MB)
+PASS -- TEST 'control_latlon_intel' [07:01, 02:24](1576 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 02:24](1569 MB)
+PASS -- TEST 'control_c48_intel' [15:10, 06:11](1621 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:42, 05:15](739 MB)
+PASS -- TEST 'control_c192_intel' [12:43, 08:38](1684 MB)
+PASS -- TEST 'control_c384_intel' [13:35, 08:49](2006 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:19, 07:15](1201 MB)
+PASS -- TEST 'control_stochy_intel' [03:34, 01:26](625 MB)
+PASS -- TEST 'control_stochy_restart_intel' [08:40, 00:52](443 MB)
+PASS -- TEST 'control_lndp_intel' [12:31, 01:20](623 MB)
+PASS -- TEST 'control_iovr4_intel' [13:41, 02:04](620 MB)
+PASS -- TEST 'control_iovr5_intel' [12:40, 02:06](625 MB)
+PASS -- TEST 'control_p8_intel' [13:30, 02:28](1604 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 02:28](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:22, 02:26](1601 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:34, 01:24](804 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:27, 02:26](1584 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:21](806 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:23, 02:33](1601 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:07, 04:23](1598 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [12:46, 03:16](1654 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:36, 02:30](1608 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:29, 02:46](1612 MB)
+PASS -- TEST 'regional_control_intel' [06:02, 04:27](632 MB)
+PASS -- TEST 'regional_restart_intel' [03:57, 02:29](798 MB)
+PASS -- TEST 'regional_decomp_intel' [06:57, 04:44](629 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:56, 04:25](1158 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:27](629 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 04:29](631 MB)
+PASS -- TEST 'regional_wofs_intel' [07:04, 05:36](1609 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:18, 11:01] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:06, 06:08](1006 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 03:40](1197 MB)
+PASS -- TEST 'rap_decomp_intel' [09:11, 06:24](1008 MB)
+PASS -- TEST 'rap_restart_intel' [05:19, 03:14](884 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:14, 06:05](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:12, 06:23](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:33](879 MB)
+PASS -- TEST 'hrrr_control_intel' [06:12, 03:13](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:15](999 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [20:26, 02:47](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:44](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:06, 05:56](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:48, 07:21](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:06](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [16:19, 10:04] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:00, 05:50](694 MB)
+PASS -- TEST 'control_ras_intel' [04:27, 02:51](659 MB)
+
+PASS -- COMPILE 'wam_intel' [15:18, 09:27] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:30, 01:53](381 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:20, 12:31] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:50, 02:20](1603 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:58, 04:15](625 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [15:18, 08:22] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:30](1600 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:29](1597 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:52](797 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:31](797 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:08, 03:59](840 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:36, 02:40](808 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:21, 02:37](1655 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:58, 02:37](1628 MB)
+PASS -- TEST 'regional_debug_intel' [16:58, 15:44](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:35, 04:41](1179 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1175 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 04:44](1180 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 04:38](1181 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:38](1178 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:20, 04:55](1264 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 04:48](1181 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:38](1180 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:30](1177 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:37](1181 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:35](1180 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 04:38](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:25](1184 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:36, 04:35](1178 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 07:55](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:19, 05:12] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:29, 04:46](420 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 09:31] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:46, 03:25](1060 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](887 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:44](884 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:53](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:51](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:31](775 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:18, 11:34] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:34, 01:50](1084 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:55](1085 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:07](976 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:40] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 05:40] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:38](1061 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:22](1057 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:49, 13:17](1136 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:39, 13:21](821 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 13:19](1201 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 05:29] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:36](1083 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:19, 15:33] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:39, 04:28](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:14, 04:59](1068 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:48, 06:19](779 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:43, 11:55](814 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:38](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 05:40](495 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:18](391 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:13](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:15](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:00](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:22, 03:44](587 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](427 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:20, 03:18](788 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:19, 06:51] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 11:57](614 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [27:20, 19:19] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:10](696 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [24:20, 16:27] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:44, 05:12](676 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [21:21, 13:50] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:35, 05:29](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 05:30](737 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:27, 16:09](896 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:20, 07:36] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:28](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:23, 02:20](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:22](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:32, 02:24](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:29](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:21](640 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:51, 05:38](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 05:35](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 03:52](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:39, 03:52](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [11:18, 04:53] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:18, 07:35] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:28](750 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:18] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:06](311 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:41](453 MB)
+
+PASS -- COMPILE 'atml_intel' [13:20, 12:49] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 06:11](1639 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 05:49](1632 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:16](850 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [08:18, 07:23] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 05:28](1667 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:21, 12:37] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:32](1639 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:19, 11:01] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:55, 03:35](2950 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](3007 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:18](3012 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:11] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:49](4529 MB)
SYNOPSIS:
-Starting Date/Time: 20240428 22:53:16
-Ending Date/Time: 20240429 00:51:54
-Total Time: 01h:59m:25s
-Compiles Completed: 37/38
-Tests Completed: 168/173
-Failed Compiles:
-* COMPILE hafs_all_intel: FAILED: UNABLE TO COMPILE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/compile_hafs_all_intel.log
+Starting Date/Time: 20240430 21:59:35
+Ending Date/Time: 20240430 23:38:01
+Total Time: 01h:39m:15s
+Compiles Completed: 38/38
+Tests Completed: 172/173
Failed Tests:
-* TEST control_stochy_restart_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_stochy_restart_intel.log
-* TEST hafs_regional_docn_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST hafs_regional_datm_cdeps_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST control_p8_atmlnd_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2191/tests/logs/log_derecho/run_control_p8_atmlnd_debug_intel.log
+* TEST hafs_regional_atm_wav_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2221/tests/logs/log_derecho/run_hafs_regional_atm_wav_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -324,7 +313,7 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-7441d3bb7300d6f41e7eb17bd98aac0539164065
+521f9348ebc590effdc0b5054b94946e209679d4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -334,10 +323,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -347,7 +336,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -358,88 +347,21 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14461
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_43701
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'hafs_all_intel' [15:13, 13:53] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:13, 05:29](758 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:10, 05:31](734 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:02, 16:12](894 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:13, 12:20] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_stochy_intel' [02:24, 01:26](629 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](441 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240429 11:36:19
-Ending Date/Time: 20240429 12:11:02
-Total Time: 00h:34m:59s
-Compiles Completed: 2/2
-Tests Completed: 5/5
-
-NOTES:
-A file 'test_changes.list' was generated but is empty.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: SUCCESS
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_28144
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'atml_debug_intel' [08:19, 07:29] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:33, 05:28](1658 MB)
+PASS -- COMPILE 'hafsw_intel' [16:15, 15:49] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:12, 10:53](799 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 10:55:02
-Ending Date/Time: 20240429 11:10:55
-Total Time: 00h:16m:05s
+Starting Date/Time: 20240501 07:00:20
+Ending Date/Time: 20240501 07:31:08
+Total Time: 00h:30m:58s
Compiles Completed: 1/1
Tests Completed: 1/1
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index add817f40d..8384cf2789 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b
+521f9348ebc590effdc0b5054b94946e209679d4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,274 +35,274 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_176475
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5026
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:23] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:54, 07:29](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:13, 25:58] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:07, 14:04](1685 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 14:08](1809 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 07:18](944 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:03, 15:51](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:16, 16:04] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [30:51, 24:25](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:16, 20:58] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [17:25, 08:11](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:15, 08:12](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [13:57, 06:37](3152 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:24, 08:08](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 05:26](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 06:39](3408 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:56, 07:57](3096 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 07:21](3019 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:15, 08:21](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [19:54, 10:44](3270 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:55, 07:30](3600 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 13:37](4035 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:52, 09:23](4345 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [12:58, 08:06](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:15, 20:09] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:30, 05:00](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:10, 05:13](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [16:16, 15:15] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [14:38, 10:02](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:11] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:20, 05:57](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [42:16, 41:22] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:45, 05:52](1727 MB)
-
-PASS -- COMPILE 's2s_intel' [19:16, 18:06] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:44, 06:54](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:13, 24:42] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [20:34, 08:42](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:17, 23:12] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 15:39](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:24, 07:20](999 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:42, 17:45](1682 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:16, 13:06] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:56, 27:51](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:17, 14:56] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [09:32, 04:08](673 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [10:01, 03:18](1568 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:02, 03:41](1580 MB)
-PASS -- TEST 'control_latlon_intel' [09:51, 03:37](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:36](1569 MB)
-PASS -- TEST 'control_c48_intel' [15:22, 06:38](1604 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [14:08, 05:47](722 MB)
-PASS -- TEST 'control_c192_intel' [18:05, 10:24](1683 MB)
-PASS -- TEST 'control_c384_intel' [26:39, 18:25](1985 MB)
-PASS -- TEST 'control_c384gdas_intel' [25:34, 14:33](1186 MB)
-PASS -- TEST 'control_stochy_intel' [05:24, 02:17](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:19, 01:24](430 MB)
-PASS -- TEST 'control_lndp_intel' [05:24, 02:26](628 MB)
-PASS -- TEST 'control_iovr4_intel' [05:39, 03:10](623 MB)
-PASS -- TEST 'control_iovr5_intel' [06:43, 03:12](623 MB)
-PASS -- TEST 'control_p8_intel' [13:28, 03:47](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [11:49, 03:49](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:54, 03:39](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:43, 01:43](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:10, 03:20](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 01:46](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [10:00, 03:40](1594 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:00, 03:09](1685 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:42, 05:49](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [11:10, 04:41](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:12, 03:28](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [08:48, 04:10](1604 MB)
-PASS -- TEST 'regional_control_intel' [08:24, 04:57](616 MB)
-PASS -- TEST 'regional_restart_intel' [04:06, 02:38](789 MB)
-PASS -- TEST 'regional_decomp_intel' [08:15, 05:28](615 MB)
-PASS -- TEST 'regional_2threads_intel' [06:22, 03:08](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:17, 05:03](1155 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:55, 04:56](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 04:42](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:28, 06:02](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:15, 13:28] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [10:22, 06:57](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:28, 03:59](1181 MB)
-PASS -- TEST 'rap_decomp_intel' [11:36, 07:17](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [10:42, 06:13](1099 MB)
-PASS -- TEST 'rap_restart_intel' [07:45, 03:44](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:35, 06:55](1006 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:37, 07:03](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:20](880 MB)
-PASS -- TEST 'hrrr_control_intel' [07:26, 03:53](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:49, 04:51](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:28, 03:15](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:13, 02:16](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:11, 07:15](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:08, 08:12](1966 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:03, 07:49](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:16, 13:41] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:22, 06:39](696 MB)
-PASS -- TEST 'control_ras_intel' [05:06, 03:32](657 MB)
-
-PASS -- COMPILE 'wam_intel' [14:15, 13:52]
-PASS -- TEST 'control_wam_intel' [04:19, 02:38](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:14, 17:27] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [07:20, 04:06](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:42, 04:49](615 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:17, 12:26] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:21, 03:18](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:13, 03:21](1589 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:12](786 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:27, 03:15](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:15, 04:21](824 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:06, 02:55](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:05, 03:02](1641 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:51, 03:14](1618 MB)
-PASS -- TEST 'regional_debug_intel' [18:56, 16:33](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:22, 05:10](1168 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:06](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:02](1166 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 05:06](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 05:02](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:19](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:16](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:14](1166 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:14, 05:08](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:08, 05:13](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:07, 04:51](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:35, 05:18](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:10, 07:50](1166 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:07, 05:13](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:59, 06:08](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:03, 05:11](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:17, 08:24](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [10:15, 09:47] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:35, 04:55](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:27, 03:54](1048 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:48](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 03:34](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:04, 05:23](950 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 02:50](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:35, 03:39](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:19, 04:33](782 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:42](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 15:50] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:55, 02:10](1094 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:50, 01:10](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:17, 01:29](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:16, 14:43] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:43, 04:22](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:23, 10:36] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:53, 05:00](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 04:53](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:44, 14:19](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:36, 14:43](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:10, 08:28](1109 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:56, 14:07](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:11, 09:58] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:00](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:18, 18:47] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [09:23, 05:15](707 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 04:26](1055 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:22, 07:37](755 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:20, 11:38](784 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:14, 12:43](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:04, 05:17](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:42](496 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 02:55](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:39, 08:03](434 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:54](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:43, 03:29](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:40, 04:42](571 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 01:44](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:19, 03:56](766 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:15, 12:33] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:14, 13:03](583 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:16, 21:05] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:37](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:37, 07:48](786 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [19:16, 18:43] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:38, 06:51](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [35:19, 34:44] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:30](748 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:52, 06:28](730 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:07](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:16, 13:53] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:49, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:03, 01:34](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:50, 02:45](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:10, 02:27](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:59, 02:31](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:44, 02:33](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:34](745 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:04, 06:05](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:07](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:35](2011 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:37](2011 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:15, 08:44] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:49, 05:28](743 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:15, 12:30] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:49, 02:33](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:22, 03:47] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:59, 02:02](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:48, 01:46](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 01:05](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:16, 16:46] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:42, 08:34](1632 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:48, 08:39](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:09, 04:37](837 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [13:13, 12:13] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [37:55, 35:04](1651 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:16, 16:04] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:44, 02:50](1648 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:19, 15:07] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [09:24, 06:40](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:24, 06:43](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:02, 06:42](3017 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:56] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [21:10, 18:25](4477 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [19:14, 18:32] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:03, 07:31](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:51] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:41, 13:59](1685 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:42, 14:15](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 07:08](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:04, 15:03](1668 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:20] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 23:42](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [19:14, 18:30] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [10:08, 07:49](3096 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:56](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:51](3153 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:58](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 04:57](3174 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 07:14](3413 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:03, 07:55](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 07:21](3019 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:09, 07:58](3097 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:26](3266 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:36](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 12:57](4036 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 09:05](4342 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:55, 07:40](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [16:12, 15:58] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 04:49](1685 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 05:17](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:15] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:30, 10:28](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [11:12, 11:02] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:57](1700 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:12, 15:20] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:09](1725 MB)
+
+PASS -- COMPILE 's2s_intel' [15:12, 15:05] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [07:58, 06:53](2663 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:38] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:32, 07:42](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:34] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 14:53](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:38, 07:23](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:11](1682 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 14:39] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 26:23](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:33, 03:41](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 03:04](1568 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:23, 03:08](1580 MB)
+PASS -- TEST 'control_latlon_intel' [04:07, 03:01](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 03:03](1568 MB)
+PASS -- TEST 'control_c48_intel' [08:42, 06:35](1601 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:01, 05:39](722 MB)
+PASS -- TEST 'control_c192_intel' [11:13, 09:52](1683 MB)
+PASS -- TEST 'control_c384_intel' [19:28, 18:11](1984 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:56, 14:14](1186 MB)
+PASS -- TEST 'control_stochy_intel' [03:32, 02:14](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:01](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:33, 02:20](628 MB)
+PASS -- TEST 'control_iovr4_intel' [03:37, 02:50](623 MB)
+PASS -- TEST 'control_iovr5_intel' [03:44, 02:56](623 MB)
+PASS -- TEST 'control_p8_intel' [05:42, 03:42](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:33](1608 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:25](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:10, 01:51](790 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:16](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:14, 02:04](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:28](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1684 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:03, 05:19](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:11](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:23](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:29, 03:40](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:14, 04:56](615 MB)
+PASS -- TEST 'regional_restart_intel' [04:47, 03:21](789 MB)
+PASS -- TEST 'regional_decomp_intel' [06:09, 05:00](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:06, 03:04](765 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:11, 04:38](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 04:40](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:07, 04:39](615 MB)
+PASS -- TEST 'regional_wofs_intel' [08:07, 06:11](1590 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:15, 14:56] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:22, 06:38](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 03:56](1184 MB)
+PASS -- TEST 'rap_decomp_intel' [08:23, 06:59](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:02, 06:02](1097 MB)
+PASS -- TEST 'rap_restart_intel' [05:23, 03:39](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:23, 06:55](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:42, 07:15](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:22](879 MB)
+PASS -- TEST 'hrrr_control_intel' [05:14, 03:43](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:14, 03:48](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:13, 03:04](1081 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:47, 01:55](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:56](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 08:05](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:42](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:16, 14:35] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:44, 06:35](696 MB)
+PASS -- TEST 'control_ras_intel' [05:33, 03:24](655 MB)
+
+PASS -- COMPILE 'wam_intel' [15:12, 14:18]
+PASS -- TEST 'control_wam_intel' [03:30, 02:08](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:13, 15:44] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:08, 03:12](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:41, 04:41](614 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:14, 11:56] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:53](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:35, 02:56](1589 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:45, 03:08](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:59, 02:53](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:40](824 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:43, 02:52](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:46, 03:35](1640 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:47, 03:50](1618 MB)
+PASS -- TEST 'regional_debug_intel' [17:50, 16:30](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:36, 05:36](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:36, 05:24](1164 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:25](1166 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:32](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:23](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:05, 05:18](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 05:18](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:03](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:32, 05:00](1166 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:54](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:59](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:09, 07:51](1165 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:29, 04:55](1162 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:49](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:31, 05:00](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:06, 08:35](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:14, 08:44] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:30, 04:55](396 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:17, 12:55] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:46](1048 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 05:50](888 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 03:22](884 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 05:16](945 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:47](937 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:27](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:02, 04:19](783 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:47](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:56] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:01, 02:02](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:08, 01:16](1074 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:07, 01:38](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 13:36] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:16, 04:23](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 10:17] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:53](1047 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:52](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:50, 14:10](1130 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:24](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:16](1109 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:11](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:54] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:56](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:13, 17:32] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:22](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:35](1057 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 07:48](754 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:52, 11:42](788 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:30](804 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 05:19](480 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:50](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:56](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:35, 07:58](433 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:30](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:38](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:40](574 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:44](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:22, 04:04](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:16, 12:24] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 12:57](586 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:20] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:09, 07:49](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:04, 07:43](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:13, 19:52] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:08, 06:04](790 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:12, 17:06] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:59, 06:12](745 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 06:05](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 20:04](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:22, 13:22] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:35](758 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:31](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:30](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:24](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 05:53](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:58, 06:02](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:36](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:35](2014 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:36](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:50] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:24](744 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 12:42] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 02:33](758 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 05:19] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:54](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:48, 01:28](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:06, 01:02](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:14, 16:49] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 08:02](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 08:01](1632 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:40](837 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [14:15, 13:37] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 07:02](1651 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:15, 14:29] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:48](1648 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:13, 13:41] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:20, 06:38](2948 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:15, 07:09](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 07:15](3020 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:12, 11:03] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 19:17](4477 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 01:08:25
-Ending Date/Time: 20240429 03:14:52
-Total Time: 02h:07m:46s
+Starting Date/Time: 20240501 02:23:40
+Ending Date/Time: 20240501 03:51:13
+Total Time: 01h:29m:01s
Compiles Completed: 38/38
Tests Completed: 180/180
@@ -313,65 +313,3 @@ If you are using this log as a pull request verification, please commit 'test_ch
Result: SUCCESS
====END OF GAEA REGRESSION TESTING LOG====
-====START OF GAEA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_221543
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atml_debug_intel' [11:12, 10:35] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:13, 06:16](1651 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240429 13:52:13
-Ending Date/Time: 20240429 14:13:58
-Total Time: 00h:22m:05s
-Compiles Completed: 1/1
-Tests Completed: 1/1
-
-NOTES:
-A file 'test_changes.list' was generated but is empty.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: SUCCESS
-
-====END OF GAEA REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index db58d92d42..bc07a8a85e 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-5175ca7ecbd16473b4778a533ab9c52b065a1eb4
+521f9348ebc590effdc0b5054b94946e209679d4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,11 +9,11 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -24,419 +24,368 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2646060
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1718044
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:38, 05:49](3171 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:46, 16:46] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [17:59, 17:12](1706 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:48, 17:52](1998 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:54, 08:03](1123 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:54, 19:13](1628 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:39, 04:38] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 22:55](1687 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:00, 13:00] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [06:39, 05:47](3212 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 05:49](3195 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [04:20, 03:23](3268 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [06:37, 05:49](3247 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 03:34](3277 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [06:23, 05:37](3543 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [06:33, 05:48](3203 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:27, 04:43](3062 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:43, 05:53](3197 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [11:44, 10:07](3279 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:17, 06:11](3597 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:12, 09:34](4060 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:23, 06:17](4362 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:22, 05:31](3147 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:13, 12:13] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [05:28, 04:41](1732 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:14, 04:23](1722 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [04:39, 04:39] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [09:27, 08:30](3237 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:25, 04:25] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:39, 05:47](1727 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:39, 11:39] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:14, 04:24](1759 MB)
-
-PASS -- COMPILE 's2s_intel' [11:29, 11:29] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:54, 09:25](2833 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:28, 16:28] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [06:16, 05:25](3210 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:30, 15:30] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:02, 17:13](1791 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:06, 08:08](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:31, 19:39](1690 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:23, 04:22] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:40, 24:55](1697 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:26, 11:26] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [03:32, 03:20](711 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:24, 02:54](1600 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 02:59](1616 MB)
-PASS -- TEST 'control_latlon_intel' [03:22, 02:55](1608 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:32, 03:01](1578 MB)
-PASS -- TEST 'control_c48_intel' [08:16, 07:48](1738 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 06:25](876 MB)
-PASS -- TEST 'control_c192_intel' [11:14, 10:31](1720 MB)
-PASS -- TEST 'control_c384_intel' [12:02, 10:38](2011 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:22, 08:05](1395 MB)
-PASS -- TEST 'control_stochy_intel' [01:47, 01:37](663 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:16, 00:59](506 MB)
-PASS -- TEST 'control_lndp_intel' [01:44, 01:33](659 MB)
-PASS -- TEST 'control_iovr4_intel' [02:41, 02:27](657 MB)
-PASS -- TEST 'control_iovr5_intel' [02:47, 02:33](657 MB)
-PASS -- TEST 'control_p8_intel' [03:47, 03:13](1617 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:42, 03:00](1586 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:31, 02:52](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:13, 01:37](890 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:32, 02:54](1600 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:16, 01:37](930 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:38, 03:03](1588 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:16, 02:45](1719 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:46, 05:17](1617 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:43, 04:07](1674 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:40, 03:00](1604 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:58, 03:22](1621 MB)
-PASS -- TEST 'regional_control_intel' [05:35, 05:10](850 MB)
-PASS -- TEST 'regional_restart_intel' [03:08, 02:43](1019 MB)
-PASS -- TEST 'regional_decomp_intel' [05:52, 05:29](849 MB)
-PASS -- TEST 'regional_2threads_intel' [03:36, 03:11](850 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:33, 05:08](1356 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:32, 05:05](850 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 05:09](848 MB)
-PASS -- TEST 'regional_wofs_intel' [07:09, 06:43](1900 MB)
-
-PASS -- COMPILE 'rrfs_intel' [10:31, 10:31] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:07, 07:43](1105 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 04:02](1294 MB)
-PASS -- TEST 'rap_decomp_intel' [08:25, 08:05](1035 MB)
-PASS -- TEST 'rap_2threads_intel' [07:39, 07:15](1185 MB)
-PASS -- TEST 'rap_restart_intel' [04:32, 04:02](1114 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:07, 07:41](1095 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:30, 08:08](1038 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:18, 05:49](1126 MB)
-PASS -- TEST 'hrrr_control_intel' [04:25, 03:58](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:28, 04:06](1030 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:59, 03:38](1123 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:25, 02:09](1002 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:06, 07:37](1103 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:31, 09:19](1962 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 09:04](2048 MB)
-
-PASS -- COMPILE 'csawmg_intel' [10:17, 10:17] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:24, 05:58](735 MB)
-PASS -- TEST 'control_ras_intel' [03:23, 03:14](748 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [03:39, 03:39]
-PASS -- TEST 'control_csawmg_gnu' [08:44, 08:18](548 MB)
-
-PASS -- COMPILE 'wam_intel' [09:53, 09:52] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [02:20, 02:09](656 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:22, 02:46](1612 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:09, 04:43](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:53, 04:53] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:12, 02:43](1571 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:14, 02:44](1615 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:07, 02:58](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [02:58, 02:48](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:33, 04:09](869 MB)
-PASS -- TEST 'control_ras_debug_intel' [02:58, 02:47](826 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:20, 02:47](1675 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:20, 02:50](1648 MB)
-PASS -- TEST 'regional_debug_intel' [17:30, 17:05](844 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:01, 04:50](1205 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:53, 04:42](1202 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:58, 04:47](1207 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:00, 04:49](1201 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:09, 04:59](1214 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:27, 05:07](1287 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:10, 04:59](1211 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:15, 05:04](1207 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:01, 04:51](1183 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 04:58](1204 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:03, 04:52](1204 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:04, 04:53](1205 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:14, 08:04](1201 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:03, 04:53](1199 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:14, 06:04](1207 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:13, 05:02](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 08:25](1210 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [02:38, 02:37]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:41, 02:13](528 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:15, 03:14] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:05, 04:56](511 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:59, 09:58] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 03:49](1163 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:47, 06:21](1049 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 03:22](990 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:22, 06:02](1085 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:28, 03:08](963 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:55, 03:35](936 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:10, 04:46](1028 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:50](937 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:33, 12:33] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [02:40, 02:06](1204 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:19, 00:54](1118 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:47, 01:14](1112 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:13, 10:13] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:39, 04:09](983 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:24, 03:24] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:02, 04:51](1089 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:45](1087 MB)
-PASS -- TEST 'conus13km_debug_intel' [14:56, 14:13](1233 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:59, 14:17](894 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:39, 08:06](1156 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:55, 14:26](1296 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:22, 03:22] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:09, 04:58](1137 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:34, 11:34] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [05:56, 04:53](738 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:11, 05:46](1119 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:00, 06:55](826 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:16, 13:20](871 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](884 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:14, 05:31](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:45, 06:42](520 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:10, 02:43](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:12](483 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:14, 03:42](525 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 03:30](532 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:41, 04:04](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](411 MB)
-PASS -- TEST 'gnv1_nested_intel' [04:34, 04:04](801 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:54, 03:54] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:17, 12:41](566 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:57, 11:57] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:32, 08:47](671 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 08:45](748 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:53, 11:53] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:05, 06:20](741 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:16, 11:16] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:14, 06:23](823 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:22, 06:26](812 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:47, 16:11](1212 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:13, 06:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:36](1157 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:42, 01:34](1102 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:38, 02:32](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:44, 02:37](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:48, 02:41](1022 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:50, 02:44](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:43, 02:37](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:42, 02:37](1012 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:39, 06:33](1065 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:02, 06:12](1049 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:48, 02:45](1128 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:59, 03:53](2492 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:57, 03:51](2437 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:01, 03:01] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:20, 06:15](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:02, 06:02]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:45, 02:39](1148 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:11] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:59, 00:42](263 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:59, 00:45](331 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:41, 00:28](324 MB)
-
-PASS -- COMPILE 'atml_intel' [11:47, 11:47] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [04:54, 04:10](1581 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [04:54, 04:09](1599 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [02:46, 02:13](895 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:26, 04:26] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [34:07, 33:23](1613 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:58, 10:58] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:22, 01:45](1654 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:48, 10:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:47, 04:05](3022 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:38, 04:55](3104 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:23, 04:57](3116 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:45, 03:45] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [22:55, 21:18](4450 MB)
-
-PASS -- COMPILE 'atm_gnu' [03:39, 03:39]
-PASS -- TEST 'control_c48_gnu' [11:47, 11:18](1545 MB)
-PASS -- TEST 'control_stochy_gnu' [03:36, 03:25](511 MB)
-PASS -- TEST 'control_ras_gnu' [05:02, 04:52](517 MB)
-PASS -- TEST 'control_p8_gnu' [05:27, 04:44](1267 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:07, 04:28](1267 MB)
-PASS -- TEST 'control_flake_gnu' [10:49, 10:38](551 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [03:39, 03:39]
-PASS -- TEST 'rap_control_gnu' [11:02, 10:39](858 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:14, 10:50](862 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:16, 09:50](940 MB)
-PASS -- TEST 'rap_restart_gnu' [06:00, 05:32](588 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:11, 10:46](857 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:13, 10:52](858 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:29, 08:02](587 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:03, 05:28](855 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:48, 05:27](844 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:28, 05:00](936 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:51, 05:27](858 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:07, 02:51](574 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:03, 02:47](668 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:12, 10:40](850 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [03:39, 03:39]
-PASS -- TEST 'control_diag_debug_gnu' [02:12, 01:35](1284 MB)
-PASS -- TEST 'regional_debug_gnu' [10:20, 09:55](560 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:46, 02:36](867 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:44, 02:34](867 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:36](873 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:46, 02:35](872 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:11, 02:46](950 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 04:04](868 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 02:36](868 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:48, 02:38](861 MB)
-PASS -- TEST 'control_ras_debug_gnu' [01:46, 01:36](505 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [01:52, 01:42](499 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:13, 01:41](1253 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:52, 02:41](866 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:05, 02:53](878 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 04:19](878 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [01:49, 01:49]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [03:41, 03:41]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:51, 09:26](712 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:20, 04:56](712 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:08, 08:46](764 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:58, 04:36](758 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:22, 05:03](714 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 07:03](561 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:52, 02:36](544 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:48, 03:10](886 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:26, 05:56](894 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:19, 01:50](568 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [05:22, 05:22]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:13, 05:45](737 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [03:38, 03:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:44, 02:34](722 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:44, 02:32](722 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:30, 06:58](903 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:41, 07:12](595 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [07:55, 07:24](905 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:31, 07:00](968 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [03:43, 03:43]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:51, 02:39](748 MB)
-
-PASS -- COMPILE 's2swa_gnu' [14:45, 14:45]
-
-PASS -- COMPILE 's2s_gnu' [14:21, 14:21]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:19, 11:19](1350 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [02:40, 02:40]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [14:28, 14:28]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:07, 25:18](1325 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [02:40, 02:40]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 14:08](1326 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:16, 14:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:10, 03:03](701 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240429 13:36:09
-Ending Date/Time: 20240429 20:01:09
-Total Time: 06h:25m:17s
-Compiles Completed: 54/54
-Tests Completed: 240/240
-
-NOTES:
-A file 'test_changes.list' was generated but is empty.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: SUCCESS
-
-====END OF HERA REGRESSION TESTING LOG====
-
-====START OF HERA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-7441d3bb7300d6f41e7eb17bd98aac0539164065
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_4106538
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: control_p8_atmlnd_debug
+* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 'atml_debug_intel' [06:11, 04:26] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:52, 05:28](1634 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:41] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:32](3187 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 17:29] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:04](1748 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 18:17](2004 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:03](1131 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:14](1652 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:48] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:41](1664 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:12, 13:07] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:53](3226 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:28, 05:50](3226 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:19, 03:25](3254 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:18, 05:49](3243 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:17, 03:26](3284 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:32](3551 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:14, 05:51](3215 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:42](3077 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:51](3224 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:09](3350 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:10](3621 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:51, 09:37](4166 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:00, 05:58](4349 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:18, 05:30](3182 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 12:41] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:13, 04:44](1744 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:20, 04:21](1788 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:48] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:25](3254 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:45] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:02, 05:50](1726 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:37] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:19](1788 MB)
+
+PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [10:41, 09:23](2836 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:01] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:16, 05:32](3230 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:51] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 17:13](1772 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:04](1174 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 19:46](1677 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:27] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 25:06](1725 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:12] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [06:22, 03:25](701 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 02:58](1607 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:03](1609 MB)
+PASS -- TEST 'control_latlon_intel' [06:48, 02:54](1596 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:55, 02:58](1597 MB)
+PASS -- TEST 'control_c48_intel' [10:50, 07:38](1751 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:27, 06:24](871 MB)
+PASS -- TEST 'control_c192_intel' [14:11, 10:31](1747 MB)
+PASS -- TEST 'control_c384_intel' [14:13, 10:33](2013 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:40, 07:58](1401 MB)
+PASS -- TEST 'control_stochy_intel' [04:22, 01:38](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:05](506 MB)
+PASS -- TEST 'control_lndp_intel' [03:21, 01:34](659 MB)
+PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](652 MB)
+PASS -- TEST 'control_iovr5_intel' [03:22, 02:29](654 MB)
+PASS -- TEST 'control_p8_intel' [03:58, 03:00](1635 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:59, 02:57](1633 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 02:51](1629 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:45, 01:36](895 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:48, 02:55](1621 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:36](937 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:48, 03:00](1624 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:47](1714 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:18](1628 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:49, 03:55](1688 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:54, 02:57](1638 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:51, 03:18](1650 MB)
+PASS -- TEST 'regional_control_intel' [06:40, 05:10](847 MB)
+PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB)
+PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](852 MB)
+PASS -- TEST 'regional_2threads_intel' [04:39, 03:14](843 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:42, 05:09](1357 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:12](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:07](849 MB)
+PASS -- TEST 'regional_wofs_intel' [07:38, 06:41](1912 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:14, 10:35] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:40, 07:41](1106 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:08](1286 MB)
+PASS -- TEST 'rap_decomp_intel' [08:36, 08:07](1046 MB)
+PASS -- TEST 'rap_2threads_intel' [08:36, 07:15](1193 MB)
+PASS -- TEST 'rap_restart_intel' [04:41, 04:01](1109 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:42](1107 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:09](1037 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 05:50](1136 MB)
+PASS -- TEST 'hrrr_control_intel' [04:38, 03:59](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:07](1032 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:41](1110 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:09](1011 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:40](1107 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:12](2001 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2060 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:11, 10:43] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:37, 06:00](749 MB)
+PASS -- TEST 'control_ras_intel' [04:20, 03:16](751 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:47]
+PASS -- TEST 'control_csawmg_gnu' [09:41, 08:25](549 MB)
+
+PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [02:24, 02:05](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:37] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:56, 02:39](1639 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](832 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:16] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:34](1614 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:50, 02:32](1624 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:01](818 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](823 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:08](864 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:22, 02:43](828 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:48, 02:44](1680 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:45, 02:48](1654 MB)
+PASS -- TEST 'regional_debug_intel' [18:39, 17:19](848 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:23, 04:51](1214 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1212 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:54](1212 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:49](1210 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:50](1208 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:33, 05:05](1294 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:54](1215 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:52](1210 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:22, 04:54](1210 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:54](1206 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:41](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1213 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:53](1205 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 04:53](1202 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:56](1216 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:55](1213 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:19](1211 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39]
+PASS -- TEST 'control_csawmg_debug_gnu' [05:42, 02:12](530 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:11] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [08:23, 05:03](522 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 10:11] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:51](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:36, 06:24](1030 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:29, 03:23](993 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 06:03](1090 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 03:07](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](923 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:50](1034 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:51](940 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:50, 02:11](1174 MB)
+PASS -- TEST 'conus13km_2threads_intel' [05:41, 00:55](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:19](1106 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:09](993 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:48](1095 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1086 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:51, 14:16](1235 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 13:56](934 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:04](1158 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:23](1299 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:16] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:52](1124 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:11, 11:39] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:16, 04:52](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:30, 05:47](1114 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:49](810 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:19](863 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:13](877 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:27](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:34](521 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:40](375 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:36, 07:10](476 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:38](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:49, 03:29](534 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:04](588 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:10](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:43, 04:05](801 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:49, 12:43](573 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:11, 12:09] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 08:41](634 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:05, 08:45](749 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:10] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 06:21](704 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:11, 11:47] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:21](832 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:23](819 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:02](1217 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:46](1174 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1099 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1019 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:42](1014 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:42](1014 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1151 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:41](1153 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:36](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:12](1062 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:31](1047 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:41](1152 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:49](2445 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2501 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:10](1069 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:53]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1167 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:46](256 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:52](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](325 MB)
+
+PASS -- COMPILE 'atml_intel' [12:12, 11:59] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:06](1621 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:08](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:11](904 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:17] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:40](1631 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:12, 10:40] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:44](1664 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:12, 10:57] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:01](2959 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:50](3097 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:56](3111 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:31] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:56](4445 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:11, 03:56]
+PASS -- TEST 'control_c48_gnu' [12:43, 11:11](1544 MB)
+PASS -- TEST 'control_stochy_gnu' [04:23, 03:20](507 MB)
+PASS -- TEST 'control_ras_gnu' [06:22, 04:47](516 MB)
+PASS -- TEST 'control_p8_gnu' [06:59, 04:35](1265 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:35](1268 MB)
+PASS -- TEST 'control_flake_gnu' [11:23, 10:32](552 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:12, 03:39]
+PASS -- TEST 'rap_control_gnu' [12:32, 10:46](860 MB)
+PASS -- TEST 'rap_decomp_gnu' [13:33, 10:54](858 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:39, 09:45](948 MB)
+PASS -- TEST 'rap_restart_gnu' [06:40, 05:29](591 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:37, 10:44](858 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:53](857 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:40, 07:59](586 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:37, 05:34](857 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:40](845 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 04:59](936 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:33](857 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](571 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](664 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:40](855 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:10, 03:47]
+PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1288 MB)
+PASS -- TEST 'regional_debug_gnu' [12:42, 10:02](567 MB)
+PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](871 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:32](872 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:37](875 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:35](880 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:32, 03:18](945 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](876 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:38](872 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:33](868 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](503 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](499 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:38](1260 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:32](874 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:47](880 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:17](877 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:34]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:32](712 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:01](714 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](764 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:30](754 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:01](713 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:00](557 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:30](548 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:52, 03:08](886 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:41, 05:29](888 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:42, 01:46](578 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:21]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:43](739 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:44]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:34](721 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 02:26](723 MB)
+PASS -- TEST 'conus13km_debug_gnu' [09:42, 08:32](899 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:53](587 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:18](904 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 07:05](960 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:34]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:34](744 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:11, 14:30]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:28]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:13, 10:50](1358 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:36]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:28]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:03, 21:58](1326 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:29]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:56, 18:03](1334 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:59]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:05](706 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 18:31:57
-Ending Date/Time: 20240429 18:47:17
-Total Time: 00h:15m:24s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Starting Date/Time: 20240501 01:32:37
+Ending Date/Time: 20240501 03:05:09
+Total Time: 01h:32m:50s
+Compiles Completed: 54/54
+Tests Completed: 240/240
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 3682c894e9..b7191797dd 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-aef829f3311f718f3cef6b1102e849370da1a983
+521f9348ebc590effdc0b5054b94946e209679d4
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,361 +35,361 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_3885348
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1563076
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:42] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:07, 07:39](1901 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:10, 18:09] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:12, 13:23](1774 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:21, 14:25](2195 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:28](1173 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:09, 15:07](1682 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:39] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:29](1731 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:10, 12:08] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [13:05, 07:46](2058 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:06, 07:50](2061 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:26, 04:23](1960 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:05, 07:35](1986 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:25, 04:29](1728 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [13:51, 09:18](2496 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:33](2058 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:59, 06:34](1888 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:05, 07:29](2091 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 15:47](2811 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:24, 06:21](2922 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [17:34, 09:06](3635 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:22, 05:21](3618 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:52, 04:56](2044 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:10, 11:51] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:49, 07:07](1779 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:59, 04:11](1819 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:34] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [07:56, 06:52](2060 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [04:10, 03:27] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:58, 04:46](1798 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:30] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:58](1832 MB)
-
-PASS -- COMPILE 's2s_intel' [08:10, 07:43] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:47, 07:25](2839 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:10, 13:28] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 07:25](2091 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 15:05] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:50, 13:54](1813 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:53](1274 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:20](1727 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:11] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:56, 21:32](1770 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:54] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [05:21, 02:49](707 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [07:38, 02:26](1608 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:38, 02:34](1615 MB)
-PASS -- TEST 'control_latlon_intel' [06:30, 02:26](1609 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:40, 02:41](1615 MB)
-PASS -- TEST 'control_c48_intel' [12:37, 06:59](1751 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:40, 05:46](853 MB)
-PASS -- TEST 'control_c192_intel' [12:43, 09:04](1761 MB)
-PASS -- TEST 'control_c384_intel' [12:28, 09:38](2047 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:54, 07:24](1522 MB)
-PASS -- TEST 'control_stochy_intel' [04:20, 01:33](673 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](538 MB)
-PASS -- TEST 'control_lndp_intel' [03:19, 01:26](668 MB)
-PASS -- TEST 'control_iovr4_intel' [06:22, 02:07](658 MB)
-PASS -- TEST 'control_iovr5_intel' [05:23, 02:10](672 MB)
-PASS -- TEST 'control_p8_intel' [04:51, 02:52](1645 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:49, 02:54](1646 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:52](1649 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:42, 01:29](922 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:29](1625 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:22](983 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:59](1619 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:48](1738 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:35](1650 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:29](1702 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1657 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:04, 02:57](1650 MB)
-PASS -- TEST 'regional_control_intel' [06:29, 04:31](960 MB)
-PASS -- TEST 'regional_restart_intel' [03:30, 02:29](1104 MB)
-PASS -- TEST 'regional_decomp_intel' [06:26, 04:46](947 MB)
-PASS -- TEST 'regional_2threads_intel' [04:26, 02:51](914 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:30, 04:20](1486 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:33, 04:33](961 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:25, 04:25](958 MB)
-PASS -- TEST 'regional_wofs_intel' [06:26, 05:35](2073 MB)
-
-PASS -- COMPILE 'rrfs_intel' [07:11, 06:53] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [07:42, 06:38](1202 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:05, 03:27](1444 MB)
-PASS -- TEST 'rap_decomp_intel' [07:40, 06:57](1120 MB)
-PASS -- TEST 'rap_2threads_intel' [07:39, 06:12](1370 MB)
-PASS -- TEST 'rap_restart_intel' [05:04, 03:24](1157 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:53, 06:31](1194 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:52](1173 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 06:07](1202 MB)
-PASS -- TEST 'hrrr_control_intel' [04:38, 03:26](1087 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:39, 03:27](1051 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:03](1123 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:25, 01:50](1025 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:54, 06:16](1198 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:35](2018 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:21](2168 MB)
-
-PASS -- COMPILE 'csawmg_intel' [07:11, 06:58] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:29, 05:22](792 MB)
-PASS -- TEST 'control_ras_intel' [03:18, 02:56](809 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53]
-PASS -- TEST 'control_csawmg_gnu' [08:32, 07:43](803 MB)
-
-PASS -- COMPILE 'wam_intel' [07:11, 06:39]
-PASS -- TEST 'control_wam_intel' [02:27, 01:52](790 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:54] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:54, 02:14](1646 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:25, 04:04](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:40] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:10](1637 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:08](1641 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:20, 02:32](827 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:15](828 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](872 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:18, 02:15](832 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:32, 02:14](1698 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:39, 02:20](1669 MB)
-PASS -- TEST 'regional_debug_intel' [14:34, 14:06](887 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:22, 04:02](1216 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:52](1218 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1220 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 03:56](1222 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 03:59](1216 MB)
-PASS -- TEST 'rap_diag_debug_intel' [04:24, 04:08](1300 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:05](1220 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:57](1195 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1226 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:56](1225 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1218 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:55](1229 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:21, 06:19](1219 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 03:58](1215 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 04:50](1221 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:59](1219 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:00, 06:53](1217 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:29]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:33, 02:02](791 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 02:43] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:46] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:49, 03:11](1311 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:33, 05:22](1133 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:58, 02:50](1028 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 05:05](1295 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:36](1046 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:00](984 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:51, 04:06](1106 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 01:51](968 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 09:14] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [02:38, 01:43](1285 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:46](1205 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:27, 01:25](1153 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 07:16] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:28, 03:41](1073 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 03:56](1103 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:47](1093 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:37, 11:27](1343 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:35, 13:45](1003 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:44](1245 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:30, 11:30](1410 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:19] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:20, 04:14](1151 MB)
-
-PASS -- COMPILE 'hafsw_intel' [11:12, 09:48] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:22](874 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 05:21](1275 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:14, 06:23](948 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:00, 13:45](988 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 15:07](1011 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:28](609 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:23, 06:52](618 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 03:07](438 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 08:37](539 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 04:33](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:43, 03:41](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:49](680 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:49](440 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:39] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:45, 11:13](635 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:11, 10:11] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:46, 16:48](773 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:45](844 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:37] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 10:42](830 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:12, 10:02] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:26](940 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 05:32](934 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:54, 16:18](1342 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:48] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:09](1159 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:19](1097 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:04](1007 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:06](1006 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:06](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1152 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:13, 02:09](1147 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:13, 02:02](1010 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 04:58](1159 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:43, 04:50](1144 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:07](1148 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:14, 02:59](2429 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:01](2442 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:29] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:11](1078 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:43] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:07](1147 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:57] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:25, 00:50](335 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:45](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:29](557 MB)
-
-PASS -- COMPILE 'atml_intel' [08:13, 07:37] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:02, 05:43](1631 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:56, 05:07](1644 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:38, 02:55](947 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [03:10, 03:05] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:00, 28:51](1661 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:11, 09:40] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:28](1706 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:10, 07:26] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:50, 03:26](1798 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:48, 04:13](1805 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:16](1806 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:36] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [18:17, 16:18](4567 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:11, 06:15]
-PASS -- TEST 'control_c48_gnu' [10:39, 09:23](1555 MB)
-PASS -- TEST 'control_stochy_gnu' [03:23, 02:14](734 MB)
-PASS -- TEST 'control_ras_gnu' [04:19, 03:43](735 MB)
-PASS -- TEST 'control_p8_gnu' [04:51, 03:48](1516 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:27](1518 MB)
-PASS -- TEST 'control_flake_gnu' [05:18, 04:16](814 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:11, 06:06]
-PASS -- TEST 'rap_control_gnu' [08:45, 07:36](1088 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:33, 07:39](1087 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:35, 07:05](1122 MB)
-PASS -- TEST 'rap_restart_gnu' [05:06, 04:01](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [08:45, 07:38](1088 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:43, 09:45](1083 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:46, 05:47](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [04:37, 03:59](1071 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:00](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:35](1045 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:30, 03:57](1077 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:18, 02:03](880 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:04](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:33](1082 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 08:04]
-PASS -- TEST 'control_diag_debug_gnu' [02:32, 01:16](1627 MB)
-PASS -- TEST 'regional_debug_gnu' [07:27, 06:11](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1103 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:16, 02:00](1089 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 02:20](1096 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:16, 02:04](1104 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [02:25, 02:06](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:18, 03:09](1095 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:19, 01:56](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:00](1094 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:08](727 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:14](723 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:35, 01:13](1502 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1099 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [02:18, 02:08](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:18](1101 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:34]
-PASS -- TEST 'control_wam_debug_gnu' [02:21, 01:56](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:13, 06:14]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:30, 07:16](971 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:57, 03:50](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:41, 06:37](970 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:45, 03:27](889 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:45](949 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:56, 05:24](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 01:58](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:36, 02:26](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:02](1172 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:37, 01:35](922 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 07:44]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:36, 04:46](993 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 04:13]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:55](977 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:56](975 MB)
-PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:25](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:29](970 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:17](1188 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:26, 05:24](1348 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:18]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 01:56](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [16:11, 15:18]
-
-PASS -- COMPILE 's2s_gnu' [16:10, 16:00]
-
-PASS -- COMPILE 's2swa_debug_gnu' [10:10, 09:34]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [17:10, 16:13]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:10, 08:42]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:10, 15:18]
+PASS -- COMPILE 's2swa_32bit_intel' [14:12, 11:21] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:59, 07:35](1895 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:10] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:18, 13:25](1769 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:31, 14:08](2179 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:28, 06:45](1166 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:11, 15:02](1686 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 03:55] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:16, 20:22](1735 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:12, 10:56] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [14:01, 07:37](2063 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:10, 07:35](2101 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [11:03, 04:22](1955 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:57, 07:39](1993 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:07, 04:22](1736 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [16:02, 08:54](2507 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:59, 07:47](2056 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:08, 06:30](1910 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 07:40](2085 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [21:39, 15:35](2797 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:08, 05:42](2920 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:33, 08:56](3632 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:57, 06:08](3612 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 04:58](2038 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:12, 10:10] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:13](1767 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:56, 03:57](1820 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:12, 04:35] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [08:49, 06:51](2051 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:12, 04:12] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 04:42](1806 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:12, 07:42] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:59](1812 MB)
+
+PASS -- COMPILE 's2s_intel' [11:12, 08:18] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:40, 07:22](2835 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [14:13, 11:55] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 07:17](2066 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 13:54](1812 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:52](1300 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:25](1734 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:23] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:50](1790 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:29] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [09:21, 02:50](714 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [14:44, 02:29](1605 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:50, 02:34](1625 MB)
+PASS -- TEST 'control_latlon_intel' [14:43, 02:29](1614 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 02:31](1601 MB)
+PASS -- TEST 'control_c48_intel' [14:46, 06:57](1746 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:45](855 MB)
+PASS -- TEST 'control_c192_intel' [21:53, 08:59](1751 MB)
+PASS -- TEST 'control_c384_intel' [21:25, 09:31](2052 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:53, 07:10](1522 MB)
+PASS -- TEST 'control_stochy_intel' [08:20, 01:29](673 MB)
+PASS -- TEST 'control_stochy_restart_intel' [07:24, 00:53](548 MB)
+PASS -- TEST 'control_lndp_intel' [07:20, 01:26](673 MB)
+PASS -- TEST 'control_iovr4_intel' [14:22, 02:07](664 MB)
+PASS -- TEST 'control_iovr5_intel' [12:38, 02:05](659 MB)
+PASS -- TEST 'control_p8_intel' [12:51, 02:32](1638 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [08:48, 02:32](1649 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 02:27](1654 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:43, 01:24](921 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:48, 02:31](1625 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:21](969 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:46, 02:40](1622 MB)
+PASS -- TEST 'control_2threads_p8_intel' [08:39, 02:20](1723 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:29, 04:22](1650 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 03:24](1710 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:56, 02:31](1654 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:53, 02:50](1649 MB)
+PASS -- TEST 'regional_control_intel' [09:27, 04:31](955 MB)
+PASS -- TEST 'regional_restart_intel' [03:25, 02:30](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [09:35, 04:45](944 MB)
+PASS -- TEST 'regional_2threads_intel' [06:32, 02:53](918 MB)
+PASS -- TEST 'regional_noquilt_intel' [09:32, 04:19](1492 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:31, 04:33](957 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:24, 04:27](961 MB)
+PASS -- TEST 'regional_wofs_intel' [09:33, 05:42](2089 MB)
+
+PASS -- COMPILE 'rrfs_intel' [07:10, 06:51] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [10:48, 06:41](1203 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 03:38](1440 MB)
+PASS -- TEST 'rap_decomp_intel' [09:34, 06:59](1168 MB)
+PASS -- TEST 'rap_2threads_intel' [09:33, 06:09](1360 MB)
+PASS -- TEST 'rap_restart_intel' [04:52, 03:26](1126 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:31](1203 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:54](1132 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:55](1179 MB)
+PASS -- TEST 'hrrr_control_intel' [04:48, 03:22](1071 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 03:26](1038 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:03](1115 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:49](1034 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:21](1207 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:35](2021 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:29](2182 MB)
+
+PASS -- COMPILE 'csawmg_intel' [07:10, 06:37] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:30, 05:18](812 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:47](801 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:44]
+PASS -- TEST 'control_csawmg_gnu' [11:38, 06:39](811 MB)
+
+PASS -- COMPILE 'wam_intel' [07:10, 06:24]
+PASS -- TEST 'control_wam_intel' [02:23, 01:48](784 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:54] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:52, 02:17](1632 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:27, 04:09](961 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 03:37] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:09](1635 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:05](1642 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](839 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:12](835 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:21](876 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:24, 02:15](834 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:39, 02:12](1697 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:32, 02:21](1661 MB)
+PASS -- TEST 'regional_debug_intel' [14:30, 14:08](904 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1219 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:18, 03:50](1212 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 03:55](1219 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:04](1224 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:00](1225 MB)
+PASS -- TEST 'rap_diag_debug_intel' [04:33, 04:07](1303 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1220 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:05](1223 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:16, 03:59](1223 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1224 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:53](1217 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:56](1218 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:28](1213 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:59](1226 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:46](1225 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:55](1224 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:52, 06:54](1220 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:18]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 01:46](792 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:10, 02:34] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:28] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:14](1281 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1133 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:58](1029 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:12](1287 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 02:38](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:05](986 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:04, 04:15](1101 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:37](959 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:34] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1310 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:43](1209 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:26, 01:05](1156 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 06:30] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:43](1090 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:25] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:57](1102 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1092 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:34, 11:36](1332 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:41](1000 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:38](1241 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:27](1395 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 02:39] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 03:59](1162 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:10, 10:18] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](868 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:10](1271 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:14](957 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 13:58](987 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:01](1008 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:18](610 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:50](619 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:46, 02:44](433 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 07:34](546 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:42, 03:48](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:45](622 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 04:45](667 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:22](451 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:10] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:20](637 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:10, 09:57] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:54, 16:19](770 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:53, 16:52](814 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:07] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 09:43](833 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:10, 09:10] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [11:10, 05:35](941 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:04, 05:40](912 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:52, 16:24](1347 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [05:10, 04:33] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:14](1144 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:42](1093 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:09](1020 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:15, 02:10](1019 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:11](1013 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 02:07](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 02:07](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:01](1008 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:10](1159 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 05:11](1150 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:07](1130 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:02](2435 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:11](2444 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 02:24] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:17](1076 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 05:04] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:06](1147 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:09](340 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:55](560 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:38](560 MB)
+
+PASS -- COMPILE 'atml_intel' [09:10, 07:25] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 05:28](1655 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 05:37](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 03:03](944 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:10, 03:19] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:02, 04:45](1659 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:30](1704 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:20, 06:45] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:05, 03:45](1786 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:12](1809 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:13](1812 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:10, 02:27] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [18:35, 16:19](4602 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:11, 03:48]
+PASS -- TEST 'control_c48_gnu' [10:53, 09:35](1576 MB)
+PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](735 MB)
+PASS -- TEST 'control_ras_gnu' [04:22, 03:49](730 MB)
+PASS -- TEST 'control_p8_gnu' [04:49, 03:44](1513 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:37](1517 MB)
+PASS -- TEST 'control_flake_gnu' [05:22, 04:29](802 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:10, 03:48]
+PASS -- TEST 'rap_control_gnu' [08:42, 07:46](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:45, 07:50](1084 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:48, 07:05](1121 MB)
+PASS -- TEST 'rap_restart_gnu' [05:10, 03:58](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:39, 07:41](1098 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:57](1085 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:53, 05:50](883 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:40, 04:04](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:38, 04:03](1137 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:51, 03:40](1023 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:09](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:15](882 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:12](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:43](1078 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 04:54]
+PASS -- TEST 'control_diag_debug_gnu' [02:42, 01:20](1623 MB)
+PASS -- TEST 'regional_debug_gnu' [07:34, 06:36](923 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:28, 01:57](1101 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:03](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:56](1097 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:58](1096 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:17](1272 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:05](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:14](1103 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 02:13](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:11](732 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:29](721 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:26](1504 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1098 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:12](1107 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:19](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:11, 02:10]
+PASS -- TEST 'control_wam_debug_gnu' [03:24, 01:56](504 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:45]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:45, 07:15](963 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:48, 03:56](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:38, 06:41](973 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:25](892 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:51](952 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:00, 05:25](861 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:03](855 MB)
+PASS -- TEST 'conus13km_control_gnu' [05:37, 02:37](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:02](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:24](928 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 07:43]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:32](991 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 05:03]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 01:59](974 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:03](969 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:32](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](951 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:30](1190 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:39](1347 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 05:03]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:05](999 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:10, 14:32]
+
+PASS -- COMPILE 's2s_gnu' [14:10, 13:59]
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:10, 03:01]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:10, 14:46]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:36]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:46]
SYNOPSIS:
-Starting Date/Time: 20240428 23:52:40
-Ending Date/Time: 20240429 01:12:23
-Total Time: 01h:20m:09s
+Starting Date/Time: 20240430 22:59:38
+Ending Date/Time: 20240501 00:25:35
+Total Time: 01h:26m:27s
Compiles Completed: 54/54
Tests Completed: 235/235
@@ -400,64 +400,3 @@ If you are using this log as a pull request verification, please commit 'test_ch
Result: SUCCESS
====END OF HERCULES REGRESSION TESTING LOG====
-====START OF HERCULES REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4097341
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'atml_debug_intel' [04:10, 03:24] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:19, 04:53](1661 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240429 12:39:56
-Ending Date/Time: 20240429 12:51:25
-Total Time: 00h:11m:32s
-Compiles Completed: 1/1
-Tests Completed: 1/1
-
-NOTES:
-A file 'test_changes.list' was generated but is empty.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: SUCCESS
-
-====END OF HERCULES REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 1299d6635f..cc7f856b7a 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
+b2d7f816b6835880d15332692fc1c04af4fe7467
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,243 +35,243 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4164149
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4040815
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2swa_32bit_intel' [41:16, 40:08] ( 2 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:38, 06:57](1794 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:16, 50:07] ( 2 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [46:04, 20:47](1666 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:20, 22:40](1890 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [31:06, 10:18](989 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:45, 24:04](1629 MB)
-
-PASS -- COMPILE 's2swa_intel' [41:16, 40:08] ( 1 warnings 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [28:12, 07:34](1823 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:47, 07:29](1828 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [31:57, 04:30](1714 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [20:07, 07:36](1837 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [40:03, 04:30](1728 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [12:59, 07:12](2258 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [20:00, 07:44](1828 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:22, 06:34](1780 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:29, 07:33](1809 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [34:33, 07:22](1776 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:14, 37:51] ( 1 warnings 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:33, 06:39](1659 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:48, 06:23](1703 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:26] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:55, 10:42](1839 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:25] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:27, 07:20](1663 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:16, 32:18] ( 1 warnings 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:59, 05:49](1719 MB)
-
-PASS -- COMPILE 's2s_intel' [34:14, 33:57] ( 1 warnings 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [16:23, 12:49](2786 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:26, 33:08] ( 1 warnings 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 07:13](1825 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [53:18, 52:31] ( 1 warnings 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:40, 20:53](1684 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:38, 09:37](1036 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:45, 23:56](1668 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:12, 05:01] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:40, 32:15](1695 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:16, 34:17] ( 2 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [17:34, 04:30](643 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [18:20, 03:49](1547 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:20, 04:08](1551 MB)
-PASS -- TEST 'control_latlon_intel' [17:10, 03:54](1544 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [30:23, 04:04](1543 MB)
-PASS -- TEST 'control_c48_intel' [14:22, 11:49](1735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:47, 10:08](846 MB)
-PASS -- TEST 'control_c192_intel' [36:37, 14:19](1686 MB)
-PASS -- TEST 'control_c384_intel' [41:27, 18:39](1813 MB)
-PASS -- TEST 'control_c384gdas_intel' [38:04, 13:43](1019 MB)
-PASS -- TEST 'control_stochy_intel' [12:33, 02:16](606 MB)
-PASS -- TEST 'control_stochy_restart_intel' [16:33, 01:20](434 MB)
-PASS -- TEST 'control_lndp_intel' [15:32, 02:09](602 MB)
-PASS -- TEST 'control_iovr4_intel' [14:35, 03:24](593 MB)
-PASS -- TEST 'control_iovr5_intel' [14:37, 03:22](598 MB)
-PASS -- TEST 'control_p8_intel' [21:42, 04:04](1587 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [32:59, 04:00](1572 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [22:56, 03:44](1575 MB)
-PASS -- TEST 'control_restart_p8_intel' [20:27, 02:13](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [21:47, 03:48](1564 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [20:21, 02:09](834 MB)
-PASS -- TEST 'control_decomp_p8_intel' [19:42, 03:59](1570 MB)
-PASS -- TEST 'control_2threads_p8_intel' [19:41, 03:47](1673 MB)
-PASS -- TEST 'control_p8_lndp_intel' [26:18, 07:02](1574 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [19:59, 05:08](1642 MB)
-PASS -- TEST 'control_p8_mynn_intel' [31:00, 04:02](1583 MB)
-PASS -- TEST 'merra2_thompson_intel' [21:03, 04:27](1584 MB)
-PASS -- TEST 'regional_control_intel' [21:58, 07:06](762 MB)
-PASS -- TEST 'regional_restart_intel' [19:47, 03:46](934 MB)
-PASS -- TEST 'regional_decomp_intel' [13:43, 07:33](760 MB)
-PASS -- TEST 'regional_2threads_intel' [09:39, 04:29](757 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [13:52, 07:03](767 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [22:47, 07:00](766 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:13, 32:41] ( 4 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [31:42, 10:05](991 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [26:14, 05:51](1217 MB)
-PASS -- TEST 'rap_decomp_intel' [32:09, 10:52](987 MB)
-PASS -- TEST 'rap_2threads_intel' [32:08, 09:52](1082 MB)
-PASS -- TEST 'rap_restart_intel' [08:37, 05:16](985 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [32:28, 10:21](994 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:01, 11:01](989 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:25, 07:30](999 MB)
-PASS -- TEST 'hrrr_control_intel' [26:00, 05:16](986 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [26:01, 05:30](985 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [25:24, 04:46](1063 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:31, 02:48](920 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [29:38, 10:14](987 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [29:36, 12:43](1936 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [30:34, 12:24](1933 MB)
-
-PASS -- COMPILE 'csawmg_intel' [33:13, 31:00] ( 2 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [23:44, 08:19](695 MB)
-PASS -- TEST 'control_ras_intel' [18:30, 04:29](670 MB)
-
-PASS -- COMPILE 'wam_intel' [41:15, 29:55] ( 1 warnings 982 remarks )
-PASS -- TEST 'control_wam_intel' [08:25, 02:58](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [48:19, 31:41] ( 1 warnings 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:32, 03:33](1576 MB)
-PASS -- TEST 'regional_control_faster_intel' [08:44, 06:30](766 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [23:14, 05:37] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:50, 03:41](1562 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:53, 03:42](1578 MB)
-PASS -- TEST 'control_stochy_debug_intel' [14:32, 03:46](763 MB)
-PASS -- TEST 'control_lndp_debug_intel' [13:30, 03:23](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [16:52, 05:20](812 MB)
-PASS -- TEST 'control_ras_debug_intel' [11:33, 03:24](775 MB)
-PASS -- TEST 'control_diag_debug_intel' [10:59, 03:25](1624 MB)
-PASS -- TEST 'control_debug_p8_intel' [11:54, 03:48](1589 MB)
-PASS -- TEST 'regional_debug_intel' [26:52, 21:47](778 MB)
-PASS -- TEST 'rap_control_debug_intel' [10:26, 06:02](1157 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [10:28, 05:54](1145 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [11:31, 06:02](1154 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [10:30, 06:05](1153 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:25, 06:02](1159 MB)
-PASS -- TEST 'rap_diag_debug_intel' [09:34, 06:25](1237 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:28, 06:12](1152 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:28, 06:11](1153 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:36, 06:12](1152 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:33, 06:03](1158 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:01](1152 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:26, 06:04](1154 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:26, 09:55](1151 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 07:25](1159 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:24, 06:04](1149 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:22, 10:33](1156 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [22:15, 04:01] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [09:24, 06:11](441 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:18, 30:17] ( 4 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:17, 05:45](1073 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [17:09, 08:22](903 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:18, 04:26](869 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:09, 07:57](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [17:24, 04:03](910 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:18, 04:40](857 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:22, 06:16](903 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:36, 02:30](846 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:21, 42:35] ( 4 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [11:09, 02:56](1111 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:21](1055 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:59, 01:34](1026 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [36:13, 30:44] ( 4 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:58, 05:31](908 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:09] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:06](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:28, 05:52](1024 MB)
-PASS -- TEST 'conus13km_debug_intel' [20:58, 18:22](1140 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:37](854 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:40](1082 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:55, 18:20](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:10] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:06](1071 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:16, 34:59] ( 2 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [09:25, 07:14](715 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:38, 06:33](1079 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:52, 09:18](774 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [23:35, 16:10](799 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:54, 18:09](825 MB)
-PASS -- TEST 'gnv1_nested_intel' [13:34, 05:41](773 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:13, 31:42] ( 1 warnings 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [17:29, 09:08](770 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:33, 08:52](752 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:00] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:24, 03:36](1053 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:24, 02:12](1034 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:22, 03:34](923 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:24, 03:33](925 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 03:36](926 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1058 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:24, 03:37](1053 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:24, 03:31](922 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:25, 07:55](888 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:25, 08:18](839 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:21, 03:36](1066 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 05:08](2344 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:05](2339 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:25] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:58](1006 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:00] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [09:25, 03:38](1067 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [08:11, 01:49] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:37, 01:35](231 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:34, 01:22](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:49](254 MB)
-
-PASS -- COMPILE 'atml_intel' [39:14, 34:04] ( 9 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:43, 08:04](1602 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [16:49, 07:52](1598 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:54, 04:22](865 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [11:12, 05:14] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:27](1615 MB)
-
-PASS -- COMPILE 'atmw_intel' [38:14, 31:57] ( 1 warnings 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:29, 02:19](1615 MB)
-
-PASS -- COMPILE 'atmaero_intel' [36:17, 30:30] ( 1 warnings 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:29, 05:14](1697 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [13:31, 06:24](1725 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:16, 06:34](1726 MB)
+* (-r) - USE ROCOTO
+
+PASS -- COMPILE 's2swa_32bit_intel' [38:23, 38:22] ( 2 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 07:39](1779 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:11, 54:10] ( 2 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:49, 21:02](1662 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:48](1846 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [12:21, 10:30](991 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:09, 24:08](1623 MB)
+
+PASS -- COMPILE 's2swa_intel' [38:50, 38:50] ( 1 warnings 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:21](1783 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 08:17](1779 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:45, 04:43](1661 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 08:17](1834 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:22, 04:37](1692 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 08:08](2244 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 08:14](1812 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:42](1779 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:50](1803 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 07:15](1784 MB)
+
+PASS -- COMPILE 's2sw_intel' [36:22, 36:21] ( 1 warnings 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:04, 05:53](1647 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 06:03](1704 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:46, 05:45] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:13, 10:49](1821 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:05, 05:04] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 07:25](1677 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [32:42, 32:42] ( 1 warnings 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 05:54](1666 MB)
+
+PASS -- COMPILE 's2s_intel' [32:29, 32:29] ( 1 warnings 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [13:54, 13:06](2790 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [33:33, 33:32] ( 1 warnings 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 08:51](1819 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:39, 47:38] ( 1 warnings 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:10, 21:00](1654 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 11:16](1020 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:09, 27:36](1653 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:14] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:48, 32:29](1683 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [34:30, 34:29] ( 2 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [04:54, 04:29](654 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:54, 04:06](1520 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 04:17](1538 MB)
+PASS -- TEST 'control_latlon_intel' [04:39, 04:00](1548 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 04:06](1543 MB)
+PASS -- TEST 'control_c48_intel' [12:35, 11:55](1720 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 10:10](845 MB)
+PASS -- TEST 'control_c192_intel' [15:52, 14:53](1666 MB)
+PASS -- TEST 'control_c384_intel' [21:31, 19:48](1814 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:57, 16:10](1008 MB)
+PASS -- TEST 'control_stochy_intel' [02:36, 02:16](604 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:21](431 MB)
+PASS -- TEST 'control_lndp_intel' [02:25, 02:09](601 MB)
+PASS -- TEST 'control_iovr4_intel' [04:00, 03:45](598 MB)
+PASS -- TEST 'control_iovr5_intel' [04:43, 04:19](595 MB)
+PASS -- TEST 'control_p8_intel' [05:59, 04:35](1564 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:33, 04:17](1564 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 04:32](1578 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:58, 02:42](821 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:51, 04:35](1558 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:27](836 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:04, 04:44](1562 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:13, 04:52](1662 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:17, 08:20](1565 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 06:11](1624 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:55](1591 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:04, 05:23](1585 MB)
+PASS -- TEST 'regional_control_intel' [09:45, 09:06](770 MB)
+PASS -- TEST 'regional_restart_intel' [05:48, 05:14](917 MB)
+PASS -- TEST 'regional_decomp_intel' [10:04, 09:29](763 MB)
+PASS -- TEST 'regional_2threads_intel' [07:40, 07:05](741 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 09:21](763 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [10:08, 09:21](757 MB)
+
+PASS -- COMPILE 'rrfs_intel' [32:54, 32:54] ( 4 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [14:12, 12:39](993 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 07:00](1219 MB)
+PASS -- TEST 'rap_decomp_intel' [15:53, 14:44](989 MB)
+PASS -- TEST 'rap_2threads_intel' [13:14, 12:18](1087 MB)
+PASS -- TEST 'rap_restart_intel' [08:06, 06:25](995 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:30, 13:15](985 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:47, 13:37](987 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [11:51, 10:05](1002 MB)
+PASS -- TEST 'hrrr_control_intel' [07:18, 06:01](991 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:57, 07:23](979 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 06:19](1055 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:52, 04:28](917 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [14:22, 13:04](986 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [16:15, 15:48](1927 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:20, 14:56](1936 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:05, 32:05] ( 2 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [11:06, 10:17](673 MB)
+PASS -- TEST 'control_ras_intel' [06:03, 05:26](667 MB)
+
+PASS -- COMPILE 'wam_intel' [30:06, 30:06] ( 1 warnings 982 remarks )
+PASS -- TEST 'control_wam_intel' [04:22, 03:43](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:02, 32:02] ( 1 warnings 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:11, 04:34](1576 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:43, 09:03](767 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:54, 05:53] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 04:22](1503 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 03:46](1564 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:39, 04:04](748 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:42, 03:28](745 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:03, 05:23](794 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:03, 03:46](772 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:52, 03:52](1610 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:29, 03:47](1589 MB)
+PASS -- TEST 'regional_debug_intel' [23:16, 22:38](768 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:53, 06:15](1146 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:31, 06:17](1141 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:49, 06:30](1153 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:25](1151 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 07:04](1154 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:13, 06:41](1236 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:48, 06:29](1144 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:41, 06:28](1148 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:52, 06:37](1129 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 06:51](1155 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:33, 06:14](1146 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 06:12](1147 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 10:08](1149 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 06:14](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:10, 07:50](1155 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:58, 06:36](1151 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 10:46](1154 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:17, 04:17] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:44, 06:24](446 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 4 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 06:45](1073 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:41, 10:34](905 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:10, 05:42](864 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:53, 09:36](941 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 05:02](906 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:53, 05:27](858 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:41, 09:07](899 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:01, 02:32](829 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:02, 43:02] ( 4 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:07, 03:17](1078 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:34, 01:33](1024 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:00, 02:06](1008 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:47, 30:45] ( 4 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:24, 06:34](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:24] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:09, 06:49](1034 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:41, 05:57](1029 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:19, 18:35](1141 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 18:46](847 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:56, 11:10](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:29, 18:35](1189 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:33, 04:33] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:54](1077 MB)
+
+PASS -- COMPILE 'hafsw_intel' [34:52, 34:52] ( 2 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [11:44, 10:17](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:56, 11:06](1078 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:00, 15:58](775 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [22:24, 20:53](807 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:10, 21:36](824 MB)
+PASS -- TEST 'gnv1_nested_intel' [11:55, 10:27](779 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:42, 32:42] ( 1 warnings 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [13:42, 12:16](767 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:03, 14:25](755 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:10] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 04:05](1059 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 02:31](1035 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 04:02](929 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 04:04](926 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 04:16](932 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 04:09](1061 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 04:09](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:57, 03:49](921 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:03, 09:16](880 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:33, 07:55](850 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:57, 03:44](1064 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:11, 05:59](2347 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 06:04](2393 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:42, 03:39] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:09](1011 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 08:11] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:00, 03:37](1052 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:59, 01:59] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:14, 02:42](233 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 03:11](256 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 02:08](256 MB)
+
+PASS -- COMPILE 'atml_intel' [35:00, 35:00] ( 9 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:30, 14:55](1600 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [16:21, 14:40](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:09, 09:16](871 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:11, 08:51](1611 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:02, 32:02] ( 1 warnings 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 03:10](1606 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:22, 31:22] ( 1 warnings 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:38, 07:01](1659 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:42, 07:59](1725 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 07:34](1735 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 17:50:27
-Ending Date/Time: 20240429 21:45:18
-Total Time: 03h:55m:28s
+Starting Date/Time: 20240501 15:20:11
+Ending Date/Time: 20240501 20:09:19
+Total Time: 04h:49m:47s
Compiles Completed: 33/33
Tests Completed: 159/159
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 97ee167d89..39c3aca92d 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-fc1d99cd44c4dfa5f95d34deede2a4e0ff81577b
+ee1e3c5e5a1cc1f622452890e61b3950a3e73ebd
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,274 +35,274 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_453139
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14513
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:11, 14:24] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:09, 05:32](3175 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:33] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:22](1756 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:51](2032 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:04, 08:23](1113 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:58, 19:27](1653 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:15] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:51, 23:02](1685 MB)
-
-PASS -- COMPILE 's2swa_intel' [15:11, 15:04] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:52, 05:47](3211 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 05:48](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:59, 03:26](3248 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 05:50](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:25](3277 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:52, 06:12](3550 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:52, 05:48](3201 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:59, 04:49](3068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:47](3209 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 10:25](3343 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:33, 06:33](3630 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:06, 11:03](4125 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:33, 06:54](4372 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:59, 05:35](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 14:18] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 04:46](1742 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:59, 04:30](1779 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:32] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:59, 08:34](3246 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:15] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:13, 06:03](1751 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:10] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 04:41](1778 MB)
-
-PASS -- COMPILE 's2s_intel' [14:11, 13:22] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:12](2831 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:20] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:37, 05:19](3213 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 16:01] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:11, 17:31](1765 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 08:30](1168 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 19:47](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 04:00] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:15, 24:43](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:54] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [07:26, 03:34](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [07:53, 02:53](1605 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:57, 03:03](1606 MB)
-PASS -- TEST 'control_latlon_intel' [07:49, 02:54](1605 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:57, 03:00](1598 MB)
-PASS -- TEST 'control_c48_intel' [11:57, 07:09](1757 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:34, 06:02](868 MB)
-PASS -- TEST 'control_c192_intel' [12:09, 10:41](1743 MB)
-PASS -- TEST 'control_c384_intel' [16:17, 11:37](2003 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:28, 09:10](1361 MB)
-PASS -- TEST 'control_stochy_intel' [03:25, 01:43](658 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:24, 01:06](504 MB)
-PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB)
-PASS -- TEST 'control_iovr4_intel' [03:27, 02:36](659 MB)
-PASS -- TEST 'control_iovr5_intel' [03:28, 02:33](652 MB)
-PASS -- TEST 'control_p8_intel' [04:15, 03:01](1631 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:15, 03:02](1635 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:38, 02:57](1636 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:16, 01:41](890 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:28, 02:52](1621 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:38](928 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:24, 03:01](1617 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:05](1713 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:17](1628 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:39, 03:57](1699 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:36, 03:01](1637 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:40, 03:20](1635 MB)
-PASS -- TEST 'regional_control_intel' [06:44, 05:13](859 MB)
-PASS -- TEST 'regional_restart_intel' [08:47, 02:46](1025 MB)
-PASS -- TEST 'regional_decomp_intel' [06:40, 05:34](851 MB)
-PASS -- TEST 'regional_2threads_intel' [05:42, 03:44](852 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:43, 05:09](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:47, 05:11](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:14](858 MB)
-PASS -- TEST 'regional_wofs_intel' [07:45, 06:40](1922 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 11:36] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [09:32, 07:45](1110 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:44](1290 MB)
-PASS -- TEST 'rap_decomp_intel' [10:01, 08:07](1030 MB)
-PASS -- TEST 'rap_2threads_intel' [10:04, 07:57](1191 MB)
-PASS -- TEST 'rap_restart_intel' [06:24, 04:13](1102 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:46](1110 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:58, 08:48](1038 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:50](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [06:00, 04:03](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:06](1028 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:23](1104 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:28, 02:10](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:29, 07:38](1095 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:13](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:01](2068 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:12, 10:59] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:41, 06:06](748 MB)
-PASS -- TEST 'control_ras_intel' [05:25, 03:19](738 MB)
-
-PASS -- COMPILE 'wam_intel' [12:12, 10:36] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [04:28, 02:06](659 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 11:11] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:41, 02:40](1628 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:45, 04:40](856 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 04:22] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:41](1620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:58, 02:44](1611 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:10](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:24, 02:55](819 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:45, 04:21](811 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:23, 02:51](826 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:56, 02:43](1673 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:47, 02:52](1651 MB)
-PASS -- TEST 'regional_debug_intel' [20:48, 17:26](849 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:24, 04:47](1198 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:50](1202 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 04:56](1195 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1201 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:56](1200 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:11](1290 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 04:55](1209 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 04:59](1209 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:01](1205 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:22, 04:53](1206 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:52](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:54](1198 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:55](1205 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:53](1138 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:49](1204 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:49](1215 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:31, 08:31](1209 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:10, 04:09] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:21, 04:59](525 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:34] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:28](1166 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 06:31](1047 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:16, 03:32](987 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 07:08](1089 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:14, 03:00](969 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:37](922 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:24, 04:52](1033 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:24, 01:53](933 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 13:55] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1198 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:01](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:39, 01:16](1114 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 10:44] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:17](1002 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:03] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:53](1075 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:50](1076 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:53, 14:33](1227 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:46](931 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:26](1101 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:38](1297 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:07] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:00](1114 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:11, 12:04] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](743 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 06:00](1111 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:59](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:15](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:36, 14:56](882 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 06:19](461 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 07:31](516 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 03:12](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:06](475 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:54] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 05:27](3186 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:19] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 17:15](1741 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 18:22](2031 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:26](1106 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 19:36](1648 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:11] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:41, 22:44](1648 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:10, 14:03] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:33, 05:42](3214 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:16, 05:45](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:08, 03:20](3261 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 05:47](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:31](3273 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [15:02, 06:13](3553 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:30, 05:46](3204 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:43, 04:44](3063 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:15, 05:45](3212 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 10:26](3344 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:18, 06:29](3622 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 10:59](4168 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:45, 06:55](4374 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 05:28](3172 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:31] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 04:44](1740 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:26](1772 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:10] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [11:21, 08:43](3249 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:56] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 05:57](1750 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:10, 12:10] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:29](1784 MB)
+
+PASS -- COMPILE 's2s_intel' [12:10, 12:09] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:50, 08:16](2827 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:52] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:30, 05:26](3211 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 17:35] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 17:30](1763 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:30](1173 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:52](1679 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:57] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:37](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:02] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [10:30, 03:33](696 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [09:59, 02:56](1605 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:08, 03:03](1602 MB)
+PASS -- TEST 'control_latlon_intel' [09:54, 02:55](1603 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:06, 03:02](1593 MB)
+PASS -- TEST 'control_c48_intel' [13:58, 07:10](1772 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [13:35, 06:02](880 MB)
+PASS -- TEST 'control_c192_intel' [18:08, 10:36](1747 MB)
+PASS -- TEST 'control_c384_intel' [17:20, 11:41](2004 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:19, 09:04](1359 MB)
+PASS -- TEST 'control_stochy_intel' [04:26, 01:48](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](508 MB)
+PASS -- TEST 'control_lndp_intel' [08:27, 01:38](654 MB)
+PASS -- TEST 'control_iovr4_intel' [09:29, 02:32](655 MB)
+PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](656 MB)
+PASS -- TEST 'control_p8_intel' [04:20, 02:58](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:23, 02:56](1621 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:42, 02:51](1644 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:17, 01:40](889 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:19, 02:53](1621 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:40](928 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:28, 03:08](1605 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:02](1729 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:01, 05:12](1633 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 04:01](1687 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:06](1640 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:51, 03:18](1642 MB)
+PASS -- TEST 'regional_control_intel' [06:44, 05:18](856 MB)
+PASS -- TEST 'regional_restart_intel' [05:39, 02:45](1018 MB)
+PASS -- TEST 'regional_decomp_intel' [06:40, 05:35](851 MB)
+PASS -- TEST 'regional_2threads_intel' [04:40, 03:48](858 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:42, 05:33](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:09](857 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:13](861 MB)
+PASS -- TEST 'regional_wofs_intel' [07:36, 06:46](1919 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:11, 11:17] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:31, 07:50](1104 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:08, 04:48](1289 MB)
+PASS -- TEST 'rap_decomp_intel' [10:00, 08:14](1029 MB)
+PASS -- TEST 'rap_2threads_intel' [09:01, 08:00](1182 MB)
+PASS -- TEST 'rap_restart_intel' [06:20, 04:05](1107 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:06, 07:46](1092 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:11](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:54](1137 MB)
+PASS -- TEST 'hrrr_control_intel' [06:21, 03:59](1032 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:08](1028 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:23](1114 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:12](1004 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:35](1109 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:11](1998 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:55](2077 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:11, 11:12] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:43, 06:08](748 MB)
+PASS -- TEST 'control_ras_intel' [05:22, 03:24](740 MB)
+
+PASS -- COMPILE 'wam_intel' [11:11, 10:28] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [03:22, 02:06](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 12:01] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:34, 02:47](1622 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:39, 04:44](803 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:44] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:40](1616 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:37](1609 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:06](817 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](823 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:07](863 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:21, 02:50](820 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:47, 02:46](1680 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:45, 02:51](1640 MB)
+PASS -- TEST 'regional_debug_intel' [18:41, 17:16](848 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:24, 04:57](1202 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:25, 04:51](1190 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1207 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:58](1201 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1199 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:16](1295 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:01](1202 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:09](1207 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:09](1193 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:52](1208 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:52](1144 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:57](1201 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1200 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:57](1195 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:48](1202 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:57](1204 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:22](1211 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:10, 03:13] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:23, 05:07](508 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:21] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 04:32](1168 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 06:27](1057 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:28](992 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 06:46](1102 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:15, 02:56](965 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:39](923 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:14, 04:57](1037 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 01:52](927 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 13:20] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:57, 02:07](1201 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:02](1127 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:19](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:55] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:18](990 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 03:36] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:53](1081 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:54](1077 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:52, 14:15](1228 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:50, 14:07](927 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:13](1105 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:44, 13:48](1262 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:53](1113 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:10, 12:52] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](741 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:47](1127 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:21, 06:50](828 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 13:10](977 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 14:54](880 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 06:16](500 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 07:36](520 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:26, 08:11](465 MB)
PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 04:05](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:53, 05:19](581 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:27](396 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:51, 04:36](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:06] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:05, 12:54](568 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:28] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:59, 09:45](651 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:07, 09:54](710 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:14] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:06, 07:06](696 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:11, 11:50] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [10:19, 06:30](778 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:28](815 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 15:54](1204 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 02:37](1133 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:42](1080 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:33](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:35](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:35](1016 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:40](1120 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:32](1013 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:58](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 05:54](1034 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:37](1122 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:32](2488 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:32](2500 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:05] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:14](1063 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:29]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1141 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:21] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:49](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:52](325 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](321 MB)
-
-PASS -- COMPILE 'atml_intel' [13:11, 12:30] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 04:15](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:15](1608 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [09:46, 02:22](896 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:11, 04:04] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:33, 33:19](1629 MB)
-
-PASS -- COMPILE 'atmw_intel' [17:11, 12:17] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:45](1675 MB)
-
-PASS -- COMPILE 'atmaero_intel' [16:11, 12:06] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:30, 04:03](3023 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:52](3089 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:04, 05:00](3114 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:06] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [23:43, 21:34](4320 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:04](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:20](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:27](410 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:51, 04:39](800 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:50] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:09](564 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:10, 13:49] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:59, 09:56](632 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 09:50](705 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:51] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 07:10](696 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 12:36] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:23](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](815 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 15:57](1204 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:36](1135 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1083 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:33](1009 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:37](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:40](1009 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:36](1126 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1129 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:38](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:13, 05:58](1059 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:13, 05:53](1037 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1133 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:44](2492 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:35](2431 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:11] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1057 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:04]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:36](1134 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:02] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:49](259 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:48](329 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:32](321 MB)
+
+PASS -- COMPILE 'atml_intel' [13:11, 12:24] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:10](1602 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:18](896 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:12, 04:06] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:56](1621 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 11:45] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:44](1670 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:11, 11:04] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:19, 04:00](3025 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:57](3087 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 04:59](3103 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:11, 03:22] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:09](4595 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 07:54:50
-Ending Date/Time: 20240429 09:33:25
-Total Time: 01h:39m:22s
+Starting Date/Time: 20240501 13:51:13
+Ending Date/Time: 20240501 15:18:50
+Total Time: 01h:28m:06s
Compiles Completed: 38/38
Tests Completed: 180/180
@@ -313,64 +313,3 @@ If you are using this log as a pull request verification, please commit 'test_ch
Result: SUCCESS
====END OF ORION REGRESSION TESTING LOG====
-====START OF ORION REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (EP4-741-g9b0ac7b1)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_205619
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'atml_debug_intel' [09:11, 04:19] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:13, 05:46](1632 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240429 11:52:48
-Ending Date/Time: 20240429 12:14:12
-Total Time: 00h:21m:32s
-Compiles Completed: 1/1
-Tests Completed: 1/1
-
-NOTES:
-A file 'test_changes.list' was generated but is empty.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: SUCCESS
-
-====END OF ORION REGRESSION TESTING LOG====
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 7d7cd4c611..ed6cb3faff 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,20 +1,20 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-d35f6da7caf2a4d320aeb75613de67533a11d1b7
+a987c604f37531e8dc63d28127df5b6921805e0b
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.6.2-89-g3d7067a)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps0.9.2-32-g4e19850c)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- da95cc428d8b626e99250fd57a4279b4980044f8 FV3 (remotes/origin/HEAD-11-gda95cc4)
+ bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl-1-gbbcabb5)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 011db4f80a02cba6d65958ace56e8efb197be62b FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-704-g011db4f)
- 9b0ac7b16a45afe5e7f1abf9571d3484158a5b43 FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4226-g9b0ac7b1)
+ 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
+ cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 2f30e107fbc5959c4d4dbe614232e29ec3882a97 NOAHMP-interface/noahmp (v3.7.1-429-g2f30e10)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,235 +35,235 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240426
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_121661
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17560
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:28] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:29, 01:21](2971 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:50, 29:44] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [53:09, 02:07](1559 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [35:00, 02:00](1718 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [34:38, 01:33](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [53:10, 01:47](1579 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:36, 15:28] ( 1506 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [07:24, 02:13](1600 MB)
-
-PASS -- COMPILE 's2swa_intel' [22:41, 22:00] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [01:18, 01:31](3006 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:18, 01:56](3005 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [52:55, 00:55](3059 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [01:18, 01:32](3029 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [52:56, 00:51](3082 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [01:18, 01:15](3316 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [01:18, 01:39](3000 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [01:19, 01:37](2930 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:18, 01:56](3004 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [01:27, 03:22](3953 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:47, 03:18](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [01:18, 01:02](2965 MB)
-
-PASS -- COMPILE 's2sw_intel' [22:43, 22:29] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [01:16, 01:08](1585 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:16, 01:14](1636 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:25, 11:21] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:34, 01:08](1632 MB)
-
-PASS -- COMPILE 's2s_intel' [14:33, 13:46] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:25, 00:54](2654 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [31:52, 31:44] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [52:07, 01:49](3002 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:38] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:29, 01:06](1574 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [54:08, 00:52](901 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [54:09, 00:58](1583 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:33, 13:28] ( 1542 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:27, 00:50](1611 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [22:35, 21:59] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [48:58, 00:33](571 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [48:58, 00:36](1476 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:58, 00:34](1475 MB)
-PASS -- TEST 'control_latlon_intel' [48:58, 00:32](1461 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:58, 00:43](1481 MB)
-PASS -- TEST 'control_c48_intel' [48:18, 01:08](1593 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [47:25, 01:06](714 MB)
-PASS -- TEST 'control_c192_intel' [47:20, 00:47](1587 MB)
-PASS -- TEST 'control_c384_intel' [47:24, 01:38](1909 MB)
-PASS -- TEST 'control_c384gdas_intel' [46:09, 02:15](1093 MB)
-PASS -- TEST 'control_stochy_intel' [45:21, 00:36](530 MB)
-PASS -- TEST 'control_stochy_restart_intel' [42:56, 00:15](333 MB)
-PASS -- TEST 'control_lndp_intel' [45:17, 00:40](528 MB)
-PASS -- TEST 'control_iovr4_intel' [45:15, 00:54](524 MB)
-PASS -- TEST 'control_iovr5_intel' [45:09, 00:55](523 MB)
-PASS -- TEST 'control_p8_intel' [44:41, 00:56](1512 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [44:38, 01:08](1502 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [44:38, 01:10](1512 MB)
-PASS -- TEST 'control_restart_p8_intel' [40:22, 01:07](696 MB)
-PASS -- TEST 'control_noqr_p8_intel' [44:38, 00:56](1490 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [40:22, 01:07](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [44:33, 00:46](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [44:33, 01:07](1587 MB)
-PASS -- TEST 'control_p8_lndp_intel' [43:35, 00:26](1508 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [42:58, 01:26](1565 MB)
-PASS -- TEST 'control_p8_mynn_intel' [42:55, 01:08](1510 MB)
-PASS -- TEST 'merra2_thompson_intel' [41:48, 01:59](1513 MB)
-PASS -- TEST 'regional_control_intel' [41:41, 00:24](609 MB)
-PASS -- TEST 'regional_restart_intel' [35:59, 00:33](778 MB)
-PASS -- TEST 'regional_decomp_intel' [35:58, 01:07](608 MB)
-PASS -- TEST 'regional_2threads_intel' [41:36, 00:13](672 MB)
-PASS -- TEST 'regional_noquilt_intel' [41:35, 00:31](1145 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [41:27, 00:34](607 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [41:18, 00:24](609 MB)
-PASS -- TEST 'regional_wofs_intel' [41:17, 01:00](1581 MB)
-
-PASS -- COMPILE 'rrfs_intel' [21:43, 21:04] ( 4 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [49:45, 01:00](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:46, 00:24](1096 MB)
-PASS -- TEST 'rap_decomp_intel' [49:45, 00:49](919 MB)
-PASS -- TEST 'rap_2threads_intel' [49:45, 01:37](1008 MB)
-PASS -- TEST 'rap_restart_intel' [41:18, 01:25](789 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [49:45, 01:21](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:45, 01:07](918 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [41:12, 01:54](784 MB)
-PASS -- TEST 'hrrr_control_intel' [49:45, 01:20](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [49:45, 01:15](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [49:46, 01:37](996 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [41:05, 00:14](744 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [49:45, 01:32](914 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [49:45, 00:15](1876 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:45, 00:31](1860 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:35, 12:53] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [57:54, 00:45](602 MB)
-PASS -- TEST 'control_ras_intel' [57:54, 01:06](562 MB)
-
-PASS -- COMPILE 'wam_intel' [17:43, 17:30] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [51:43, 01:04](274 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:39, 17:12] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [51:46, 01:07](1502 MB)
-PASS -- TEST 'regional_control_faster_intel' [51:45, 00:31](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [21:35, 20:40] ( 871 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [41:02, 00:26](1487 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 00:38](1490 MB)
-PASS -- TEST 'control_stochy_debug_intel' [40:22, 01:01](693 MB)
-PASS -- TEST 'control_lndp_debug_intel' [40:22, 00:19](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [40:17, 00:47](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [40:07, 00:17](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [40:07, 00:28](1555 MB)
-PASS -- TEST 'control_debug_p8_intel' [34:35, 00:11](1518 MB)
-PASS -- TEST 'regional_debug_intel' [38:21, 01:01](631 MB)
-PASS -- TEST 'rap_control_debug_intel' [37:56, 01:04](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [37:37, 00:18](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [37:13, 01:08](1074 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [31:34, 01:06](1077 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [37:03, 00:10](1072 MB)
-PASS -- TEST 'rap_diag_debug_intel' [37:03, 01:10](1157 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [36:57, 00:59](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [36:49, 00:58](1076 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [36:42, 01:05](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [36:17, 01:06](1073 MB)
-PASS -- TEST 'rap_noah_debug_intel' [36:10, 00:14](1069 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [36:03, 00:12](1070 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [35:56, 00:57](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [35:55, 00:14](1072 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [35:46, 00:16](1078 MB)
-PASS -- TEST 'rap_flake_debug_intel' [35:34, 00:11](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [35:26, 01:24](1082 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:17, 04:21] ( 843 warnings )
-PASS -- TEST 'control_wam_debug_intel' [56:00, 00:08](299 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:39, 18:00] ( 4 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [34:33, 00:30](958 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [34:30, 01:32](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [34:20, 02:39](780 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [33:35, 01:27](853 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [33:24, 02:01](841 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [32:57, 02:07](792 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:05, 01:28](685 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:25, 00:28](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:38, 16:24] ( 4 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [32:14, 01:12](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [28:28, 01:04](1005 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [28:25, 00:52](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:38, 15:20] ( 4 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:59, 00:30](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:17, 03:27] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:33, 00:14](952 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [31:27, 00:19](955 MB)
-PASS -- TEST 'conus13km_debug_intel' [30:56, 00:43](1035 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [30:43, 00:31](703 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [30:41, 00:46](1036 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:31, 00:44](1103 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:40, 16:45] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 01:08](979 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:35, 13:43] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [30:27, 01:23](620 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [30:23, 00:53](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [30:21, 02:06](661 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [30:13, 01:59](699 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:59, 01:49](705 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [29:51, 01:18](387 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [29:33, 01:27](407 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [29:18, 00:42](294 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:18, 02:43](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:46, 00:45](413 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [27:28, 01:04](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:22, 01:11](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [26:44, 00:34](311 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:20, 05:53] ( 1450 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:27, 00:50](501 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:35, 14:05] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:08, 00:56](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [26:04, 00:56](710 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:32, 15:16] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:01, 01:11](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:35, 16:01] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [25:47, 01:37](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:46, 01:33](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:13, 00:35](880 MB)
-
-PASS -- COMPILE 'atml_intel' [20:38, 20:07] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [25:04, 01:14](1548 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [24:55, 01:09](1548 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [18:28, 00:38](740 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:24, 04:33] ( 867 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [24:38, 01:48](1566 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:35, 10:52] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [24:11, 01:34](2852 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [23:58, 01:01](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:46, 00:56](2925 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:24, 09:51] ( 871 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [22:54, 00:50](4433 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:34, 20:07] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [50:19, 01:43](2975 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:35, 19:35] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [50:18, 01:29](1594 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:14, 01:35](1708 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [31:05, 02:08](853 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:19, 01:57](1578 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:24, 08:51] ( 1506 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [01:30, 01:51](1599 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:44, 20:58] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [41:21, 01:30](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:10, 01:57](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [32:55, 01:00](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [49:10, 01:42](3030 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [39:51, 01:54](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [49:10, 01:30](3318 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [49:10, 01:37](3003 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [42:23, 01:21](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:20, 01:31](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [49:19, 03:48](3951 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:19, 03:24](4251 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [49:10, 01:20](2966 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:26, 10:28] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [59:27, 01:07](1583 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:27, 01:14](1636 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [29:53, 29:26] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:00, 01:51](1635 MB)
+
+PASS -- COMPILE 's2s_intel' [10:25, 10:01] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [00:27, 00:43](2647 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:22] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [53:21, 01:38](3001 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [28:52, 27:58] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:02, 01:02](1603 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:43, 01:12](905 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:11, 01:27](1574 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:49, 26:16] ( 1542 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:06, 01:29](1619 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [21:36, 21:04] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [39:52, 01:12](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [39:52, 01:16](1465 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:52, 01:18](1477 MB)
+PASS -- TEST 'control_latlon_intel' [39:52, 01:13](1469 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:06, 00:33](1467 MB)
+PASS -- TEST 'control_c48_intel' [39:51, 01:02](1597 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [39:51, 00:53](717 MB)
+PASS -- TEST 'control_c192_intel' [39:52, 01:22](1586 MB)
+PASS -- TEST 'control_c384_intel' [39:56, 01:09](1901 MB)
+PASS -- TEST 'control_c384gdas_intel' [39:56, 02:13](1092 MB)
+PASS -- TEST 'control_stochy_intel' [39:52, 00:26](528 MB)
+PASS -- TEST 'control_stochy_restart_intel' [37:27, 00:16](333 MB)
+PASS -- TEST 'control_lndp_intel' [39:52, 00:18](529 MB)
+PASS -- TEST 'control_iovr4_intel' [39:52, 00:34](524 MB)
+PASS -- TEST 'control_iovr5_intel' [39:52, 00:45](525 MB)
+PASS -- TEST 'control_p8_intel' [39:52, 01:43](1498 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [39:52, 01:40](1509 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [39:35, 01:58](1507 MB)
+PASS -- TEST 'control_restart_p8_intel' [32:23, 01:44](690 MB)
+PASS -- TEST 'control_noqr_p8_intel' [39:33, 01:40](1489 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [32:22, 01:47](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [37:27, 00:46](1500 MB)
+PASS -- TEST 'control_2threads_p8_intel' [36:24, 00:50](1592 MB)
+PASS -- TEST 'control_p8_lndp_intel' [36:23, 01:17](1505 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [36:21, 01:46](1565 MB)
+PASS -- TEST 'control_p8_mynn_intel' [35:18, 01:01](1510 MB)
+PASS -- TEST 'merra2_thompson_intel' [35:03, 01:59](1509 MB)
+PASS -- TEST 'regional_control_intel' [35:00, 01:02](608 MB)
+PASS -- TEST 'regional_restart_intel' [27:13, 00:23](776 MB)
+PASS -- TEST 'regional_decomp_intel' [34:21, 01:05](608 MB)
+PASS -- TEST 'regional_2threads_intel' [33:39, 01:11](667 MB)
+PASS -- TEST 'regional_noquilt_intel' [33:09, 00:24](1143 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [33:01, 00:20](610 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [32:57, 00:15](609 MB)
+PASS -- TEST 'regional_wofs_intel' [32:55, 00:51](1578 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:27, 12:39] ( 4 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [32:51, 01:14](919 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 00:43](1093 MB)
+PASS -- TEST 'rap_decomp_intel' [32:22, 01:39](920 MB)
+PASS -- TEST 'rap_2threads_intel' [32:14, 01:46](1009 MB)
+PASS -- TEST 'rap_restart_intel' [23:26, 01:07](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [32:03, 01:54](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:52, 01:08](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [20:34, 01:17](786 MB)
+PASS -- TEST 'hrrr_control_intel' [29:51, 01:51](913 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [29:44, 01:23](911 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [21:57, 01:54](988 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [22:36, 01:04](740 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [29:12, 01:40](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [28:28, 01:01](1877 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:15, 01:02](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:56, 32:01] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [26:21, 01:08](599 MB)
+PASS -- TEST 'control_ras_intel' [26:13, 01:16](561 MB)
+
+PASS -- COMPILE 'wam_intel' [10:24, 10:04] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [42:57, 00:24](271 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [21:44, 19:32] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [21:07, 01:22](1509 MB)
+PASS -- TEST 'regional_control_faster_intel' [26:39, 00:42](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:12] ( 871 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:11, 00:54](1487 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:01, 00:33](1487 MB)
+PASS -- TEST 'control_stochy_debug_intel' [25:43, 00:30](691 MB)
+PASS -- TEST 'control_lndp_debug_intel' [25:43, 00:52](690 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [25:09, 01:02](731 MB)
+PASS -- TEST 'control_ras_debug_intel' [24:09, 00:43](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [22:52, 00:34](1546 MB)
+PASS -- TEST 'control_debug_p8_intel' [22:36, 01:03](1524 MB)
+PASS -- TEST 'regional_debug_intel' [22:17, 00:27](632 MB)
+PASS -- TEST 'rap_control_debug_intel' [21:53, 00:18](1073 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [21:27, 00:52](1067 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [21:14, 00:58](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [11:18, 01:06](1070 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:02, 00:49](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [18:24, 01:09](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:44, 00:46](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:14, 00:17](1072 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [17:50, 00:35](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:44, 00:38](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [17:40, 01:12](1068 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [17:02, 00:31](1076 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:00, 00:19](1074 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [16:56, 00:30](1068 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [16:23, 00:29](1076 MB)
+PASS -- TEST 'rap_flake_debug_intel' [15:57, 00:41](1073 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:52, 02:01](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:20, 03:22] ( 843 warnings )
+PASS -- TEST 'control_wam_debug_intel' [43:50, 00:57](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:42, 18:57] ( 4 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:51, 00:41](966 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 01:49](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:22, 01:36](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:40, 01:33](850 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:30, 01:27](837 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:24, 01:31](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 01:31](690 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:37, 00:36](668 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:06] ( 4 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [13:54, 01:16](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [08:03, 00:45](1007 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [07:50, 00:34](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:28, 12:09] ( 4 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:42, 01:27](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:25, 08:29] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:31, 01:09](954 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:05, 01:02](954 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:15, 01:02](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:06, 00:54](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 00:38](1043 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:42, 00:36](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 04:24] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 01:13](979 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:31, 15:49] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [10:23, 02:08](618 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:17, 00:51](971 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 01:30](664 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [09:35, 01:32](695 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:27, 01:24](713 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 01:08](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:49, 01:25](402 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [08:27, 00:49](282 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:29, 02:10](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:13, 01:27](413 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:29, 00:49](418 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 01:42](488 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 01:19](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [09:23, 08:08] ( 1450 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:21, 01:16](496 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [19:35, 18:52] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:33, 01:38](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:13, 00:47](709 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 11:17] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:04, 00:50](705 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:29, 13:04] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [04:34, 02:11](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:47, 01:28](640 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:28, 00:17](882 MB)
+
+PASS -- COMPILE 'atml_intel' [20:35, 16:57] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:20, 02:05](1540 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [03:17, 02:05](1549 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [55:38, 00:51](740 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [08:21, 05:07] ( 867 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [02:59, 01:25](1559 MB)
+
+PASS -- COMPILE 'atmaero_intel' [15:28, 10:33] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [02:19, 00:57](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [01:42, 01:50](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [01:36, 01:29](2922 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:24, 06:27] ( 871 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [01:36, 01:10](4443 MB)
SYNOPSIS:
-Starting Date/Time: 20240429 16:35:39
-Ending Date/Time: 20240429 18:02:24
-Total Time: 01h:27m:18s
+Starting Date/Time: 20240501 14:48:33
+Ending Date/Time: 20240501 16:24:47
+Total Time: 01h:36m:59s
Compiles Completed: 31/31
Tests Completed: 156/156
diff --git a/tests/rt.sh b/tests/rt.sh
index 790fd85843..4454eb7fed 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -522,6 +522,7 @@ handle_error() {
rt_trap() {
echo "rt.sh: Exited abnormally, killing workflow and cleaning up"
+ trap "" SIGINT
[[ ${ROCOTO:-false} == true ]] && rocoto_kill
[[ ${ECFLOW:-false} == true ]] && ecflow_kill
cleanup
@@ -698,17 +699,6 @@ case ${MACHINE_ID} in
module load ecflow/5.6.0.13
fi
module load intel/19.1.3.304 python/3.8.6
- if [[ "${ECFLOW:-false}" == true ]] ; then
- # ECF_ROOT=${ECF_ROOT:-}
- # ECFLOW_START="${ECF_ROOT}/scripts/server_check.sh"
- # ECFLOW_STOP="${ECF_ROOT}/bin/ecflow_stop.sh"
- export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir"
- export ECF_COMDIR="${PATHRT}/ecf_comdir"
- rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}"
- mkdir -p "${ECF_OUTPUTDIR}"
- mkdir -p "${ECF_COMDIR}"
- # export ECFLOW_START ECFLOW_STOP
- fi
export colonifnco=":output" # hack
DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT"
@@ -728,9 +718,6 @@ case ${MACHINE_ID} in
if [[ "${ROCOTO:-false}" == true ]] ; then
module use /ncrc/proj/epic/rocoto/modulefiles
module load rocoto
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="slurm"
fi
@@ -743,8 +730,6 @@ case ${MACHINE_ID} in
module load gcc/12.2.0
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.8.4
- # ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh
- # ECFLOW_STOP=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh
ECF_HOST=$(hostname)
ECF_PORT=$(( $(id -u) + 1500 ))
export ECF_PORT ECF_HOST
@@ -765,17 +750,11 @@ case ${MACHINE_ID} in
set -x
if [[ "${ROCOTO:-false}" == true ]] ; then
module load rocoto
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER=slurm
fi
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.11.4
- # ECFLOW_START="$(command -v ecflow_start.sh)"
- # ECFLOW_STOP="$(command -v ecflow_stop.sh)"
- # export ECFLOW_START ECFLOW_STOP
fi
QUEUE="batch"
@@ -798,17 +777,12 @@ case ${MACHINE_ID} in
if [[ "${ROCOTO:-false}" == true ]] ; then
module load contrib rocoto
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="slurm"
fi
module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.8.4
- # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_start.sh"
- # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/orion/ecflow-5.8.4/bin/ecflow_stop.sh"
ECF_HOST=$(hostname)
ECF_PORT="$(( $(id -u) + 1500 ))"
export ECF_PORT ECF_HOST
@@ -829,17 +803,12 @@ case ${MACHINE_ID} in
set -x
if [[ "${ROCOTO:-false}" == true ]] ; then
module load contrib rocoto
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="slurm"
fi
module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.8.4
- # ECFLOW_START="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh"
- # ECFLOW_STOP="/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_stop.sh"
ECF_HOST=$(hostname)
ECF_PORT="$(( $(id -u) + 1500 ))"
export ECF_PORT ECF_HOST
@@ -869,17 +838,11 @@ case ${MACHINE_ID} in
if [[ "${ROCOTO:-false}" == true ]] ; then
module load rocoto
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="slurm"
fi
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.11.4
- # ECFLOW_START=/apps/ecflow/5.11.4/bin/ecflow_start.sh
- # ECFLOW_STOP=/apps/ecflow/5.11.4/bin/ecflow_stop.sh
- # export ECFLOW_START ECFLOW_STOP
fi
module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core
@@ -901,9 +864,6 @@ case ${MACHINE_ID} in
set -x
if [[ "${ROCOTO:-false}" == true ]] ; then
module load rocoto/1.3.2
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER=slurm
fi
if [[ "${ECFLOW:-false}" == true ]] ; then
@@ -914,8 +874,6 @@ case ${MACHINE_ID} in
module use /data/prod/jedi/spack-stack/modulefiles
if [[ "${ECFLOW:-false}" == true ]] ; then
module load ecflow/5.8.4
- # ECFLOW_START="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh"
- # ECFLOW_STOP="/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_stop.sh"
ECF_HOST=$(hostname)
ECF_PORT="$(( $(id -u) + 1500 ))"
export ECF_PORT ECF_HOST
@@ -949,8 +907,6 @@ case ${MACHINE_ID} in
module load stack-python/3.10.8
# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages
if [[ "${ECFLOW:-false}" == true ]] ; then
- # ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh
- # ECFLOW_STOP=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_stop.sh
ECF_HOST=$(hostname)
ECF_PORT=$(( $(id -u) + 1500 ))
export ECF_PORT ECF_HOST
@@ -969,9 +925,6 @@ case ${MACHINE_ID} in
if [[ "${ROCOTO:-false}" == true ]] ; then
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER="pbspro"
fi
;;
@@ -1018,9 +971,6 @@ case ${MACHINE_ID} in
if [[ "${ROCOTO:-false}" == true ]] ; then
module load rocoto/1.3.3
- # ROCOTORUN=$(command -v rocotorun)
- # ROCOTOSTAT=$(command -v rocotostat)
- # ROCOTOCOMPLETE=$(command -v rocotocomplete)
ROCOTO_SCHEDULER=slurm
fi
@@ -1168,25 +1118,20 @@ fi
if [[ ${ECFLOW} == true ]]; then
echo "Verifying ECFLOW support..."
case ${MACHINE_ID} in
- wcoss2|acorn)
- ECFLOW_START="$(command -v server_check.sh)"
- ECFLOW_STOP="$(command -v ecflow_stop.sh)"
- ;;
expanse|stampede|noaacloud)
die "ECFLOW not supported on this machine, please do not use '-e'."
;;
*)
ECFLOW_START="$(command -v ecflow_start.sh)"
- ECFLOW_STOP="$(command -v ecflow_stop.sh)"
;;
esac
- export ECFLOW_START ECFLOW_STOP
+ export ECFLOW_START
- export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir"
- export ECF_COMDIR="${PATHRT}/ecf_comdir"
- rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}"
- mkdir -p "${ECF_OUTPUTDIR}"
- mkdir -p "${ECF_COMDIR}"
+ #export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir"
+ #export ECF_COMDIR="${PATHRT}/ecf_comdir"
+ #rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}"
+ #mkdir -p "${ECF_OUTPUTDIR}"
+ #mkdir -p "${ECF_COMDIR}"
# Default maximum number of compile and run jobs
MAX_BUILDS=10 #Max build jobs
MAX_JOBS=30 #Max test/run jobs
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index 24f8c8d286..1d72ada3fe 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -6,6 +6,8 @@ if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then
exit 1
fi
+ECFLOW_RUNNING=false
+
# Note: this file must only contain subroutines, and variables that
# are not dependent on the caller. Most regression test variables
# (such as ACCNR) are not set until after rt.sh sources this file.
@@ -658,25 +660,30 @@ ecflow_run() {
fi
# Start the ecflow_server
+ echo "rt_utils.sh: Checking status of the ecflow_server..."
set +e
ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}"
not_running=$?
set -e
if [[ ${not_running} -eq 1 ]]; then
- echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}"
+ echo "rt_utils.sh: ecflow_server is not running on ${ECF_HOST}:${ECF_PORT}"
+ echo "rt_utils.sh: attempting to start ecflow_server..."
- if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then
- #shellcheck disable=SC2029
- ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\""
- elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then
- #shellcheck disable=SC2029
- ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\""
- else
- ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server"
- fi
- echo "Since this script is starting the ecflow_server, we will stop it at the end"
- export STOP_ECFLOW_AT_END=true
+ save_traps=$(trap)
+ trap "" SIGINT # Ignore INT signal during ecflow startup
+ case ${MACHINE_ID} in
+ wcoss2|acorn|hera|jet)
+ #shellcheck disable=SC2029
+ ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\""
+ ;;
+ *)
+ ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server"
+ ;;
+ esac
+
+ ECFLOW_RUNNING=true
+ eval "${save_traps}"
# Try pinging ecflow server now, and erroring out if not there.
set +e
ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}"
@@ -684,25 +691,27 @@ ecflow_run() {
set -e
if [[ ${not_running} -eq 1 ]]; then
- echo "ERROR: Failure to start ecflow, exiting..."
+ echo "rt_utils.sh: ERROR -- Failure to start ecflow. Exiting..."
exit 1
fi
else
- echo "ecflow_server is already running on ${ECF_HOST}:${ECF_PORT}"
+ echo "rt_utils.sh: Confirmed: ecflow_server is running on ${ECF_HOST}:${ECF_PORT}"
+ ECFLOW_RUNNING=true
fi
- ECFLOW_RUNNING=true
+ echo "rt_utils.sh: Starting ECFLOW tasks..."
set +e
ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}"
ecflow_client --begin="${ECFLOW_SUITE}" --host="${ECF_HOST}" --port="${ECF_PORT}"
ecflow_client --restart --host="${ECF_HOST}" --port="${ECF_PORT}"
set -e
+ sleep 10
active_tasks=1
- sleep 10
max_active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" )
max_active_tasks=$( grep "task " <<< "${max_active_tasks}" )
max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" )
+ echo "rt_utils.sh: Total number of tasks processed -- ${max_active_tasks}"
while [[ "${active_tasks}" -ne 0 ]]
do
sleep 10 & wait $!
@@ -716,6 +725,7 @@ ecflow_run() {
done
sleep 65 # wait one ECF_INTERVAL plus 5 seconds
+ echo "rt_utils.sh: ECFLOW tasks completed, cleaning up suite"
set +e
ecflow_client --delete=force yes "/${ECFLOW_SUITE}"
set -e
@@ -723,39 +733,30 @@ ecflow_run() {
}
ecflow_kill() {
- echo "rt_utils.sh: Killing ECFLOW Workflow..."
- [[ ${ECFLOW_RUNNING:-false} == true ]] || return
- set +e
- ecflow_client --suspend "/${ECFLOW_SUITE}"
- ecflow_client --kill "/${ECFLOW_SUITE}"
- sleep 20
- ecflow_client --delete=force yes "/${ECFLOW_SUITE}"
- set -e
+ [[ ${ECFLOW_RUNNING:-false} == true ]] || return
+ echo "rt_utils.sh: Deleting ECFLOW suite: ${ECFLOW_SUITE}"
+ set +e
+ ecflow_client --suspend "/${ECFLOW_SUITE}"
+ ecflow_client --kill "/${ECFLOW_SUITE}"
+ sleep 20
+ ecflow_client --delete=force yes "/${ECFLOW_SUITE}"
+ set -e
}
ecflow_stop() {
- echo "rt_utils.sh: Stopping ECFLOW Workflow..."
[[ ${ECFLOW_RUNNING:-false} == true ]] || return
+ echo "rt_utils.sh: Checking whether to stop ecflow_server..."
set +e
SUITES=$( ecflow_client --get )
SUITES=$( grep "^suite" <<< "${SUITES}" )
- echo "SUITES=${SUITES}"
if [[ -z "${SUITES}" ]]; then
+ echo "rt_utils.sh: No other suites running, stopping ecflow_server"
ecflow_client --halt=yes
ecflow_client --check_pt
ecflow_client --terminate=yes
- fi
- if [[ ${STOP_ECFLOW_AT_END} == true ]]; then
- echo "rt_utils.sh: Stopping ECFLOW Server..."
- case ${MACHINE_ID} in
- wcoss2|acorn|hera|jet)
- #shellcheck disable=SC2029
- ssh "${ECF_HOST}" "bash -l -c \"${ECFLOW_STOP} -p ${ECF_PORT}\""
- ;;
- *)
- ${ECFLOW_STOP} -p "${ECF_PORT}"
- ;;
- esac
+ else
+ echo "rt_utils.sh: Active suites running, NOT stopping ecflow_server..."
+ echo "SUITES are: ${SUITES}"
fi
set -e
}
diff --git a/tests/test_changes.list b/tests/test_changes.list
index 41e638ce0e..cff472391f 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,4 +1,2 @@
-control_p8_atmlnd_sbs intel
-control_p8_atmlnd intel
-control_restart_p8_atmlnd intel
-control_p8_atmlnd_debug intel
+merra2_thompson intel
+atmaero_control_p8_rad_micro intel
From 223b9aebf5203091ec4a7921a48ec3df59a1950c Mon Sep 17 00:00:00 2001
From: Denise Worthen
Date: Tue, 7 May 2024 09:37:57 -0400
Subject: [PATCH 29/33] update inputdata for Bu angle fix; re-enable cpld C48
warmstart test (#2235)
* UFSWM - update input data directory to fix CICE grid files for incorrect Bu angle, update C48 coupled warmstart files and remove 4-deg ocean files
---
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 169 +++-
.../OpnReqTests_regional_control_hera.log | 30 +-
tests/logs/RegressionTests_derecho.log | 584 ++++++--------
tests/logs/RegressionTests_gaea.log | 532 ++++++-------
tests/logs/RegressionTests_hera.log | 743 ++++++++++--------
tests/logs/RegressionTests_hercules.log | 706 ++++++++---------
tests/logs/RegressionTests_jet.log | 474 +++++------
tests/logs/RegressionTests_orion.log | 532 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 458 +++++------
tests/opnReqTest | 10 +-
tests/rt.conf | 66 +-
tests/rt.sh | 2 +-
tests/test_changes.list | 54 +-
15 files changed, 2304 insertions(+), 2106 deletions(-)
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 40b36bd83a..26b75780f3 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240430
+export BL_DATE=20240503
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 98af0db899..e829c13338 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed May 1 16:47:10 UTC 2024
+Mon May 6 03:31:26 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 273.804433
- 0: The maximum resident set size (KB) = 1253420
+ 0: The total amount of wall time = 272.641469
+ 0: The maximum resident set size (KB) = 1268416
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 960.167656
- 0: The maximum resident set size (KB) = 1231384
+ 0: The total amount of wall time = 939.651847
+ 0: The maximum resident set size (KB) = 1254768
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 247.343877
- 0: The maximum resident set size (KB) = 1232416
+ 0: The total amount of wall time = 241.788160
+ 0: The maximum resident set size (KB) = 1249176
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 245.896195
- 0: The maximum resident set size (KB) = 1231104
+ 0: The total amount of wall time = 244.812605
+ 0: The maximum resident set size (KB) = 1246164
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 251.053244
- 0: The maximum resident set size (KB) = 1228068
+ 0: The total amount of wall time = 242.401979
+ 0: The maximum resident set size (KB) = 1247912
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 253.154960
- 0: The maximum resident set size (KB) = 1233000
+ 0: The total amount of wall time = 245.916587
+ 0: The maximum resident set size (KB) = 1245720
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1433614/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.649383
- 0: The maximum resident set size (KB) = 1233424
+ 0: The total amount of wall time = 244.965128
+ 0: The maximum resident set size (KB) = 1242856
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 1 17:54:31 UTC 2024
-Elapsed time: 01h:07m:25s. Have a nice day!
+Mon May 6 04:33:54 UTC 2024
+Elapsed time: 01h:02m:28s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 24258447f8..a36694bc8d 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed May 1 15:19:59 UTC 2024
+Mon May 6 21:46:21 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,159 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1448.267808
- 0: The maximum resident set size (KB) = 1364020
+ 0: The total amount of wall time = 1337.937513
+ 0: The maximum resident set size (KB) = 1366960
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/rst_rst
+Checking test rst results ....
+ Comparing sfcf021.tile1.nc ............MISSING file
+ Comparing sfcf021.tile2.nc ............MISSING file
+ Comparing sfcf021.tile3.nc ............MISSING file
+ Comparing sfcf021.tile4.nc ............MISSING file
+ Comparing sfcf021.tile5.nc ............MISSING file
+ Comparing sfcf021.tile6.nc ............MISSING file
+ Comparing atmf021.tile1.nc ............MISSING file
+ Comparing atmf021.tile2.nc ............MISSING file
+ Comparing atmf021.tile3.nc ............MISSING file
+ Comparing atmf021.tile4.nc ............MISSING file
+ Comparing atmf021.tile5.nc ............MISSING file
+ Comparing atmf021.tile6.nc ............MISSING file
+ Comparing sfcf024.tile1.nc ............MISSING file
+ Comparing sfcf024.tile2.nc ............MISSING file
+ Comparing sfcf024.tile3.nc ............MISSING file
+ Comparing sfcf024.tile4.nc ............MISSING file
+ Comparing sfcf024.tile5.nc ............MISSING file
+ Comparing sfcf024.tile6.nc ............MISSING file
+ Comparing atmf024.tile1.nc ............MISSING file
+ Comparing atmf024.tile2.nc ............MISSING file
+ Comparing atmf024.tile3.nc ............MISSING file
+ Comparing atmf024.tile4.nc ............MISSING file
+ Comparing atmf024.tile5.nc ............MISSING file
+ Comparing atmf024.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.coupler.res ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file
+ Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file
+ Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file
+ Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file
+ Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file
+ Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file
+ Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file
+
+
+Test rst FAIL
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
+ Moving sfcf021.tile1.nc .........OK
+ Moving sfcf021.tile2.nc .........OK
+ Moving sfcf021.tile3.nc .........OK
+ Moving sfcf021.tile4.nc .........OK
+ Moving sfcf021.tile5.nc .........OK
+ Moving sfcf021.tile6.nc .........OK
+ Moving atmf021.tile1.nc .........OK
+ Moving atmf021.tile2.nc .........OK
+ Moving atmf021.tile3.nc .........OK
+ Moving atmf021.tile4.nc .........OK
+ Moving atmf021.tile5.nc .........OK
+ Moving atmf021.tile6.nc .........OK
+ Moving sfcf024.tile1.nc .........OK
+ Moving sfcf024.tile2.nc .........OK
+ Moving sfcf024.tile3.nc .........OK
+ Moving sfcf024.tile4.nc .........OK
+ Moving sfcf024.tile5.nc .........OK
+ Moving sfcf024.tile6.nc .........OK
+ Moving atmf024.tile1.nc .........OK
+ Moving atmf024.tile2.nc .........OK
+ Moving atmf024.tile3.nc .........OK
+ Moving atmf024.tile4.nc .........OK
+ Moving atmf024.tile5.nc .........OK
+ Moving atmf024.tile6.nc .........OK
+ Moving RESTART/20210323.060000.coupler.res .........OK
+ Moving RESTART/20210323.060000.fv_core.res.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
+ Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK
+ Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
+ Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
+ Moving RESTART/20210323.060000.MOM.res.nc .........OK
+ Moving RESTART/iced.2021-03-23-21600.nc .........OK
+ Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
+
+ 0: The total amount of wall time = 398.324973
+ 0: The maximum resident set size (KB) = 1344212
+
+Test std_base PASS
+
+FAILED TESTS:
+Test rst failed in check_result failed
+OPERATION REQUIREMENT TEST FAILED
+Tue May 7 00:38:15 UTC 2024
+Elapsed time: 02h:51m:56s. Have a nice day!
+Tue May 7 01:53:20 UTC 2024
+Start Operation Requirement Test
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +280,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 444.246604
- 0: The maximum resident set size (KB) = 1359328
+ 0: The total amount of wall time = 405.576010
+ 0: The maximum resident set size (KB) = 1340024
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2945403/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +350,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 448.797587
- 0: The maximum resident set size (KB) = 1359444
+ 0: The total amount of wall time = 395.446701
+ 0: The maximum resident set size (KB) = 1344300
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 1 16:30:01 UTC 2024
-Elapsed time: 01h:10m:03s. Have a nice day!
+Tue May 7 02:25:02 UTC 2024
+Elapsed time: 00h:31m:43s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 653742ca0c..126227365f 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Wed May 1 12:44:33 UTC 2024
+Mon May 6 13:15:23 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving dynf000.nc .........OK
@@ -15,14 +15,14 @@ Moving baseline bit_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 1265.539423
- 0: The maximum resident set size (KB) = 593464
+ 0: The total amount of wall time = 1289.474304
+ 0: The maximum resident set size (KB) = 591012
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -33,14 +33,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2156.871537
- 0: The maximum resident set size (KB) = 548144
+ 0: The total amount of wall time = 2173.814168
+ 0: The maximum resident set size (KB) = 555696
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -52,14 +52,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2145.775444
- 0: The maximum resident set size (KB) = 556196
+ 0: The total amount of wall time = 2138.683822
+ 0: The maximum resident set size (KB) = 555504
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3929078/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -70,11 +70,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2148.252094
- 0: The maximum resident set size (KB) = 561788
+ 0: The total amount of wall time = 2194.552952
+ 0: The maximum resident set size (KB) = 553188
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 1 15:05:29 UTC 2024
-Elapsed time: 02h:20m:57s. Have a nice day!
+Mon May 6 15:40:27 UTC 2024
+Elapsed time: 02h:25m:06s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 5e21b08bec..a0b92401cb 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-521f9348ebc590effdc0b5054b94946e209679d4
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,335 +35,271 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_24021
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_78724
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:16, 19:14] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:36, 04:51](3073 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:17, 20:26] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:59, 13:43](1692 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:06, 14:58](1825 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:59, 07:03](959 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:59, 15:42](1662 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:18, 09:05] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:40, 21:19](1695 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:15, 19:15] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [12:33, 05:36](3093 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:50, 05:36](3093 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [15:43, 03:15](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:40, 05:35](3123 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:06, 03:15](3176 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:34, 05:30](3091 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:29, 04:36](3387 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:48, 05:35](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [34:45, 08:44](3638 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:02, 05:47](3613 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:16, 09:44](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:29, 06:48](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:17](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:14, 18:33] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 04:09](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:43, 04:14](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:14, 09:06] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [09:48, 07:37](3155 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:14, 08:33] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:29, 05:16](1703 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:15, 14:15] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:10, 04:12](1726 MB)
-
-PASS -- COMPILE 's2s_intel' [16:15, 14:11] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:13, 06:37](2668 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:16, 22:51] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:54, 05:28](3103 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:19, 19:18] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:57, 14:14](1705 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:07](1018 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 15:59](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:34] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:48, 22:58](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:18, 12:32] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:35, 03:23](672 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:05, 02:22](1563 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:16, 02:25](1574 MB)
-PASS -- TEST 'control_latlon_intel' [07:01, 02:24](1576 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 02:24](1569 MB)
-PASS -- TEST 'control_c48_intel' [15:10, 06:11](1621 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:42, 05:15](739 MB)
-PASS -- TEST 'control_c192_intel' [12:43, 08:38](1684 MB)
-PASS -- TEST 'control_c384_intel' [13:35, 08:49](2006 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:19, 07:15](1201 MB)
-PASS -- TEST 'control_stochy_intel' [03:34, 01:26](625 MB)
-PASS -- TEST 'control_stochy_restart_intel' [08:40, 00:52](443 MB)
-PASS -- TEST 'control_lndp_intel' [12:31, 01:20](623 MB)
-PASS -- TEST 'control_iovr4_intel' [13:41, 02:04](620 MB)
-PASS -- TEST 'control_iovr5_intel' [12:40, 02:06](625 MB)
-PASS -- TEST 'control_p8_intel' [13:30, 02:28](1604 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 02:28](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:22, 02:26](1601 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:34, 01:24](804 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:27, 02:26](1584 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:21](806 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:23, 02:33](1601 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:07, 04:23](1598 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [12:46, 03:16](1654 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:36, 02:30](1608 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:29, 02:46](1612 MB)
-PASS -- TEST 'regional_control_intel' [06:02, 04:27](632 MB)
-PASS -- TEST 'regional_restart_intel' [03:57, 02:29](798 MB)
-PASS -- TEST 'regional_decomp_intel' [06:57, 04:44](629 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:56, 04:25](1158 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:27](629 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 04:29](631 MB)
-PASS -- TEST 'regional_wofs_intel' [07:04, 05:36](1609 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:18, 11:01] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:06, 06:08](1006 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 03:40](1197 MB)
-PASS -- TEST 'rap_decomp_intel' [09:11, 06:24](1008 MB)
-PASS -- TEST 'rap_restart_intel' [05:19, 03:14](884 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:14, 06:05](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:12, 06:23](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:33](879 MB)
-PASS -- TEST 'hrrr_control_intel' [06:12, 03:13](1000 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:12, 03:15](999 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [20:26, 02:47](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:44](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:06, 05:56](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:48, 07:21](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:06](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [16:19, 10:04] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:00, 05:50](694 MB)
-PASS -- TEST 'control_ras_intel' [04:27, 02:51](659 MB)
-
-PASS -- COMPILE 'wam_intel' [15:18, 09:27] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:30, 01:53](381 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:20, 12:31] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:50, 02:20](1603 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:58, 04:15](625 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [15:18, 08:22] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:30](1600 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:19, 02:29](1597 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:39, 02:52](797 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:31](797 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:08, 03:59](840 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:36, 02:40](808 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:21, 02:37](1655 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:58, 02:37](1628 MB)
-PASS -- TEST 'regional_debug_intel' [16:58, 15:44](661 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:35, 04:41](1179 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:31](1175 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 04:44](1180 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 04:38](1181 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:38](1178 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:20, 04:55](1264 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:33, 04:41](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 04:48](1181 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:35, 04:38](1180 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:33, 04:36](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:30](1177 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:37](1181 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:35](1180 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:31, 04:38](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:25](1184 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:36, 04:35](1178 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 07:55](1183 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:19, 05:12] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:29, 04:46](420 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 09:31] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:46, 03:25](1060 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:07](887 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:44](884 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:53](881 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:57, 03:51](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:31](775 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:18, 11:34] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:34, 01:50](1084 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:55](1085 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:48, 01:07](976 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:18, 09:40] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:06, 03:38](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 05:40] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:32, 04:38](1061 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:22](1057 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:49, 13:17](1136 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:39, 13:21](821 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 13:19](1201 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:16, 05:29] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:32, 04:36](1083 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:19, 15:33] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:39, 04:28](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:14, 04:59](1068 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:48, 06:19](779 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_regional_atm_wav_intel' [, ]( MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:43, 11:55](814 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:38](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:28, 05:40](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:04, 02:18](391 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:13](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:01, 03:15](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:00](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:22, 03:44](587 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](427 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:20, 03:18](788 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [15:19, 06:51] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 11:57](614 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [27:20, 19:19] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:01](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:36, 07:10](696 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [24:20, 16:27] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:44, 05:12](676 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [21:21, 13:50] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:35, 05:29](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:42, 05:30](737 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:27, 16:09](896 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:20, 07:36] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:28](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:30](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:23, 02:20](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:22](642 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:32, 02:24](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:29](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:21](640 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:51, 05:38](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:32, 05:35](674 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:31](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:44, 03:52](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:39, 03:52](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [11:18, 04:53] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:01](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:18, 07:35] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:30, 02:28](750 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:18] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 01:06](311 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:01](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:41](453 MB)
-
-PASS -- COMPILE 'atml_intel' [13:20, 12:49] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:42, 06:11](1639 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 05:49](1632 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:16](850 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [08:18, 07:23] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:25, 05:28](1667 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:21, 12:37] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:32](1639 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:19, 11:01] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:55, 03:35](2950 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:12](3007 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:10, 04:18](3012 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:18, 06:11] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [25:21, 21:49](4529 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [28:39, 19:47] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:42, 04:55](3074 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:39, 21:09] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:13, 13:45](1689 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:07](1827 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:37, 07:12](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:00, 15:49](1656 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:40, 09:33] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [19:48, 21:23](1708 MB)
+
+PASS -- COMPILE 's2swa_intel' [28:43, 19:34] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:47, 05:38](3091 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:46, 05:35](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:19](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [14:57, 05:36](3128 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:19](3180 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [05:37, 05:32](3090 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:37, 04:36](3390 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:56, 05:36](3104 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 08:46](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 06:01](3614 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 09:48](4345 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:22, 07:13](4651 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 05:16](3069 MB)
+
+PASS -- COMPILE 's2sw_intel' [27:43, 19:02] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [10:50, 04:11](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:03, 04:16](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [18:36, 09:30] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [21:06, 07:44](3148 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [17:38, 08:48] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [25:42, 05:15](1707 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [23:39, 14:36] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:16](1728 MB)
+
+PASS -- COMPILE 's2s_intel' [23:39, 14:33] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [28:28, 06:42](2666 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [24:30, 02:00](2683 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [05:13, 01:08](2123 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [32:44, 23:13] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 05:31](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:34, 19:46] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:42, 14:11](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 07:19](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:49, 16:03](1672 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [35:33, 08:45] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:38, 22:54](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [39:29, 12:35] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [05:26, 03:24](672 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:26](1563 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:16, 02:28](1578 MB)
+PASS -- TEST 'control_latlon_intel' [05:02, 02:23](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 02:24](1574 MB)
+PASS -- TEST 'control_c48_intel' [13:13, 06:13](1618 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 05:15](735 MB)
+PASS -- TEST 'control_c192_intel' [13:41, 08:42](1687 MB)
+PASS -- TEST 'control_c384_intel' [15:38, 09:02](2006 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:59, 07:25](1208 MB)
+PASS -- TEST 'control_stochy_intel' [03:45, 01:26](630 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:53](437 MB)
+PASS -- TEST 'control_lndp_intel' [02:32, 01:23](625 MB)
+PASS -- TEST 'control_iovr4_intel' [03:49, 02:07](622 MB)
+PASS -- TEST 'control_iovr5_intel' [03:50, 02:05](625 MB)
+PASS -- TEST 'control_p8_intel' [06:14, 02:28](1595 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 02:28](1595 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:28](1603 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:24, 01:30](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:22, 02:28](1593 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:28](804 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:11, 02:33](1600 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:45, 04:30](1593 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 03:17](1653 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:05, 02:31](1606 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:43, 02:48](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:53, 04:35](631 MB)
+PASS -- TEST 'regional_restart_intel' [06:00, 02:30](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:47, 04:52](630 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:03, 04:36](1162 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:06, 04:36](625 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:36](632 MB)
+PASS -- TEST 'regional_wofs_intel' [08:01, 05:56](1599 MB)
+
+PASS -- COMPILE 'rrfs_intel' [32:29, 11:13] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:07, 06:06](1005 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:47, 03:44](1195 MB)
+PASS -- TEST 'rap_decomp_intel' [09:18, 06:23](1005 MB)
+PASS -- TEST 'rap_restart_intel' [05:18, 03:22](878 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:18, 06:05](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:13, 06:28](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 04:34](881 MB)
+PASS -- TEST 'hrrr_control_intel' [05:08, 03:12](1002 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:20](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 02:47](1086 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:45](833 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:52, 06:01](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:31, 07:24](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 07:07](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [31:33, 10:17] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:59, 05:56](695 MB)
+PASS -- TEST 'control_ras_intel' [04:37, 02:57](655 MB)
+
+PASS -- COMPILE 'wam_intel' [27:26, 09:35] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:31, 01:56](385 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [29:34, 12:35] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:21, 02:24](1604 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:46, 04:18](626 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [25:26, 08:32] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:04, 02:31](1593 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:05, 02:27](1594 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:14, 02:55](800 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:15, 02:34](800 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:00, 03:55](840 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:14, 02:35](811 MB)
+PASS -- TEST 'control_diag_debug_intel' [09:08, 02:35](1667 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:01, 02:38](1623 MB)
+PASS -- TEST 'regional_debug_intel' [19:02, 16:05](664 MB)
+PASS -- TEST 'rap_control_debug_intel' [08:35, 04:39](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:30, 04:36](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 04:37](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 04:38](1180 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 04:42](1181 MB)
+PASS -- TEST 'rap_diag_debug_intel' [10:06, 04:53](1268 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 04:46](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 04:50](1185 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:43, 04:38](1185 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:40, 04:40](1182 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:39, 04:31](1178 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 04:44](1183 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 07:32](1181 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:37, 04:34](1177 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:23](1185 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:44, 04:43](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:01, 07:54](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [20:30, 05:21] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:25, 04:40](425 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [22:34, 09:43] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 03:44](1062 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:08](885 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:47](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:56, 02:54](883 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:32](780 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 11:34] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:29, 01:53](1087 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:42, 00:58](1087 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:31, 01:07](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 09:37] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 03:38](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 05:43] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 04:29](1057 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:25](1056 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:54, 13:17](1136 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 13:25](819 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:50, 13:18](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 05:22] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:36](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [18:18, 15:43] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:29, 04:32](718 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:04](1067 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 06:26](777 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:53](795 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 12:03](812 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 04:40](475 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:46, 05:45](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:21](391 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:47, 06:15](458 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:19](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:26, 03:05](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 03:47](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:16](426 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:17, 03:23](792 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [21:23, 07:08] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:07](613 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [32:21, 19:19] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:03](626 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:51, 07:10](691 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [27:20, 16:31] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:17](676 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [25:24, 14:04] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:34](760 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 05:35](741 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:20, 16:12](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:13, 07:44] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:30](747 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:37, 01:34](750 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:22](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:37, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 02:23](648 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:36, 02:29](748 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:37, 02:29](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:22](643 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](691 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:34, 05:41](675 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:29](748 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 03:52](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 03:57](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 05:02] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:33, 05:03](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:19, 07:45] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:30](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 02:19] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:43, 01:08](311 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:04](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:44](451 MB)
+
+PASS -- COMPILE 'atml_intel' [17:13, 12:54] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:00, 06:02](1641 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:46, 06:17](1635 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 03:16](851 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [10:19, 07:33] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 05:29](1665 MB)
+
+PASS -- COMPILE 'atmw_intel' [16:20, 12:40] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:35, 01:33](1637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:13, 11:05] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:35, 03:36](2950 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:43, 04:13](3000 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 04:19](3010 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [09:13, 06:12] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [26:24, 22:12](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240430 21:59:35
-Ending Date/Time: 20240430 23:38:01
-Total Time: 01h:39m:15s
+Starting Date/Time: 20240506 14:49:48
+Ending Date/Time: 20240506 19:49:44
+Total Time: 05h:00m:44s
Compiles Completed: 38/38
-Tests Completed: 172/173
-Failed Tests:
-* TEST hafs_regional_atm_wav_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2221/tests/logs/log_derecho/run_hafs_regional_atm_wav_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-521f9348ebc590effdc0b5054b94946e209679d4
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_43701
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'hafsw_intel' [16:15, 15:49] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:12, 10:53](799 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240501 07:00:20
-Ending Date/Time: 20240501 07:31:08
-Total Time: 00h:30m:58s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 175/175
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 8384cf2789..5c860d155e 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-521f9348ebc590effdc0b5054b94946e209679d4
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,276 +35,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_5026
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_241906
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:14, 18:32] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:03, 07:31](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:14, 22:51] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:41, 13:59](1685 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:42, 14:15](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 07:08](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:04, 15:03](1668 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:20] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:47, 23:42](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [19:14, 18:30] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [10:08, 07:49](3096 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:11, 07:56](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:51](3153 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:08, 07:58](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:28, 04:57](3174 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:03, 07:14](3413 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:03, 07:55](3096 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 07:21](3019 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:09, 07:58](3097 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:26](3266 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:36](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 12:57](4036 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:53, 09:05](4342 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:55, 07:40](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [16:12, 15:58] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 04:49](1685 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:54, 05:17](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:15] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:30, 10:28](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [11:12, 11:02] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:57](1700 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:12, 15:20] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:51, 05:09](1725 MB)
-
-PASS -- COMPILE 's2s_intel' [15:12, 15:05] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [07:58, 06:53](2663 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [22:14, 21:38] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:32, 07:42](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:34] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 14:53](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:38, 07:23](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:40, 17:11](1682 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 14:39] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:35, 26:23](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:33, 03:41](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 03:04](1568 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:23, 03:08](1580 MB)
-PASS -- TEST 'control_latlon_intel' [04:07, 03:01](1570 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 03:03](1568 MB)
-PASS -- TEST 'control_c48_intel' [08:42, 06:35](1601 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:01, 05:39](722 MB)
-PASS -- TEST 'control_c192_intel' [11:13, 09:52](1683 MB)
-PASS -- TEST 'control_c384_intel' [19:28, 18:11](1984 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:56, 14:14](1186 MB)
-PASS -- TEST 'control_stochy_intel' [03:32, 02:14](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:01](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:33, 02:20](628 MB)
-PASS -- TEST 'control_iovr4_intel' [03:37, 02:50](623 MB)
-PASS -- TEST 'control_iovr5_intel' [03:44, 02:56](623 MB)
-PASS -- TEST 'control_p8_intel' [05:42, 03:42](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 03:33](1608 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:58, 03:25](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:10, 01:51](790 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:16](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:14, 02:04](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:00, 03:28](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1684 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:03, 05:19](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:11](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:23](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:29, 03:40](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:14, 04:56](615 MB)
-PASS -- TEST 'regional_restart_intel' [04:47, 03:21](789 MB)
-PASS -- TEST 'regional_decomp_intel' [06:09, 05:00](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:06, 03:04](765 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:11, 04:38](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:20, 04:40](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:07, 04:39](615 MB)
-PASS -- TEST 'regional_wofs_intel' [08:07, 06:11](1590 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:15, 14:56] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:22, 06:38](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:08, 03:56](1184 MB)
-PASS -- TEST 'rap_decomp_intel' [08:23, 06:59](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:02, 06:02](1097 MB)
-PASS -- TEST 'rap_restart_intel' [05:23, 03:39](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:23, 06:55](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:42, 07:15](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:01, 05:22](879 MB)
-PASS -- TEST 'hrrr_control_intel' [05:14, 03:43](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:14, 03:48](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:13, 03:04](1081 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:47, 01:55](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:56](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:43, 08:05](1967 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:50, 07:42](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:16, 14:35] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:44, 06:35](696 MB)
-PASS -- TEST 'control_ras_intel' [05:33, 03:24](655 MB)
-
-PASS -- COMPILE 'wam_intel' [15:12, 14:18]
-PASS -- TEST 'control_wam_intel' [03:30, 02:08](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:13, 15:44] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:08, 03:12](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:41, 04:41](614 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:14, 11:56] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:53](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:35, 02:56](1589 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:45, 03:08](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:59, 02:53](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:40](824 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:43, 02:52](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:46, 03:35](1640 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:47, 03:50](1618 MB)
-PASS -- TEST 'regional_debug_intel' [17:50, 16:30](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:36, 05:36](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:36, 05:24](1164 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 05:25](1166 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:32](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:23](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:05, 05:18](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:35, 05:18](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:06](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:03](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:32, 05:00](1166 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:54](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:32, 04:59](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:09, 07:51](1165 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:29, 04:55](1162 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:49](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:31, 05:00](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:06, 08:35](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:14, 08:44] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:30, 04:55](396 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:17, 12:55] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:46](1048 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 05:50](888 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 03:22](884 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:01, 05:16](945 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:47](937 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:27](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:02, 04:19](783 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:47](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:56] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:01, 02:02](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:08, 01:16](1074 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:07, 01:38](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 13:36] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:16, 04:23](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:13, 10:17] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:53](1047 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:37, 04:52](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:50, 14:10](1130 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:24](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:16](1109 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:42, 14:11](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:54] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:56](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:13, 17:32] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:22](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:35](1057 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:37, 07:48](754 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:52, 11:42](788 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:30](804 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 05:19](480 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:50](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:19, 02:56](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:35, 07:58](433 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 04:30](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:38](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:40](574 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:44](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:22, 04:04](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:16, 12:24] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:06, 12:57](586 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:15, 20:20] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:09, 07:49](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:04, 07:43](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:13, 19:52] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:08, 06:04](790 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:12, 17:06] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:59, 06:12](745 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 06:05](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:14, 20:04](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:22, 13:22] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:35](758 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:31](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:30](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:24](647 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 05:53](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:58, 06:02](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:36](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:35](2014 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:31, 04:36](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:50] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:24](744 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 12:42] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:58, 02:33](758 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 05:19] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:52, 01:54](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:48, 01:28](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:06, 01:02](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:14, 16:49] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:45, 08:02](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:41, 08:01](1632 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:40](837 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [14:15, 13:37] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 07:02](1651 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:15, 14:29] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:48](1648 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:13, 13:41] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [08:20, 06:38](2948 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:15, 07:09](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:07, 07:15](3020 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:12, 11:03] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [21:29, 19:17](4477 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:20] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 08:57](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 25:24] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:34, 13:49](1685 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:13, 14:34](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [22:49, 07:07](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:10](1669 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:11, 14:48] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 24:04](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [55:13, 54:16] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [12:01, 07:51](3097 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:50](3096 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:48, 05:13](3152 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 08:06](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 05:22](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 06:35](3407 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:42, 07:44](3097 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 07:06](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:00, 07:56](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:43, 10:54](3267 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 07:19](3600 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:03, 13:10](4035 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:13, 09:03](4340 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:38, 07:58](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:11, 19:43] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:28](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:05, 05:44](1730 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:11, 14:21] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:45, 10:34](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:11, 13:41] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:08](1701 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:18] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 05:30](1725 MB)
+
+PASS -- COMPILE 's2s_intel' [17:11, 16:30] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:26, 06:55](2663 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:35, 02:10](2685 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:10, 01:04](2116 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:26] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 08:01](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 24:50] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 14:50](1702 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:37](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 17:09](1682 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:11] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:27, 26:59](1718 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:13, 17:11] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [10:18, 03:40](674 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 03:01](1568 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:52, 03:29](1580 MB)
+PASS -- TEST 'control_latlon_intel' [13:43, 04:03](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:51, 04:01](1569 MB)
+PASS -- TEST 'control_c48_intel' [22:15, 06:36](1604 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:27, 05:39](722 MB)
+PASS -- TEST 'control_c192_intel' [33:06, 09:44](1682 MB)
+PASS -- TEST 'control_c384_intel' [41:19, 18:03](1985 MB)
+PASS -- TEST 'control_c384gdas_intel' [30:09, 14:07](1187 MB)
+PASS -- TEST 'control_stochy_intel' [05:42, 01:53](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [18:32, 01:02](430 MB)
+PASS -- TEST 'control_lndp_intel' [07:52, 01:46](628 MB)
+PASS -- TEST 'control_iovr4_intel' [10:17, 02:34](623 MB)
+PASS -- TEST 'control_iovr5_intel' [10:17, 02:28](623 MB)
+PASS -- TEST 'control_p8_intel' [27:16, 03:37](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [26:35, 03:27](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [26:17, 03:25](1609 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:21, 02:12](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [26:05, 03:31](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [06:15, 02:16](793 MB)
+PASS -- TEST 'control_decomp_p8_intel' [21:08, 03:20](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:30, 02:38](1679 MB)
+PASS -- TEST 'control_p8_lndp_intel' [27:58, 05:17](1606 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [27:20, 04:12](1657 MB)
+PASS -- TEST 'control_p8_mynn_intel' [14:15, 03:49](1615 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:14, 03:56](1604 MB)
+PASS -- TEST 'regional_control_intel' [06:25, 04:45](615 MB)
+PASS -- TEST 'regional_restart_intel' [03:36, 02:35](789 MB)
+PASS -- TEST 'regional_decomp_intel' [05:46, 04:57](615 MB)
+PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](767 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:44, 04:43](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:55, 04:49](615 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:47, 04:58](615 MB)
+PASS -- TEST 'regional_wofs_intel' [19:46, 06:16](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:13, 15:21] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [20:10, 06:52](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:16, 04:00](1183 MB)
+PASS -- TEST 'rap_decomp_intel' [21:16, 07:20](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [20:12, 06:11](1093 MB)
+PASS -- TEST 'rap_restart_intel' [06:14, 03:36](880 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [20:21, 06:55](1007 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 07:23](1005 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:04](879 MB)
+PASS -- TEST 'hrrr_control_intel' [15:12, 03:56](1005 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [16:03, 04:06](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [14:01, 03:03](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:36, 02:24](837 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [18:15, 06:41](1003 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [16:40, 08:14](1969 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:35, 08:00](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [16:12, 15:30] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [10:41, 06:40](695 MB)
+PASS -- TEST 'control_ras_intel' [06:33, 03:47](658 MB)
+
+PASS -- COMPILE 'wam_intel' [16:12, 15:13]
+PASS -- TEST 'control_wam_intel' [05:26, 02:36](369 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [18:11, 17:14] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [07:16, 03:51](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:51, 04:40](615 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:37] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:03, 03:01](1586 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:56](1589 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:23](784 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:52](788 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:15](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:29, 02:54](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:54, 03:01](1640 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:49, 03:18](1618 MB)
+PASS -- TEST 'regional_debug_intel' [17:49, 16:25](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:33, 05:05](1166 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:31, 05:02](1165 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:13](1167 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:05](1167 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 05:02](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:17](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:14](1166 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:34, 05:08](1167 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:12](1168 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:10](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:54](1166 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 05:06](1164 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:49](1169 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:55](1163 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:34, 06:00](1168 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:08](1166 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:01, 08:39](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:10, 08:47] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:36, 04:57](397 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 15:57] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 03:54](1053 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:53](889 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:36](885 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:49, 05:13](941 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:46](939 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:29](887 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:56, 04:07](784 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:29, 01:51](764 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 13:56] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:59, 02:19](1095 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:48, 01:04](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:37, 01:32](974 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:16] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:22](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 09:14] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 04:54](1048 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:52](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:47, 14:06](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:54, 14:03](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:05](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 14:00](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:34] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:42, 05:07](1067 MB)
+
+PASS -- COMPILE 'hafsw_intel' [16:11, 15:46] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:15](709 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:31](1059 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:33](752 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:14, 11:40](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:27, 12:53](803 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 05:18](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:24, 06:43](495 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [07:07, 02:57](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:01, 08:17](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 03:55](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:10, 03:30](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:41](568 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:42, 01:43](402 MB)
+PASS -- TEST 'gnv1_nested_intel' [08:17, 04:10](765 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [12:11, 11:21] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:02, 12:59](587 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:11, 19:26] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 07:42](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 07:50](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:20] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:38, 05:58](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:11, 14:39] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [10:29, 06:08](749 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 06:05](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:06, 20:11](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:16] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:28, 02:36](745 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](747 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:30](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:26](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 06:05](693 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 06:01](676 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:34](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:58, 04:35](2013 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:52, 04:38](2013 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 07:00] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:23](743 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:10] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:35](745 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 03:17] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:12, 01:56](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:44, 02:39](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:44, 00:56](456 MB)
+
+PASS -- COMPILE 'atml_intel' [15:11, 14:10] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:50, 07:56](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:54, 07:56](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:41, 03:35](837 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [10:11, 09:11] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:37](1648 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:11, 13:03] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:11, 02:31](1650 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 12:21] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:20](2946 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:29](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:26](3020 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:46] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [21:58, 18:30](4483 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 02:23:40
-Ending Date/Time: 20240501 03:51:13
-Total Time: 01h:29m:01s
+Starting Date/Time: 20240506 10:57:09
+Ending Date/Time: 20240506 12:53:05
+Total Time: 01h:56m:51s
Compiles Completed: 38/38
-Tests Completed: 180/180
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index bc07a8a85e..4b8a404edc 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-521f9348ebc590effdc0b5054b94946e209679d4
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
@@ -24,368 +24,425 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1718044
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1490583
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:41] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:32](3187 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:13, 17:29] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:58, 17:04](1748 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:08, 18:17](2004 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:03](1131 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:14](1652 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:48] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:41](1664 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:12, 13:07] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:19, 05:53](3226 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:28, 05:50](3226 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:19, 03:25](3254 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:18, 05:49](3243 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:17, 03:26](3284 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:14, 05:32](3551 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [07:14, 05:51](3215 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:42](3077 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:51](3224 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:11, 10:09](3350 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:10](3621 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:51, 09:37](4166 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:00, 05:58](4349 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:18, 05:30](3182 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:11, 12:41] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:13, 04:44](1744 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:20, 04:21](1788 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:48] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:13, 08:25](3254 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:45] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:02, 05:50](1726 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:37] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:19](1788 MB)
-
-PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [10:41, 09:23](2836 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:01] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:16, 05:32](3230 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:51] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 17:13](1772 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:11, 08:04](1174 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:01, 19:46](1677 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:27] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 25:06](1725 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:12] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [06:22, 03:25](701 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:51, 02:58](1607 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:53, 03:03](1609 MB)
-PASS -- TEST 'control_latlon_intel' [06:48, 02:54](1596 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:55, 02:58](1597 MB)
-PASS -- TEST 'control_c48_intel' [10:50, 07:38](1751 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:27, 06:24](871 MB)
-PASS -- TEST 'control_c192_intel' [14:11, 10:31](1747 MB)
-PASS -- TEST 'control_c384_intel' [14:13, 10:33](2013 MB)
-PASS -- TEST 'control_c384gdas_intel' [13:40, 07:58](1401 MB)
-PASS -- TEST 'control_stochy_intel' [04:22, 01:38](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:05](506 MB)
-PASS -- TEST 'control_lndp_intel' [03:21, 01:34](659 MB)
-PASS -- TEST 'control_iovr4_intel' [04:23, 02:28](652 MB)
-PASS -- TEST 'control_iovr5_intel' [03:22, 02:29](654 MB)
-PASS -- TEST 'control_p8_intel' [03:58, 03:00](1635 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:59, 02:57](1633 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:50, 02:51](1629 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:45, 01:36](895 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:48, 02:55](1621 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:36](937 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:48, 03:00](1624 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:47](1714 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:18](1628 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:49, 03:55](1688 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:54, 02:57](1638 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:51, 03:18](1650 MB)
-PASS -- TEST 'regional_control_intel' [06:40, 05:10](847 MB)
-PASS -- TEST 'regional_restart_intel' [03:41, 02:43](1019 MB)
-PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](852 MB)
-PASS -- TEST 'regional_2threads_intel' [04:39, 03:14](843 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:42, 05:09](1357 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:12](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 05:07](849 MB)
-PASS -- TEST 'regional_wofs_intel' [07:38, 06:41](1912 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:14, 10:35] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:40, 07:41](1106 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:08](1286 MB)
-PASS -- TEST 'rap_decomp_intel' [08:36, 08:07](1046 MB)
-PASS -- TEST 'rap_2threads_intel' [08:36, 07:15](1193 MB)
-PASS -- TEST 'rap_restart_intel' [04:41, 04:01](1109 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:42](1107 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:38, 08:09](1037 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 05:50](1136 MB)
-PASS -- TEST 'hrrr_control_intel' [04:38, 03:59](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:32, 04:07](1032 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:33, 03:41](1110 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:09](1011 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:40](1107 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:12](2001 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2060 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:11, 10:43] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:37, 06:00](749 MB)
-PASS -- TEST 'control_ras_intel' [04:20, 03:16](751 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 03:47]
-PASS -- TEST 'control_csawmg_gnu' [09:41, 08:25](549 MB)
-
-PASS -- COMPILE 'wam_intel' [10:12, 09:54] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [02:24, 02:05](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:37] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:56, 02:39](1639 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](832 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:16] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:34](1614 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:50, 02:32](1624 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:01](818 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](823 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:39, 04:08](864 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:22, 02:43](828 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:48, 02:44](1680 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:45, 02:48](1654 MB)
-PASS -- TEST 'regional_debug_intel' [18:39, 17:19](848 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:23, 04:51](1214 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:46](1212 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:54](1212 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:49](1210 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:21, 04:50](1208 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:33, 05:05](1294 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:54](1215 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:52](1210 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:22, 04:54](1210 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:54](1206 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:41](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1213 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:53](1205 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 04:53](1202 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 05:56](1216 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:55](1213 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:19](1211 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39]
-PASS -- TEST 'control_csawmg_debug_gnu' [05:42, 02:12](530 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:11] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [08:23, 05:03](522 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 10:11] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:59, 03:51](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:36, 06:24](1030 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:29, 03:23](993 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:33, 06:03](1090 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:37, 03:07](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](923 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 04:50](1034 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:24, 01:51](940 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:50, 02:11](1174 MB)
-PASS -- TEST 'conus13km_2threads_intel' [05:41, 00:55](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:19](1106 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:05] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:09](993 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:28] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:48](1095 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1086 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:51, 14:16](1235 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 13:56](934 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:04](1158 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:23](1299 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:16] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:52](1124 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:11, 11:39] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:16, 04:52](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:30, 05:47](1114 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:19, 06:49](810 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:19](863 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:23, 15:13](877 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:27](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:34](521 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:40](375 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:36, 07:10](476 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:38](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:49, 03:29](534 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 04:04](588 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:10](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:43, 04:05](801 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:18] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:49, 12:43](573 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:11, 12:09] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:56, 08:41](634 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:05, 08:45](749 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:10] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:01, 06:21](704 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:11, 11:47] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [09:17, 06:21](832 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:23](819 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:02](1217 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:46](1174 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1099 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1019 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:42](1014 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:42](1014 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1151 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:41](1153 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:36](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:12](1062 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:16, 06:31](1047 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:41](1152 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:49](2445 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:49](2501 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:10](1069 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:53]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1167 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:05] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:46](256 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:52](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](325 MB)
-
-PASS -- COMPILE 'atml_intel' [12:12, 11:59] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:06](1621 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:00, 04:08](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:11](904 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:11, 04:17] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:57, 05:40](1631 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:12, 10:40] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:44](1664 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:12, 10:57] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:01](2959 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:50](3097 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:56](3111 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:31] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [23:56, 20:56](4445 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:11, 03:56]
-PASS -- TEST 'control_c48_gnu' [12:43, 11:11](1544 MB)
-PASS -- TEST 'control_stochy_gnu' [04:23, 03:20](507 MB)
-PASS -- TEST 'control_ras_gnu' [06:22, 04:47](516 MB)
-PASS -- TEST 'control_p8_gnu' [06:59, 04:35](1265 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:35](1268 MB)
-PASS -- TEST 'control_flake_gnu' [11:23, 10:32](552 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [04:12, 03:39]
-PASS -- TEST 'rap_control_gnu' [12:32, 10:46](860 MB)
-PASS -- TEST 'rap_decomp_gnu' [13:33, 10:54](858 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:39, 09:45](948 MB)
-PASS -- TEST 'rap_restart_gnu' [06:40, 05:29](591 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:37, 10:44](858 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:37, 10:53](857 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:40, 07:59](586 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:37, 05:34](857 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:40](845 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:33, 04:59](936 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:33](857 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:54](571 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](664 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [12:45, 10:40](855 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:10, 03:47]
-PASS -- TEST 'control_diag_debug_gnu' [03:48, 01:40](1288 MB)
-PASS -- TEST 'regional_debug_gnu' [12:42, 10:02](567 MB)
-PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:37](871 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:22, 02:32](872 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:21, 02:37](875 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:35](880 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:32, 03:18](945 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](876 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:20, 02:38](872 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:33](868 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:32](503 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:44](499 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:38](1260 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:22, 02:32](874 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 02:47](880 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:36, 04:17](877 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:13] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:32](3185 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 17:18] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 17:05](1752 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2031 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:10](1122 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:20](1642 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:14] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:07, 22:36](1699 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:12, 13:10] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:48](3199 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 06:13](3195 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:35, 03:30](3255 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:56](3238 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:32](3254 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:19, 05:33](3559 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:45](3224 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:45](3059 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:35, 06:23](3228 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 10:12](3340 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:28](3619 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 10:08](4144 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 06:24](4369 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:24, 05:25](3168 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:12, 12:38] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:46](1744 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:12, 04:17](1787 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:49] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:05, 08:30](3250 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:30] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:58, 05:43](1759 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:58] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1794 MB)
+
+PASS -- COMPILE 's2s_intel' [12:12, 11:40] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:23](2831 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:35](2834 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:48, 01:25](2296 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:33](3199 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:24] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1786 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 08:06](1177 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:05, 19:44](1646 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:24] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:08](1709 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:14] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:25, 03:32](705 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:57](1604 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:56, 03:02](1606 MB)
+PASS -- TEST 'control_latlon_intel' [04:47, 02:55](1597 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:52, 03:01](1601 MB)
+PASS -- TEST 'control_c48_intel' [08:51, 07:41](1756 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:25](880 MB)
+PASS -- TEST 'control_c192_intel' [12:04, 10:41](1750 MB)
+PASS -- TEST 'control_c384_intel' [13:00, 10:44](2004 MB)
+PASS -- TEST 'control_c384gdas_intel' [11:55, 08:07](1398 MB)
+PASS -- TEST 'control_stochy_intel' [02:23, 01:42](665 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:01](500 MB)
+PASS -- TEST 'control_lndp_intel' [02:23, 01:36](660 MB)
+PASS -- TEST 'control_iovr4_intel' [03:33, 02:34](654 MB)
+PASS -- TEST 'control_iovr5_intel' [03:25, 02:33](655 MB)
+PASS -- TEST 'control_p8_intel' [04:00, 03:02](1635 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:05, 03:01](1603 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:56](1632 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:54, 01:36](889 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:56](1583 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:37](938 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:04](1614 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:57, 02:47](1715 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:58, 05:17](1626 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:01, 04:04](1689 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:59, 03:05](1639 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:56, 03:19](1628 MB)
+PASS -- TEST 'regional_control_intel' [06:41, 05:14](847 MB)
+PASS -- TEST 'regional_restart_intel' [03:42, 02:45](1018 MB)
+PASS -- TEST 'regional_decomp_intel' [06:42, 05:32](849 MB)
+PASS -- TEST 'regional_2threads_intel' [04:43, 03:16](842 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:38, 05:09](1360 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:10](854 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:14](848 MB)
+PASS -- TEST 'regional_wofs_intel' [07:44, 06:49](1912 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:13, 10:45] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:44, 07:47](1114 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:13](1296 MB)
+PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1035 MB)
+PASS -- TEST 'rap_2threads_intel' [08:36, 07:26](1185 MB)
+PASS -- TEST 'rap_restart_intel' [04:51, 04:03](1110 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:44](1111 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 08:08](1044 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 05:52](1126 MB)
+PASS -- TEST 'hrrr_control_intel' [04:40, 04:01](1035 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 04:07](1037 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:40](1104 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:10](1006 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:45, 07:37](1098 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:24](1984 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2070 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:12, 10:32] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:43, 05:59](755 MB)
+PASS -- TEST 'control_ras_intel' [04:23, 03:15](748 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:11, 03:36]
+PASS -- TEST 'control_csawmg_gnu' [09:44, 08:27](548 MB)
+
+PASS -- COMPILE 'wam_intel' [10:11, 10:08] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [02:26, 02:04](657 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:54] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:56, 02:37](1639 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:40, 04:41](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:48] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:36](1621 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:32](1617 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](822 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](868 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:23, 02:46](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:49, 02:39](1679 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1649 MB)
+PASS -- TEST 'regional_debug_intel' [18:40, 17:17](826 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:23, 04:55](1208 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:44](1208 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:45](1214 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:59](1212 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:53](1209 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:08](1291 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:59](1199 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1205 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:47](1208 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:50](1205 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:54](1212 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:55](1210 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:50](1207 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:53](1208 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:57](1205 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:27](1188 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:35]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:23](528 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:21] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:23, 05:14](517 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 04:17](1164 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:25](1058 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:23](984 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1081 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:09](966 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:36](943 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:51](1031 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:53](935 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:38] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1198 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1124 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:15](1118 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 04:09](991 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:55] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:51](1091 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:41](1081 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:55, 14:34](1233 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:27](930 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1159 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:34](1300 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:37] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:07](1132 MB)
+
+PASS -- COMPILE 'hafsw_intel' [12:15, 11:59] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:55](738 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 05:54](1125 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:22, 06:56](839 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:26](859 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:10](874 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:51, 05:32](501 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:47](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:44](375 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:09](481 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:42, 03:41](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:30](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:51, 04:03](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:13](407 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:40, 04:09](801 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:08] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:50, 12:47](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:12, 12:14] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:42](637 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 08:49](747 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 12:08] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:22](744 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:14, 11:22] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:23](835 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:26](825 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:10](1212 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:11, 06:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:40](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1092 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:33](1022 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:38](1021 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:34](1008 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:35](1147 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:41](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 02:38](1018 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:10](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:15, 06:16](1042 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:46](1150 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:53](2487 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:50](2511 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:56] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:20](1080 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:44]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:44](1152 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:04] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](263 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](328 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](327 MB)
+
+PASS -- COMPILE 'atml_intel' [13:11, 12:11] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:01, 04:15](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 04:08](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:18](902 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:20] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:54, 05:29](1627 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 11:39] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:42](1670 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:10, 11:13] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:02](3042 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 05:15](3067 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:56](3112 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:29] ( 885 warnings 6 remarks )
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'atm_gnu' [04:10, 03:44]
+PASS -- TEST 'control_c48_gnu' [11:43, 11:03](1543 MB)
+PASS -- TEST 'control_stochy_gnu' [04:23, 03:24](506 MB)
+PASS -- TEST 'control_ras_gnu' [05:20, 04:43](518 MB)
+PASS -- TEST 'control_p8_gnu' [05:58, 04:38](1264 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:31](1275 MB)
+PASS -- TEST 'control_flake_gnu' [11:22, 10:25](553 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:11, 03:49]
+PASS -- TEST 'rap_control_gnu' [11:32, 10:40](857 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:32, 10:45](860 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:39, 09:46](945 MB)
+PASS -- TEST 'rap_restart_gnu' [06:40, 05:33](585 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](858 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 10:59](861 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:41, 08:05](588 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:36, 05:38](858 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:37](842 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:11](937 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:35](861 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:52](569 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](665 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:36](855 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:44]
+PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:38](1290 MB)
+PASS -- TEST 'regional_debug_gnu' [11:41, 10:39](568 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:22, 02:39](869 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:20, 02:38](872 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:35](877 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:36](880 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:54](955 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](872 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:36](871 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:36](874 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:31](506 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](496 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:39](1261 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:35](872 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:48](875 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:15](880 MB)
PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52]
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:34]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:32](712 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:01](714 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](764 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:30](754 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:01](713 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:36, 07:00](557 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:24, 02:30](548 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:52, 03:08](886 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:41, 05:29](888 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:42, 01:46](578 MB)
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:38]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:25](717 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 05:02](713 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:33](767 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 04:31](756 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 05:00](716 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 06:58](559 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:32](550 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:56, 03:10](887 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:35](887 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB)
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:21]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:43](739 MB)
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:31]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](742 MB)
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:44]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:34](721 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 02:26](723 MB)
-PASS -- TEST 'conus13km_debug_gnu' [09:42, 08:32](899 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:46, 06:53](587 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:18](904 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:40, 07:05](960 MB)
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:45]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:27](721 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](721 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:54](900 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 06:48](589 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 06:56](905 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:43, 06:56](968 MB)
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:34]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:34](744 MB)
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:11, 04:13]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:33](745 MB)
-PASS -- COMPILE 's2swa_gnu' [15:11, 14:30]
+PASS -- COMPILE 's2swa_gnu' [15:12, 14:40]
-PASS -- COMPILE 's2s_gnu' [15:12, 14:28]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:13, 10:50](1358 MB)
+PASS -- COMPILE 's2s_gnu' [15:12, 14:37]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 06:42](1361 MB)
-PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:36]
+PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:46]
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:28]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:03, 21:58](1326 MB)
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:02, 24:35](1322 MB)
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:29]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:56, 18:03](1334 MB)
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:23]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:53, 12:56](1331 MB)
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:59]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:05](706 MB)
+PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:18]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 02:53](704 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 01:32:37
-Ending Date/Time: 20240501 03:05:09
-Total Time: 01h:32m:50s
+Starting Date/Time: 20240506 01:41:36
+Ending Date/Time: 20240506 04:12:23
+Total Time: 02h:31m:25s
Compiles Completed: 54/54
-Tests Completed: 240/240
+Tests Completed: 241/242
+Failed Tests:
+* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2235/ufs-weather-model/tests/logs/log_hera/run_regional_atmaq_debug_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF HERA REGRESSION TESTING LOG====
+====START OF HERA REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3365779
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-n) - RUN SINGLE TEST: regional_atmaq_debug
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:31] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [35:19, 31:06](4469 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240506 14:53:48
+Ending Date/Time: 20240506 16:24:37
+Total Time: 01h:30m:59s
+Compiles Completed: 1/1
+Tests Completed: 1/1
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index b7191797dd..064db3b3c4 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,7 +1,7 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-521f9348ebc590effdc0b5054b94946e209679d4
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,363 +35,365 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1563076
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1927015
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:12, 11:21] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:59, 07:35](1895 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:10] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:18, 13:25](1769 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:31, 14:08](2179 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:28, 06:45](1166 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:11, 15:02](1686 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 03:55] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:16, 20:22](1735 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:12, 10:56] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [14:01, 07:37](2063 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:10, 07:35](2101 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [11:03, 04:22](1955 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [13:57, 07:39](1993 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:07, 04:22](1736 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [16:02, 08:54](2507 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:59, 07:47](2056 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:08, 06:30](1910 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 07:40](2085 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [21:39, 15:35](2797 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:08, 05:42](2920 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:33, 08:56](3632 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:57, 06:08](3612 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:03, 04:58](2038 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:12, 10:10] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:48, 07:13](1767 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:56, 03:57](1820 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:12, 04:35] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [08:49, 06:51](2051 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:12, 04:12] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 04:42](1806 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:12, 07:42] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:04, 03:59](1812 MB)
-
-PASS -- COMPILE 's2s_intel' [11:12, 08:18] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:40, 07:22](2835 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [14:13, 11:55] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 07:17](2066 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 15:10] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:53, 13:54](1812 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:06, 06:52](1300 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:25](1734 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 03:23] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:50](1790 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:29] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [09:21, 02:50](714 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [14:44, 02:29](1605 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:50, 02:34](1625 MB)
-PASS -- TEST 'control_latlon_intel' [14:43, 02:29](1614 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 02:31](1601 MB)
-PASS -- TEST 'control_c48_intel' [14:46, 06:57](1746 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [13:26, 05:45](855 MB)
-PASS -- TEST 'control_c192_intel' [21:53, 08:59](1751 MB)
-PASS -- TEST 'control_c384_intel' [21:25, 09:31](2052 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:53, 07:10](1522 MB)
-PASS -- TEST 'control_stochy_intel' [08:20, 01:29](673 MB)
-PASS -- TEST 'control_stochy_restart_intel' [07:24, 00:53](548 MB)
-PASS -- TEST 'control_lndp_intel' [07:20, 01:26](673 MB)
-PASS -- TEST 'control_iovr4_intel' [14:22, 02:07](664 MB)
-PASS -- TEST 'control_iovr5_intel' [12:38, 02:05](659 MB)
-PASS -- TEST 'control_p8_intel' [12:51, 02:32](1638 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [08:48, 02:32](1649 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:50, 02:27](1654 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:43, 01:24](921 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:48, 02:31](1625 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:21](969 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:46, 02:40](1622 MB)
-PASS -- TEST 'control_2threads_p8_intel' [08:39, 02:20](1723 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:29, 04:22](1650 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:55, 03:24](1710 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:56, 02:31](1654 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:53, 02:50](1649 MB)
-PASS -- TEST 'regional_control_intel' [09:27, 04:31](955 MB)
-PASS -- TEST 'regional_restart_intel' [03:25, 02:30](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [09:35, 04:45](944 MB)
-PASS -- TEST 'regional_2threads_intel' [06:32, 02:53](918 MB)
-PASS -- TEST 'regional_noquilt_intel' [09:32, 04:19](1492 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [08:31, 04:33](957 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:24, 04:27](961 MB)
-PASS -- TEST 'regional_wofs_intel' [09:33, 05:42](2089 MB)
-
-PASS -- COMPILE 'rrfs_intel' [07:10, 06:51] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [10:48, 06:41](1203 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:46, 03:38](1440 MB)
-PASS -- TEST 'rap_decomp_intel' [09:34, 06:59](1168 MB)
-PASS -- TEST 'rap_2threads_intel' [09:33, 06:09](1360 MB)
-PASS -- TEST 'rap_restart_intel' [04:52, 03:26](1126 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:46, 06:31](1203 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:36, 06:54](1132 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:55](1179 MB)
-PASS -- TEST 'hrrr_control_intel' [04:48, 03:22](1071 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:40, 03:26](1038 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:03](1115 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:21, 01:49](1034 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:21](1207 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:35](2021 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:29](2182 MB)
-
-PASS -- COMPILE 'csawmg_intel' [07:10, 06:37] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:30, 05:18](812 MB)
-PASS -- TEST 'control_ras_intel' [03:18, 02:47](801 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 03:44]
-PASS -- TEST 'control_csawmg_gnu' [11:38, 06:39](811 MB)
-
-PASS -- COMPILE 'wam_intel' [07:10, 06:24]
-PASS -- TEST 'control_wam_intel' [02:23, 01:48](784 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:54] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:52, 02:17](1632 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:27, 04:09](961 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 03:37] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:09](1635 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:05](1642 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](839 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:12](835 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:34, 03:21](876 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:24, 02:15](834 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:39, 02:12](1697 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:32, 02:21](1661 MB)
-PASS -- TEST 'regional_debug_intel' [14:30, 14:08](904 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:17, 03:57](1219 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:18, 03:50](1212 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:18, 03:55](1219 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:17, 04:04](1224 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:26, 04:00](1225 MB)
-PASS -- TEST 'rap_diag_debug_intel' [04:33, 04:07](1303 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:17, 04:03](1220 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:05](1223 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:16, 03:59](1223 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:56](1224 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:53](1217 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:16, 03:56](1218 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:28](1213 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:59](1226 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:46](1225 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:18, 03:55](1224 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:52, 06:54](1220 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [08:11, 03:18]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:38, 01:46](792 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:10, 02:34] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:10, 06:28] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:14](1281 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1133 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:45, 02:58](1029 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:43, 05:12](1287 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:37, 02:38](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:44, 03:05](986 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:04, 04:15](1101 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:20, 01:37](959 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:34] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1310 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:29, 00:43](1209 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [05:26, 01:05](1156 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 06:30] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 03:43](1090 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:25] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 03:57](1102 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1092 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:34, 11:36](1332 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:41](1000 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:30, 06:38](1241 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:30, 11:27](1395 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 02:39] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 03:59](1162 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:10, 10:18] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](868 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:10](1271 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:08, 06:14](957 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 13:58](987 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:01](1008 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:18](610 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 06:50](619 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:46, 02:44](433 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:15, 07:34](546 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:42, 03:48](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 03:45](622 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 04:45](667 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:26, 01:22](451 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:10] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:43, 11:20](637 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:10, 09:57] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:54, 16:19](770 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:53, 16:52](814 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:10, 10:07] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:04, 09:43](833 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:10, 09:10] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [11:10, 05:35](941 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:04, 05:40](912 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:52, 16:24](1347 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [05:10, 04:33] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:14](1144 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:42](1093 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:09](1020 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:15, 02:10](1019 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:15, 02:11](1013 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:17, 02:07](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 02:07](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:01](1008 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:56, 05:10](1159 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 05:11](1150 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:07](1130 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:02](2435 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:11](2444 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 02:24] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:17](1076 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 05:04] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:06](1147 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:09](340 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:55](560 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:38](560 MB)
-
-PASS -- COMPILE 'atml_intel' [09:10, 07:25] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 05:28](1655 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:01, 05:37](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:51, 03:03](944 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:10, 03:19] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:02, 04:45](1659 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:30](1704 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:20, 06:45] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:05, 03:45](1786 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:57, 04:12](1809 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:48, 04:13](1812 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:10, 02:27] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [18:35, 16:19](4602 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:11, 03:48]
-PASS -- TEST 'control_c48_gnu' [10:53, 09:35](1576 MB)
-PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](735 MB)
-PASS -- TEST 'control_ras_gnu' [04:22, 03:49](730 MB)
-PASS -- TEST 'control_p8_gnu' [04:49, 03:44](1513 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:51, 03:37](1517 MB)
-PASS -- TEST 'control_flake_gnu' [05:22, 04:29](802 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:10, 03:48]
-PASS -- TEST 'rap_control_gnu' [08:42, 07:46](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:45, 07:50](1084 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:48, 07:05](1121 MB)
-PASS -- TEST 'rap_restart_gnu' [05:10, 03:58](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:39, 07:41](1098 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:38, 07:57](1085 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:53, 05:50](883 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:40, 04:04](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:38, 04:03](1137 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:51, 03:40](1023 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:32, 04:09](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:15](882 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:12](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:52, 07:43](1078 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 04:54]
-PASS -- TEST 'control_diag_debug_gnu' [02:42, 01:20](1623 MB)
-PASS -- TEST 'regional_debug_gnu' [07:34, 06:36](923 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:28, 01:57](1101 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:03](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:56](1097 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:58](1096 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:28, 02:17](1272 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:05](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:14](1103 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:19, 02:13](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:11](732 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:29](721 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:26](1504 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1098 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:12](1107 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:19](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:11, 02:10]
-PASS -- TEST 'control_wam_debug_gnu' [03:24, 01:56](504 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 03:45]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:45, 07:15](963 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:48, 03:56](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:38, 06:41](973 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:25](892 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:51](952 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:00, 05:25](861 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:26, 02:03](855 MB)
-PASS -- TEST 'conus13km_control_gnu' [05:37, 02:37](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:31, 01:02](1172 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:30, 01:24](928 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 07:43]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:32](991 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 05:03]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 01:59](974 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:03](969 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:32](1280 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:39](951 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:30](1190 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:27, 05:39](1347 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 05:03]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:05](999 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:10, 14:32]
-
-PASS -- COMPILE 's2s_gnu' [14:10, 13:59]
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:10, 03:01]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:10, 14:46]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 03:36]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [14:11, 13:46]
+PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:58] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:15, 10:34](1891 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:28] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [49:25, 14:24](1764 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:10](2187 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:36](1184 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:43, 15:56](1688 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:47] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:08, 20:18](1723 MB)
+
+PASS -- COMPILE 's2swa_intel' [12:11, 12:06] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [48:12, 10:54](2065 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:19, 11:48](2069 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:48](1964 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [41:19, 07:43](1977 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [15:25, 04:24](1725 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [49:33, 12:39](2493 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [38:40, 08:04](2063 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [33:23, 06:28](1891 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:11, 10:54](2055 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [47:52, 17:23](2802 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [16:28, 06:09](2917 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [42:09, 09:40](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:56, 07:44](3625 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [32:17, 05:04](2019 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:10, 12:12] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [47:12, 07:10](1767 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:17, 06:38](1826 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:07, 06:46](2046 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:55, 04:42](1803 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:48] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 03:57](1808 MB)
+
+PASS -- COMPILE 's2s_intel' [10:11, 09:34] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:18](2827 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [25:44, 02:07](2832 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [26:03, 01:06](2298 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:24] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [47:10, 07:49](2078 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:51] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:15, 14:33](1794 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:42](1287 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:55, 15:29](1723 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:19] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 21:32](1781 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:10, 07:45] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [42:13, 02:49](707 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [42:18, 02:35](1608 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:33, 02:30](1610 MB)
+PASS -- TEST 'control_latlon_intel' [42:10, 02:38](1609 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:21, 03:41](1616 MB)
+PASS -- TEST 'control_c48_intel' [45:12, 07:00](1743 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [44:48, 05:46](859 MB)
+PASS -- TEST 'control_c192_intel' [52:36, 10:15](1766 MB)
+PASS -- TEST 'control_c384_intel' [50:03, 09:24](2043 MB)
+PASS -- TEST 'control_c384gdas_intel' [53:53, 09:51](1517 MB)
+PASS -- TEST 'control_stochy_intel' [43:32, 02:41](670 MB)
+PASS -- TEST 'control_stochy_restart_intel' [08:36, 01:01](548 MB)
+PASS -- TEST 'control_lndp_intel' [40:37, 02:38](661 MB)
+PASS -- TEST 'control_iovr4_intel' [18:35, 02:03](662 MB)
+PASS -- TEST 'control_iovr5_intel' [18:32, 02:06](659 MB)
+PASS -- TEST 'control_p8_intel' [14:04, 02:30](1639 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [16:04, 03:47](1640 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [13:04, 03:43](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:45, 01:25](930 MB)
+PASS -- TEST 'control_noqr_p8_intel' [13:02, 03:46](1631 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](988 MB)
+PASS -- TEST 'control_decomp_p8_intel' [13:16, 03:52](1631 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:58, 02:27](1718 MB)
+PASS -- TEST 'control_p8_lndp_intel' [13:49, 04:32](1634 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [13:00, 03:34](1710 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:58, 02:39](1651 MB)
+PASS -- TEST 'merra2_thompson_intel' [12:05, 02:56](1660 MB)
+PASS -- TEST 'regional_control_intel' [08:36, 05:00](964 MB)
+PASS -- TEST 'regional_restart_intel' [04:38, 02:26](1105 MB)
+PASS -- TEST 'regional_decomp_intel' [07:37, 04:36](946 MB)
+PASS -- TEST 'regional_2threads_intel' [10:35, 02:58](914 MB)
+PASS -- TEST 'regional_noquilt_intel' [12:41, 04:26](1484 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:37, 04:34](960 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [12:29, 04:37](955 MB)
+PASS -- TEST 'regional_wofs_intel' [12:33, 05:42](2075 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:10, 07:20] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [14:01, 06:37](1219 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:09, 04:22](1411 MB)
+PASS -- TEST 'rap_decomp_intel' [11:50, 06:46](1125 MB)
+PASS -- TEST 'rap_2threads_intel' [08:37, 06:06](1368 MB)
+PASS -- TEST 'rap_restart_intel' [04:54, 03:25](1132 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:47, 06:26](1205 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 06:59](1136 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 05:01](1195 MB)
+PASS -- TEST 'hrrr_control_intel' [05:22, 03:21](1078 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:27](1046 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:04](1127 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:29, 01:56](1021 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1195 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:53](2018 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 07:23](2170 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:10, 07:12] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:30, 05:19](805 MB)
+PASS -- TEST 'control_ras_intel' [04:17, 02:48](806 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [08:10, 04:33]
+PASS -- TEST 'control_csawmg_gnu' [08:38, 06:30](812 MB)
+
+PASS -- COMPILE 'wam_intel' [09:11, 07:29]
+PASS -- TEST 'control_wam_intel' [03:24, 01:48](785 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:50] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:51, 02:16](1636 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:28, 04:03](957 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:09] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:14](1620 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1628 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:17](824 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:39](825 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:30, 03:35](871 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:15, 02:14](840 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:41, 02:22](1686 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:37, 02:21](1648 MB)
+PASS -- TEST 'regional_debug_intel' [14:32, 14:02](896 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:19, 03:59](1213 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:59](1219 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:58](1220 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:06](1228 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 03:56](1224 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:21](1294 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:04](1213 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:00](1228 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:00](1217 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:59](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:54](1209 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:06](1226 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:32](1219 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 03:55](1214 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:48](1226 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:23, 03:59](1212 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:51](1225 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:25]
+PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:01](788 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:10, 02:24] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 07:26] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:21](1272 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:54, 05:30](1140 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 02:52](1018 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:04](1276 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:54, 02:37](1047 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:00](985 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:54, 04:04](1095 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:21, 01:35](969 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 09:35] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1312 MB)
+PASS -- TEST 'conus13km_2threads_intel' [08:34, 00:51](1196 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [09:27, 01:05](1163 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 07:35] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:43](1056 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:30] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 03:59](1101 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:21, 03:52](1089 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:31, 11:46](1304 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [18:32, 12:00](995 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:28, 06:42](1244 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:27, 11:38](1403 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:35] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:01](1154 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:10, 10:47] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](871 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 05:13](1286 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:21, 06:29](953 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [21:05, 14:08](973 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:14, 15:19](1005 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:51, 05:28](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:11, 07:07](615 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:53](432 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:41](542 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:40, 03:57](613 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:39, 03:42](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:49](682 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:27, 01:22](448 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:01] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:21](635 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:13, 16:56] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:05, 16:00](769 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:57, 16:52](840 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:35] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:54, 09:58](836 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:10, 10:01] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [12:03, 05:35](960 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 05:35](927 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 16:22](1335 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:14] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:16, 02:10](1148 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:21](1080 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:15, 02:08](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:15, 02:09](1008 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:10](1012 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:13](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:13](1140 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:06](1011 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:58](1155 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1146 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1150 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:04](2432 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:08](2440 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:03] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:17](1075 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:21] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:16](1151 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:46] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:56](328 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:48](559 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:35](559 MB)
+
+PASS -- COMPILE 'atml_intel' [11:10, 09:21] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 05:19](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:23](1639 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:48](947 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:39](1667 MB)
+
+PASS -- COMPILE 'atmw_intel' [18:10, 13:04] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:34](1689 MB)
+
+PASS -- COMPILE 'atmaero_intel' [17:10, 12:40] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:32](1799 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1817 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:20](1831 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [09:11, 04:49] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 16:40](4575 MB)
+
+PASS -- COMPILE 'atm_gnu' [10:15, 06:24]
+PASS -- TEST 'control_c48_gnu' [10:38, 09:31](1558 MB)
+PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](731 MB)
+PASS -- TEST 'control_ras_gnu' [04:19, 03:51](730 MB)
+PASS -- TEST 'control_p8_gnu' [04:44, 03:40](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 03:29](1518 MB)
+PASS -- TEST 'control_flake_gnu' [05:21, 04:24](812 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [10:10, 06:17]
+PASS -- TEST 'rap_control_gnu' [08:30, 07:45](1085 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:30, 07:55](1087 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:45, 07:08](1147 MB)
+PASS -- TEST 'rap_restart_gnu' [06:54, 03:58](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:40, 07:39](1089 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:49](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:51, 05:41](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [04:47, 03:57](1073 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:03](1139 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:30, 03:36](1029 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:02](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:03](883 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:18, 02:05](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:35](1083 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:20]
+PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:17](1625 MB)
+PASS -- TEST 'regional_debug_gnu' [07:28, 06:26](924 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:22, 01:53](1089 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:00](1095 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 01:56](1097 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [05:23, 02:04](1269 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:16, 03:07](1096 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 01:58](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:17, 01:58](1093 MB)
+PASS -- TEST 'control_ras_debug_gnu' [06:15, 01:12](730 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [06:15, 01:17](725 MB)
+PASS -- TEST 'control_debug_p8_gnu' [05:32, 01:18](1506 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [06:21, 01:59](1101 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [07:18, 02:13](1101 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:47, 03:21](1104 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:06]
+PASS -- TEST 'control_wam_debug_gnu' [06:25, 01:54](502 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 07:20]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:45, 07:13](965 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:34, 03:45](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 06:44](968 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:48, 03:29](873 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 03:46](952 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:55, 05:22](859 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:58](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:42, 02:39](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:37, 01:07](1174 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:25](928 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:03]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](997 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:54]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:00](988 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](970 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:24](1282 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:27, 05:47](973 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:14](1190 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:39](1349 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:10, 08:54]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:04](1004 MB)
+
+PASS -- COMPILE 's2swa_gnu' [27:10, 22:03]
+
+PASS -- COMPILE 's2s_gnu' [22:11, 18:09]
+
+PASS -- COMPILE 's2swa_debug_gnu' [18:11, 14:55]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [22:11, 19:26]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:10, 11:14]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:17]
SYNOPSIS:
-Starting Date/Time: 20240430 22:59:38
-Ending Date/Time: 20240501 00:25:35
-Total Time: 01h:26m:27s
+Starting Date/Time: 20240506 09:21:02
+Ending Date/Time: 20240506 11:27:27
+Total Time: 02h:07m:02s
Compiles Completed: 54/54
-Tests Completed: 235/235
+Tests Completed: 237/237
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index cc7f856b7a..5b91586486 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-b2d7f816b6835880d15332692fc1c04af4fe7467
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,245 +35,247 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4040815
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_554453
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
-* (-r) - USE ROCOTO
-
-PASS -- COMPILE 's2swa_32bit_intel' [38:23, 38:22] ( 2 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:40, 07:39](1779 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:11, 54:10] ( 2 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:49, 21:02](1662 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:14, 22:48](1846 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [12:21, 10:30](991 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:09, 24:08](1623 MB)
-
-PASS -- COMPILE 's2swa_intel' [38:50, 38:50] ( 1 warnings 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [10:08, 08:21](1783 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:47, 08:17](1779 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:45, 04:43](1661 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 08:17](1834 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:22, 04:37](1692 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:12, 08:08](2244 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 08:14](1812 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:42](1779 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:50](1803 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:43, 07:15](1784 MB)
-
-PASS -- COMPILE 's2sw_intel' [36:22, 36:21] ( 1 warnings 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:04, 05:53](1647 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:52, 06:03](1704 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:46, 05:45] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:13, 10:49](1821 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:05, 05:04] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 07:25](1677 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [32:42, 32:42] ( 1 warnings 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 05:54](1666 MB)
-
-PASS -- COMPILE 's2s_intel' [32:29, 32:29] ( 1 warnings 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [13:54, 13:06](2790 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [33:33, 33:32] ( 1 warnings 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:36, 08:51](1819 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:39, 47:38] ( 1 warnings 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:10, 21:00](1654 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 11:16](1020 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:09, 27:36](1653 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:14] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:48, 32:29](1683 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [34:30, 34:29] ( 2 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [04:54, 04:29](654 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:54, 04:06](1520 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 04:17](1538 MB)
-PASS -- TEST 'control_latlon_intel' [04:39, 04:00](1548 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:53, 04:06](1543 MB)
-PASS -- TEST 'control_c48_intel' [12:35, 11:55](1720 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:30, 10:10](845 MB)
-PASS -- TEST 'control_c192_intel' [15:52, 14:53](1666 MB)
-PASS -- TEST 'control_c384_intel' [21:31, 19:48](1814 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:57, 16:10](1008 MB)
-PASS -- TEST 'control_stochy_intel' [02:36, 02:16](604 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:21](431 MB)
-PASS -- TEST 'control_lndp_intel' [02:25, 02:09](601 MB)
-PASS -- TEST 'control_iovr4_intel' [04:00, 03:45](598 MB)
-PASS -- TEST 'control_iovr5_intel' [04:43, 04:19](595 MB)
-PASS -- TEST 'control_p8_intel' [05:59, 04:35](1564 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:33, 04:17](1564 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:53, 04:32](1578 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:58, 02:42](821 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:51, 04:35](1558 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 02:27](836 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:04, 04:44](1562 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:13, 04:52](1662 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:17, 08:20](1565 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:51, 06:11](1624 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:20, 04:55](1591 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:04, 05:23](1585 MB)
-PASS -- TEST 'regional_control_intel' [09:45, 09:06](770 MB)
-PASS -- TEST 'regional_restart_intel' [05:48, 05:14](917 MB)
-PASS -- TEST 'regional_decomp_intel' [10:04, 09:29](763 MB)
-PASS -- TEST 'regional_2threads_intel' [07:40, 07:05](741 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [10:11, 09:21](763 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [10:08, 09:21](757 MB)
-
-PASS -- COMPILE 'rrfs_intel' [32:54, 32:54] ( 4 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [14:12, 12:39](993 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 07:00](1219 MB)
-PASS -- TEST 'rap_decomp_intel' [15:53, 14:44](989 MB)
-PASS -- TEST 'rap_2threads_intel' [13:14, 12:18](1087 MB)
-PASS -- TEST 'rap_restart_intel' [08:06, 06:25](995 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:30, 13:15](985 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:47, 13:37](987 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [11:51, 10:05](1002 MB)
-PASS -- TEST 'hrrr_control_intel' [07:18, 06:01](991 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:57, 07:23](979 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:39, 06:19](1055 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:52, 04:28](917 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [14:22, 13:04](986 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [16:15, 15:48](1927 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:20, 14:56](1936 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:05, 32:05] ( 2 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [11:06, 10:17](673 MB)
-PASS -- TEST 'control_ras_intel' [06:03, 05:26](667 MB)
-
-PASS -- COMPILE 'wam_intel' [30:06, 30:06] ( 1 warnings 982 remarks )
-PASS -- TEST 'control_wam_intel' [04:22, 03:43](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:02, 32:02] ( 1 warnings 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:11, 04:34](1576 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:43, 09:03](767 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:54, 05:53] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 04:22](1503 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:45, 03:46](1564 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:39, 04:04](748 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:42, 03:28](745 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:03, 05:23](794 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:03, 03:46](772 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:52, 03:52](1610 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:29, 03:47](1589 MB)
-PASS -- TEST 'regional_debug_intel' [23:16, 22:38](768 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:53, 06:15](1146 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:31, 06:17](1141 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:49, 06:30](1153 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:42, 06:25](1151 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 07:04](1154 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:13, 06:41](1236 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:48, 06:29](1144 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:41, 06:28](1148 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:52, 06:37](1129 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 06:51](1155 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:33, 06:14](1146 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 06:12](1147 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 10:08](1149 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 06:14](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:10, 07:50](1155 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:58, 06:36](1151 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:09, 10:46](1154 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:17, 04:17] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:44, 06:24](446 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:27, 30:27] ( 4 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 06:45](1073 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:41, 10:34](905 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:10, 05:42](864 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:53, 09:36](941 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:44, 05:02](906 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:53, 05:27](858 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:41, 09:07](899 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:01, 02:32](829 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:02, 43:02] ( 4 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:07, 03:17](1078 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:34, 01:33](1024 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:00, 02:06](1008 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [30:47, 30:45] ( 4 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:24, 06:34](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:24] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:09, 06:49](1034 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:41, 05:57](1029 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:19, 18:35](1141 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 18:46](847 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:56, 11:10](1083 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:29, 18:35](1189 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:33, 04:33] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:34, 06:54](1077 MB)
-
-PASS -- COMPILE 'hafsw_intel' [34:52, 34:52] ( 2 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [11:44, 10:17](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:56, 11:06](1078 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:00, 15:58](775 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [22:24, 20:53](807 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:10, 21:36](824 MB)
-PASS -- TEST 'gnv1_nested_intel' [11:55, 10:27](779 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:42, 32:42] ( 1 warnings 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [13:42, 12:16](767 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:03, 14:25](755 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:10] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 04:05](1059 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 02:31](1035 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 04:02](929 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 04:04](926 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 04:16](932 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 04:09](1061 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 04:09](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:57, 03:49](921 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:03, 09:16](880 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:33, 07:55](850 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:57, 03:44](1064 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:11, 05:59](2347 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:14, 06:04](2393 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:42, 03:39] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 08:09](1011 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 08:11] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:00, 03:37](1052 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:59, 01:59] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:14, 02:42](233 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 03:11](256 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 02:08](256 MB)
-
-PASS -- COMPILE 'atml_intel' [35:00, 35:00] ( 9 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:30, 14:55](1600 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [16:21, 14:40](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:09, 09:16](871 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:55, 05:55] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:11, 08:51](1611 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:02, 32:02] ( 1 warnings 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:37, 03:10](1606 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:22, 31:22] ( 1 warnings 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [08:38, 07:01](1659 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:42, 07:59](1725 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:03, 07:34](1735 MB)
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2swa_32bit_intel' [32:13, 31:58] ( 2 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:58](1796 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:50] ( 2 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:54](1667 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 23:09](1888 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:51](993 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 23:55](1637 MB)
+
+PASS -- COMPILE 's2swa_intel' [38:14, 37:20] ( 1 warnings 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:23, 07:40](1826 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 07:40](1829 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:55, 04:33](1709 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:42](1842 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:51](1721 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:17](2262 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:16, 07:54](1809 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:43, 06:38](1788 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:42, 07:45](1813 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:31, 07:12](1796 MB)
+
+PASS -- COMPILE 's2sw_intel' [31:13, 30:31] ( 1 warnings 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:59](1656 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:52](1715 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:27] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:00, 10:48](1826 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:08] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:18](1677 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:23] ( 1 warnings 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:46](1719 MB)
+
+PASS -- COMPILE 's2s_intel' [33:13, 33:05] ( 1 warnings 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:09, 12:49](2801 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:36](2803 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:05, 02:04](2267 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [35:19, 34:20] ( 1 warnings 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:36, 09:14](1804 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 47:57] ( 1 warnings 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:43, 21:09](1683 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:54, 10:45](1034 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:55, 26:01](1659 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:44] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:37, 32:12](1697 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:54] ( 2 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [05:32, 04:58](651 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [10:43, 04:11](1542 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:45, 04:45](1554 MB)
+PASS -- TEST 'control_latlon_intel' [10:38, 04:05](1547 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:45, 04:50](1534 MB)
+PASS -- TEST 'control_c48_intel' [14:44, 11:57](1730 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:02, 10:09](847 MB)
+PASS -- TEST 'control_c192_intel' [16:47, 14:47](1682 MB)
+PASS -- TEST 'control_c384_intel' [25:13, 18:45](1816 MB)
+PASS -- TEST 'control_c384gdas_intel' [24:22, 14:32](1014 MB)
+PASS -- TEST 'control_stochy_intel' [03:56, 02:42](601 MB)
+PASS -- TEST 'control_stochy_restart_intel' [05:41, 01:26](437 MB)
+PASS -- TEST 'control_lndp_intel' [03:54, 02:25](599 MB)
+PASS -- TEST 'control_iovr4_intel' [04:56, 03:59](596 MB)
+PASS -- TEST 'control_iovr5_intel' [04:36, 04:08](603 MB)
+PASS -- TEST 'control_p8_intel' [11:28, 04:10](1577 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:27](1577 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [10:55, 04:08](1568 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:13, 02:14](819 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:22, 04:03](1565 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:11](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:15, 04:09](1565 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:24, 03:44](1666 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:09, 07:06](1572 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 05:15](1630 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:47, 04:08](1584 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:54, 04:31](1584 MB)
+PASS -- TEST 'regional_control_intel' [11:58, 07:27](764 MB)
+PASS -- TEST 'regional_restart_intel' [04:49, 04:01](933 MB)
+PASS -- TEST 'regional_decomp_intel' [12:47, 07:53](757 MB)
+PASS -- TEST 'regional_2threads_intel' [06:48, 05:02](754 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:51, 07:26](758 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:50, 07:23](762 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:12, 33:19] ( 4 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [12:26, 11:05](986 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 06:05](1220 MB)
+PASS -- TEST 'rap_decomp_intel' [13:09, 11:27](989 MB)
+PASS -- TEST 'rap_2threads_intel' [12:26, 10:26](1086 MB)
+PASS -- TEST 'rap_restart_intel' [08:25, 05:22](990 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:41, 11:05](995 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:19, 11:19](985 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:47](999 MB)
+PASS -- TEST 'hrrr_control_intel' [07:23, 05:48](990 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 05:50](983 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 05:12](1054 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:49](922 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:51, 10:52](990 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 13:32](1916 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 12:49](1937 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:13, 31:24] ( 2 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [10:53, 08:19](692 MB)
+PASS -- TEST 'control_ras_intel' [06:24, 04:39](667 MB)
+
+PASS -- COMPILE 'wam_intel' [30:13, 29:56] ( 1 warnings 982 remarks )
+PASS -- TEST 'control_wam_intel' [03:26, 02:54](506 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 31:41] ( 1 warnings 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:45, 03:52](1578 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:58, 07:06](765 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:05] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 03:20](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:25](1556 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:47](760 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:26](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:48, 05:18](814 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](774 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:56, 03:23](1617 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:52, 03:50](1588 MB)
+PASS -- TEST 'regional_debug_intel' [23:49, 22:15](812 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:29, 06:08](1164 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:28, 05:56](1151 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 06:04](1146 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:06](1148 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:14](1154 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:42, 06:28](1233 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1149 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 06:14](1149 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:06](1154 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 06:06](1157 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:00](1150 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:06](1148 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:26, 09:55](1148 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 06:02](1146 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 07:36](1157 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:06](1154 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 10:31](1153 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:11, 04:12] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:27, 06:10](447 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:19] ( 4 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 05:23](1077 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 09:29](900 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:13, 04:33](866 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 08:08](938 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:00, 04:01](910 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:15, 04:59](857 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:58, 07:09](897 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 03:20](847 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:16, 43:26] ( 4 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:09, 03:01](1109 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1050 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:41](1024 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:21, 31:01] ( 4 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:37](902 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:56] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:08](1024 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:00](1028 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:06, 18:49](1136 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:25, 19:13](845 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:51](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:21, 18:40](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:18] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:10](1073 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:14, 35:28] ( 2 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:23, 07:06](719 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:54](1093 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 09:32](775 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:33](793 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:28](822 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:28, 05:54](775 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:20, 32:09] ( 1 warnings 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [10:28, 08:57](771 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 08:58](755 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:03] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:52, 04:10](1053 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 02:08](1030 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:43, 03:55](923 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:56, 04:07](922 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:48, 04:15](918 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:53, 04:14](1062 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:00, 04:20](1060 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 04:28](926 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:09, 08:29](888 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:39, 08:15](841 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 04:07](1061 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 06:08](2342 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 06:25](2385 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:16] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:52, 08:05](1015 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:16, 08:20] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:36](1055 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:41] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:43](230 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:21](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:33, 00:55](255 MB)
+
+PASS -- COMPILE 'atml_intel' [35:12, 34:36] ( 9 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 10:08](1595 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:10](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:42](865 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 05:24] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:34](1628 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:13, 31:39] ( 1 warnings 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:38, 03:08](1603 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:13, 31:10] ( 1 warnings 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:34, 05:26](1697 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:44, 06:33](1728 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](1744 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 15:20:11
-Ending Date/Time: 20240501 20:09:19
-Total Time: 04h:49m:47s
+Starting Date/Time: 20240506 00:56:29
+Ending Date/Time: 20240506 04:17:54
+Total Time: 03h:21m:58s
Compiles Completed: 33/33
-Tests Completed: 159/159
+Tests Completed: 161/161
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 39c3aca92d..342cb4c8e3 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-ee1e3c5e5a1cc1f622452890e61b3950a3e73ebd
+74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,10 +11,10 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,276 +35,278 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14513
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_338803
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:10, 13:54] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:52, 05:27](3186 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:19] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 17:15](1741 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:02, 18:22](2031 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:26](1106 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:47, 19:36](1648 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:11] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:41, 22:44](1648 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:10, 14:03] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [13:33, 05:42](3214 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:16, 05:45](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:08, 03:20](3261 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 05:47](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:31](3273 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:02, 06:13](3553 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [13:30, 05:46](3204 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:43, 04:44](3063 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:15, 05:45](3212 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 10:26](3344 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:18, 06:29](3622 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [24:10, 10:59](4168 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:45, 06:55](4374 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [13:44, 05:28](3172 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 14:31] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [12:12, 04:44](1740 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:32, 04:26](1772 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:10] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [11:21, 08:43](3249 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 04:56] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:11, 05:57](1750 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:10, 12:10] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:29](1784 MB)
-
-PASS -- COMPILE 's2s_intel' [12:10, 12:09] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:50, 08:16](2827 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [21:11, 20:52] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:30, 05:26](3211 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:12, 17:35] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:05, 17:30](1763 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:26, 08:30](1173 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:52](1679 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:57] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:37](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:02] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [10:30, 03:33](696 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [09:59, 02:56](1605 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:08, 03:03](1602 MB)
-PASS -- TEST 'control_latlon_intel' [09:54, 02:55](1603 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:06, 03:02](1593 MB)
-PASS -- TEST 'control_c48_intel' [13:58, 07:10](1772 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [13:35, 06:02](880 MB)
-PASS -- TEST 'control_c192_intel' [18:08, 10:36](1747 MB)
-PASS -- TEST 'control_c384_intel' [17:20, 11:41](2004 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:19, 09:04](1359 MB)
-PASS -- TEST 'control_stochy_intel' [04:26, 01:48](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:01](508 MB)
-PASS -- TEST 'control_lndp_intel' [08:27, 01:38](654 MB)
-PASS -- TEST 'control_iovr4_intel' [09:29, 02:32](655 MB)
-PASS -- TEST 'control_iovr5_intel' [03:26, 02:27](656 MB)
-PASS -- TEST 'control_p8_intel' [04:20, 02:58](1625 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:23, 02:56](1621 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:42, 02:51](1644 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:17, 01:40](889 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:19, 02:53](1621 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:40](928 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:28, 03:08](1605 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:19, 03:02](1729 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:01, 05:12](1633 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:38, 04:01](1687 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:06](1640 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:51, 03:18](1642 MB)
-PASS -- TEST 'regional_control_intel' [06:44, 05:18](856 MB)
-PASS -- TEST 'regional_restart_intel' [05:39, 02:45](1018 MB)
-PASS -- TEST 'regional_decomp_intel' [06:40, 05:35](851 MB)
-PASS -- TEST 'regional_2threads_intel' [04:40, 03:48](858 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:42, 05:33](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:09](857 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:36, 05:13](861 MB)
-PASS -- TEST 'regional_wofs_intel' [07:36, 06:46](1919 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 11:17] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [09:31, 07:50](1104 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:08, 04:48](1289 MB)
-PASS -- TEST 'rap_decomp_intel' [10:00, 08:14](1029 MB)
-PASS -- TEST 'rap_2threads_intel' [09:01, 08:00](1182 MB)
-PASS -- TEST 'rap_restart_intel' [06:20, 04:05](1107 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:06, 07:46](1092 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:11](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:28, 05:54](1137 MB)
-PASS -- TEST 'hrrr_control_intel' [06:21, 03:59](1032 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 04:08](1028 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:01, 03:23](1114 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:12](1004 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:19, 07:35](1109 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:29, 09:11](1998 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:55](2077 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:11, 11:12] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:43, 06:08](748 MB)
-PASS -- TEST 'control_ras_intel' [05:22, 03:24](740 MB)
-
-PASS -- COMPILE 'wam_intel' [11:11, 10:28] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [03:22, 02:06](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 12:01] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:34, 02:47](1622 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:39, 04:44](803 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:44] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:40](1616 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 02:37](1609 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:23, 03:06](817 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:22, 02:51](823 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:07](863 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:21, 02:50](820 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:47, 02:46](1680 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:45, 02:51](1640 MB)
-PASS -- TEST 'regional_debug_intel' [18:41, 17:16](848 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:24, 04:57](1202 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:25, 04:51](1190 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1207 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:58](1201 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1199 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:36, 05:16](1295 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:01](1202 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:09](1207 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:09](1193 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:52](1208 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:52](1144 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:57](1201 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 08:07](1200 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:57](1195 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:48](1202 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:57](1204 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:22](1211 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:10, 03:13] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:23, 05:07](508 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:21] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 04:32](1168 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:06, 06:27](1057 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:28](992 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:51, 06:46](1102 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:15, 02:56](965 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 03:39](923 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:14, 04:57](1037 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:26, 01:52](927 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 13:20] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:57, 02:07](1201 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:02](1127 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:19](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:55] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:18](990 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 03:36] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:53](1081 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:54](1077 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:52, 14:15](1228 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:50, 14:07](927 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:13](1105 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:44, 13:48](1262 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:53](1113 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:10, 12:52] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:29](741 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:47](1127 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:21, 06:50](828 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:11, 13:10](977 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 14:54](880 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:08, 06:16](500 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 07:36](520 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:48, 03:15](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:26, 08:11](465 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:14](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:51, 04:04](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:20](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:27](410 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:51, 04:39](800 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:50] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:09](564 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:10, 13:49] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:59, 09:56](632 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 09:50](705 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 13:51] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 07:10](696 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:11, 12:36] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:23](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:26](815 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:56, 15:57](1204 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:36](1135 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:40](1083 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:33](1009 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:37](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:40](1009 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:36](1126 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1129 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:38](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:13, 05:58](1059 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:13, 05:53](1037 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1133 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:44](2492 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:35](2431 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:11] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:13](1057 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:04]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:36](1134 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:02] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:49](259 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:48](329 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:32](321 MB)
-
-PASS -- COMPILE 'atml_intel' [13:11, 12:24] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:10](1602 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:18](896 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:12, 04:06] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:28, 05:56](1621 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:11, 11:45] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:26, 01:44](1670 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:11, 11:04] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:19, 04:00](3025 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:57](3087 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 04:59](3103 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:11, 03:22] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [23:41, 21:09](4595 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:15] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 05:44](3185 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 18:34](1746 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:17, 18:22](2027 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [28:05, 08:44](1115 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:42, 21:57](1647 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:22] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 23:59](1695 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:11, 15:15] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:02, 06:06](3208 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 06:01](3216 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [43:05, 03:46](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 06:01](3242 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [43:45, 04:15](3274 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:39, 06:22](3553 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:52](3198 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 04:58](3073 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:16, 06:08](3207 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:57, 10:55](3343 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [41:19, 07:03](3626 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:51, 11:20](4117 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:06, 08:14](4357 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:39](3168 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:34] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:16, 04:57](1728 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:47](1772 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:20] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [11:40, 09:09](3235 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:04] ( 1451 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 06:06](1748 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:00] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:36](1773 MB)
+
+PASS -- COMPILE 's2s_intel' [13:11, 12:31] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:53, 08:14](2833 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:26](2838 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:17, 01:25](2243 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [19:11, 19:03] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:03, 06:14](3212 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:15, 18:25] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:33, 17:52](1771 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:39, 08:40](1118 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 19:50](1672 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:06] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:35, 24:43](1707 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:36] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:30, 03:51](697 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:07](1592 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:17, 03:09](1601 MB)
+PASS -- TEST 'control_latlon_intel' [04:04, 03:02](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 03:06](1601 MB)
+PASS -- TEST 'control_c48_intel' [09:11, 07:18](1702 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:09, 06:12](878 MB)
+PASS -- TEST 'control_c192_intel' [13:07, 11:04](1746 MB)
+PASS -- TEST 'control_c384_intel' [18:05, 15:03](2007 MB)
+PASS -- TEST 'control_c384gdas_intel' [16:49, 09:39](1354 MB)
+PASS -- TEST 'control_stochy_intel' [02:31, 02:05](654 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:08](503 MB)
+PASS -- TEST 'control_lndp_intel' [02:26, 01:42](656 MB)
+PASS -- TEST 'control_iovr4_intel' [03:55, 02:36](650 MB)
+PASS -- TEST 'control_iovr5_intel' [03:42, 02:47](656 MB)
+PASS -- TEST 'control_p8_intel' [05:16, 03:13](1622 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [42:57, 03:11](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 03:01](1585 MB)
+PASS -- TEST 'control_restart_p8_intel' [37:43, 01:50](890 MB)
+PASS -- TEST 'control_noqr_p8_intel' [42:26, 03:07](1616 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:51](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [42:22, 03:13](1611 MB)
+PASS -- TEST 'control_2threads_p8_intel' [42:37, 03:17](1720 MB)
+PASS -- TEST 'control_p8_lndp_intel' [44:37, 05:25](1631 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [42:59, 04:09](1691 MB)
+PASS -- TEST 'control_p8_mynn_intel' [41:47, 03:16](1633 MB)
+PASS -- TEST 'merra2_thompson_intel' [42:27, 03:36](1636 MB)
+PASS -- TEST 'regional_control_intel' [43:11, 05:27](860 MB)
+PASS -- TEST 'regional_restart_intel' [05:47, 02:46](1020 MB)
+PASS -- TEST 'regional_decomp_intel' [43:27, 05:48](856 MB)
+PASS -- TEST 'regional_2threads_intel' [41:29, 04:02](848 MB)
+PASS -- TEST 'regional_noquilt_intel' [41:54, 05:14](1366 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [41:56, 05:25](857 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [41:40, 05:25](858 MB)
+PASS -- TEST 'regional_wofs_intel' [42:07, 07:01](1923 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:11, 10:54] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [43:36, 08:02](1061 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [36:20, 05:10](1291 MB)
+PASS -- TEST 'rap_decomp_intel' [36:23, 08:23](1035 MB)
+PASS -- TEST 'rap_2threads_intel' [35:56, 08:11](1175 MB)
+PASS -- TEST 'rap_restart_intel' [06:28, 04:06](1103 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [35:16, 07:54](1102 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:45, 08:18](1026 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 05:53](1126 MB)
+PASS -- TEST 'hrrr_control_intel' [06:16, 04:07](1035 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:16, 04:17](1024 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:26](1113 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:23, 07:47](1094 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:23](1991 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2070 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:11, 13:06] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [09:44, 06:08](749 MB)
+PASS -- TEST 'control_ras_intel' [06:21, 03:25](744 MB)
+
+PASS -- COMPILE 'wam_intel' [12:11, 11:34] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [05:22, 02:13](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:41] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:32, 02:45](1627 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:43, 04:43](854 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:48](1609 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:53, 02:54](1620 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](817 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:58](817 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:08](865 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:25, 02:54](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:49, 02:49](1668 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:49, 02:56](1606 MB)
+PASS -- TEST 'regional_debug_intel' [19:52, 17:29](836 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1199 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:52](1203 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:00](1202 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:54](1203 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1202 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:15](1288 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:09](1206 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1205 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:01](1165 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:00](1206 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:56](1197 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1202 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:00](1209 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:01](1197 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:59](1197 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:04](1200 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:24](1200 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 03:23] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:22, 05:10](521 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:13] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:34](1169 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:35](1055 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:46, 03:32](988 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:59, 06:52](1071 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:01](964 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:43](927 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 04:54](1039 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](925 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:10] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:59, 02:13](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:02](1126 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:16](1106 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:50] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:19](954 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:16] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:58](1086 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:53](1081 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:57, 14:21](1232 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:10](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1155 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:37](1295 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:05] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:36, 05:02](1118 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:11, 16:33] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:21, 05:54](684 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:09](1116 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:02](833 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:26, 13:26](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:08](888 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:25](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:39](522 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 03:21](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 08:04](468 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 04:21](528 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:58](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 05:36](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:24](405 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:59, 04:49](806 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [21:18, 07:00] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:03](573 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [29:11, 16:14] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:59](678 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 10:05](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [34:18, 16:05] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 07:24](639 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:19, 15:10] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:39](833 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:36, 06:34](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 15:58](1211 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [27:18, 09:52]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1089 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:34](1018 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:34](1015 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:41](1018 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:17, 02:41](1126 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:17, 02:39](1137 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:37](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 05:58](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:06](1033 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:45](1137 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:36](2434 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:46](2500 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [21:12, 04:48] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:16](1055 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [23:12, 09:43]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:40](1145 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 02:06] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:50](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:48](325 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:40](321 MB)
+
+PASS -- COMPILE 'atml_intel' [21:13, 14:46] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:45, 04:19](1595 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1612 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:28](897 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [11:12, 05:35] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:37, 05:42](1610 MB)
+
+PASS -- COMPILE 'atmw_intel' [30:11, 12:52] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 01:48](1625 MB)
+
+PASS -- COMPILE 'atmaero_intel' [29:11, 12:16] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:27, 04:04](3027 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:03](3088 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 05:00](3100 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [17:12, 03:50] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [25:00, 22:45](4577 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 13:51:13
-Ending Date/Time: 20240501 15:18:50
-Total Time: 01h:28m:06s
+Starting Date/Time: 20240506 09:36:17
+Ending Date/Time: 20240506 11:36:51
+Total Time: 02h:01m:13s
Compiles Completed: 38/38
-Tests Completed: 180/180
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index ed6cb3faff..8f8ad7b085 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-a987c604f37531e8dc63d28127df5b6921805e0b
+58f6e863baafb6be6c58b625ba5669f80a1d82ab
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl-1-gbbcabb5)
+ 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop-51-g683061b)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -35,237 +35,239 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17560
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_168635
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:34, 20:07] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [50:19, 01:43](2975 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:35, 19:35] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [50:18, 01:29](1594 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:14, 01:35](1708 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [31:05, 02:08](853 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:19, 01:57](1578 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:24, 08:51] ( 1506 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [01:30, 01:51](1599 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:44, 20:58] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [41:21, 01:30](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:10, 01:57](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [32:55, 01:00](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [49:10, 01:42](3030 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [39:51, 01:54](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [49:10, 01:30](3318 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [49:10, 01:37](3003 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [42:23, 01:21](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:20, 01:31](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [49:19, 03:48](3951 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:19, 03:24](4251 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [49:10, 01:20](2966 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:26, 10:28] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [59:27, 01:07](1583 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [59:27, 01:14](1636 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [29:53, 29:26] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:00, 01:51](1635 MB)
-
-PASS -- COMPILE 's2s_intel' [10:25, 10:01] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [00:27, 00:43](2647 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:32, 16:22] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [53:21, 01:38](3001 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [28:52, 27:58] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [42:02, 01:02](1603 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [24:43, 01:12](905 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:11, 01:27](1574 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:49, 26:16] ( 1542 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [44:06, 01:29](1619 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [21:36, 21:04] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [39:52, 01:12](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [39:52, 01:16](1465 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [39:52, 01:18](1477 MB)
-PASS -- TEST 'control_latlon_intel' [39:52, 01:13](1469 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [34:06, 00:33](1467 MB)
-PASS -- TEST 'control_c48_intel' [39:51, 01:02](1597 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [39:51, 00:53](717 MB)
-PASS -- TEST 'control_c192_intel' [39:52, 01:22](1586 MB)
-PASS -- TEST 'control_c384_intel' [39:56, 01:09](1901 MB)
-PASS -- TEST 'control_c384gdas_intel' [39:56, 02:13](1092 MB)
-PASS -- TEST 'control_stochy_intel' [39:52, 00:26](528 MB)
-PASS -- TEST 'control_stochy_restart_intel' [37:27, 00:16](333 MB)
-PASS -- TEST 'control_lndp_intel' [39:52, 00:18](529 MB)
-PASS -- TEST 'control_iovr4_intel' [39:52, 00:34](524 MB)
-PASS -- TEST 'control_iovr5_intel' [39:52, 00:45](525 MB)
-PASS -- TEST 'control_p8_intel' [39:52, 01:43](1498 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [39:52, 01:40](1509 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [39:35, 01:58](1507 MB)
-PASS -- TEST 'control_restart_p8_intel' [32:23, 01:44](690 MB)
-PASS -- TEST 'control_noqr_p8_intel' [39:33, 01:40](1489 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [32:22, 01:47](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [37:27, 00:46](1500 MB)
-PASS -- TEST 'control_2threads_p8_intel' [36:24, 00:50](1592 MB)
-PASS -- TEST 'control_p8_lndp_intel' [36:23, 01:17](1505 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [36:21, 01:46](1565 MB)
-PASS -- TEST 'control_p8_mynn_intel' [35:18, 01:01](1510 MB)
-PASS -- TEST 'merra2_thompson_intel' [35:03, 01:59](1509 MB)
-PASS -- TEST 'regional_control_intel' [35:00, 01:02](608 MB)
-PASS -- TEST 'regional_restart_intel' [27:13, 00:23](776 MB)
-PASS -- TEST 'regional_decomp_intel' [34:21, 01:05](608 MB)
-PASS -- TEST 'regional_2threads_intel' [33:39, 01:11](667 MB)
-PASS -- TEST 'regional_noquilt_intel' [33:09, 00:24](1143 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [33:01, 00:20](610 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [32:57, 00:15](609 MB)
-PASS -- TEST 'regional_wofs_intel' [32:55, 00:51](1578 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:27, 12:39] ( 4 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [32:51, 01:14](919 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [32:26, 00:43](1093 MB)
-PASS -- TEST 'rap_decomp_intel' [32:22, 01:39](920 MB)
-PASS -- TEST 'rap_2threads_intel' [32:14, 01:46](1009 MB)
-PASS -- TEST 'rap_restart_intel' [23:26, 01:07](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [32:03, 01:54](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:52, 01:08](915 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [20:34, 01:17](786 MB)
-PASS -- TEST 'hrrr_control_intel' [29:51, 01:51](913 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [29:44, 01:23](911 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [21:57, 01:54](988 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [22:36, 01:04](740 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [29:12, 01:40](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [28:28, 01:01](1877 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:15, 01:02](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:56, 32:01] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [26:21, 01:08](599 MB)
-PASS -- TEST 'control_ras_intel' [26:13, 01:16](561 MB)
-
-PASS -- COMPILE 'wam_intel' [10:24, 10:04] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [42:57, 00:24](271 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [21:44, 19:32] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [21:07, 01:22](1509 MB)
-PASS -- TEST 'regional_control_faster_intel' [26:39, 00:42](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:26, 11:12] ( 871 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:11, 00:54](1487 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [19:01, 00:33](1487 MB)
-PASS -- TEST 'control_stochy_debug_intel' [25:43, 00:30](691 MB)
-PASS -- TEST 'control_lndp_debug_intel' [25:43, 00:52](690 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [25:09, 01:02](731 MB)
-PASS -- TEST 'control_ras_debug_intel' [24:09, 00:43](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [22:52, 00:34](1546 MB)
-PASS -- TEST 'control_debug_p8_intel' [22:36, 01:03](1524 MB)
-PASS -- TEST 'regional_debug_intel' [22:17, 00:27](632 MB)
-PASS -- TEST 'rap_control_debug_intel' [21:53, 00:18](1073 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [21:27, 00:52](1067 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [21:14, 00:58](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [11:18, 01:06](1070 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:02, 00:49](1076 MB)
-PASS -- TEST 'rap_diag_debug_intel' [18:24, 01:09](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:44, 00:46](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:14, 00:17](1072 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [17:50, 00:35](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [17:44, 00:38](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [17:40, 01:12](1068 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [17:02, 00:31](1076 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:00, 00:19](1074 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [16:56, 00:30](1068 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [16:23, 00:29](1076 MB)
-PASS -- TEST 'rap_flake_debug_intel' [15:57, 00:41](1073 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:52, 02:01](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:20, 03:22] ( 843 warnings )
-PASS -- TEST 'control_wam_debug_intel' [43:50, 00:57](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:42, 18:57] ( 4 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:51, 00:41](966 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:36, 01:49](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:22, 01:36](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:40, 01:33](850 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:30, 01:27](837 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:24, 01:31](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 01:31](690 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:37, 00:36](668 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:06] ( 4 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [13:54, 01:16](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [08:03, 00:45](1007 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [07:50, 00:34](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:28, 12:09] ( 4 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [13:42, 01:27](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:25, 08:29] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:31, 01:09](954 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:05, 01:02](954 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:15, 01:02](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:06, 00:54](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:51, 00:38](1043 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:42, 00:36](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 04:24] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:27, 01:13](979 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:31, 15:49] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [10:23, 02:08](618 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:17, 00:51](971 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 01:30](664 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [09:35, 01:32](695 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [09:27, 01:24](713 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:11, 01:08](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:49, 01:25](402 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [08:27, 00:49](282 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:29, 02:10](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:13, 01:27](413 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:29, 00:49](418 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 01:42](488 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:00, 01:19](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [09:23, 08:08] ( 1450 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:21, 01:16](496 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [19:35, 18:52] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:33, 01:38](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:13, 00:47](709 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 11:17] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:04, 00:50](705 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:29, 13:04] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [04:34, 02:11](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [03:47, 01:28](640 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [03:28, 00:17](882 MB)
-
-PASS -- COMPILE 'atml_intel' [20:35, 16:57] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:20, 02:05](1540 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [03:17, 02:05](1549 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [55:38, 00:51](740 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [08:21, 05:07] ( 867 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [02:59, 01:25](1559 MB)
-
-PASS -- COMPILE 'atmaero_intel' [15:28, 10:33] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [02:19, 00:57](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [01:42, 01:50](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [01:36, 01:29](2922 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:24, 06:27] ( 871 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [01:36, 01:10](4443 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:33, 20:01] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 01:18](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:36, 22:20] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [07:53, 02:00](1596 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [49:57, 01:48](1717 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [49:32, 01:19](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:02, 01:29](1573 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:16] ( 1506 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:13, 01:20](1598 MB)
+
+PASS -- COMPILE 's2swa_intel' [24:39, 23:53] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [05:51, 01:28](3007 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:51, 01:38](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [57:24, 01:53](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [05:51, 01:27](3030 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [57:24, 01:48](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [05:51, 01:09](3319 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [05:51, 01:30](3003 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [05:52, 01:30](2931 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:51, 01:40](3003 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [06:00, 04:50](3957 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:46, 04:06](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 01:50](2969 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [19:06, 00:46](1587 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 00:57](1640 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:46] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:06, 00:59](1633 MB)
+
+PASS -- COMPILE 's2s_intel' [24:37, 24:16] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [05:51, 00:44](2649 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 01:33](2672 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [01:44, 01:12](2106 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:03] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 01:38](3001 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:36] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 01:08](1611 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:48, 01:32](902 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:28, 01:41](1587 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:22, 08:55] ( 1542 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:08, 01:37](1613 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [23:39, 22:28] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [59:27, 00:23](576 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [59:27, 00:26](1466 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:52, 00:26](1474 MB)
+PASS -- TEST 'control_latlon_intel' [58:51, 00:24](1481 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:41, 00:33](1471 MB)
+PASS -- TEST 'control_c48_intel' [58:30, 00:54](1592 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 00:50](718 MB)
+PASS -- TEST 'control_c192_intel' [58:22, 00:32](1589 MB)
+PASS -- TEST 'control_c384_intel' [58:07, 02:11](1906 MB)
+PASS -- TEST 'control_c384gdas_intel' [57:45, 01:45](1093 MB)
+PASS -- TEST 'control_stochy_intel' [57:24, 00:27](525 MB)
+PASS -- TEST 'control_stochy_restart_intel' [54:56, 01:02](326 MB)
+PASS -- TEST 'control_lndp_intel' [57:22, 00:32](527 MB)
+PASS -- TEST 'control_iovr4_intel' [57:14, 00:46](524 MB)
+PASS -- TEST 'control_iovr5_intel' [57:13, 00:47](524 MB)
+PASS -- TEST 'control_p8_intel' [57:02, 01:53](1512 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [56:07, 01:54](1503 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [56:07, 01:57](1509 MB)
+PASS -- TEST 'control_restart_p8_intel' [51:41, 01:03](692 MB)
+PASS -- TEST 'control_noqr_p8_intel' [55:44, 01:34](1504 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [50:43, 00:58](699 MB)
+PASS -- TEST 'control_decomp_p8_intel' [55:32, 01:31](1502 MB)
+PASS -- TEST 'control_2threads_p8_intel' [55:30, 00:52](1588 MB)
+PASS -- TEST 'control_p8_lndp_intel' [55:08, 01:01](1502 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 01:54](1554 MB)
+PASS -- TEST 'control_p8_mynn_intel' [55:02, 01:46](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [55:01, 01:32](1512 MB)
+PASS -- TEST 'regional_control_intel' [54:58, 00:15](610 MB)
+PASS -- TEST 'regional_restart_intel' [49:12, 00:26](779 MB)
+PASS -- TEST 'regional_decomp_intel' [54:55, 00:57](607 MB)
+PASS -- TEST 'regional_2threads_intel' [54:56, 00:55](664 MB)
+PASS -- TEST 'regional_noquilt_intel' [54:47, 00:20](1140 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [53:45, 00:27](608 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [53:44, 00:17](609 MB)
+PASS -- TEST 'regional_wofs_intel' [53:35, 00:34](1584 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:32, 16:09] ( 4 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [04:34, 01:41](920 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:35, 01:08](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [04:34, 01:27](919 MB)
+PASS -- TEST 'rap_2threads_intel' [04:34, 01:44](1008 MB)
+PASS -- TEST 'rap_restart_intel' [52:23, 01:05](788 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [51:40, 02:07](912 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 01:51](914 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [42:17, 01:49](787 MB)
+PASS -- TEST 'hrrr_control_intel' [04:34, 01:04](909 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 01:01](907 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 01:27](996 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [51:31, 01:02](743 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [04:34, 01:13](914 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [04:34, 00:57](1877 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:34, 01:11](1862 MB)
+
+PASS -- COMPILE 'csawmg_intel' [24:40, 23:29] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [50:44, 00:34](599 MB)
+PASS -- TEST 'control_ras_intel' [50:43, 00:57](563 MB)
+
+PASS -- COMPILE 'wam_intel' [21:34, 21:09] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [50:43, 00:54](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 16:48] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [50:41, 02:04](1504 MB)
+PASS -- TEST 'regional_control_faster_intel' [50:35, 00:25](612 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:37] ( 871 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 01:19](1489 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:27, 00:28](1489 MB)
+PASS -- TEST 'control_stochy_debug_intel' [50:30, 00:51](695 MB)
+PASS -- TEST 'control_lndp_debug_intel' [50:27, 01:11](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [50:14, 00:47](734 MB)
+PASS -- TEST 'control_ras_debug_intel' [49:26, 01:10](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [49:06, 01:26](1555 MB)
+PASS -- TEST 'control_debug_p8_intel' [48:34, 01:04](1518 MB)
+PASS -- TEST 'regional_debug_intel' [48:19, 00:49](632 MB)
+PASS -- TEST 'rap_control_debug_intel' [48:15, 00:56](1075 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [48:11, 01:00](1066 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [48:05, 01:02](1071 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [48:01, 00:56](1070 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [47:58, 00:58](1077 MB)
+PASS -- TEST 'rap_diag_debug_intel' [47:23, 00:53](1158 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:20, 00:46](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:19, 00:49](1074 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [47:14, 00:57](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [46:16, 00:54](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [46:14, 01:02](1073 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [46:01, 01:01](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:00, 00:49](1068 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [45:53, 01:01](1074 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [45:29, 01:14](1076 MB)
+PASS -- TEST 'rap_flake_debug_intel' [45:12, 00:56](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:58, 01:19](1078 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:27, 12:51] ( 843 warnings )
+PASS -- TEST 'control_wam_debug_intel' [44:54, 00:55](304 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:35, 15:18] ( 4 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [44:26, 01:22](954 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:11, 01:15](789 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:10, 02:18](785 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:52, 01:33](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:38, 00:56](840 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:44, 02:08](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 01:35](679 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:21, 00:22](670 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:49] ( 4 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [41:43, 01:09](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [37:46, 00:53](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 00:44](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:45] ( 4 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:32, 01:22](811 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:43, 24:59] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:44, 01:04](952 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:23, 01:14](952 MB)
+PASS -- TEST 'conus13km_debug_intel' [38:16, 00:24](1035 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [37:53, 01:16](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [36:21, 00:28](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:03, 00:19](1102 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:25, 08:58] ( 774 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [41:31, 01:00](978 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:32, 17:06] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [41:30, 02:07](617 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:53, 00:33](966 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [40:51, 01:39](661 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [40:44, 01:33](698 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:44, 01:29](714 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:44, 01:11](384 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:44, 02:17](400 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [39:28, 01:41](282 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [39:29, 02:29](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [39:25, 01:34](417 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:02, 01:02](417 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [35:54, 00:45](496 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [35:53, 00:23](324 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [19:33, 19:00] ( 1450 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:37, 00:43](493 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:29, 14:50] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [35:13, 01:41](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:04, 01:34](712 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [22:39, 21:51] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:29, 00:56](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:25, 10:10] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [34:52, 02:11](658 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:22, 01:14](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:16, 00:23](881 MB)
+
+PASS -- COMPILE 'atml_intel' [10:23, 10:00] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:18, 01:13](1543 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [34:08, 01:13](1547 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:31, 00:22](741 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [11:25, 10:38] ( 867 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [33:58, 01:39](1560 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:28, 12:36] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [33:19, 01:28](2853 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [32:52, 00:58](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:39, 01:50](2924 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:17, 04:01] ( 871 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [32:14, 01:13](4436 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 14:48:33
-Ending Date/Time: 20240501 16:24:47
-Total Time: 01h:36m:59s
+Starting Date/Time: 20240506 19:29:03
+Ending Date/Time: 20240506 20:53:52
+Total Time: 01h:25m:26s
Compiles Completed: 31/31
-Tests Completed: 156/156
+Tests Completed: 158/158
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/opnReqTest b/tests/opnReqTest
index db44db7c0b..cf854962b7 100755
--- a/tests/opnReqTest
+++ b/tests/opnReqTest
@@ -338,10 +338,10 @@ if [[ $MACHINE_ID = hera ]]; then
PARTITION=
QUEUE=batch
COMPILE_QUEUE=batch
- dprefix=/scratch1/NCEPDEV
- DISKNM=$dprefix/nems/emc.nemspara/RT
- STMP=${dprefix}/stmp4
- PTMP=${dprefix}/stmp2
+ dprefix="/scratch1/NCEPDEV"
+ DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT"
+ STMP="${dprefix}/stmp4"
+ PTMP="${dprefix}/stmp2"
SCHEDULER=slurm
elif [[ $MACHINE_ID = orion ]]; then
@@ -632,7 +632,7 @@ fi
mkdir -p ${STMP}/${USER}
NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST
RTPWD=${NEW_BASELINE}
-INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101}
+INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501}
INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/
INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207}
diff --git a/tests/rt.conf b/tests/rt.conf
index 1af875400f..2fa9bfd999 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -22,32 +22,32 @@
### Intel Tests ###
### S2S tests ###
COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 |
-RUN | cpld_control_p8_mixedmode | - noaacloud | baseline |
+RUN | cpld_control_p8_mixedmode | - noaacloud | baseline |
#GFS
COMPILE | s2swa_32bit_pdlib | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 |
-RUN | cpld_control_gfsv17 | - noaacloud | baseline |
-RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17
-RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17
-RUN | cpld_mpi_gfsv17 | - noaacloud | |
+RUN | cpld_control_gfsv17 | - noaacloud | baseline |
+RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17
+RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17
+RUN | cpld_mpi_gfsv17 | - noaacloud | |
COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 |
-RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline |
+RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline |
COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 |
-RUN | cpld_control_p8 | - noaacloud | baseline |
-RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline |
-RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8
-RUN | cpld_control_qr_p8 | - noaacloud | |
-RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8
-RUN | cpld_2threads_p8 | - derecho noaacloud | |
-RUN | cpld_decomp_p8 | - noaacloud | |
-RUN | cpld_mpi_p8 | - noaacloud | |
-RUN | cpld_control_ciceC_p8 | - noaacloud | baseline |
-RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline |
-RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8
-RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline |
-RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8
+RUN | cpld_control_p8 | - noaacloud | baseline |
+RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline |
+RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8
+RUN | cpld_control_qr_p8 | - noaacloud | |
+RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8
+RUN | cpld_2threads_p8 | - derecho noaacloud | |
+RUN | cpld_decomp_p8 | - noaacloud | |
+RUN | cpld_mpi_p8 | - noaacloud | |
+RUN | cpld_control_ciceC_p8 | - noaacloud | baseline |
+RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline |
+RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8
+RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline |
+RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8
# Aerosol, no Wave
RUN | cpld_s2sa_p8 | - noaacloud | baseline |
@@ -67,21 +67,21 @@ COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sf
RUN | cpld_control_noaero_p8_agrid | | baseline |
COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 |
-RUN | cpld_control_c48 | | baseline |
-#RUN | cpld_warmstart_c48 | - noaacloud | baseline |
-#RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48
+RUN | cpld_control_c48 | | baseline |
+RUN | cpld_warmstart_c48 | - noaacloud | baseline |
+RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48
COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 |
RUN | cpld_control_p8_faster | - noaacloud | baseline |
# Unstructured WW3 mesh
COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 |
-RUN | cpld_control_pdlib_p8 | - noaacloud | baseline |
-RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8
-RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8
+RUN | cpld_control_pdlib_p8 | - noaacloud | baseline |
+RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8
+RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8
COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 |
-RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline |
+RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline |
### ATM tests ###
COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 |
@@ -220,7 +220,7 @@ COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H
RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | conus13km_debug | - noaacloud | baseline |
-RUN | conus13km_debug_qr | - noaacloud | |
+RUN | conus13km_debug_qr | - noaacloud | |
RUN | conus13km_debug_2threads | - derecho noaacloud | |
RUN | conus13km_radar_tten_debug | - noaacloud | baseline |
@@ -288,15 +288,15 @@ RUN | datm_cdeps_control_cfsr_faster | - wcoss2
### CDEPS Data Atmosphere tests with LND ###
COMPILE | datm_cdeps_land | intel | -DAPP=LND | - wcoss2 | fv3 |
-RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline |
-RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline |
-RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5
+RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline |
+RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline |
+RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5
### ATM-LND tests ###
COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 |
-RUN | control_p8_atmlnd_sbs | - noaacloud | baseline |
-RUN | control_p8_atmlnd | - noaacloud | baseline |
-RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd
+RUN | control_p8_atmlnd_sbs | - noaacloud | baseline |
+RUN | control_p8_atmlnd | - noaacloud | baseline |
+RUN | control_restart_p8_atmlnd | - noaacloud | | control_p8_atmlnd
COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 |
RUN | control_p8_atmlnd_debug | - noaacloud | baseline |
diff --git a/tests/rt.sh b/tests/rt.sh
index 4454eb7fed..c55eeaaddb 100755
--- a/tests/rt.sh
+++ b/tests/rt.sh
@@ -1033,7 +1033,7 @@ if [[ "${CREATE_BASELINE}" == false ]] ; then
fi
fi
-INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20221101}
+INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501}
INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214
INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207}
diff --git a/tests/test_changes.list b/tests/test_changes.list
index cff472391f..dfc590d291 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,2 +1,52 @@
-merra2_thompson intel
-atmaero_control_p8_rad_micro intel
+cpld_control_p8_mixedmode intel
+cpld_control_gfsv17 intel
+cpld_control_gfsv17_iau intel
+cpld_restart_gfsv17 intel
+cpld_mpi_gfsv17 intel
+cpld_debug_gfsv17 intel
+cpld_control_p8 intel
+cpld_control_p8.v2.sfc intel
+cpld_restart_p8 intel
+cpld_control_qr_p8 intel
+cpld_restart_qr_p8 intel
+cpld_2threads_p8 intel
+cpld_decomp_p8 intel
+cpld_mpi_p8 intel
+cpld_control_ciceC_p8 intel
+cpld_control_c192_p8 intel
+cpld_restart_c192_p8 intel
+cpld_bmark_p8 intel
+cpld_restart_bmark_p8 intel
+cpld_s2sa_p8 intel
+cpld_control_noaero_p8 intel
+cpld_control_nowave_noaero_p8 intel
+cpld_debug_p8 intel
+cpld_debug_noaero_p8 intel
+cpld_control_noaero_p8_agrid intel
+cpld_control_c48 intel
+cpld_warmstart_c48 intel
+cpld_restart_c48 intel
+cpld_control_p8_faster intel
+cpld_control_pdlib_p8 intel
+cpld_restart_pdlib_p8 intel
+cpld_mpi_pdlib_p8 intel
+cpld_debug_pdlib_p8 intel
+datm_cdeps_control_cfsr intel
+datm_cdeps_restart_cfsr intel
+datm_cdeps_control_gefs intel
+datm_cdeps_iau_gefs intel
+datm_cdeps_stochy_gefs intel
+datm_cdeps_ciceC_cfsr intel
+datm_cdeps_bulk_cfsr intel
+datm_cdeps_bulk_gefs intel
+datm_cdeps_mx025_cfsr intel
+datm_cdeps_mx025_gefs intel
+datm_cdeps_multiple_files_cfsr intel
+datm_cdeps_3072x1536_cfsr intel
+datm_cdeps_gfs intel
+datm_cdeps_debug_cfsr intel
+datm_cdeps_control_cfsr_faster intel
+cpld_control_nowave_noaero_p8 gnu
+cpld_control_pdlib_p8 gnu
+cpld_debug_pdlib_p8 gnu
+datm_cdeps_control_cfsr gnu
From 85d73f2091904fcb434162702182d20c1974aebd Mon Sep 17 00:00:00 2001
From: Fabio L R Diniz <45880035+fabiolrdiniz@users.noreply.github.com>
Date: Thu, 9 May 2024 12:02:02 -0600
Subject: [PATCH 30/33] Adding a few JEDI-related aliases into the
`fd_ufs.yaml` file+Add option to specify fv3atm history and inline post files
output directory #2254 + Bump jinja2 from 3.1.3 to 3.1.4 in /doc/UsersGuide
#2270 (#2215)
* UFSWM - Add several aliases in `fd_ufs.yaml` needed for JEDI-UFS. Add new model_configure option (fv3atm_output_dir) to specify directory in which all fv3atm history and inline post files will be saved.
* FV3 - Add new model_configure option (fv3atm_output_dir) to specify directory in which all history and inline post files will be saved.
---------
Co-authored-by: Fabio L R Diniz
Co-authored-by: Dom Heinzeller
Co-authored-by: Dusan Jovic
---
FV3 | 2 +-
doc/UsersGuide/requirements.txt | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 169 +---
.../OpnReqTests_regional_control_hera.log | 61 +-
tests/logs/RegressionTests_acorn.log | 591 ++++++--------
tests/logs/RegressionTests_derecho.log | 514 ++++++------
tests/logs/RegressionTests_gaea.log | 528 ++++++------
tests/logs/RegressionTests_hera.log | 767 ++++++++----------
tests/logs/RegressionTests_hercules.log | 702 ++++++++--------
tests/logs/RegressionTests_jet.log | 466 +++++------
tests/logs/RegressionTests_orion.log | 528 ++++++------
tests/logs/RegressionTests_wcoss2.log | 530 ++++++------
tests/parm/fd_ufs.yaml | 40 +-
tests/test_changes.list | 52 --
15 files changed, 2407 insertions(+), 2593 deletions(-)
diff --git a/FV3 b/FV3
index 683061b3fd..7147dac3d5 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 683061b3fd58716625eed61d7a7143e985f733d4
+Subproject commit 7147dac3d5075c38a43cc221d1e7e7337c28437f
diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt
index 3888acb016..7c806c7579 100644
--- a/doc/UsersGuide/requirements.txt
+++ b/doc/UsersGuide/requirements.txt
@@ -26,7 +26,7 @@ importlib-metadata==7.0.1
# via
# sphinx
# sphinxcontrib-bibtex
-jinja2==3.1.3
+jinja2==3.1.4
# via sphinx
latexcodec==2.0.1
# via pybtex
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index e829c13338..9b774a47d9 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon May 6 03:31:26 UTC 2024
+Wed May 8 13:41:14 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 272.641469
- 0: The maximum resident set size (KB) = 1268416
+ 0: The total amount of wall time = 268.660502
+ 0: The maximum resident set size (KB) = 1268232
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 939.651847
- 0: The maximum resident set size (KB) = 1254768
+ 0: The total amount of wall time = 952.646761
+ 0: The maximum resident set size (KB) = 1255292
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 241.788160
- 0: The maximum resident set size (KB) = 1249176
+ 0: The total amount of wall time = 242.733088
+ 0: The maximum resident set size (KB) = 1245144
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 244.812605
- 0: The maximum resident set size (KB) = 1246164
+ 0: The total amount of wall time = 239.108039
+ 0: The maximum resident set size (KB) = 1248916
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.401979
- 0: The maximum resident set size (KB) = 1247912
+ 0: The total amount of wall time = 242.313139
+ 0: The maximum resident set size (KB) = 1247708
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 245.916587
- 0: The maximum resident set size (KB) = 1245720
+ 0: The total amount of wall time = 237.668319
+ 0: The maximum resident set size (KB) = 1248200
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2102271/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 244.965128
- 0: The maximum resident set size (KB) = 1242856
+ 0: The total amount of wall time = 243.736914
+ 0: The maximum resident set size (KB) = 1248980
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 6 04:33:54 UTC 2024
-Elapsed time: 01h:02m:28s. Have a nice day!
+Wed May 8 14:43:48 UTC 2024
+Elapsed time: 01h:02m:35s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index a36694bc8d..e13da398db 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon May 6 21:46:21 UTC 2024
+Wed May 8 22:03:04 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,159 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1337.937513
- 0: The maximum resident set size (KB) = 1366960
+ 0: The total amount of wall time = 1313.925417
+ 0: The maximum resident set size (KB) = 1367280
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/rst_rst
-Checking test rst results ....
- Comparing sfcf021.tile1.nc ............MISSING file
- Comparing sfcf021.tile2.nc ............MISSING file
- Comparing sfcf021.tile3.nc ............MISSING file
- Comparing sfcf021.tile4.nc ............MISSING file
- Comparing sfcf021.tile5.nc ............MISSING file
- Comparing sfcf021.tile6.nc ............MISSING file
- Comparing atmf021.tile1.nc ............MISSING file
- Comparing atmf021.tile2.nc ............MISSING file
- Comparing atmf021.tile3.nc ............MISSING file
- Comparing atmf021.tile4.nc ............MISSING file
- Comparing atmf021.tile5.nc ............MISSING file
- Comparing atmf021.tile6.nc ............MISSING file
- Comparing sfcf024.tile1.nc ............MISSING file
- Comparing sfcf024.tile2.nc ............MISSING file
- Comparing sfcf024.tile3.nc ............MISSING file
- Comparing sfcf024.tile4.nc ............MISSING file
- Comparing sfcf024.tile5.nc ............MISSING file
- Comparing sfcf024.tile6.nc ............MISSING file
- Comparing atmf024.tile1.nc ............MISSING file
- Comparing atmf024.tile2.nc ............MISSING file
- Comparing atmf024.tile3.nc ............MISSING file
- Comparing atmf024.tile4.nc ............MISSING file
- Comparing atmf024.tile5.nc ............MISSING file
- Comparing atmf024.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.coupler.res ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file
- Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file
- Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file
- Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file
- Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file
- Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file
- Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file
-
-
-Test rst FAIL
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2042345/std_base_std_base
-Checking test std_base results ....
-Moving baseline std_base files ....
- Moving sfcf021.tile1.nc .........OK
- Moving sfcf021.tile2.nc .........OK
- Moving sfcf021.tile3.nc .........OK
- Moving sfcf021.tile4.nc .........OK
- Moving sfcf021.tile5.nc .........OK
- Moving sfcf021.tile6.nc .........OK
- Moving atmf021.tile1.nc .........OK
- Moving atmf021.tile2.nc .........OK
- Moving atmf021.tile3.nc .........OK
- Moving atmf021.tile4.nc .........OK
- Moving atmf021.tile5.nc .........OK
- Moving atmf021.tile6.nc .........OK
- Moving sfcf024.tile1.nc .........OK
- Moving sfcf024.tile2.nc .........OK
- Moving sfcf024.tile3.nc .........OK
- Moving sfcf024.tile4.nc .........OK
- Moving sfcf024.tile5.nc .........OK
- Moving sfcf024.tile6.nc .........OK
- Moving atmf024.tile1.nc .........OK
- Moving atmf024.tile2.nc .........OK
- Moving atmf024.tile3.nc .........OK
- Moving atmf024.tile4.nc .........OK
- Moving atmf024.tile5.nc .........OK
- Moving atmf024.tile6.nc .........OK
- Moving RESTART/20210323.060000.coupler.res .........OK
- Moving RESTART/20210323.060000.fv_core.res.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK
- Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK
- Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
- Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- Moving RESTART/20210323.060000.MOM.res.nc .........OK
- Moving RESTART/iced.2021-03-23-21600.nc .........OK
- Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
-
- 0: The total amount of wall time = 398.324973
- 0: The maximum resident set size (KB) = 1344212
-
-Test std_base PASS
-
-FAILED TESTS:
-Test rst failed in check_result failed
-OPERATION REQUIREMENT TEST FAILED
-Tue May 7 00:38:15 UTC 2024
-Elapsed time: 02h:51m:56s. Have a nice day!
-Tue May 7 01:53:20 UTC 2024
-Start Operation Requirement Test
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -280,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 405.576010
- 0: The maximum resident set size (KB) = 1340024
+ 0: The total amount of wall time = 618.318216
+ 0: The maximum resident set size (KB) = 1359788
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3322035/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -350,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 395.446701
- 0: The maximum resident set size (KB) = 1344300
+ 0: The total amount of wall time = 541.651862
+ 0: The maximum resident set size (KB) = 1359804
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue May 7 02:25:02 UTC 2024
-Elapsed time: 00h:31m:43s. Have a nice day!
+Wed May 8 23:07:07 UTC 2024
+Elapsed time: 01h:04m:04s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 126227365f..8803c1624f 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Mon May 6 13:15:23 UTC 2024
+Wed May 8 18:21:05 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2920818/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving dynf000.nc .........OK
@@ -15,14 +15,20 @@ Moving baseline bit_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 1289.474304
- 0: The maximum resident set size (KB) = 591012
+ 0: The total amount of wall time = 1309.798707
+ 0: The maximum resident set size (KB) = 596032
Test bit_base PASS
+OPERATION REQUIREMENT TEST WAS SUCCESSFUL
+Wed May 8 18:47:56 UTC 2024
+Elapsed time: 00h:26m:51s. Have a nice day!
+Wed May 8 18:48:27 UTC 2024
+Start Operation Requirement Test
+
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -33,14 +39,39 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2173.814168
- 0: The maximum resident set size (KB) = 555696
+ 0: The total amount of wall time = 2158.789432
+ 0: The maximum resident set size (KB) = 560836
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
+ Moving dynf000.nc .........OK
+ Moving dynf006.nc .........OK
+ Moving phyf000.nc .........OK
+ Moving phyf006.nc .........OK
+ Moving PRSLEV.GrbF00 .........OK
+ Moving PRSLEV.GrbF06 .........OK
+ Moving NATLEV.GrbF00 .........OK
+ Moving NATLEV.GrbF06 .........OK
+
+ 0: The total amount of wall time = 2165.997972
+ 0: The maximum resident set size (KB) = 556908
+
+Test std_base PASS
+
+OPERATION REQUIREMENT TEST WAS SUCCESSFUL
+Wed May 8 20:07:02 UTC 2024
+Elapsed time: 01h:18m:35s. Have a nice day!
+Wed May 8 20:12:02 UTC 2024
+Start Operation Requirement Test
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -52,14 +83,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2138.683822
- 0: The maximum resident set size (KB) = 555504
+ 0: The total amount of wall time = 2128.207151
+ 0: The maximum resident set size (KB) = 555744
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3029607/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -70,11 +101,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2194.552952
- 0: The maximum resident set size (KB) = 553188
+ 0: The total amount of wall time = 2139.117039
+ 0: The maximum resident set size (KB) = 580480
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 6 15:40:27 UTC 2024
-Elapsed time: 02h:25m:06s. Have a nice day!
+Wed May 8 21:29:22 UTC 2024
+Elapsed time: 01h:17m:20s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index 0f9cea2320..db9e35c572 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-185711d25b9d234f2d48a5cfb21b8e8295193f61
+11f08c4352632e1432d9c38e6d066387da2828e1
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,12 +11,12 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -35,340 +35,267 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_5114
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_210135
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:31] ( 3 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:09, 01:58](2991 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:39] ( 3 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [01:02, 03:28](1617 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:22, 03:20](1739 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [27:46, 02:21](877 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:03, 03:01](1594 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:14] ( 1527 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [13:16, 03:04](1645 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:24, 10:31] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [07:09, 01:31](3020 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:09, 02:04](3020 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [58:06, 02:30](3077 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 01:43](3043 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [39:37, 02:22](3096 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:09, 01:56](3328 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [07:09, 01:30](3016 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:10, 01:55](2944 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:09, 02:00](3020 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 02:17](2986 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:23, 10:10] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:10, 01:07](1614 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:10, 01:32](1643 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:40] ( 2 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:09, 01:32](1645 MB)
-
-PASS -- COMPILE 's2s_intel' [10:24, 09:37] ( 2 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:08, 01:00](2638 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:47] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [02:03, 01:59](3020 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 16:17] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [02:03, 01:50](1630 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:52, 01:09](934 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:38, 01:06](1603 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:03] ( 1562 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [14:16, 01:20](1659 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:55, 09:46] ( 3 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [36:59, 01:13](610 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [34:46, 00:44](1500 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:45, 00:56](1508 MB)
-PASS -- TEST 'control_latlon_intel' [32:46, 00:42](1504 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:42, 00:55](1503 MB)
-PASS -- TEST 'control_c48_intel' [32:41, 01:06](1585 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [32:41, 00:46](713 MB)
-PASS -- TEST 'control_c192_intel' [32:42, 00:44](1620 MB)
-PASS -- TEST 'control_c384_intel' [32:46, 02:19](1932 MB)
-PASS -- TEST 'control_c384gdas_intel' [32:34, 03:43](1118 MB)
-PASS -- TEST 'control_stochy_intel' [31:41, 00:54](567 MB)
-PASS -- TEST 'control_stochy_restart_intel' [27:08, 00:18](372 MB)
-PASS -- TEST 'control_lndp_intel' [31:40, 01:00](565 MB)
-PASS -- TEST 'control_iovr4_intel' [30:50, 00:34](561 MB)
-PASS -- TEST 'control_iovr5_intel' [30:09, 01:16](561 MB)
-PASS -- TEST 'control_p8_intel' [30:02, 02:49](1534 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [23:59, 02:30](1535 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [29:36, 02:15](1537 MB)
-PASS -- TEST 'control_restart_p8_intel' [21:20, 02:07](726 MB)
-PASS -- TEST 'control_noqr_p8_intel' [29:04, 01:28](1525 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [20:10, 01:37](732 MB)
-PASS -- TEST 'control_decomp_p8_intel' [29:04, 01:21](1529 MB)
-PASS -- TEST 'control_2threads_p8_intel' [27:44, 01:18](1621 MB)
-PASS -- TEST 'control_p8_lndp_intel' [27:08, 01:04](1535 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [26:37, 02:08](1588 MB)
-PASS -- TEST 'control_p8_mynn_intel' [26:37, 02:31](1539 MB)
-PASS -- TEST 'merra2_thompson_intel' [26:36, 01:41](1539 MB)
-PASS -- TEST 'regional_control_intel' [26:33, 01:02](606 MB)
-PASS -- TEST 'regional_restart_intel' [14:19, 00:23](776 MB)
-PASS -- TEST 'regional_decomp_intel' [26:22, 01:09](605 MB)
-PASS -- TEST 'regional_2threads_intel' [26:19, 00:28](695 MB)
-PASS -- TEST 'regional_noquilt_intel' [26:17, 00:26](1139 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 00:51](606 MB)
-PASS -- TEST 'regional_wofs_intel' [25:46, 00:12](1573 MB)
-
-PASS -- COMPILE 'ifi_intel' [34:51, 08:24] ( 2 warnings )
-PASS -- TEST 'regional_ifi_control_intel' [37:50, 00:55](606 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [37:49, 00:26](606 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [37:49, 00:56](695 MB)
-
-PASS -- COMPILE 'rrfs_intel' [29:47, 09:09] ( 5 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [24:15, 02:56](943 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:43, 01:34](1112 MB)
-PASS -- TEST 'rap_decomp_intel' [23:33, 02:24](943 MB)
-PASS -- TEST 'rap_2threads_intel' [22:33, 02:18](1027 MB)
-PASS -- TEST 'rap_restart_intel' [07:49, 02:20](814 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [21:57, 03:13](940 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 02:50](943 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 03:06](813 MB)
-PASS -- TEST 'hrrr_control_intel' [12:29, 02:24](935 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [19:12, 02:58](937 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [16:44, 01:28](1013 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:58, 00:25](769 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [15:16, 02:48](936 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [15:14, 00:42](1902 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:52, 00:26](1891 MB)
-
-PASS -- COMPILE 'csawmg_intel' [29:47, 08:45] ( 3 warnings )
-PASS -- TEST 'control_csawmg_intel' [14:48, 01:24](632 MB)
-
-PASS -- COMPILE 'wam_intel' [29:47, 08:30] ( 2 warnings )
-PASS -- TEST 'control_wam_intel' [14:39, 01:13](309 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [28:42, 09:05] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [14:11, 02:01](1533 MB)
-PASS -- TEST 'regional_control_faster_intel' [14:08, 00:26](605 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [24:38, 04:30] ( 887 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:30, 00:37](1532 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [13:21, 00:53](1533 MB)
-PASS -- TEST 'control_stochy_debug_intel' [42:30, 00:56](741 MB)
-PASS -- TEST 'control_lndp_debug_intel' [42:30, 01:15](742 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [42:30, 00:56](777 MB)
-PASS -- TEST 'control_ras_debug_intel' [42:30, 01:15](752 MB)
-PASS -- TEST 'control_diag_debug_intel' [42:30, 00:26](1594 MB)
-PASS -- TEST 'control_debug_p8_intel' [42:30, 01:09](1564 MB)
-PASS -- TEST 'regional_debug_intel' [42:29, 00:17](645 MB)
-PASS -- TEST 'rap_control_debug_intel' [42:30, 00:47](1120 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [42:30, 00:50](1113 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [42:30, 00:24](1116 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [42:30, 00:23](1117 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [42:30, 01:10](1120 MB)
-PASS -- TEST 'rap_diag_debug_intel' [42:30, 00:43](1202 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:30, 00:16](1120 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:30, 00:51](1119 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [42:30, 00:28](1122 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:30, 01:00](1120 MB)
-PASS -- TEST 'rap_noah_debug_intel' [42:30, 00:53](1118 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [42:30, 00:51](1117 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:30, 00:44](1118 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [41:20, 01:03](1112 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [39:28, 00:33](1120 MB)
-PASS -- TEST 'rap_flake_debug_intel' [39:17, 00:44](1120 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:44, 02:29](1122 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [18:33, 03:15] ( 857 warnings )
-PASS -- TEST 'control_wam_debug_intel' [43:29, 01:00](353 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:38, 08:33] ( 5 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:20, 01:00](980 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:50, 02:48](822 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:47, 03:22](821 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:14, 02:35](878 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:12, 02:13](868 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:08, 02:27](818 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:21, 01:30](718 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 00:34](700 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:38, 10:46] ( 5 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [08:38, 01:08](1030 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:20, 00:42](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:19, 00:24](911 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 08:39] ( 5 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:08, 00:56](845 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:17] ( 789 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 01:06](997 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:49, 01:03](996 MB)
-PASS -- TEST 'conus13km_debug_intel' [07:34, 00:42](1084 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [07:34, 00:26](758 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [06:23, 00:20](1059 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:58, 01:16](1151 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:55, 03:20] ( 789 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:30, 00:43](1017 MB)
-
-PASS -- COMPILE 'hafsw_intel' [45:01, 09:49] ( 3 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [53:25, 01:37](643 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [53:25, 00:45](989 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [53:23, 01:29](693 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [53:23, 01:42](726 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [53:24, 01:44](744 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [53:23, 00:57](412 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [53:24, 02:24](435 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [53:24, 01:52](310 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [53:27, 02:53](375 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:23, 01:22](445 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:23, 01:41](446 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:25, 00:45](512 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:24, 00:30](339 MB)
-PASS -- TEST 'gnv1_nested_intel' [53:24, 01:53](699 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [38:54, 03:46] ( 1469 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [59:31, 00:42](540 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [45:00, 10:02] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [53:24, 00:56](552 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [53:24, 01:12](723 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [45:00, 09:53] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:23, 01:18](723 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [45:00, 09:29] ( 2 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [53:21, 02:04](684 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:21, 02:08](672 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:19, 00:49](888 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [47:01, 09:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [51:10, 00:14](756 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [44:43, 00:33](745 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [51:10, 00:53](634 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [44:45, 00:58](636 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [51:10, 00:16](634 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [50:40, 00:55](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [50:11, 00:19](756 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [50:11, 00:30](634 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:16, 01:51](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [48:01, 01:15](622 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [46:53, 00:18](756 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [46:47, 00:39](2010 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [46:47, 00:43](2010 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [46:01, 08:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [51:17, 00:53](745 MB)
-
-FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_land_intel' [, ]
-FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_gswp3_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_lnd_era5_rst_intel' [, ]( MB)
-
-PASS -- COMPILE 'atml_intel' [44:00, 09:57] ( 10 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [45:28, 02:13](1572 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [44:45, 02:39](1573 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:46, 01:10](779 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:17, 04:06] ( 882 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:13, 02:31](1605 MB)
-
-PASS -- COMPILE 'atmw_intel' [09:23, 09:02] ( 2 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [44:02, 02:38](1574 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:21, 08:59] ( 2 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [43:04, 01:50](2870 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [41:45, 02:07](2930 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [41:44, 01:46](2942 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:16, 03:27] ( 886 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [41:33, 02:19](4338 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [10:22, 10:08] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:27, 01:23](3047 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:28, 15:44] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [45:10, 01:31](1655 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:12, 01:10](1777 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [19:08, 01:32](911 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [45:00, 02:02](1631 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:43] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [57:34, 01:06](1673 MB)
+
+PASS -- COMPILE 's2swa_intel' [10:22, 10:09] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [51:27, 01:20](3076 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:27, 01:30](3077 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [43:04, 01:27](3131 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [51:27, 01:23](3096 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [43:03, 01:23](3149 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [51:27, 01:03](3384 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [51:27, 01:26](3072 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [51:28, 01:24](3001 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:27, 00:55](3074 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [51:27, 00:48](3042 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:22, 09:39] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [51:27, 00:51](1653 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:27, 00:57](1695 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [09:22, 09:05] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:35, 01:02](1700 MB)
+
+PASS -- COMPILE 's2s_intel' [09:21, 09:10] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [52:27, 00:41](2678 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [52:27, 00:28](2696 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [49:34, 01:18](2130 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:27, 14:35] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [44:30, 01:28](3076 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:11] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [43:57, 01:11](1671 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 01:14](969 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:28, 00:36](1644 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:10] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 01:28](1683 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:09] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [48:10, 01:09](637 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [48:10, 01:07](1527 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:10, 01:08](1546 MB)
+PASS -- TEST 'control_latlon_intel' [48:10, 00:57](1540 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:10, 01:04](1534 MB)
+PASS -- TEST 'control_c48_intel' [48:09, 00:47](1616 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [48:09, 01:18](742 MB)
+PASS -- TEST 'control_c192_intel' [48:10, 01:14](1650 MB)
+PASS -- TEST 'control_c384_intel' [48:14, 01:52](1964 MB)
+PASS -- TEST 'control_c384gdas_intel' [48:14, 01:40](1157 MB)
+PASS -- TEST 'control_stochy_intel' [48:10, 00:48](596 MB)
+PASS -- TEST 'control_stochy_restart_intel' [41:40, 00:55](397 MB)
+PASS -- TEST 'control_lndp_intel' [48:10, 00:37](592 MB)
+PASS -- TEST 'control_iovr4_intel' [48:10, 00:26](588 MB)
+PASS -- TEST 'control_iovr5_intel' [48:10, 01:02](587 MB)
+PASS -- TEST 'control_p8_intel' [48:10, 01:03](1562 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [43:55, 01:31](1563 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [43:09, 01:12](1575 MB)
+PASS -- TEST 'control_restart_p8_intel' [33:29, 01:29](758 MB)
+PASS -- TEST 'control_noqr_p8_intel' [41:40, 01:55](1557 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [28:12, 01:13](760 MB)
+PASS -- TEST 'control_decomp_p8_intel' [40:50, 01:02](1561 MB)
+PASS -- TEST 'control_2threads_p8_intel' [40:37, 00:58](1653 MB)
+PASS -- TEST 'control_p8_lndp_intel' [38:45, 00:29](1573 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [38:35, 01:26](1625 MB)
+PASS -- TEST 'control_p8_mynn_intel' [37:47, 01:14](1572 MB)
+PASS -- TEST 'merra2_thompson_intel' [36:48, 01:48](1573 MB)
+PASS -- TEST 'regional_control_intel' [36:31, 00:44](631 MB)
+PASS -- TEST 'regional_restart_intel' [24:46, 00:24](800 MB)
+PASS -- TEST 'regional_decomp_intel' [21:24, 00:20](632 MB)
+PASS -- TEST 'regional_2threads_intel' [35:07, 00:25](728 MB)
+PASS -- TEST 'regional_noquilt_intel' [34:53, 00:47](1167 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [34:01, 00:25](634 MB)
+PASS -- TEST 'regional_wofs_intel' [32:17, 00:39](1609 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:21, 07:56] ( 1 warnings )
+PASS -- TEST 'regional_ifi_control_intel' [31:44, 01:02](631 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [31:04, 00:19](631 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [30:37, 00:52](727 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:22, 08:39] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [30:29, 01:25](974 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:45, 00:29](1154 MB)
+PASS -- TEST 'rap_decomp_intel' [29:11, 01:30](975 MB)
+PASS -- TEST 'rap_2threads_intel' [28:29, 00:44](1061 MB)
+PASS -- TEST 'rap_restart_intel' [21:12, 01:54](843 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [28:29, 01:17](971 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [28:12, 00:55](972 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [19:13, 01:11](845 MB)
+PASS -- TEST 'hrrr_control_intel' [28:04, 01:19](964 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [27:44, 01:01](970 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [27:14, 01:10](1052 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [21:50, 00:22](795 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [26:28, 01:36](970 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [26:28, 00:54](1931 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:26, 01:02](1920 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:21, 08:20] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [26:11, 00:55](662 MB)
+
+PASS -- COMPILE 'wam_intel' [42:59, 08:04] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [00:05, 00:35](332 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [25:53, 01:37](1560 MB)
+PASS -- TEST 'regional_control_faster_intel' [25:49, 00:30](628 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 03:58] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:16, 00:27](1560 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:58, 01:00](1564 MB)
+PASS -- TEST 'control_stochy_debug_intel' [23:52, 00:56](764 MB)
+PASS -- TEST 'control_lndp_debug_intel' [23:49, 01:03](775 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [22:09, 01:06](801 MB)
+PASS -- TEST 'control_ras_debug_intel' [21:50, 00:35](774 MB)
+PASS -- TEST 'control_diag_debug_intel' [20:35, 01:10](1626 MB)
+PASS -- TEST 'control_debug_p8_intel' [20:34, 00:57](1595 MB)
+PASS -- TEST 'regional_debug_intel' [19:36, 00:43](673 MB)
+PASS -- TEST 'rap_control_debug_intel' [19:17, 00:27](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [19:13, 00:37](1139 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [18:27, 00:59](1141 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [18:25, 00:33](1144 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:24, 00:28](1146 MB)
+PASS -- TEST 'rap_diag_debug_intel' [17:13, 00:31](1229 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:12, 00:30](1147 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:57, 00:27](1148 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [16:30, 01:04](1148 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:07, 01:00](1145 MB)
+PASS -- TEST 'rap_noah_debug_intel' [15:56, 00:26](1143 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [15:56, 00:27](1145 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:53, 01:09](1146 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [15:50, 01:11](1137 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [15:31, 01:10](1147 MB)
+PASS -- TEST 'rap_flake_debug_intel' [14:58, 00:28](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:04, 01:21](1150 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [40:56, 02:51] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:13, 01:02](376 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:01, 08:08] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:21, 00:53](1020 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:20, 01:26](853 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:20, 01:58](849 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:20, 01:52](913 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:21, 01:56](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:20, 01:38](852 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:59, 01:33](747 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:17, 00:44](732 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [48:03, 10:16] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [58:18, 00:38](1061 MB)
+PASS -- TEST 'conus13km_2threads_intel' [27:59, 00:17](1041 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [27:58, 00:55](941 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:59, 08:17] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [00:21, 01:21](873 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [37:51, 03:02] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 01:08](1026 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 00:14](1021 MB)
+PASS -- TEST 'conus13km_debug_intel' [05:13, 00:58](1112 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [05:13, 00:41](789 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [05:14, 00:31](1087 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:13, 00:17](1184 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:53, 02:55] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 01:07](1046 MB)
+
+PASS -- COMPILE 'hafsw_intel' [43:57, 09:17] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [46:28, 01:45](674 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:10, 00:38](1027 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:08, 02:01](712 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [58:08, 01:35](761 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:09, 02:06](769 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:08, 01:30](441 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:09, 02:04](464 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [58:09, 01:02](339 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:12, 02:38](400 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [58:08, 00:41](479 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:08, 00:56](479 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:10, 01:24](537 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [58:09, 01:09](370 MB)
+PASS -- TEST 'gnv1_nested_intel' [57:41, 01:17](733 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [37:51, 03:19] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:15, 01:04](571 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [40:55, 09:30] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:37, 01:12](577 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [55:26, 01:23](752 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:33] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:24, 01:03](755 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [09:22, 09:00] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [52:37, 01:29](714 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:00, 02:08](698 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:04, 00:47](897 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:22, 08:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [48:08, 00:34](763 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:46, 00:11](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:08, 00:45](645 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [46:01, 00:17](640 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [45:19, 00:46](641 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:56, 00:42](763 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:47, 00:37](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:07, 01:03](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [42:52, 00:47](645 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:25, 01:13](627 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:40, 00:18](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:59, 00:50](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [40:36, 00:56](2025 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 07:46]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [40:16, 00:11](763 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 00:50] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:07, 00:45](266 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:07, 00:49](412 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [39:57, 00:12](411 MB)
+
+PASS -- COMPILE 'atml_intel' [11:23, 09:45] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:24, 01:48](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [39:09, 01:53](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:45, 00:27](803 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:17, 03:33] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [38:27, 01:20](1631 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:23, 08:35] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:00, 01:38](1611 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:23, 08:33] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [37:21, 01:42](2916 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [36:04, 01:25](2983 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [35:38, 01:09](2991 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:20, 03:03] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [34:56, 01:20](4501 MB)
SYNOPSIS:
-Starting Date/Time: 20240501 14:40:58
-Ending Date/Time: 20240501 17:04:01
-Total Time: 02h:23m:30s
-Compiles Completed: 35/36
-Tests Completed: 171/174
-Failed Compiles:
-* COMPILE datm_cdeps_land_intel: FAILED: UNABLE TO COMPILE
--- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/AnningCheng-NOAA/ufs-weather-model/tests/logs/log_acorn/compile_datm_cdeps_land_intel.log
-Failed Tests:
-* TEST datm_cdeps_lnd_gswp3_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST datm_cdeps_lnd_era5_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST datm_cdeps_lnd_era5_rst_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ACORN REGRESSION TESTING LOG====
-====START OF ACORN REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-185711d25b9d234f2d48a5cfb21b8e8295193f61
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- bbcabb5b292cccb4bd3542667f97a987cc3274cc FV3 (remotes/origin/mr2_innl)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
- 9b9467998598fb45725a27a6200eabdf9840ad33 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-717-g9b94679)
- cb2eedd54241523ca8bab09af86b4a45fa0bdd1b FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5189-gcb2eedd5)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240430
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29444
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
-* (-b) - NEW BASELINES FROM FILE: test_changes.list
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [15:28, 01:07] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [34:25, 00:50](269 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [34:25, 00:43](407 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [31:53, 01:01](408 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240501 17:09:54
-Ending Date/Time: 20240501 17:31:57
-Total Time: 00h:22m:12s
-Compiles Completed: 1/1
-Tests Completed: 3/3
+Starting Date/Time: 20240509 10:57:51
+Ending Date/Time: 20240509 12:51:12
+Total Time: 01h:53m:37s
+Compiles Completed: 36/36
+Tests Completed: 176/176
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index a0b92401cb..00f3b3ffda 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+1b73dc3cfe52765a05ce8ae57735fef196de5fab
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,12 +11,12 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,268 +36,268 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_78724
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_15947
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [28:39, 19:47] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:42, 04:55](3074 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [30:39, 21:09] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [21:13, 13:45](1689 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:14, 15:07](1827 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:37, 07:12](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [09:00, 15:49](1656 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [18:40, 09:33] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [19:48, 21:23](1708 MB)
-
-PASS -- COMPILE 's2swa_intel' [28:43, 19:34] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:47, 05:38](3091 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:46, 05:35](3092 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:19](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [14:57, 05:36](3128 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:04, 03:19](3180 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [05:37, 05:32](3090 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:37, 04:36](3390 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:56, 05:36](3104 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 08:46](3633 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 06:01](3614 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 09:48](4345 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:22, 07:13](4651 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:34, 05:16](3069 MB)
-
-PASS -- COMPILE 's2sw_intel' [27:43, 19:02] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [10:50, 04:11](1681 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:03, 04:16](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [18:36, 09:30] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [21:06, 07:44](3148 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [17:38, 08:48] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [25:42, 05:15](1707 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [23:39, 14:36] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:49, 04:16](1728 MB)
-
-PASS -- COMPILE 's2s_intel' [23:39, 14:33] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [28:28, 06:42](2666 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [24:30, 02:00](2683 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [05:13, 01:08](2123 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [32:44, 23:13] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:07, 05:31](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:34, 19:46] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:42, 14:11](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:11, 07:19](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:49, 16:03](1672 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [35:33, 08:45] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:38, 22:54](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [39:29, 12:35] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [05:26, 03:24](672 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:26](1563 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:16, 02:28](1578 MB)
-PASS -- TEST 'control_latlon_intel' [05:02, 02:23](1570 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:19, 02:24](1574 MB)
-PASS -- TEST 'control_c48_intel' [13:13, 06:13](1618 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:34, 05:15](735 MB)
-PASS -- TEST 'control_c192_intel' [13:41, 08:42](1687 MB)
-PASS -- TEST 'control_c384_intel' [15:38, 09:02](2006 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:59, 07:25](1208 MB)
-PASS -- TEST 'control_stochy_intel' [03:45, 01:26](630 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:53](437 MB)
-PASS -- TEST 'control_lndp_intel' [02:32, 01:23](625 MB)
-PASS -- TEST 'control_iovr4_intel' [03:49, 02:07](622 MB)
-PASS -- TEST 'control_iovr5_intel' [03:50, 02:05](625 MB)
-PASS -- TEST 'control_p8_intel' [06:14, 02:28](1595 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:13, 02:28](1595 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:28](1603 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:24, 01:30](802 MB)
-PASS -- TEST 'control_noqr_p8_intel' [06:22, 02:28](1593 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 01:28](804 MB)
-PASS -- TEST 'control_decomp_p8_intel' [06:11, 02:33](1600 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:45, 04:30](1593 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 03:17](1653 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:05, 02:31](1606 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:43, 02:48](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:53, 04:35](631 MB)
-PASS -- TEST 'regional_restart_intel' [06:00, 02:30](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:47, 04:52](630 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:03, 04:36](1162 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:06, 04:36](625 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 04:36](632 MB)
-PASS -- TEST 'regional_wofs_intel' [08:01, 05:56](1599 MB)
-
-PASS -- COMPILE 'rrfs_intel' [32:29, 11:13] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [09:07, 06:06](1005 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:47, 03:44](1195 MB)
-PASS -- TEST 'rap_decomp_intel' [09:18, 06:23](1005 MB)
-PASS -- TEST 'rap_restart_intel' [05:18, 03:22](878 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:18, 06:05](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:13, 06:28](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:22, 04:34](881 MB)
-PASS -- TEST 'hrrr_control_intel' [05:08, 03:12](1002 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:20](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:07, 02:47](1086 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:51, 01:45](833 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:52, 06:01](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:31, 07:24](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 07:07](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [31:33, 10:17] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:59, 05:56](695 MB)
-PASS -- TEST 'control_ras_intel' [04:37, 02:57](655 MB)
-
-PASS -- COMPILE 'wam_intel' [27:26, 09:35] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:31, 01:56](385 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [29:34, 12:35] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:21, 02:24](1604 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:46, 04:18](626 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [25:26, 08:32] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:04, 02:31](1593 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:05, 02:27](1594 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:14, 02:55](800 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:15, 02:34](800 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:00, 03:55](840 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:14, 02:35](811 MB)
-PASS -- TEST 'control_diag_debug_intel' [09:08, 02:35](1667 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:01, 02:38](1623 MB)
-PASS -- TEST 'regional_debug_intel' [19:02, 16:05](664 MB)
-PASS -- TEST 'rap_control_debug_intel' [08:35, 04:39](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:30, 04:36](1178 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:30, 04:37](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 04:38](1180 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 04:42](1181 MB)
-PASS -- TEST 'rap_diag_debug_intel' [10:06, 04:53](1268 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 04:46](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:37, 04:50](1185 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:43, 04:38](1185 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:40, 04:40](1182 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:39, 04:31](1178 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [08:38, 04:44](1183 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 07:32](1181 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:37, 04:34](1177 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 05:23](1185 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:44, 04:43](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:01, 07:54](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [20:30, 05:21] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:25, 04:40](425 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [22:34, 09:43] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:34, 03:44](1062 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:02, 05:08](885 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:47](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:56, 02:54](883 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:51](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:32](780 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:14, 11:34] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:29, 01:53](1087 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:42, 00:58](1087 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:31, 01:07](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:19, 09:37] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 03:38](907 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 05:43] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:30, 04:29](1057 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 04:25](1056 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:54, 13:17](1136 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [17:53, 13:25](819 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:50, 13:18](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 05:22] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:36](1086 MB)
-
-PASS -- COMPILE 'hafsw_intel' [18:18, 15:43] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:29, 04:32](718 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:04](1067 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 06:26](777 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:53](795 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:51, 12:03](812 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:20, 04:40](475 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:46, 05:45](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:09, 02:21](391 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:47, 06:15](458 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:19](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:26, 03:05](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:30, 03:47](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:42, 01:16](426 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:17, 03:23](792 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [21:23, 07:08] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:26, 12:07](613 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [32:21, 19:19] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:32, 07:03](626 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:51, 07:10](691 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [27:20, 16:31] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:26, 05:17](676 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [25:24, 14:04] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:31, 05:34](760 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:29, 05:35](741 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:20, 16:12](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:13, 07:44] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:32, 02:30](747 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:37, 01:34](750 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:22](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:37, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:35, 02:23](648 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:36, 02:29](748 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:37, 02:29](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:22](643 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](691 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:34, 05:41](675 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:29](748 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:29, 03:52](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:32, 03:57](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 05:02] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:33, 05:03](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:19, 07:45] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:29, 02:30](760 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 02:19] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:43, 01:08](311 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:30, 01:04](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:44](451 MB)
-
-PASS -- COMPILE 'atml_intel' [17:13, 12:54] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:00, 06:02](1641 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:46, 06:17](1635 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 03:16](851 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [10:19, 07:33] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 05:29](1665 MB)
-
-PASS -- COMPILE 'atmw_intel' [16:20, 12:40] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:35, 01:33](1637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:13, 11:05] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [08:35, 03:36](2950 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:43, 04:13](3000 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:14, 04:19](3010 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [09:13, 06:12] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [26:24, 22:12](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:51, 20:04] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:04, 04:57](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:51, 20:27] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [28:28, 13:45](1697 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:42, 15:10](1827 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 07:19](958 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:49](1659 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:19, 10:42] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:35, 21:17](1694 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:51, 20:04] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:39](3092 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:12, 05:37](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:31, 03:19](3150 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [18:07, 05:40](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [09:51, 03:20](3179 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:34](3092 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 04:37](3400 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:05, 05:35](3100 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [31:09, 08:53](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [19:01, 05:52](3617 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [36:12, 09:48](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [42:55, 07:04](4651 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 05:14](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [22:51, 19:14] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [18:16, 04:12](1690 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:28, 04:16](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [16:49, 10:37] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:28, 07:43](3156 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [15:46, 10:03] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:20](1708 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:50, 14:51] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 04:18](1736 MB)
+
+PASS -- COMPILE 's2s_intel' [17:50, 14:51] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [27:52, 06:40](2667 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [21:42, 01:57](2691 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [07:28, 01:12](2121 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [09:48, 23:12] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:26, 05:27](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [53:49, 20:09] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:52, 14:01](1706 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:07, 07:28](1021 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:24, 16:01](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:53, 09:55] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 22:59](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [07:51, 12:49] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [06:40, 03:23](672 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 02:22](1570 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:29, 02:24](1571 MB)
+PASS -- TEST 'control_latlon_intel' [04:20, 02:22](1564 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 02:27](1568 MB)
+PASS -- TEST 'control_c48_intel' [08:16, 06:12](1620 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:13](738 MB)
+PASS -- TEST 'control_c192_intel' [11:56, 08:43](1694 MB)
+PASS -- TEST 'control_c384_intel' [16:49, 08:56](2010 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:01, 07:22](1203 MB)
+PASS -- TEST 'control_stochy_intel' [02:28, 01:24](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:51](441 MB)
+PASS -- TEST 'control_lndp_intel' [02:41, 01:20](626 MB)
+PASS -- TEST 'control_iovr4_intel' [03:57, 02:04](624 MB)
+PASS -- TEST 'control_iovr5_intel' [03:56, 02:03](624 MB)
+PASS -- TEST 'control_p8_intel' [04:51, 02:29](1597 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:30](1595 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:30](1604 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:31, 01:23](801 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:27](1592 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:28, 01:23](808 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:33](1590 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:20](1604 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:17](1661 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:31](1606 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:46, 02:47](1608 MB)
+PASS -- TEST 'regional_control_intel' [06:05, 04:30](628 MB)
+PASS -- TEST 'regional_restart_intel' [04:06, 02:29](801 MB)
+PASS -- TEST 'regional_decomp_intel' [06:58, 04:44](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:11, 04:25](1161 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 04:26](628 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:10, 04:30](633 MB)
+PASS -- TEST 'regional_wofs_intel' [07:10, 05:39](1605 MB)
+
+PASS -- COMPILE 'rrfs_intel' [04:49, 11:31] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [12:13, 06:05](1007 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:37](1204 MB)
+PASS -- TEST 'rap_decomp_intel' [08:26, 06:20](1004 MB)
+PASS -- TEST 'rap_restart_intel' [05:18, 03:11](879 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:20, 06:02](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 06:19](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:32](880 MB)
+PASS -- TEST 'hrrr_control_intel' [05:04, 03:12](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:16](1000 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:48](1091 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:44](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:18, 05:58](1002 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:49, 07:19](1961 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:03](1955 MB)
+
+PASS -- COMPILE 'csawmg_intel' [03:49, 10:46] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:17, 05:49](695 MB)
+PASS -- TEST 'control_ras_intel' [04:32, 02:51](659 MB)
+
+PASS -- COMPILE 'wam_intel' [59:47, 10:01] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:34, 01:55](387 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [02:48, 12:50] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:47, 02:23](1604 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](626 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [57:46, 09:15] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:58, 02:30](1595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:57, 02:29](1593 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:01, 02:55](804 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:35, 02:36](800 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [12:04, 04:01](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:57, 02:38](809 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:30, 02:34](1664 MB)
+PASS -- TEST 'control_debug_p8_intel' [11:01, 02:37](1627 MB)
+PASS -- TEST 'regional_debug_intel' [24:04, 16:04](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:18, 04:38](1184 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:32](1177 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:46](1180 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:40](1182 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:39](1183 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:38, 04:52](1270 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:50](1184 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:50](1185 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:47](1180 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:38](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:35](1178 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:49](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:11, 07:39](1176 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:36](1174 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:35](1181 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1182 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 07:54](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [54:44, 06:03] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:25, 04:37](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:30, 10:08] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:38, 03:29](1057 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:07](883 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:46](882 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:18, 02:54](884 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:51](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:30](778 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:17, 12:16] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:07, 01:57](1084 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:01](1086 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](976 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:16, 10:11] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:16, 03:36](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:15] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1063 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:32](1060 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:51, 13:20](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:41](821 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:34, 13:17](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 06:12] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:32](1083 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:14, 15:57] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:29](721 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:02](1069 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 06:23](785 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:32, 10:54](800 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 11:59](816 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:36, 04:39](480 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:45](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:57, 02:18](395 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:15](457 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:18](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:05](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:22, 03:50](586 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:18](429 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:13, 03:25](789 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [13:13, 07:55] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:29, 12:05](646 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [24:18, 19:13] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:22, 07:03](631 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:41, 07:08](692 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:17, 17:05] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 05:19](677 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:13, 14:21] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:45, 05:32](751 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 05:37](743 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:11](898 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:13] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:40, 01:32](738 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:23](638 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:24](638 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:24, 02:25](638 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](750 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:29](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:20](640 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:35, 05:38](694 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 05:41](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:22, 02:32](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:31, 03:52](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [10:27, 03:56](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:38] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:30, 05:02](747 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:21] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:27, 02:31](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:56] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:12](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:31, 01:03](457 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:40, 00:44](452 MB)
+
+PASS -- COMPILE 'atml_intel' [14:20, 13:28] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:56, 06:29](1632 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:34, 06:10](1636 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:06](856 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [09:13, 08:21] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 05:29](1669 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:20, 12:56] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 01:32](1636 MB)
+
+PASS -- COMPILE 'atmaero_intel' [18:21, 11:45] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:39, 03:42](2950 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:45, 04:17](2995 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 04:21](3010 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:20, 07:02] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [26:51, 21:57](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 14:49:48
-Ending Date/Time: 20240506 19:49:44
-Total Time: 05h:00m:44s
+Starting Date/Time: 20240508 12:49:22
+Ending Date/Time: 20240508 19:08:33
+Total Time: 06h:20m:08s
Compiles Completed: 38/38
Tests Completed: 175/175
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 5c860d155e..d031ec5ff0 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+f29351be77830efd8ae23ad72436b4b38b886383
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,12 +11,12 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,275 +36,275 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_241906
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_7744
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:20] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:59, 08:57](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:15, 25:24] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:34, 13:49](1685 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:13, 14:34](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [22:49, 07:07](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:10](1669 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:11, 14:48] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:26, 24:04](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [55:13, 54:16] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [12:01, 07:51](3097 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:00, 07:50](3096 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:48, 05:13](3152 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 08:06](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:43, 05:22](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 06:35](3407 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:42, 07:44](3097 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 07:06](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:00, 07:56](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:43, 10:54](3267 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:40, 07:19](3600 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:03, 13:10](4035 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:13, 09:03](4340 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:38, 07:58](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:11, 19:43] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:55, 05:28](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:05, 05:44](1730 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [15:11, 14:21] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:45, 10:34](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:11, 13:41] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:08](1701 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:18] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 05:30](1725 MB)
-
-PASS -- COMPILE 's2s_intel' [17:11, 16:30] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:26, 06:55](2663 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:35, 02:10](2685 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:10, 01:04](2116 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:26] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:30, 08:01](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:11, 24:50] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 14:50](1702 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:37](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:06, 17:09](1682 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:11] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:27, 26:59](1718 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:13, 17:11] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [10:18, 03:40](674 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [10:32, 03:01](1568 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:52, 03:29](1580 MB)
-PASS -- TEST 'control_latlon_intel' [13:43, 04:03](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:51, 04:01](1569 MB)
-PASS -- TEST 'control_c48_intel' [22:15, 06:36](1604 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:27, 05:39](722 MB)
-PASS -- TEST 'control_c192_intel' [33:06, 09:44](1682 MB)
-PASS -- TEST 'control_c384_intel' [41:19, 18:03](1985 MB)
-PASS -- TEST 'control_c384gdas_intel' [30:09, 14:07](1187 MB)
-PASS -- TEST 'control_stochy_intel' [05:42, 01:53](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [18:32, 01:02](430 MB)
-PASS -- TEST 'control_lndp_intel' [07:52, 01:46](628 MB)
-PASS -- TEST 'control_iovr4_intel' [10:17, 02:34](623 MB)
-PASS -- TEST 'control_iovr5_intel' [10:17, 02:28](623 MB)
-PASS -- TEST 'control_p8_intel' [27:16, 03:37](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [26:35, 03:27](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [26:17, 03:25](1609 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:21, 02:12](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [26:05, 03:31](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [06:15, 02:16](793 MB)
-PASS -- TEST 'control_decomp_p8_intel' [21:08, 03:20](1596 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:30, 02:38](1679 MB)
-PASS -- TEST 'control_p8_lndp_intel' [27:58, 05:17](1606 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [27:20, 04:12](1657 MB)
-PASS -- TEST 'control_p8_mynn_intel' [14:15, 03:49](1615 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:14, 03:56](1604 MB)
-PASS -- TEST 'regional_control_intel' [06:25, 04:45](615 MB)
-PASS -- TEST 'regional_restart_intel' [03:36, 02:35](789 MB)
-PASS -- TEST 'regional_decomp_intel' [05:46, 04:57](615 MB)
-PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](767 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:44, 04:43](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:55, 04:49](615 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:47, 04:58](615 MB)
-PASS -- TEST 'regional_wofs_intel' [19:46, 06:16](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:13, 15:21] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [20:10, 06:52](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [18:16, 04:00](1183 MB)
-PASS -- TEST 'rap_decomp_intel' [21:16, 07:20](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [20:12, 06:11](1093 MB)
-PASS -- TEST 'rap_restart_intel' [06:14, 03:36](880 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [20:21, 06:55](1007 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:13, 07:23](1005 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:14, 05:04](879 MB)
-PASS -- TEST 'hrrr_control_intel' [15:12, 03:56](1005 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [16:03, 04:06](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [14:01, 03:03](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [05:36, 02:24](837 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [18:15, 06:41](1003 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [16:40, 08:14](1969 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:35, 08:00](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [16:12, 15:30] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [10:41, 06:40](695 MB)
-PASS -- TEST 'control_ras_intel' [06:33, 03:47](658 MB)
-
-PASS -- COMPILE 'wam_intel' [16:12, 15:13]
-PASS -- TEST 'control_wam_intel' [05:26, 02:36](369 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [18:11, 17:14] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [07:16, 03:51](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:51, 04:40](615 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 10:37] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:03, 03:01](1586 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:02, 02:56](1589 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:23](784 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:31, 02:52](788 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:15](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:29, 02:54](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:54, 03:01](1640 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:49, 03:18](1618 MB)
-PASS -- TEST 'regional_debug_intel' [17:49, 16:25](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:33, 05:05](1166 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:31, 05:02](1165 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 05:13](1167 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:34, 05:05](1167 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 05:02](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:41, 05:17](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:14](1166 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:34, 05:08](1167 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:12](1168 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:10](1167 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:34, 04:54](1166 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 05:06](1164 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:49](1169 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:29, 04:55](1163 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:34, 06:00](1168 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:39, 05:08](1166 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:01, 08:39](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:10, 08:47] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:36, 04:57](397 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:11, 15:57] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 03:54](1053 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:00, 05:53](889 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:36](885 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:49, 05:13](941 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:02, 02:46](939 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:55, 03:29](887 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:56, 04:07](784 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:29, 01:51](764 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:15, 13:56] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:59, 02:19](1095 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:48, 01:04](1075 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:37, 01:32](974 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:16] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:57, 04:22](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:16, 09:14] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 04:54](1048 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 04:52](1048 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:47, 14:06](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:54, 14:03](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [08:45, 08:05](1112 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:37, 14:00](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:12, 09:34] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:42, 05:07](1067 MB)
-
-PASS -- COMPILE 'hafsw_intel' [16:11, 15:46] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:15](709 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:31, 04:31](1059 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:31, 07:33](752 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [14:14, 11:40](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:27, 12:53](803 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:09, 05:18](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:24, 06:43](495 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [07:07, 02:57](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:01, 08:17](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:54, 03:55](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:10, 03:30](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:03, 04:41](568 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:42, 01:43](402 MB)
-PASS -- TEST 'gnv1_nested_intel' [08:17, 04:10](765 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [12:11, 11:21] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:02, 12:59](587 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:11, 19:26] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:57, 07:42](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 07:50](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:20] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:38, 05:58](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:11, 14:39] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [10:29, 06:08](749 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:22, 06:05](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [24:06, 20:11](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:16] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:28, 02:36](745 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:57, 01:36](747 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:28, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:26, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 02:30](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 02:37](758 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 02:26](647 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 06:05](693 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 06:01](676 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:40, 02:34](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:58, 04:35](2013 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:52, 04:38](2013 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 07:00] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 05:23](743 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:10] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:35](745 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 03:17] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:12, 01:56](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:44, 02:39](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:44, 00:56](456 MB)
-
-PASS -- COMPILE 'atml_intel' [15:11, 14:10] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:50, 07:56](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:54, 07:56](1633 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:41, 03:35](837 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [10:11, 09:11] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:38, 06:37](1648 MB)
-
-PASS -- COMPILE 'atmw_intel' [13:11, 13:03] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:11, 02:31](1650 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:11, 12:21] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:20](2946 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:25, 06:29](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 06:26](3020 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:46] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [21:58, 18:30](4483 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [19:12, 19:08] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:03, 07:19](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:29] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [29:35, 13:28](1698 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:32, 14:22](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 06:49](944 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 15:09](1670 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:12, 11:28] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:51](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:13, 19:30] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [11:28, 07:57](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:39, 08:23](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [29:54, 05:17](3154 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 08:05](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [29:55, 05:19](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 06:47](3408 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:26, 07:58](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [19:24, 07:29](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:40, 08:18](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [36:30, 10:46](3268 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 07:21](3603 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 13:03](4034 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 09:13](4341 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:26, 07:50](3066 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:12, 18:19] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:53, 05:06](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:02, 05:14](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:12, 14:19] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [15:45, 10:07](3129 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [12:12, 11:20] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:28](1697 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [40:15, 39:44] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:52, 05:20](1728 MB)
+
+PASS -- COMPILE 's2s_intel' [26:12, 25:42] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [26:59, 07:03](2659 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [21:24, 02:05](2684 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [12:24, 01:10](2114 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:12, 22:30] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:11](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:13, 24:17] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 15:01](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:42](1000 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:53, 17:40](1683 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:26] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:48, 26:50](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [18:14, 17:20] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [27:31, 03:44](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [25:01, 03:17](1567 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:01, 03:16](1579 MB)
+PASS -- TEST 'control_latlon_intel' [17:50, 03:24](1568 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:11, 03:01](1567 MB)
+PASS -- TEST 'control_c48_intel' [13:30, 06:37](1601 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 05:39](722 MB)
+PASS -- TEST 'control_c192_intel' [10:56, 09:57](1683 MB)
+PASS -- TEST 'control_c384_intel' [20:22, 18:14](1986 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:31, 14:12](1183 MB)
+PASS -- TEST 'control_stochy_intel' [02:34, 01:54](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:35, 01:04](430 MB)
+PASS -- TEST 'control_lndp_intel' [03:32, 02:07](628 MB)
+PASS -- TEST 'control_iovr4_intel' [03:37, 02:33](623 MB)
+PASS -- TEST 'control_iovr5_intel' [03:37, 02:32](623 MB)
+PASS -- TEST 'control_p8_intel' [05:14, 03:17](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:31, 03:24](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:11](1607 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:05, 02:08](788 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:18](1594 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:55](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:43](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:10, 02:45](1684 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:27](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:15, 04:36](1656 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:38](1613 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:15, 03:58](1609 MB)
+PASS -- TEST 'regional_control_intel' [06:45, 04:42](617 MB)
+PASS -- TEST 'regional_restart_intel' [03:41, 02:38](786 MB)
+PASS -- TEST 'regional_decomp_intel' [06:45, 04:49](617 MB)
+PASS -- TEST 'regional_2threads_intel' [04:43, 02:55](758 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:52, 04:52](1155 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:41](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:49, 04:44](617 MB)
+PASS -- TEST 'regional_wofs_intel' [09:18, 06:14](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [13:11, 12:55] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [31:56, 06:45](1012 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [28:32, 04:00](1189 MB)
+PASS -- TEST 'rap_decomp_intel' [30:57, 07:06](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [30:57, 06:12](1094 MB)
+PASS -- TEST 'rap_restart_intel' [06:03, 03:42](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [31:58, 07:00](1009 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:58, 07:20](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 05:12](882 MB)
+PASS -- TEST 'hrrr_control_intel' [27:24, 04:04](1007 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [27:33, 03:53](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [26:29, 03:04](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:34, 02:06](839 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [32:01, 06:52](1004 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [31:30, 08:08](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:30, 08:07](1949 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:11, 12:29] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [31:33, 06:37](696 MB)
+PASS -- TEST 'control_ras_intel' [26:22, 03:30](656 MB)
+
+PASS -- COMPILE 'wam_intel' [14:11, 13:24]
+PASS -- TEST 'control_wam_intel' [03:28, 02:26](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 15:12] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:10, 03:13](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:39, 04:44](617 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 11:03] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 03:05](1585 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:55, 03:03](1585 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:04](783 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:47](784 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:41, 04:19](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:46, 03:21](1641 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:44, 03:28](1617 MB)
+PASS -- TEST 'regional_debug_intel' [17:44, 16:22](633 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:34, 05:10](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:05](1167 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:24](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 05:29](1173 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:09](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:24](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:27](1169 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:31, 05:47](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:31](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:19](1169 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:17](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:21](1167 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:03](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:25](1167 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 06:26](1171 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:33, 05:28](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:54, 08:20](1174 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:13, 08:47] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:33, 05:02](398 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:14, 22:47] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:53](1051 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 05:55](891 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 03:40](887 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:22](949 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:48](937 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:29](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:14, 04:56](785 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:42](769 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 16:07] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:03, 02:12](1091 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:14, 01:09](1073 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:51](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 15:19] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:27, 04:20](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 11:22] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:58](1050 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:11, 04:45](1051 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:58, 14:15](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 14:06](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:11](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:18](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:14] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:10, 04:58](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [28:12, 27:10] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:19](710 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:59, 04:32](1062 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:37](740 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:16, 11:32](785 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:17, 12:44](801 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:17, 05:25](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:53](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:58](374 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 08:03](432 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 04:01](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:48](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 05:19](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:04, 01:51](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:42, 04:05](769 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [17:16, 16:15] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:29, 13:17](581 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [27:12, 26:35] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:41](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:49](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [24:12, 23:45] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:16, 05:59](785 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:11, 17:14] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:28](744 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:13](732 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:16, 20:02](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:45] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 02:36](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:35](746 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:34](641 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:29](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](637 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:40](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:28](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](678 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:37](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:59, 04:41](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:35](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:02] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:23](743 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 16:05] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:42](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [09:11, 08:36] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:02, 01:54](310 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:34](457 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 02:27](456 MB)
+
+PASS -- COMPILE 'atml_intel' [22:15, 21:31] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:14](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 08:03](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 04:33](836 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [10:14, 09:55] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:14](1653 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:11, 14:01] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:35](1651 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:19, 06:43](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:48](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:38](3019 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [21:11, 20:52] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [21:36, 18:57](4483 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 10:57:09
-Ending Date/Time: 20240506 12:53:05
-Total Time: 01h:56m:51s
+Starting Date/Time: 20240508 10:47:03
+Ending Date/Time: 20240508 12:41:33
+Total Time: 01h:55m:44s
Compiles Completed: 38/38
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 4b8a404edc..c9c5cfaf88 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,7 +1,7 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+f29351be77830efd8ae23ad72436b4b38b886383
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,7 +9,7 @@ Submodule hashes used in testing:
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
@@ -25,424 +25,369 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1490583
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3058841
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:13] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:32](3185 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 17:18] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [18:04, 17:05](1752 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:57](2031 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:10](1122 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:20](1642 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:14] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:07, 22:36](1699 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:12, 13:10] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:48](3199 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:36, 06:13](3195 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:35, 03:30](3255 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:56](3238 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:32](3254 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:19, 05:33](3559 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:45](3224 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:45](3059 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:35, 06:23](3228 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:26, 10:12](3340 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:28](3619 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [18:13, 10:08](4144 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:33, 06:24](4369 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:24, 05:25](3168 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:12, 12:38] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:46](1744 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:12, 04:17](1787 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:49] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:05, 08:30](3250 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:30] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:58, 05:43](1759 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:58] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:22](1794 MB)
-
-PASS -- COMPILE 's2s_intel' [12:12, 11:40] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:23](2831 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:35](2834 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [02:48, 01:25](2296 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:42] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:19, 05:33](3199 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:24] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1786 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 08:06](1177 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:05, 19:44](1646 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:24] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 25:08](1709 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:14] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:25, 03:32](705 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:57](1604 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:56, 03:02](1606 MB)
-PASS -- TEST 'control_latlon_intel' [04:47, 02:55](1597 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:52, 03:01](1601 MB)
-PASS -- TEST 'control_c48_intel' [08:51, 07:41](1756 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:25](880 MB)
-PASS -- TEST 'control_c192_intel' [12:04, 10:41](1750 MB)
-PASS -- TEST 'control_c384_intel' [13:00, 10:44](2004 MB)
-PASS -- TEST 'control_c384gdas_intel' [11:55, 08:07](1398 MB)
-PASS -- TEST 'control_stochy_intel' [02:23, 01:42](665 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:34, 01:01](500 MB)
-PASS -- TEST 'control_lndp_intel' [02:23, 01:36](660 MB)
-PASS -- TEST 'control_iovr4_intel' [03:33, 02:34](654 MB)
-PASS -- TEST 'control_iovr5_intel' [03:25, 02:33](655 MB)
-PASS -- TEST 'control_p8_intel' [04:00, 03:02](1635 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:05, 03:01](1603 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:56](1632 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:54, 01:36](889 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:56](1583 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:58, 01:37](938 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:00, 03:04](1614 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:57, 02:47](1715 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:58, 05:17](1626 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:01, 04:04](1689 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:59, 03:05](1639 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:56, 03:19](1628 MB)
-PASS -- TEST 'regional_control_intel' [06:41, 05:14](847 MB)
-PASS -- TEST 'regional_restart_intel' [03:42, 02:45](1018 MB)
-PASS -- TEST 'regional_decomp_intel' [06:42, 05:32](849 MB)
-PASS -- TEST 'regional_2threads_intel' [04:43, 03:16](842 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:38, 05:09](1360 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:42, 05:10](854 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:14](848 MB)
-PASS -- TEST 'regional_wofs_intel' [07:44, 06:49](1912 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:13, 10:45] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:44, 07:47](1114 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:13](1296 MB)
-PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1035 MB)
-PASS -- TEST 'rap_2threads_intel' [08:36, 07:26](1185 MB)
-PASS -- TEST 'rap_restart_intel' [04:51, 04:03](1110 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:38, 07:44](1111 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 08:08](1044 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:43, 05:52](1126 MB)
-PASS -- TEST 'hrrr_control_intel' [04:40, 04:01](1035 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 04:07](1037 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:40](1104 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:10](1006 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:45, 07:37](1098 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:24](1984 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2070 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:12, 10:32] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:43, 05:59](755 MB)
-PASS -- TEST 'control_ras_intel' [04:23, 03:15](748 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:11, 03:36]
-PASS -- TEST 'control_csawmg_gnu' [09:44, 08:27](548 MB)
-
-PASS -- COMPILE 'wam_intel' [10:11, 10:08] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [02:26, 02:04](657 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:54] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:56, 02:37](1639 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:40, 04:41](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 04:48] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:36](1621 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:32](1617 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:23, 02:59](822 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:45](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:42, 04:06](868 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:23, 02:46](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:49, 02:39](1679 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:44, 02:49](1649 MB)
-PASS -- TEST 'regional_debug_intel' [18:40, 17:17](826 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:23, 04:55](1208 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:22, 04:44](1208 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:45](1214 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:22, 04:59](1212 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:22, 04:53](1209 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:08](1291 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1210 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 04:59](1199 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:56](1205 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:47](1208 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:50](1205 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:54](1212 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:25, 07:55](1210 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:50](1207 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 05:53](1208 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:57](1205 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:38, 08:27](1188 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:35]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:23](528 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:21] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:23, 05:14](517 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:58, 04:17](1164 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:25](1058 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:23](984 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:11](1081 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 03:09](966 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:36](943 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:51](1031 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:53](935 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:38] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1198 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:44, 00:55](1124 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:15](1118 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:19] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 04:09](991 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:55] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:51](1091 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:41](1081 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:55, 14:34](1233 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:27](930 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1159 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:34](1300 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:37] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:07](1132 MB)
-
-PASS -- COMPILE 'hafsw_intel' [12:15, 11:59] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:19, 04:55](738 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:36, 05:54](1125 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:22, 06:56](839 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:26](859 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 15:10](874 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:51, 05:32](501 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:47](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:44](375 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:09](481 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:42, 03:41](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:30](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:51, 04:03](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:26, 01:13](407 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:40, 04:09](801 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:08] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:50, 12:47](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:12, 12:14] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:42](637 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:03, 08:49](747 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 12:08] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:01, 06:22](744 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:14, 11:22] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:23](835 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:26](825 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:10](1212 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:11, 06:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:40](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1092 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:33](1022 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:38](1021 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:34](1008 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:16, 02:35](1147 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:41](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 02:38](1018 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:10](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:15, 06:16](1042 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:46](1150 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:53](2487 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:18, 03:50](2511 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:56] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:20](1080 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:44]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:44](1152 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:04] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](263 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](328 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](327 MB)
-
-PASS -- COMPILE 'atml_intel' [13:11, 12:11] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:01, 04:15](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 04:08](1611 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:18](902 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:11, 04:20] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:54, 05:29](1627 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:11, 11:39] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:42](1670 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:10, 11:13] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:00, 04:02](3042 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 05:15](3067 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:56](3112 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:29] ( 885 warnings 6 remarks )
-FAILED: UNABLE TO RUN COMPARISON -- TEST 'regional_atmaq_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'atm_gnu' [04:10, 03:44]
-PASS -- TEST 'control_c48_gnu' [11:43, 11:03](1543 MB)
-PASS -- TEST 'control_stochy_gnu' [04:23, 03:24](506 MB)
-PASS -- TEST 'control_ras_gnu' [05:20, 04:43](518 MB)
-PASS -- TEST 'control_p8_gnu' [05:58, 04:38](1264 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:31](1275 MB)
-PASS -- TEST 'control_flake_gnu' [11:22, 10:25](553 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [04:11, 03:49]
-PASS -- TEST 'rap_control_gnu' [11:32, 10:40](857 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:32, 10:45](860 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:39, 09:46](945 MB)
-PASS -- TEST 'rap_restart_gnu' [06:40, 05:33](585 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:45](858 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 10:59](861 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:41, 08:05](588 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:36, 05:38](858 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:37](842 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:11](937 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:35](861 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:28, 02:52](569 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](665 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:41, 10:36](855 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:44]
-PASS -- TEST 'control_diag_debug_gnu' [02:48, 01:38](1290 MB)
-PASS -- TEST 'regional_debug_gnu' [11:41, 10:39](568 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:22, 02:39](869 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:20, 02:38](872 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 02:35](877 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 02:36](880 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:54](955 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 03:59](872 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:36](871 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:36](874 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:31](506 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:44](496 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:43, 01:39](1261 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:35](872 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:48](875 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:15](880 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [02:10, 01:52]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:38]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:29, 09:25](717 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:28, 05:02](713 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 08:33](767 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:34, 04:31](756 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:34, 05:00](716 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:35, 06:58](559 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:32](550 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:56, 03:10](887 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:46, 05:35](887 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:31]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:36, 05:44](742 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:45]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:22, 02:27](721 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:23, 02:26](721 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:54](900 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 06:48](589 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [07:42, 06:56](905 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:43, 06:56](968 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:11, 04:13]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:33](745 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:12, 14:40]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:37]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:10, 06:42](1361 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:46]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:37]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:02, 24:35](1322 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:23]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:53, 12:56](1331 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:18]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 02:53](704 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:49] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:31](3184 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:33, 17:09](1764 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:48](2026 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 08:08](1122 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:04, 19:18](1651 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:45] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 22:33](1706 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:11, 12:48] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:18, 05:47](3208 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 05:49](3227 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:24](3257 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:50](3252 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:25](3282 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:31](3562 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 05:47](3225 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:19, 04:45](3086 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 05:47](3196 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:25, 10:03](3352 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:35, 06:27](3628 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [23:34, 09:31](4129 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:02](4371 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:17, 05:23](3184 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:11, 12:03] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:43](1751 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:17](1799 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:28] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:14, 08:29](3210 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:32] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 05:46](1720 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:24] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 04:18](1790 MB)
+
+PASS -- COMPILE 's2s_intel' [12:11, 11:28] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:20](2830 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:34](2830 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2287 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:22, 05:26](3226 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:10] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 17:13](1793 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 08:07](1178 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:25, 19:38](1694 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:18] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:50](1737 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:16] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:22, 03:18](711 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [08:51, 02:54](1607 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:55, 02:57](1613 MB)
+PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1601 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:56, 02:55](1597 MB)
+PASS -- TEST 'control_c48_intel' [10:51, 07:35](1761 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 06:24](877 MB)
+PASS -- TEST 'control_c192_intel' [16:08, 10:30](1751 MB)
+PASS -- TEST 'control_c384_intel' [16:07, 10:30](2015 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:53, 08:01](1403 MB)
+PASS -- TEST 'control_stochy_intel' [06:23, 01:39](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:58](511 MB)
+PASS -- TEST 'control_lndp_intel' [06:22, 01:35](664 MB)
+PASS -- TEST 'control_iovr4_intel' [07:24, 02:25](651 MB)
+PASS -- TEST 'control_iovr5_intel' [06:24, 02:25](662 MB)
+PASS -- TEST 'control_p8_intel' [07:00, 02:54](1626 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 02:54](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 02:49](1635 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:48, 01:37](898 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:51, 02:50](1627 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:38](943 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:57](1627 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1716 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:07](1634 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:53](1703 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:57, 03:02](1646 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:55, 03:12](1641 MB)
+PASS -- TEST 'regional_control_intel' [06:42, 05:09](850 MB)
+PASS -- TEST 'regional_restart_intel' [05:45, 02:47](1015 MB)
+PASS -- TEST 'regional_decomp_intel' [06:41, 05:29](852 MB)
+PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](857 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:44, 05:06](1361 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:05](852 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:05](857 MB)
+PASS -- TEST 'regional_wofs_intel' [07:45, 06:44](1913 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:11, 10:31] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:43, 07:42](1114 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:07](1301 MB)
+PASS -- TEST 'rap_decomp_intel' [08:35, 08:05](1040 MB)
+PASS -- TEST 'rap_2threads_intel' [10:34, 07:15](1181 MB)
+PASS -- TEST 'rap_restart_intel' [05:53, 04:12](1111 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:43](1106 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:15, 08:10](1041 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:47](1133 MB)
+PASS -- TEST 'hrrr_control_intel' [06:36, 04:00](1043 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:09](1035 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:36](1112 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:20](1005 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:36](1097 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:13](1989 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2074 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:11, 10:20] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:42, 05:55](759 MB)
+PASS -- TEST 'control_ras_intel' [05:22, 03:14](757 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:35]
+PASS -- TEST 'control_csawmg_gnu' [09:40, 08:25](548 MB)
+
+PASS -- COMPILE 'wam_intel' [10:11, 10:04]
+PASS -- TEST 'control_wam_intel' [04:21, 02:06](660 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:31] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:24, 02:45](1631 MB)
+PASS -- TEST 'regional_control_faster_intel' [09:46, 04:45](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:47] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:45](1625 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:00, 02:43](1618 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:24, 03:12](830 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:45, 02:51](826 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:41, 04:16](881 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:02, 02:54](834 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:51, 02:55](1678 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:48, 03:01](1651 MB)
+PASS -- TEST 'regional_debug_intel' [20:47, 17:09](848 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:25, 05:02](1213 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:50](1208 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:51](1210 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:52](1211 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 04:50](1205 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:51, 05:06](1300 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 04:55](1208 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 04:55](1205 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:48](1209 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:46](1211 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:44](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:45](1209 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:58](1208 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:43](1207 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:47](1209 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:50](1207 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:14](1211 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:10, 02:42]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:11](532 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:09] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [08:22, 05:00](516 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 03:55](1170 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:23](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 03:24](991 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1104 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:33, 03:07](971 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:35](936 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:49, 05:03](1039 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:38, 01:51](947 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:13] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [06:03, 02:06](1208 MB)
+PASS -- TEST 'conus13km_2threads_intel' [15:48, 00:52](1122 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [17:50, 01:14](1110 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:16] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 04:10](990 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:35] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:44](1093 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 04:39](1087 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:00, 14:22](1231 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [18:56, 14:50](926 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [23:49, 08:05](1158 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:51, 14:47](1309 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:20] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [19:27, 04:56](1138 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:12, 11:44] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [17:25, 05:04](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:36, 06:15](1121 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:32, 07:02](840 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [28:22, 13:25](866 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:09](890 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:02, 05:34](506 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:34, 06:45](521 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [16:46, 02:39](380 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:19, 07:28](482 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:45](538 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:55, 03:32](535 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:57, 04:08](593 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:30, 01:23](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [19:47, 04:16](802 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:51] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [27:59, 12:57](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:12, 12:05] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:11, 08:58](673 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:17, 09:05](739 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:06] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 06:42](732 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:11, 11:07] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [18:24, 06:52](802 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:23, 06:42](826 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:01, 16:21](1216 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:50]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:54](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:36](1106 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1019 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:48](1023 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1018 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:51](1148 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1025 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:21](1055 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:29, 06:27](1042 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:35](1153 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:58](2451 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2438 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:58] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:12](1084 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:09]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:41](1163 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:43](260 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:48](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:30](323 MB)
+
+PASS -- COMPILE 'atml_intel' [12:13, 11:37] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:12, 04:06](1616 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 04:07](1616 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:13](901 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:13] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:24](1633 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:11, 10:55] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:45](1685 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:28, 10:52] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:00](3031 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:50](3094 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:52](3114 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:49, 03:32] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:38](4440 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:10, 04:16]
+PASS -- TEST 'control_c48_gnu' [11:49, 11:07](1544 MB)
+PASS -- TEST 'control_stochy_gnu' [04:25, 03:25](508 MB)
+PASS -- TEST 'control_ras_gnu' [05:22, 04:50](524 MB)
+PASS -- TEST 'control_p8_gnu' [06:05, 04:39](1267 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:00, 04:33](1269 MB)
+PASS -- TEST 'control_flake_gnu' [11:23, 10:43](551 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [07:11, 04:28]
+PASS -- TEST 'rap_control_gnu' [11:38, 10:40](862 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:37, 10:53](867 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:39, 09:48](942 MB)
+PASS -- TEST 'rap_restart_gnu' [06:40, 05:24](586 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:44](859 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 10:56](860 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](593 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:38, 05:34](857 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:35](848 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [06:32, 05:01](938 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:30](859 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](571 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](665 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](855 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 04:03]
+PASS -- TEST 'control_diag_debug_gnu' [03:54, 01:41](1292 MB)
+PASS -- TEST 'regional_debug_gnu' [11:47, 10:19](568 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](873 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:37](871 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](878 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](876 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:53](958 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:04](871 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](875 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:36](869 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:37](503 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:45](504 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:39](1259 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:32](873 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:49](877 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:21](879 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:38]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:00]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:11](716 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 04:56](718 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:34](772 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:27](756 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 04:58](713 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:37, 06:47](563 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:34](549 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:55, 03:13](888 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:54](890 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:51, 01:48](568 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 05:45]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](743 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:44]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:31](721 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:26](724 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:52, 06:59](903 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 06:59](585 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:46, 07:18](905 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:49](971 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:30]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:38](750 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:12, 14:30]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:14]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:11, 07:09](1359 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:28]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 14:17]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:10, 26:49](1325 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:16]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:01, 12:51](1336 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 14:15]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:59](705 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 01:41:36
-Ending Date/Time: 20240506 04:12:23
-Total Time: 02h:31m:25s
+Starting Date/Time: 20240508 14:46:21
+Ending Date/Time: 20240508 16:38:40
+Total Time: 01h:53m:59s
Compiles Completed: 54/54
-Tests Completed: 241/242
-Failed Tests:
-* TEST regional_atmaq_debug_intel: FAILED: UNABLE TO RUN COMPARISON
--- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2235/ufs-weather-model/tests/logs/log_hera/run_regional_atmaq_debug_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF HERA REGRESSION TESTING LOG====
-====START OF HERA REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3365779
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: epic
-* (-n) - RUN SINGLE TEST: regional_atmaq_debug
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:11, 04:31] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [35:19, 31:06](4469 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240506 14:53:48
-Ending Date/Time: 20240506 16:24:37
-Total Time: 01h:30m:59s
-Compiles Completed: 1/1
-Tests Completed: 1/1
+Tests Completed: 242/242
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 064db3b3c4..2b0fe10f1e 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,22 +1,22 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+1b73dc3cfe52765a05ce8ae57735fef196de5fab
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679f)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,362 +36,362 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1927015
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_138572
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:58] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:15, 10:34](1891 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:28] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [49:25, 14:24](1764 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:25, 14:10](2187 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:36](1184 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:43, 15:56](1688 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:47] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:08, 20:18](1723 MB)
-
-PASS -- COMPILE 's2swa_intel' [12:11, 12:06] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [48:12, 10:54](2065 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:19, 11:48](2069 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:48](1964 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [41:19, 07:43](1977 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [15:25, 04:24](1725 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [49:33, 12:39](2493 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [38:40, 08:04](2063 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [33:23, 06:28](1891 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:11, 10:54](2055 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [47:52, 17:23](2802 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [16:28, 06:09](2917 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [42:09, 09:40](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:56, 07:44](3625 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [32:17, 05:04](2019 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:10, 12:12] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [47:12, 07:10](1767 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:17, 06:38](1826 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:07, 06:46](2046 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:06] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:55, 04:42](1803 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:48] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:14, 03:57](1808 MB)
-
-PASS -- COMPILE 's2s_intel' [10:11, 09:34] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:18](2827 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [25:44, 02:07](2832 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [26:03, 01:06](2298 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:11, 12:24] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [47:10, 07:49](2078 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:51] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:15, 14:33](1794 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:42](1287 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:55, 15:29](1723 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:19] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:52, 21:32](1781 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:10, 07:45] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [42:13, 02:49](707 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [42:18, 02:35](1608 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:33, 02:30](1610 MB)
-PASS -- TEST 'control_latlon_intel' [42:10, 02:38](1609 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [46:21, 03:41](1616 MB)
-PASS -- TEST 'control_c48_intel' [45:12, 07:00](1743 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [44:48, 05:46](859 MB)
-PASS -- TEST 'control_c192_intel' [52:36, 10:15](1766 MB)
-PASS -- TEST 'control_c384_intel' [50:03, 09:24](2043 MB)
-PASS -- TEST 'control_c384gdas_intel' [53:53, 09:51](1517 MB)
-PASS -- TEST 'control_stochy_intel' [43:32, 02:41](670 MB)
-PASS -- TEST 'control_stochy_restart_intel' [08:36, 01:01](548 MB)
-PASS -- TEST 'control_lndp_intel' [40:37, 02:38](661 MB)
-PASS -- TEST 'control_iovr4_intel' [18:35, 02:03](662 MB)
-PASS -- TEST 'control_iovr5_intel' [18:32, 02:06](659 MB)
-PASS -- TEST 'control_p8_intel' [14:04, 02:30](1639 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [16:04, 03:47](1640 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [13:04, 03:43](1637 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:45, 01:25](930 MB)
-PASS -- TEST 'control_noqr_p8_intel' [13:02, 03:46](1631 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](988 MB)
-PASS -- TEST 'control_decomp_p8_intel' [13:16, 03:52](1631 MB)
-PASS -- TEST 'control_2threads_p8_intel' [11:58, 02:27](1718 MB)
-PASS -- TEST 'control_p8_lndp_intel' [13:49, 04:32](1634 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [13:00, 03:34](1710 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:58, 02:39](1651 MB)
-PASS -- TEST 'merra2_thompson_intel' [12:05, 02:56](1660 MB)
-PASS -- TEST 'regional_control_intel' [08:36, 05:00](964 MB)
-PASS -- TEST 'regional_restart_intel' [04:38, 02:26](1105 MB)
-PASS -- TEST 'regional_decomp_intel' [07:37, 04:36](946 MB)
-PASS -- TEST 'regional_2threads_intel' [10:35, 02:58](914 MB)
-PASS -- TEST 'regional_noquilt_intel' [12:41, 04:26](1484 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:37, 04:34](960 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [12:29, 04:37](955 MB)
-PASS -- TEST 'regional_wofs_intel' [12:33, 05:42](2075 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:10, 07:20] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [14:01, 06:37](1219 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:09, 04:22](1411 MB)
-PASS -- TEST 'rap_decomp_intel' [11:50, 06:46](1125 MB)
-PASS -- TEST 'rap_2threads_intel' [08:37, 06:06](1368 MB)
-PASS -- TEST 'rap_restart_intel' [04:54, 03:25](1132 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:47, 06:26](1205 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:45, 06:59](1136 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 05:01](1195 MB)
-PASS -- TEST 'hrrr_control_intel' [05:22, 03:21](1078 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:27](1046 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:04](1127 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:29, 01:56](1021 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:18](1195 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:53](2018 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 07:23](2170 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:10, 07:12] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:30, 05:19](805 MB)
-PASS -- TEST 'control_ras_intel' [04:17, 02:48](806 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [08:10, 04:33]
-PASS -- TEST 'control_csawmg_gnu' [08:38, 06:30](812 MB)
-
-PASS -- COMPILE 'wam_intel' [09:11, 07:29]
-PASS -- TEST 'control_wam_intel' [03:24, 01:48](785 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 10:50] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:51, 02:16](1636 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:28, 04:03](957 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:09] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:28, 02:14](1620 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:33, 02:09](1628 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:17](824 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:39](825 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:30, 03:35](871 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:15, 02:14](840 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:41, 02:22](1686 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:37, 02:21](1648 MB)
-PASS -- TEST 'regional_debug_intel' [14:32, 14:02](896 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:19, 03:59](1213 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:59](1219 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:58](1220 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:06](1228 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:17, 03:56](1224 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:21](1294 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:18, 04:04](1213 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:16, 04:00](1228 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:17, 04:00](1217 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:17, 03:59](1217 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:54](1209 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:06](1226 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:32](1219 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:22, 03:55](1214 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:18, 04:48](1226 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:23, 03:59](1212 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 06:51](1225 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:25]
-PASS -- TEST 'control_csawmg_debug_gnu' [04:37, 02:01](788 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [05:10, 02:24] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:10, 07:26] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:21](1272 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:54, 05:30](1140 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:35, 02:52](1018 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:04](1276 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:54, 02:37](1047 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:00](985 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [12:54, 04:04](1095 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:21, 01:35](969 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:10, 09:35] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1312 MB)
-PASS -- TEST 'conus13km_2threads_intel' [08:34, 00:51](1196 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [09:27, 01:05](1163 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 07:35] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:43](1056 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:30] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 03:59](1101 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:21, 03:52](1089 MB)
-PASS -- TEST 'conus13km_debug_intel' [17:31, 11:46](1304 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [18:32, 12:00](995 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [13:28, 06:42](1244 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:27, 11:38](1403 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:35] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:18, 04:01](1154 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:10, 10:47] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:03, 05:26](871 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:20, 05:13](1286 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:21, 06:29](953 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [21:05, 14:08](973 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:14, 15:19](1005 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:51, 05:28](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:11, 07:07](615 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:40, 02:53](432 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:50, 07:41](542 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:40, 03:57](613 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:39, 03:42](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:43, 04:49](682 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:27, 01:22](448 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:10, 04:01] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:43, 11:21](635 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:13, 16:56] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:05, 16:00](769 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:57, 16:52](840 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:10, 13:35] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:54, 09:58](836 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:10, 10:01] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [12:03, 05:35](960 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 05:35](927 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:47, 16:22](1335 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:14] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:16, 02:10](1148 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:21](1080 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:15, 02:08](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:15, 02:09](1008 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:10](1012 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:13](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:14, 02:13](1140 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:06](1011 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:51, 04:58](1155 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1146 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1150 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:04](2432 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:08](2440 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:03] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:17](1075 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:21] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:16](1151 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:46] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:56](328 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:19, 00:48](559 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:35](559 MB)
-
-PASS -- COMPILE 'atml_intel' [11:10, 09:21] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:03, 05:19](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:56, 05:23](1639 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:48](947 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:37] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:52, 07:39](1890 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:31] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [30:07, 14:45](1771 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:27, 14:16](2169 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:18, 06:25](1176 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:44, 15:16](1687 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:06] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:17, 20:18](1734 MB)
+
+PASS -- COMPILE 's2swa_intel' [14:11, 12:15] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [21:55, 07:40](2064 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:05, 07:35](2086 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:23](1969 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [20:59, 07:43](1981 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 04:26](1731 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [23:53, 09:13](2494 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [21:43, 07:39](2083 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 06:30](1895 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:57, 07:48](2088 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [25:42, 15:22](2809 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:22, 05:48](2917 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [31:43, 09:04](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:16, 05:15](3622 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [15:50, 04:53](2023 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:11, 10:30] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [15:44, 07:13](1765 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:51, 04:07](1835 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:07] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [14:05, 06:53](2051 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:51] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 04:48](1802 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:11, 09:48] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:51, 04:07](1822 MB)
+
+PASS -- COMPILE 's2s_intel' [12:11, 09:59] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:17](2841 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [10:44, 02:06](2813 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [14:45, 01:11](2302 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:11, 13:40] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [25:02, 07:19](2054 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 16:29] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 14:08](1798 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:42](1283 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:52, 15:28](1731 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 03:32] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:01, 21:24](1767 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:10, 08:13] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [18:22, 02:49](710 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [17:37, 02:29](1621 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:40, 02:37](1624 MB)
+PASS -- TEST 'control_latlon_intel' [17:34, 02:28](1605 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:40, 02:32](1605 MB)
+PASS -- TEST 'control_c48_intel' [22:39, 07:04](1744 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:49](854 MB)
+PASS -- TEST 'control_c192_intel' [24:44, 08:59](1757 MB)
+PASS -- TEST 'control_c384_intel' [25:22, 09:42](2058 MB)
+PASS -- TEST 'control_c384gdas_intel' [24:57, 07:22](1534 MB)
+PASS -- TEST 'control_stochy_intel' [14:18, 01:29](665 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](536 MB)
+PASS -- TEST 'control_lndp_intel' [11:17, 01:24](670 MB)
+PASS -- TEST 'control_iovr4_intel' [12:19, 02:10](656 MB)
+PASS -- TEST 'control_iovr5_intel' [11:20, 02:17](666 MB)
+PASS -- TEST 'control_p8_intel' [10:52, 02:34](1630 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 02:37](1635 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 02:34](1644 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:51, 01:24](915 MB)
+PASS -- TEST 'control_noqr_p8_intel' [05:48, 02:33](1628 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:21](982 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:35](1627 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:24](1723 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:30, 04:25](1632 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:28](1709 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:52, 02:34](1647 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:58, 02:47](1651 MB)
+PASS -- TEST 'regional_control_intel' [05:27, 04:32](961 MB)
+PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1102 MB)
+PASS -- TEST 'regional_decomp_intel' [05:25, 04:41](945 MB)
+PASS -- TEST 'regional_2threads_intel' [03:29, 02:49](913 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:27, 04:19](1492 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:30](955 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:27](963 MB)
+PASS -- TEST 'regional_wofs_intel' [06:26, 05:32](2072 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:10, 07:41] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [07:35, 06:34](1197 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1413 MB)
+PASS -- TEST 'rap_decomp_intel' [07:31, 06:46](1140 MB)
+PASS -- TEST 'rap_2threads_intel' [06:53, 06:06](1376 MB)
+PASS -- TEST 'rap_restart_intel' [04:51, 03:23](1154 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:44, 06:32](1200 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 06:51](1144 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 04:59](1192 MB)
+PASS -- TEST 'hrrr_control_intel' [04:38, 03:25](1088 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 03:29](1048 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:04](1126 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:31, 01:50](1026 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:22](1186 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:37](2013 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:22](2183 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:10, 07:35] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:28, 05:27](836 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:47](820 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [09:10, 04:33]
+PASS -- TEST 'control_csawmg_gnu' [07:35, 06:34](808 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 07:07]
+PASS -- TEST 'control_wam_intel' [02:26, 01:50](793 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 09:54] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:52, 02:15](1641 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](953 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:14] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:09](1631 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:33, 02:13](1633 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:29](833 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:14](835 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:29](884 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:16, 02:17](838 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:37, 02:13](1682 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:32, 02:20](1657 MB)
+PASS -- TEST 'regional_debug_intel' [14:37, 14:04](904 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:18, 03:58](1223 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:24, 03:52](1224 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1227 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:21, 03:59](1222 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:55](1221 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1297 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:03](1215 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1233 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:58](1217 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:57](1225 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:54](1232 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:02](1213 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:30](1224 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:54](1213 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:53](1225 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:00](1224 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:43](1223 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:18]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:52](792 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 02:49] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 06:51] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:15](1324 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:27](1151 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:46, 02:51](1040 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 05:07](1302 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:36](1042 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:00](969 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:04](1106 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:18, 01:39](955 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:12] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:40, 01:49](1294 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:48](1207 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:04](1165 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:56] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:41](1088 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 03:07] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:55](1101 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:50](1088 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:31, 11:35](1334 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:48](1001 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:32, 06:35](1233 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:33](1414 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:08] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 03:59](1144 MB)
+
+PASS -- COMPILE 'hafsw_intel' [13:11, 10:57] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:08, 05:29](875 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 04:54](1278 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:19](965 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:50](962 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:15](1005 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:31](607 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 07:03](618 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:54](439 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 07:56](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](620 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:41](624 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](684 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:27](453 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:10, 03:34] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:49, 11:19](625 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [13:11, 10:45] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:49, 15:57](731 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:37](809 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 11:02] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 10:00](838 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [14:11, 10:17] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:24](954 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 05:25](945 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:23](1348 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:16] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:08](1139 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1100 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:07](1015 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1018 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1006 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1159 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:09](1155 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:05](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1156 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:55](1136 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1147 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 02:59](2334 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:05](2431 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:47] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:07](1076 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:02] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:11](1150 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:03](339 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:02](554 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](563 MB)
+
+PASS -- COMPILE 'atml_intel' [10:11, 08:29] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:08, 05:48](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:43](1634 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:38, 02:44](939 MB)
PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:39](1667 MB)
-
-PASS -- COMPILE 'atmw_intel' [18:10, 13:04] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:34](1689 MB)
-
-PASS -- COMPILE 'atmaero_intel' [17:10, 12:40] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:32](1799 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1817 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:38, 04:20](1831 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [09:11, 04:49] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 16:40](4575 MB)
-
-PASS -- COMPILE 'atm_gnu' [10:15, 06:24]
-PASS -- TEST 'control_c48_gnu' [10:38, 09:31](1558 MB)
-PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](731 MB)
-PASS -- TEST 'control_ras_gnu' [04:19, 03:51](730 MB)
-PASS -- TEST 'control_p8_gnu' [04:44, 03:40](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:43, 03:29](1518 MB)
-PASS -- TEST 'control_flake_gnu' [05:21, 04:24](812 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [10:10, 06:17]
-PASS -- TEST 'rap_control_gnu' [08:30, 07:45](1085 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:30, 07:55](1087 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:45, 07:08](1147 MB)
-PASS -- TEST 'rap_restart_gnu' [06:54, 03:58](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [08:40, 07:39](1089 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:49](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:51, 05:41](885 MB)
-PASS -- TEST 'hrrr_control_gnu' [04:47, 03:57](1073 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [04:34, 04:03](1139 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:30, 03:36](1029 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:02](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [06:18, 02:03](883 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:18, 02:05](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 07:35](1083 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 07:20]
-PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:17](1625 MB)
-PASS -- TEST 'regional_debug_gnu' [07:28, 06:26](924 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:16, 01:58](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:22, 01:53](1089 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:00](1095 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:16, 01:56](1097 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [05:23, 02:04](1269 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:16, 03:07](1096 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:17, 01:58](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:17, 01:58](1093 MB)
-PASS -- TEST 'control_ras_debug_gnu' [06:15, 01:12](730 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [06:15, 01:17](725 MB)
-PASS -- TEST 'control_debug_p8_gnu' [05:32, 01:18](1506 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [06:21, 01:59](1101 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [07:18, 02:13](1101 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:47, 03:21](1104 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:06]
-PASS -- TEST 'control_wam_debug_gnu' [06:25, 01:54](502 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [12:10, 07:20]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:45, 07:13](965 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:34, 03:45](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:32, 06:44](968 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:48, 03:29](873 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 03:46](952 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:55, 05:22](859 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:21, 01:58](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:42, 02:39](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:37, 01:07](1174 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:25](928 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:03]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:24](997 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:10, 08:54]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:00](988 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 01:59](970 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:29, 05:24](1282 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [08:27, 05:47](973 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:14](1190 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:25, 05:39](1349 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:10, 08:54]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:16, 02:04](1004 MB)
-
-PASS -- COMPILE 's2swa_gnu' [27:10, 22:03]
-
-PASS -- COMPILE 's2s_gnu' [22:11, 18:09]
-
-PASS -- COMPILE 's2swa_debug_gnu' [18:11, 14:55]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [22:11, 19:26]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:10, 11:14]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:17]
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 04:46](1663 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:11, 10:27] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:33](1683 MB)
+
+PASS -- COMPILE 'atmaero_intel' [09:11, 07:20] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:49, 03:30](1798 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 04:23](1811 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:27](1826 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [19:34, 17:27](4578 MB)
+
+PASS -- COMPILE 'atm_gnu' [07:11, 05:28]
+PASS -- TEST 'control_c48_gnu' [10:39, 09:29](1576 MB)
+PASS -- TEST 'control_stochy_gnu' [03:20, 02:18](742 MB)
+PASS -- TEST 'control_ras_gnu' [04:17, 03:45](730 MB)
+PASS -- TEST 'control_p8_gnu' [04:46, 03:42](1517 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:30](1517 MB)
+PASS -- TEST 'control_flake_gnu' [05:17, 04:24](800 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:11, 05:22]
+PASS -- TEST 'rap_control_gnu' [09:32, 07:49](1083 MB)
+PASS -- TEST 'rap_decomp_gnu' [09:31, 07:53](1084 MB)
+PASS -- TEST 'rap_2threads_gnu' [08:47, 07:02](1127 MB)
+PASS -- TEST 'rap_restart_gnu' [05:49, 03:57](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:46, 07:36](1085 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:44](1081 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:40](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:34, 03:57](1070 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 03:59](1139 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:33](1025 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:56](1073 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [04:36, 02:03](880 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:05](935 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:36](1083 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:10]
+PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:20](1624 MB)
+PASS -- TEST 'regional_debug_gnu' [07:28, 06:22](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:53](1088 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:59](1098 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:01](1093 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:27, 02:07](1268 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:03](1094 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 01:54](1092 MB)
+PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:09](729 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:14](728 MB)
+PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:13](1503 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:22, 01:56](1097 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:09](1098 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:15](1101 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:54]
+PASS -- TEST 'control_wam_debug_gnu' [02:23, 02:01](502 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:30]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:31, 07:20](963 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:50, 03:49](950 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 06:44](969 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:27](892 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 03:48](958 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:23](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:03](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:38, 02:29](1266 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:02](1173 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:24](928 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 08:47]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:18](992 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:02]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 01:57](980 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 01:56](969 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:33](1279 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:29, 05:38](952 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:19](1191 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:35](1353 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 06:07]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:02](1008 MB)
+
+PASS -- COMPILE 's2swa_gnu' [17:10, 16:45]
+
+PASS -- COMPILE 's2s_gnu' [17:10, 16:41]
+
+PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:33]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:45]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 16:37]
SYNOPSIS:
-Starting Date/Time: 20240506 09:21:02
-Ending Date/Time: 20240506 11:27:27
-Total Time: 02h:07m:02s
+Starting Date/Time: 20240508 13:49:00
+Ending Date/Time: 20240508 15:19:44
+Total Time: 01h:31m:22s
Compiles Completed: 54/54
Tests Completed: 237/237
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 5b91586486..9aa3779381 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+f29351be77830efd8ae23ad72436b4b38b886383
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,12 +11,12 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,244 +36,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_554453
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_36815
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [32:13, 31:58] ( 2 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:58](1796 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:50] ( 2 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:09, 20:54](1667 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:13, 23:09](1888 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 10:51](993 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:40, 23:55](1637 MB)
-
-PASS -- COMPILE 's2swa_intel' [38:14, 37:20] ( 1 warnings 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:23, 07:40](1826 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:44, 07:40](1829 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:55, 04:33](1709 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:23, 07:42](1842 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:51](1721 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:17](2262 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:16, 07:54](1809 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:43, 06:38](1788 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:42, 07:45](1813 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:31, 07:12](1796 MB)
-
-PASS -- COMPILE 's2sw_intel' [31:13, 30:31] ( 1 warnings 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:59](1656 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:41, 05:52](1715 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:27] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:00, 10:48](1826 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 05:08] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:22, 07:18](1677 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:23] ( 1 warnings 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:54, 05:46](1719 MB)
-
-PASS -- COMPILE 's2s_intel' [33:13, 33:05] ( 1 warnings 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [14:09, 12:49](2801 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:36](2803 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:05, 02:04](2267 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [35:19, 34:20] ( 1 warnings 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:36, 09:14](1804 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [48:14, 47:57] ( 1 warnings 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:43, 21:09](1683 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:54, 10:45](1034 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:55, 26:01](1659 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:44] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:37, 32:12](1697 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:54] ( 2 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [05:32, 04:58](651 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [10:43, 04:11](1542 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:45, 04:45](1554 MB)
-PASS -- TEST 'control_latlon_intel' [10:38, 04:05](1547 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:45, 04:50](1534 MB)
-PASS -- TEST 'control_c48_intel' [14:44, 11:57](1730 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:02, 10:09](847 MB)
-PASS -- TEST 'control_c192_intel' [16:47, 14:47](1682 MB)
-PASS -- TEST 'control_c384_intel' [25:13, 18:45](1816 MB)
-PASS -- TEST 'control_c384gdas_intel' [24:22, 14:32](1014 MB)
-PASS -- TEST 'control_stochy_intel' [03:56, 02:42](601 MB)
-PASS -- TEST 'control_stochy_restart_intel' [05:41, 01:26](437 MB)
-PASS -- TEST 'control_lndp_intel' [03:54, 02:25](599 MB)
-PASS -- TEST 'control_iovr4_intel' [04:56, 03:59](596 MB)
-PASS -- TEST 'control_iovr5_intel' [04:36, 04:08](603 MB)
-PASS -- TEST 'control_p8_intel' [11:28, 04:10](1577 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 04:27](1577 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [10:55, 04:08](1568 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:13, 02:14](819 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:22, 04:03](1565 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:11](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [10:15, 04:09](1565 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:24, 03:44](1666 MB)
-PASS -- TEST 'control_p8_lndp_intel' [12:09, 07:06](1572 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 05:15](1630 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:47, 04:08](1584 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:54, 04:31](1584 MB)
-PASS -- TEST 'regional_control_intel' [11:58, 07:27](764 MB)
-PASS -- TEST 'regional_restart_intel' [04:49, 04:01](933 MB)
-PASS -- TEST 'regional_decomp_intel' [12:47, 07:53](757 MB)
-PASS -- TEST 'regional_2threads_intel' [06:48, 05:02](754 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:51, 07:26](758 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:50, 07:23](762 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:12, 33:19] ( 4 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [12:26, 11:05](986 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:08, 06:05](1220 MB)
-PASS -- TEST 'rap_decomp_intel' [13:09, 11:27](989 MB)
-PASS -- TEST 'rap_2threads_intel' [12:26, 10:26](1086 MB)
-PASS -- TEST 'rap_restart_intel' [08:25, 05:22](990 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [12:41, 11:05](995 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:19, 11:19](985 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:27, 07:47](999 MB)
-PASS -- TEST 'hrrr_control_intel' [07:23, 05:48](990 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 05:50](983 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [07:23, 05:12](1054 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:49](922 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:51, 10:52](990 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [14:43, 13:32](1916 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:50, 12:49](1937 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:13, 31:24] ( 2 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [10:53, 08:19](692 MB)
-PASS -- TEST 'control_ras_intel' [06:24, 04:39](667 MB)
-
-PASS -- COMPILE 'wam_intel' [30:13, 29:56] ( 1 warnings 982 remarks )
-PASS -- TEST 'control_wam_intel' [03:26, 02:54](506 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 31:41] ( 1 warnings 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:45, 03:52](1578 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:58, 07:06](765 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:05] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:56, 03:20](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:49, 03:25](1556 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:47](760 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:26](766 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:48, 05:18](814 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:26, 03:32](774 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:56, 03:23](1617 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:52, 03:50](1588 MB)
-PASS -- TEST 'regional_debug_intel' [23:49, 22:15](812 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:29, 06:08](1164 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:28, 05:56](1151 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 06:04](1146 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 06:06](1148 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:26, 06:14](1154 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:42, 06:28](1233 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1149 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 06:14](1149 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:06](1154 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 06:06](1157 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:00](1150 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 06:06](1148 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:26, 09:55](1148 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 06:02](1146 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 07:36](1157 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:06](1154 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 10:31](1153 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:11, 04:12] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:27, 06:10](447 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:19] ( 4 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:50, 05:23](1077 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:05, 09:29](900 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:13, 04:33](866 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:41, 08:08](938 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:00, 04:01](910 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:15, 04:59](857 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:58, 07:09](897 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [06:42, 03:20](847 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:16, 43:26] ( 4 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:09, 03:01](1109 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:38](1050 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:41](1024 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:21, 31:01] ( 4 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:37](902 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:56] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 06:08](1024 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:00](1028 MB)
-PASS -- TEST 'conus13km_debug_intel' [21:06, 18:49](1136 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [21:25, 19:13](845 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:51](1083 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:21, 18:40](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:18] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:10](1073 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:14, 35:28] ( 2 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:23, 07:06](719 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:33, 06:54](1093 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:43, 09:32](775 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:25, 16:33](793 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:51, 18:28](822 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:28, 05:54](775 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:20, 32:09] ( 1 warnings 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [10:28, 08:57](771 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 08:58](755 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:03] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:52, 04:10](1053 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 02:08](1030 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:43, 03:55](923 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:56, 04:07](922 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:48, 04:15](918 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:53, 04:14](1062 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:00, 04:20](1060 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 04:28](926 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:09, 08:29](888 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:39, 08:15](841 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:34, 04:07](1061 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:31, 06:08](2342 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [07:26, 06:25](2385 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:16] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:52, 08:05](1015 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:16, 08:20] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:36](1055 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:41] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:43](230 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:21](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:33, 00:55](255 MB)
-
-PASS -- COMPILE 'atml_intel' [35:12, 34:36] ( 9 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 10:08](1595 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:10](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:42](865 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:11, 05:24] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:53, 07:34](1628 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:13, 31:39] ( 1 warnings 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:38, 03:08](1603 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:13, 31:10] ( 1 warnings 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:34, 05:26](1697 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:44, 06:33](1728 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](1744 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [59:01, 39:54] ( 1 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:22](1791 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:02, 50:08] ( 1 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [25:05, 22:18](1670 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 24:43](1882 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 11:03](999 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:36, 24:52](1636 MB)
+
+PASS -- COMPILE 's2swa_intel' [59:01, 39:55] ( 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [15:42, 08:51](1807 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 08:28](1826 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:09, 05:17](1713 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [15:41, 08:43](1850 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:10, 05:07](1732 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 07:37](2274 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:33, 08:34](1806 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 07:16](1771 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 08:32](1821 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:50, 07:32](1788 MB)
+
+PASS -- COMPILE 's2sw_intel' [57:00, 38:10] ( 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [09:40, 06:06](1649 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:48, 05:59](1693 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [25:57, 07:14] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:08, 10:40](1859 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:47] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:19](1681 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:14, 32:31] ( 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:00, 06:23](1715 MB)
+
+PASS -- COMPILE 's2s_intel' [33:14, 32:30] ( 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:20, 12:52](2799 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 03:44](2802 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [04:08, 02:12](2268 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:39] ( 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [15:02, 07:42](1825 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:53] ( 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:57, 22:16](1692 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:31, 10:55](1040 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:06, 24:29](1657 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:02] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:48, 32:25](1691 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:13, 35:04] ( 1 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [06:33, 04:52](642 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [17:44, 04:56](1533 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:55, 05:00](1551 MB)
+PASS -- TEST 'control_latlon_intel' [19:37, 04:18](1549 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 04:55](1537 MB)
+PASS -- TEST 'control_c48_intel' [17:48, 12:02](1737 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:16](847 MB)
+PASS -- TEST 'control_c192_intel' [22:04, 15:23](1675 MB)
+PASS -- TEST 'control_c384_intel' [26:14, 21:22](1813 MB)
+PASS -- TEST 'control_c384gdas_intel' [23:36, 16:16](1021 MB)
+PASS -- TEST 'control_stochy_intel' [03:31, 02:14](604 MB)
+PASS -- TEST 'control_stochy_restart_intel' [15:52, 01:41](436 MB)
+PASS -- TEST 'control_lndp_intel' [03:31, 02:09](603 MB)
+PASS -- TEST 'control_iovr4_intel' [04:36, 03:43](604 MB)
+PASS -- TEST 'control_iovr5_intel' [04:36, 03:36](595 MB)
+PASS -- TEST 'control_p8_intel' [17:21, 04:23](1576 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 04:14](1573 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:27, 04:15](1577 MB)
+PASS -- TEST 'control_restart_p8_intel' [11:33, 02:48](817 MB)
+PASS -- TEST 'control_noqr_p8_intel' [21:09, 04:23](1566 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:22, 02:29](852 MB)
+PASS -- TEST 'control_decomp_p8_intel' [18:06, 05:03](1570 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:21, 04:04](1663 MB)
+PASS -- TEST 'control_p8_lndp_intel' [23:58, 07:52](1570 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:35, 05:26](1618 MB)
+PASS -- TEST 'control_p8_mynn_intel' [19:27, 05:02](1583 MB)
+PASS -- TEST 'merra2_thompson_intel' [21:30, 04:54](1587 MB)
+PASS -- TEST 'regional_control_intel' [24:42, 08:30](764 MB)
+PASS -- TEST 'regional_restart_intel' [06:48, 04:37](934 MB)
+PASS -- TEST 'regional_decomp_intel' [11:34, 08:54](765 MB)
+PASS -- TEST 'regional_2threads_intel' [07:26, 05:37](756 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [22:06, 08:02](762 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [21:49, 08:11](762 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:13, 32:53] ( 3 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [26:38, 11:11](990 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:28, 06:09](1221 MB)
+PASS -- TEST 'rap_decomp_intel' [26:06, 11:23](989 MB)
+PASS -- TEST 'rap_2threads_intel' [25:07, 10:24](1088 MB)
+PASS -- TEST 'rap_restart_intel' [07:17, 05:45](993 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [25:31, 10:46](996 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:04, 11:37](993 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [10:44, 08:08](1000 MB)
+PASS -- TEST 'hrrr_control_intel' [16:19, 05:40](986 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [16:09, 05:43](987 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [16:02, 05:31](1065 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:40, 03:03](916 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [23:52, 11:05](991 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [23:35, 13:29](1944 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:35, 13:25](1932 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:14, 31:15] ( 1 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [17:02, 09:03](693 MB)
+PASS -- TEST 'control_ras_intel' [12:27, 05:03](664 MB)
+
+PASS -- COMPILE 'wam_intel' [30:13, 30:08] ( 982 remarks )
+PASS -- TEST 'control_wam_intel' [04:25, 03:14](505 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [43:13, 32:13] ( 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:36, 03:39](1584 MB)
+PASS -- TEST 'regional_control_faster_intel' [10:44, 06:59](769 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [20:13, 06:12] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:05, 03:24](1564 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:16, 03:36](1558 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:29, 03:52](763 MB)
+PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:29](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:00, 05:28](810 MB)
+PASS -- TEST 'control_ras_debug_intel' [06:30, 03:31](776 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:07, 03:25](1630 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:03, 03:41](1588 MB)
+PASS -- TEST 'regional_debug_intel' [24:59, 21:56](780 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:29, 06:14](1155 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:30, 06:11](1148 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 06:23](1154 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:21](1150 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:18](1150 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:38, 06:25](1232 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:27](1150 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:26](1148 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:21](1149 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 06:15](1147 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:29, 06:13](1150 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:11](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:09](1141 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:03](1146 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:31](1149 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:29, 06:12](1151 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 11:00](1156 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [12:11, 04:15] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:28, 06:15](446 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:33] ( 3 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:24, 05:25](1069 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 08:49](899 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:37](873 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:08, 08:09](947 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:16, 04:05](911 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 05:02](840 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:44](890 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:36](837 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 43:02] ( 3 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:12, 03:08](1106 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:56, 01:33](1055 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 01:39](1023 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:37] ( 3 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:39](898 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 04:07] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:08](1030 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 06:08](1027 MB)
+PASS -- TEST 'conus13km_debug_intel' [24:09, 18:30](1135 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [25:03, 18:45](852 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [16:01, 10:46](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:00, 18:29](1205 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:22] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 06:12](1076 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:13, 34:59] ( 1 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [09:26, 07:43](722 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 07:36](1084 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:48](766 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [21:32, 19:14](809 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:54, 19:08](966 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:24, 07:10](775 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [33:13, 32:20] ( 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [12:27, 10:42](772 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:34, 10:43](754 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:03] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:44](1055 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:17](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:18](922 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](927 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](926 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:38](1060 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:42](1056 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 03:31](926 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:36, 08:25](884 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:34, 08:04](842 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1064 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:16](2400 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:16](2408 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:25] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1017 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:47] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 03:46](1049 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 02:00] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:54](233 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:32](253 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:56](253 MB)
+
+PASS -- COMPILE 'atml_intel' [39:14, 38:41] ( 8 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 10:14](1605 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:11](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 05:34](870 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 05:28] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:50](1629 MB)
+
+PASS -- COMPILE 'atmw_intel' [32:13, 31:48] ( 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 02:32](1611 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:13, 30:25] ( 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:37, 05:39](1698 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:37](1722 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 06:53](1729 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 00:56:29
-Ending Date/Time: 20240506 04:17:54
-Total Time: 03h:21m:58s
+Starting Date/Time: 20240508 14:46:39
+Ending Date/Time: 20240509 00:39:50
+Total Time: 09h:53m:54s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 342cb4c8e3..851f2ac9e6 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-74f64e4f73a0ff8342016a23eb73b4d6ec1cfff9
+1b73dc3cfe52765a05ce8ae57735fef196de5fab
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -11,12 +11,12 @@ Submodule hashes used in testing:
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,275 +36,275 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_338803
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_67506
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:15] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 05:44](3185 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:24] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:57, 18:34](1746 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [37:17, 18:22](2027 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [28:05, 08:44](1115 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:42, 21:57](1647 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:22] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 23:59](1695 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:11, 15:15] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:02, 06:06](3208 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:58, 06:01](3216 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [43:05, 03:46](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:02, 06:01](3242 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [43:45, 04:15](3274 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:39, 06:22](3553 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:02, 05:52](3198 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:49, 04:58](3073 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:16, 06:08](3207 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:57, 10:55](3343 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [41:19, 07:03](3626 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [22:51, 11:20](4117 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:06, 08:14](4357 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:42, 05:39](3168 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 14:34] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:16, 04:57](1728 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:47](1772 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:20] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [11:40, 09:09](3235 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:04] ( 1451 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 06:06](1748 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:00] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:57, 04:36](1773 MB)
-
-PASS -- COMPILE 's2s_intel' [13:11, 12:31] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:53, 08:14](2833 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:26](2838 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:17, 01:25](2243 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [19:11, 19:03] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:03, 06:14](3212 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:15, 18:25] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:33, 17:52](1771 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:39, 08:40](1118 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:29, 19:50](1672 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 04:06] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:35, 24:43](1707 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:36] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:30, 03:51](697 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 03:07](1592 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:17, 03:09](1601 MB)
-PASS -- TEST 'control_latlon_intel' [04:04, 03:02](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:14, 03:06](1601 MB)
-PASS -- TEST 'control_c48_intel' [09:11, 07:18](1702 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:09, 06:12](878 MB)
-PASS -- TEST 'control_c192_intel' [13:07, 11:04](1746 MB)
-PASS -- TEST 'control_c384_intel' [18:05, 15:03](2007 MB)
-PASS -- TEST 'control_c384gdas_intel' [16:49, 09:39](1354 MB)
-PASS -- TEST 'control_stochy_intel' [02:31, 02:05](654 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:45, 01:08](503 MB)
-PASS -- TEST 'control_lndp_intel' [02:26, 01:42](656 MB)
-PASS -- TEST 'control_iovr4_intel' [03:55, 02:36](650 MB)
-PASS -- TEST 'control_iovr5_intel' [03:42, 02:47](656 MB)
-PASS -- TEST 'control_p8_intel' [05:16, 03:13](1622 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [42:57, 03:11](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [42:51, 03:01](1585 MB)
-PASS -- TEST 'control_restart_p8_intel' [37:43, 01:50](890 MB)
-PASS -- TEST 'control_noqr_p8_intel' [42:26, 03:07](1616 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:51](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [42:22, 03:13](1611 MB)
-PASS -- TEST 'control_2threads_p8_intel' [42:37, 03:17](1720 MB)
-PASS -- TEST 'control_p8_lndp_intel' [44:37, 05:25](1631 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [42:59, 04:09](1691 MB)
-PASS -- TEST 'control_p8_mynn_intel' [41:47, 03:16](1633 MB)
-PASS -- TEST 'merra2_thompson_intel' [42:27, 03:36](1636 MB)
-PASS -- TEST 'regional_control_intel' [43:11, 05:27](860 MB)
-PASS -- TEST 'regional_restart_intel' [05:47, 02:46](1020 MB)
-PASS -- TEST 'regional_decomp_intel' [43:27, 05:48](856 MB)
-PASS -- TEST 'regional_2threads_intel' [41:29, 04:02](848 MB)
-PASS -- TEST 'regional_noquilt_intel' [41:54, 05:14](1366 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [41:56, 05:25](857 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [41:40, 05:25](858 MB)
-PASS -- TEST 'regional_wofs_intel' [42:07, 07:01](1923 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:11, 10:54] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [43:36, 08:02](1061 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [36:20, 05:10](1291 MB)
-PASS -- TEST 'rap_decomp_intel' [36:23, 08:23](1035 MB)
-PASS -- TEST 'rap_2threads_intel' [35:56, 08:11](1175 MB)
-PASS -- TEST 'rap_restart_intel' [06:28, 04:06](1103 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [35:16, 07:54](1102 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [34:45, 08:18](1026 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 05:53](1126 MB)
-PASS -- TEST 'hrrr_control_intel' [06:16, 04:07](1035 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:16, 04:17](1024 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:26](1113 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:29, 02:11](1003 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:23, 07:47](1094 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:23](1991 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2070 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:11, 13:06] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [09:44, 06:08](749 MB)
-PASS -- TEST 'control_ras_intel' [06:21, 03:25](744 MB)
-
-PASS -- COMPILE 'wam_intel' [12:11, 11:34] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [05:22, 02:13](654 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:41] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:32, 02:45](1627 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:43, 04:43](854 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:36] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:52, 02:48](1609 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:53, 02:54](1620 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:23, 03:08](817 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:23, 02:58](817 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:08](865 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:25, 02:54](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:49, 02:49](1668 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:49, 02:56](1606 MB)
-PASS -- TEST 'regional_debug_intel' [19:52, 17:29](836 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:28, 04:59](1199 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:52](1203 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:28, 05:00](1202 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:54](1203 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 04:54](1202 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:15](1288 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 05:09](1206 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1205 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:01](1165 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 05:00](1206 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:56](1197 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1202 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:00](1209 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 05:01](1197 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:59](1197 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:23, 05:04](1200 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:24](1200 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 03:23] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:22, 05:10](521 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:13] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 04:34](1169 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:35](1055 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:46, 03:32](988 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:59, 06:52](1071 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:52, 03:01](964 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:34, 03:43](927 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:22, 04:54](1039 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:53](925 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:10] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:59, 02:13](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:02](1126 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:16](1106 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:13, 13:50] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:19](954 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:16] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:58](1086 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:53](1081 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:57, 14:21](1232 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:10](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:25](1155 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:37](1295 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:05] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:36, 05:02](1118 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:11, 16:33] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:21, 05:54](684 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:09](1116 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:02](833 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:26, 13:26](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:25, 15:08](888 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:25](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 07:39](522 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 03:21](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:36, 08:04](468 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 04:21](528 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:51, 03:58](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 05:36](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:27, 01:24](405 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:59, 04:49](806 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [21:18, 07:00] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:03](573 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [29:11, 16:14] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:02, 09:59](678 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:15, 10:05](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [34:18, 16:05] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:13, 07:24](639 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:19, 15:10] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [09:30, 06:39](833 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:36, 06:34](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 15:58](1211 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [27:18, 09:52]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:41](1136 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:41](1089 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:34](1018 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:34](1015 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:41](1018 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:17, 02:41](1126 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:17, 02:39](1137 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:37](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:18, 05:58](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:14, 06:06](1033 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:45](1137 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:36](2434 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:46](2500 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [21:12, 04:48] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:16](1055 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [23:12, 09:43]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:40](1145 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [12:11, 02:06] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:50](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:48](325 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:40](321 MB)
-
-PASS -- COMPILE 'atml_intel' [21:13, 14:46] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:45, 04:19](1595 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:14](1612 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:28](897 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [11:12, 05:35] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:37, 05:42](1610 MB)
-
-PASS -- COMPILE 'atmw_intel' [30:11, 12:52] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 01:48](1625 MB)
-
-PASS -- COMPILE 'atmaero_intel' [29:11, 12:16] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:27, 04:04](3027 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:03](3088 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:11, 05:00](3100 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [17:12, 03:50] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [25:00, 22:45](4577 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:42] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:54, 05:33](3178 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 20:09] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 17:19](1736 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:27](1976 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [15:10, 08:32](1117 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 19:31](1647 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:21] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 23:06](1630 MB)
+
+PASS -- COMPILE 's2swa_intel' [16:11, 15:39] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:50](3210 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:58](3212 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [14:07, 03:22](3250 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:52](3236 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [14:06, 03:28](3274 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:54, 06:16](3561 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:59](3193 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:53](3068 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:55, 05:51](3214 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:32](3337 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:34, 06:47](3563 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:01, 11:22](4127 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:56, 07:25](4378 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:35](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:10] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:50](1738 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:40, 04:34](1781 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [11:49, 08:45](3251 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:19, 06:04](1754 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:02] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:43, 04:32](1779 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 13:37] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:07](2827 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:24](2830 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:21](2307 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:12, 20:07] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:02, 05:26](3222 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:12] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:27, 17:32](1767 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 08:33](1138 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:19, 19:34](1678 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 24:48](1704 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:26, 03:27](700 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:57, 02:57](1553 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 03:03](1600 MB)
+PASS -- TEST 'control_latlon_intel' [06:55, 03:00](1585 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 03:00](1537 MB)
+PASS -- TEST 'control_c48_intel' [11:01, 07:10](1767 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 06:04](875 MB)
+PASS -- TEST 'control_c192_intel' [14:12, 10:28](1752 MB)
+PASS -- TEST 'control_c384_intel' [17:14, 12:49](2008 MB)
+PASS -- TEST 'control_c384gdas_intel' [15:12, 09:10](1352 MB)
+PASS -- TEST 'control_stochy_intel' [04:26, 01:43](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [10:25, 01:08](502 MB)
+PASS -- TEST 'control_lndp_intel' [04:23, 01:37](657 MB)
+PASS -- TEST 'control_iovr4_intel' [05:29, 02:30](651 MB)
+PASS -- TEST 'control_iovr5_intel' [04:26, 02:28](659 MB)
+PASS -- TEST 'control_p8_intel' [12:19, 03:05](1634 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [12:30, 02:59](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 02:54](1625 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:22, 01:40](900 MB)
+PASS -- TEST 'control_noqr_p8_intel' [12:29, 02:54](1623 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:35](927 MB)
+PASS -- TEST 'control_decomp_p8_intel' [12:24, 03:03](1572 MB)
+PASS -- TEST 'control_2threads_p8_intel' [12:14, 03:08](1716 MB)
+PASS -- TEST 'control_p8_lndp_intel' [13:48, 05:15](1638 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 03:57](1695 MB)
+PASS -- TEST 'control_p8_mynn_intel' [13:35, 03:53](1635 MB)
+PASS -- TEST 'merra2_thompson_intel' [12:50, 03:22](1638 MB)
+PASS -- TEST 'regional_control_intel' [12:46, 05:16](858 MB)
+PASS -- TEST 'regional_restart_intel' [04:44, 03:01](991 MB)
+PASS -- TEST 'regional_decomp_intel' [13:50, 05:40](854 MB)
+PASS -- TEST 'regional_2threads_intel' [11:47, 03:53](843 MB)
+PASS -- TEST 'regional_noquilt_intel' [12:48, 05:13](1368 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [12:54, 05:15](855 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:40, 05:15](859 MB)
+PASS -- TEST 'regional_wofs_intel' [10:42, 06:49](1879 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:11, 12:03] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [10:38, 07:50](1105 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:53](1238 MB)
+PASS -- TEST 'rap_decomp_intel' [10:01, 08:09](1032 MB)
+PASS -- TEST 'rap_2threads_intel' [09:23, 07:57](1182 MB)
+PASS -- TEST 'rap_restart_intel' [08:35, 04:05](1105 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1107 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:08, 08:16](1020 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:57](1132 MB)
+PASS -- TEST 'hrrr_control_intel' [05:31, 04:03](1030 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:10](1024 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 03:29](1112 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:12](999 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:38](1101 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:15](1988 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:58](2065 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:11, 11:56] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:46, 06:09](746 MB)
+PASS -- TEST 'control_ras_intel' [04:23, 03:22](740 MB)
+
+PASS -- COMPILE 'wam_intel' [12:11, 11:28]
+PASS -- TEST 'control_wam_intel' [02:22, 02:06](663 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:30] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:36, 02:42](1620 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:49, 04:38](851 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:42](1617 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:57, 02:40](1619 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](815 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](819 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:22](829 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:24, 02:42](825 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:52, 02:51](1630 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:50, 02:56](1643 MB)
+PASS -- TEST 'regional_debug_intel' [22:49, 17:32](845 MB)
+PASS -- TEST 'rap_control_debug_intel' [09:25, 05:03](1206 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:26, 05:03](1194 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:49](1202 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 04:57](1203 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:24, 05:05](1203 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:38, 05:18](1281 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 05:07](1201 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 05:10](1203 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:24, 05:14](1206 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:04](1204 MB)
+PASS -- TEST 'rap_noah_debug_intel' [08:23, 04:57](1213 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:02](1199 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:14](1206 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:54](1197 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:20](1213 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1202 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:27](1200 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:30] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:24, 05:02](507 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:48] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:34](1122 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:37](1047 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 03:33](978 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 06:51](1099 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:59](968 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](920 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:22, 04:55](1027 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:01](896 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:08] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:02, 02:04](1199 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:07](1119 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [06:45, 01:21](1110 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:07] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 04:17](998 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:39] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:58](1082 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:48](1086 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:03, 14:02](1222 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:30](925 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:25](1162 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 14:34](1288 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 02:59] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:53](1127 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:11, 12:32] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:29](739 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:02](1119 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 07:10](837 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 13:28](861 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 15:03](1028 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:00, 06:15](502 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 07:35](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:11](368 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:14, 08:13](484 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:18](531 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 03:56](498 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:19](579 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:28, 01:22](406 MB)
+PASS -- TEST 'gnv1_nested_intel' [11:59, 04:34](804 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:51] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:59](565 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [18:10, 13:32] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 09:40](649 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 09:48](741 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 13:00] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:08, 07:06](699 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:11, 12:51] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [13:19, 06:20](830 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:18, 06:29](813 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:58, 15:54](1209 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:56]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:35](1133 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1088 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:34](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:38](996 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:37](1010 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:19, 02:38](1126 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:36](1122 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:33](996 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:48](1047 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:17, 06:05](1034 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:41](1112 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:29](2435 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:37](2434 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:46] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1053 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:35]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1138 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:43] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:51](245 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](327 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:33](324 MB)
+
+PASS -- COMPILE 'atml_intel' [16:11, 13:04] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:15](1613 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:19](1598 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:26](894 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:10, 04:08] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:38, 05:43](1614 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 11:19] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:46](1621 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:28, 04:02](3014 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:54](3101 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:02](3101 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:35] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 20:41](4420 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 09:36:17
-Ending Date/Time: 20240506 11:36:51
-Total Time: 02h:01m:13s
+Starting Date/Time: 20240508 15:06:47
+Ending Date/Time: 20240508 16:39:45
+Total Time: 01h:33m:47s
Compiles Completed: 38/38
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 8f8ad7b085..257d32ff8a 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-58f6e863baafb6be6c58b625ba5669f80a1d82ab
+f29351be77830efd8ae23ad72436b4b38b886383
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,14 +9,14 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 683061b3fd58716625eed61d7a7143e985f733d4 FV3 (heads/develop-51-g683061b)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- 5faac752d9550d3570705358fa1eb3f5ac78a786 FV3/upp (upp_v10.2.0-185-g5faac75)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -36,238 +36,312 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_168635
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244581
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [20:33, 20:01] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:56, 01:18](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:36, 22:20] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [07:53, 02:00](1596 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [49:57, 01:48](1717 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [49:32, 01:19](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [49:02, 01:29](1573 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:16] ( 1506 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:13, 01:20](1598 MB)
-
-PASS -- COMPILE 's2swa_intel' [24:39, 23:53] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [05:51, 01:28](3007 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [05:51, 01:38](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [57:24, 01:53](3063 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [05:51, 01:27](3030 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [57:24, 01:48](3080 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [05:51, 01:09](3319 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [05:51, 01:30](3003 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [05:52, 01:30](2931 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [05:51, 01:40](3003 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [06:00, 04:50](3957 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:46, 04:06](4253 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 01:50](2969 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [19:06, 00:46](1587 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:06, 00:57](1640 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:46] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [20:06, 00:59](1633 MB)
-
-PASS -- COMPILE 's2s_intel' [24:37, 24:16] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [05:51, 00:44](2649 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:51, 01:33](2672 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [01:44, 01:12](2106 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:30, 16:03] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [14:00, 01:38](3001 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 11:36] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:05, 01:08](1611 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:48, 01:32](902 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:28, 01:41](1587 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:22, 08:55] ( 1542 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:08, 01:37](1613 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [23:39, 22:28] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [59:27, 00:23](576 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [59:27, 00:26](1466 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [58:52, 00:26](1474 MB)
-PASS -- TEST 'control_latlon_intel' [58:51, 00:24](1481 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [58:41, 00:33](1471 MB)
-PASS -- TEST 'control_c48_intel' [58:30, 00:54](1592 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [58:21, 00:50](718 MB)
-PASS -- TEST 'control_c192_intel' [58:22, 00:32](1589 MB)
-PASS -- TEST 'control_c384_intel' [58:07, 02:11](1906 MB)
-PASS -- TEST 'control_c384gdas_intel' [57:45, 01:45](1093 MB)
-PASS -- TEST 'control_stochy_intel' [57:24, 00:27](525 MB)
-PASS -- TEST 'control_stochy_restart_intel' [54:56, 01:02](326 MB)
-PASS -- TEST 'control_lndp_intel' [57:22, 00:32](527 MB)
-PASS -- TEST 'control_iovr4_intel' [57:14, 00:46](524 MB)
-PASS -- TEST 'control_iovr5_intel' [57:13, 00:47](524 MB)
-PASS -- TEST 'control_p8_intel' [57:02, 01:53](1512 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [56:07, 01:54](1503 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [56:07, 01:57](1509 MB)
-PASS -- TEST 'control_restart_p8_intel' [51:41, 01:03](692 MB)
-PASS -- TEST 'control_noqr_p8_intel' [55:44, 01:34](1504 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [50:43, 00:58](699 MB)
-PASS -- TEST 'control_decomp_p8_intel' [55:32, 01:31](1502 MB)
-PASS -- TEST 'control_2threads_p8_intel' [55:30, 00:52](1588 MB)
-PASS -- TEST 'control_p8_lndp_intel' [55:08, 01:01](1502 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [55:05, 01:54](1554 MB)
-PASS -- TEST 'control_p8_mynn_intel' [55:02, 01:46](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [55:01, 01:32](1512 MB)
-PASS -- TEST 'regional_control_intel' [54:58, 00:15](610 MB)
-PASS -- TEST 'regional_restart_intel' [49:12, 00:26](779 MB)
-PASS -- TEST 'regional_decomp_intel' [54:55, 00:57](607 MB)
-PASS -- TEST 'regional_2threads_intel' [54:56, 00:55](664 MB)
-PASS -- TEST 'regional_noquilt_intel' [54:47, 00:20](1140 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [53:45, 00:27](608 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [53:44, 00:17](609 MB)
-PASS -- TEST 'regional_wofs_intel' [53:35, 00:34](1584 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:32, 16:09] ( 4 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [04:34, 01:41](920 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:35, 01:08](1096 MB)
-PASS -- TEST 'rap_decomp_intel' [04:34, 01:27](919 MB)
-PASS -- TEST 'rap_2threads_intel' [04:34, 01:44](1008 MB)
-PASS -- TEST 'rap_restart_intel' [52:23, 01:05](788 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [51:40, 02:07](912 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:34, 01:51](914 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [42:17, 01:49](787 MB)
-PASS -- TEST 'hrrr_control_intel' [04:34, 01:04](909 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:34, 01:01](907 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 01:27](996 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [51:31, 01:02](743 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [04:34, 01:13](914 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [04:34, 00:57](1877 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:34, 01:11](1862 MB)
-
-PASS -- COMPILE 'csawmg_intel' [24:40, 23:29] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [50:44, 00:34](599 MB)
-PASS -- TEST 'control_ras_intel' [50:43, 00:57](563 MB)
-
-PASS -- COMPILE 'wam_intel' [21:34, 21:09] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [50:43, 00:54](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:31, 16:48] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [50:41, 02:04](1504 MB)
-PASS -- TEST 'regional_control_faster_intel' [50:35, 00:25](612 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:37] ( 871 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 01:19](1489 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:27, 00:28](1489 MB)
-PASS -- TEST 'control_stochy_debug_intel' [50:30, 00:51](695 MB)
-PASS -- TEST 'control_lndp_debug_intel' [50:27, 01:11](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [50:14, 00:47](734 MB)
-PASS -- TEST 'control_ras_debug_intel' [49:26, 01:10](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [49:06, 01:26](1555 MB)
-PASS -- TEST 'control_debug_p8_intel' [48:34, 01:04](1518 MB)
-PASS -- TEST 'regional_debug_intel' [48:19, 00:49](632 MB)
-PASS -- TEST 'rap_control_debug_intel' [48:15, 00:56](1075 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [48:11, 01:00](1066 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [48:05, 01:02](1071 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [48:01, 00:56](1070 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [47:58, 00:58](1077 MB)
-PASS -- TEST 'rap_diag_debug_intel' [47:23, 00:53](1158 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [47:20, 00:46](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [47:19, 00:49](1074 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [47:14, 00:57](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [46:16, 00:54](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [46:14, 01:02](1073 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [46:01, 01:01](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [46:00, 00:49](1068 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [45:53, 01:01](1074 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [45:29, 01:14](1076 MB)
-PASS -- TEST 'rap_flake_debug_intel' [45:12, 00:56](1077 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:58, 01:19](1078 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:27, 12:51] ( 843 warnings )
-PASS -- TEST 'control_wam_debug_intel' [44:54, 00:55](304 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:35, 15:18] ( 4 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [44:26, 01:22](954 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [44:11, 01:15](789 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [44:10, 02:18](785 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [43:52, 01:33](849 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:38, 00:56](840 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [41:44, 02:08](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [36:43, 01:35](679 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [38:21, 00:22](670 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:26, 11:49] ( 4 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [41:43, 01:09](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [37:46, 00:53](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [36:43, 00:44](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:27, 12:45] ( 4 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [41:32, 01:22](811 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [25:43, 24:59] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [38:44, 01:04](952 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [38:23, 01:14](952 MB)
-PASS -- TEST 'conus13km_debug_intel' [38:16, 00:24](1035 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [37:53, 01:16](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [36:21, 00:28](1037 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [36:03, 00:19](1102 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:25, 08:58] ( 774 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [41:31, 01:00](978 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:32, 17:06] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [41:30, 02:07](617 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [40:53, 00:33](966 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [40:51, 01:39](661 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [40:44, 01:33](698 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [40:44, 01:29](714 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [39:44, 01:11](384 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [39:44, 02:17](400 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [39:28, 01:41](282 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [39:29, 02:29](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [39:25, 01:34](417 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:02, 01:02](417 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [35:54, 00:45](496 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [35:53, 00:23](324 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [19:33, 19:00] ( 1450 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [35:37, 00:43](493 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [15:29, 14:50] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [35:13, 01:41](526 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:04, 01:34](712 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [22:39, 21:51] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:29, 00:56](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:25, 10:10] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [34:52, 02:11](658 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [34:22, 01:14](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [34:16, 00:23](881 MB)
-
-PASS -- COMPILE 'atml_intel' [10:23, 10:00] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [34:18, 01:13](1543 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [34:08, 01:13](1547 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [27:31, 00:22](741 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [11:25, 10:38] ( 867 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [33:58, 01:39](1560 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:28, 12:36] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [33:19, 01:28](2853 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [32:52, 00:58](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:39, 01:50](2924 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:17, 04:01] ( 871 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [32:14, 01:13](4436 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [22:36, 22:17] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 01:24](2973 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:37, 22:35] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [08:00, 01:54](1592 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:01, 01:44](1709 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [50:01, 02:12](851 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:01, 01:40](1576 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:21] ( 1505 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:20, 01:42](1605 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:24, 11:00] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [20:13, 01:29](3005 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:13, 01:45](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:52, 01:54](3062 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [20:13, 01:25](3025 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 01:52](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [20:13, 01:07](3311 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [20:13, 01:28](3003 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [20:14, 01:26](2932 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:13, 01:47](3002 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [20:22, 03:33](3952 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [02:29, 04:17](4246 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [20:13, 01:55](2970 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [20:13, 00:50](1593 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:13, 01:04](1640 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [28:42, 28:23] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:54, 00:57](1635 MB)
+
+PASS -- COMPILE 's2s_intel' [10:23, 09:47] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [21:13, 00:43](2657 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [21:13, 01:27](2678 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [17:13, 01:24](2108 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:34, 19:38] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:59, 01:47](3003 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:42, 17:37] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:20, 01:11](1604 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:58, 00:42](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:59, 00:40](1581 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:18] ( 1541 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:20, 01:40](1611 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:25, 11:01] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [14:54, 00:19](576 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [14:54, 00:27](1468 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:54, 00:27](1478 MB)
+PASS -- TEST 'control_latlon_intel' [14:54, 00:20](1470 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:54, 00:33](1477 MB)
+PASS -- TEST 'control_c48_intel' [14:53, 00:52](1597 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [14:53, 00:55](714 MB)
+PASS -- TEST 'control_c192_intel' [14:54, 00:41](1582 MB)
+PASS -- TEST 'control_c384_intel' [02:53, 01:59](1905 MB)
+PASS -- TEST 'control_c384gdas_intel' [14:58, 01:50](1090 MB)
+PASS -- TEST 'control_stochy_intel' [14:54, 00:29](532 MB)
+PASS -- TEST 'control_stochy_restart_intel' [12:20, 01:04](328 MB)
+PASS -- TEST 'control_lndp_intel' [14:54, 00:34](529 MB)
+PASS -- TEST 'control_iovr4_intel' [14:54, 00:45](524 MB)
+PASS -- TEST 'control_iovr5_intel' [14:54, 00:45](522 MB)
+PASS -- TEST 'control_p8_intel' [14:54, 01:56](1509 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [14:08, 01:53](1501 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 01:57](1503 MB)
+PASS -- TEST 'control_restart_p8_intel' [09:26, 00:42](694 MB)
+PASS -- TEST 'control_noqr_p8_intel' [13:45, 01:33](1497 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [08:44, 00:50](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [13:05, 01:21](1495 MB)
+PASS -- TEST 'control_2threads_p8_intel' [12:46, 00:51](1591 MB)
+PASS -- TEST 'control_p8_lndp_intel' [12:46, 01:08](1510 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [12:17, 01:01](1565 MB)
+PASS -- TEST 'control_p8_mynn_intel' [11:53, 01:47](1506 MB)
+PASS -- TEST 'merra2_thompson_intel' [11:40, 01:45](1510 MB)
+PASS -- TEST 'regional_control_intel' [11:30, 00:18](610 MB)
+PASS -- TEST 'regional_restart_intel' [05:48, 00:21](777 MB)
+PASS -- TEST 'regional_decomp_intel' [11:29, 01:05](608 MB)
+PASS -- TEST 'regional_2threads_intel' [11:18, 00:58](660 MB)
+PASS -- TEST 'regional_noquilt_intel' [11:17, 00:24](1146 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:08, 00:27](606 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:03, 00:17](610 MB)
+PASS -- TEST 'regional_wofs_intel' [11:03, 00:34](1577 MB)
+
+PASS -- COMPILE 'rrfs_intel' [27:52, 27:04] ( 3 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [58:26, 01:38](917 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:27, 01:07](1099 MB)
+PASS -- TEST 'rap_decomp_intel' [58:26, 01:23](918 MB)
+PASS -- TEST 'rap_2threads_intel' [58:26, 01:45](1005 MB)
+PASS -- TEST 'rap_restart_intel' [49:28, 01:17](788 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_intel' [, ]( MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:26, 01:44](916 MB)
+FAILED: UNABLE TO START RUN -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB)
+PASS -- TEST 'hrrr_control_intel' [58:26, 01:02](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [58:26, 00:56](909 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [58:27, 01:23](989 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [53:24, 01:06](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [58:26, 01:15](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [58:26, 01:00](1871 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [58:26, 01:18](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [25:50, 24:55] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [55:23, 00:33](600 MB)
+PASS -- TEST 'control_ras_intel' [55:23, 00:55](560 MB)
+
+PASS -- COMPILE 'wam_intel' [31:02, 30:34]
+PASS -- TEST 'control_wam_intel' [49:08, 00:54](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [23:48, 23:07] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [56:24, 02:02](1504 MB)
+PASS -- TEST 'regional_control_faster_intel' [56:23, 00:26](609 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [22:40, 21:56] ( 870 warnings 92 remarks )
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:13, 00:29](1493 MB)
+PASS -- TEST 'control_stochy_debug_intel' [52:13, 00:56](693 MB)
+PASS -- TEST 'control_lndp_debug_intel' [52:13, 01:16](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [52:13, 00:41](732 MB)
+PASS -- TEST 'control_ras_debug_intel' [52:13, 01:12](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [52:13, 01:17](1546 MB)
+PASS -- TEST 'control_debug_p8_intel' [52:13, 01:05](1524 MB)
+PASS -- TEST 'regional_debug_intel' [52:12, 00:47](629 MB)
+PASS -- TEST 'rap_control_debug_intel' [52:13, 00:57](1074 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [52:13, 01:06](1068 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [50:58, 01:01](1072 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [50:57, 00:58](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [50:42, 00:53](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [50:00, 00:50](1156 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [49:58, 00:44](1076 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [49:31, 00:46](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [49:28, 00:53](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [49:00, 00:56](1076 MB)
+PASS -- TEST 'rap_noah_debug_intel' [48:48, 01:02](1073 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [48:47, 00:54](1078 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [48:20, 00:41](1077 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [47:51, 01:02](1071 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [47:43, 01:06](1077 MB)
+PASS -- TEST 'rap_flake_debug_intel' [47:43, 00:55](1074 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:43, 02:13](1084 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:25, 05:18] ( 842 warnings )
+PASS -- TEST 'control_wam_debug_intel' [04:37, 00:50](301 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:53, 21:07] ( 3 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [46:29, 01:27](957 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [45:53, 01:19](791 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [45:45, 01:39](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [45:42, 01:38](856 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [45:42, 01:33](839 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [44:58, 01:47](789 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [38:29, 01:34](688 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:41, 00:19](669 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:38, 13:31] ( 3 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [53:22, 01:03](1006 MB)
+PASS -- TEST 'conus13km_2threads_intel' [47:42, 00:54](1008 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [47:29, 00:42](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 13:44] ( 3 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:25](806 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:42, 11:26] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:51, 00:57](952 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:51, 01:11](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [44:24, 00:30](1039 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [44:24, 01:06](709 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [44:17, 00:33](1038 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 00:24](1102 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:22, 07:56] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:32, 00:58](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [21:46, 20:34] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [34:40, 02:07](621 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:40, 00:37](971 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:38, 01:55](663 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [34:38, 01:35](704 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:39, 01:22](711 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:38, 01:07](386 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:39, 02:14](401 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [34:39, 01:26](292 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:42, 02:26](376 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:29, 01:30](417 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:14, 00:52](410 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:13, 00:49](493 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:12, 00:23](316 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:29, 15:00] ( 1449 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:56, 00:39](507 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:25, 10:26] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:00, 00:44](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:00, 00:44](708 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 12:24] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:52, 00:53](712 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:27, 10:23] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [40:47, 01:21](661 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:46, 01:23](647 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:44, 00:30](882 MB)
+
+PASS -- COMPILE 'atml_intel' [20:39, 19:53] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:32, 01:21](1543 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [29:32, 01:21](1550 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:52, 00:21](746 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:21, 04:33] ( 866 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:22, 01:44](1569 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:32, 10:09] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [39:31, 01:31](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [39:31, 00:53](2914 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:31, 01:51](2923 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:56] ( 870 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [38:47, 01:36](4445 MB)
SYNOPSIS:
-Starting Date/Time: 20240506 19:29:03
-Ending Date/Time: 20240506 20:53:52
-Total Time: 01h:25m:26s
+Starting Date/Time: 20240508 15:27:57
+Ending Date/Time: 20240508 16:47:23
+Total Time: 01h:19m:56s
Compiles Completed: 31/31
-Tests Completed: 158/158
+Tests Completed: 155/158
+Failed Tests:
+* TEST rap_sfcdiff_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_rap_sfcdiff_intel.log
+* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST control_CubedSphereGrid_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_control_CubedSphereGrid_debug_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF WCOSS2 REGRESSION TESTING LOG====
+====START OF WCOSS2 REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+f29351be77830efd8ae23ad72436b4b38b886383
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_51903
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-b) - NEW BASELINES FROM FILE: test_changes.list
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'rrfs_intel' [10:23, 09:15] ( 3 warnings 92 remarks )
+PASS -- TEST 'rap_sfcdiff_intel' [21:31, 02:11](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [12:05, 01:20](791 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:12] ( 870 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:36, 01:18](1490 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240508 17:27:57
+Ending Date/Time: 20240508 17:56:08
+Total Time: 00h:28m:25s
+Compiles Completed: 2/2
+Tests Completed: 3/3
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/parm/fd_ufs.yaml b/tests/parm/fd_ufs.yaml
index a91ff96d64..c0189f0bdf 100644
--- a/tests/parm/fd_ufs.yaml
+++ b/tests/parm/fd_ufs.yaml
@@ -1055,43 +1055,76 @@
#
- standard_name: u
canonical_units: m s-1
+ alias: u_component_of_native_D_grid_wind
#
- standard_name: v
canonical_units: m s-1
+ alias: v_component_of_native_D_grid_wind
#
- standard_name: ua
canonical_units: m s-1
+ alias: eastward_wind
#
- standard_name: va
canonical_units: m s-1
+ alias: northward_wind
#
- standard_name: t
canonical_units: K
+ alias: air_temperature
#
- standard_name: delp
canonical_units: Pa
+ alias: air_pressure_thickness
+ #
+ - standard_name: ps
+ canonical_units: Pa
+ alias: surface_pressure
#
- standard_name: sphum
canonical_units: kg kg-1
+ alias: specific_humidity
#
- standard_name: ice_wat
canonical_units: kg kg-1
+ alias: cloud_liquid_ice
#
- standard_name: liq_wat
canonical_units: kg kg-1
+ alias: cloud_liquid_water
+ #
+ - standard_name: rainwat
+ canonical_units: kg kg-1
+ alias: rain_water
+ #
+ - standard_name: snowwat
+ canonical_units: kg kg-1
+ alias: snow_water
+ #
+ - standard_name: graupel
+ canonical_units: kg kg-1
+ alias: graupel
#
- standard_name: o3mr
canonical_units: kg kg-1
+ alias: ozone_mass_mixing_ratio
#
- standard_name: phis
canonical_units: m2 s-2
+ alias: sfc_geopotential_height_times_grav
#
- standard_name: u_srf
canonical_units: m s-1
+ alias: surface_eastward_wind
#
- standard_name: v_srf
canonical_units: m s-1
+ alias: surface_northward_wind
+ #
#
+ - standard_name: t2m
+ canonical_units: K
+ alias: surface_temperature
#
- standard_name: slmsk
canonical_units: flag
@@ -1100,6 +1133,7 @@
- standard_name: weasd
canonical_units: mm
description: water equiv of acc snow depth over land and sea ice
+ alias: sheleg
#
- standard_name: tsea
canonical_units: K
@@ -1169,7 +1203,7 @@
- standard_name: Sl_sfrac
alias: inst_snow_area_fraction_lnd
canonical_units: 1
- description: land export
+ description: land export
#
- standard_name: Sl_tref
alias: inst_temp_height2m_lnd
@@ -1201,7 +1235,7 @@
canonical_units: W m-2
description: land export
#
- - standard_name: Fall_gflx
+ - standard_name: Fall_gflx
alias: inst_upward_heat_flux_lnd
canonical_units: W m-2
description: land export
@@ -1222,7 +1256,7 @@
description: land export
#
- standard_name: Sl_chh
- alias: inst_drag_mass_flux_for_heat_and_moisture
+ alias: inst_drag_mass_flux_for_heat_and_moisture
canonical_units: kg m-2 s-1
description: land export
#
diff --git a/tests/test_changes.list b/tests/test_changes.list
index dfc590d291..e69de29bb2 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1,52 +0,0 @@
-cpld_control_p8_mixedmode intel
-cpld_control_gfsv17 intel
-cpld_control_gfsv17_iau intel
-cpld_restart_gfsv17 intel
-cpld_mpi_gfsv17 intel
-cpld_debug_gfsv17 intel
-cpld_control_p8 intel
-cpld_control_p8.v2.sfc intel
-cpld_restart_p8 intel
-cpld_control_qr_p8 intel
-cpld_restart_qr_p8 intel
-cpld_2threads_p8 intel
-cpld_decomp_p8 intel
-cpld_mpi_p8 intel
-cpld_control_ciceC_p8 intel
-cpld_control_c192_p8 intel
-cpld_restart_c192_p8 intel
-cpld_bmark_p8 intel
-cpld_restart_bmark_p8 intel
-cpld_s2sa_p8 intel
-cpld_control_noaero_p8 intel
-cpld_control_nowave_noaero_p8 intel
-cpld_debug_p8 intel
-cpld_debug_noaero_p8 intel
-cpld_control_noaero_p8_agrid intel
-cpld_control_c48 intel
-cpld_warmstart_c48 intel
-cpld_restart_c48 intel
-cpld_control_p8_faster intel
-cpld_control_pdlib_p8 intel
-cpld_restart_pdlib_p8 intel
-cpld_mpi_pdlib_p8 intel
-cpld_debug_pdlib_p8 intel
-datm_cdeps_control_cfsr intel
-datm_cdeps_restart_cfsr intel
-datm_cdeps_control_gefs intel
-datm_cdeps_iau_gefs intel
-datm_cdeps_stochy_gefs intel
-datm_cdeps_ciceC_cfsr intel
-datm_cdeps_bulk_cfsr intel
-datm_cdeps_bulk_gefs intel
-datm_cdeps_mx025_cfsr intel
-datm_cdeps_mx025_gefs intel
-datm_cdeps_multiple_files_cfsr intel
-datm_cdeps_3072x1536_cfsr intel
-datm_cdeps_gfs intel
-datm_cdeps_debug_cfsr intel
-datm_cdeps_control_cfsr_faster intel
-cpld_control_nowave_noaero_p8 gnu
-cpld_control_pdlib_p8 gnu
-cpld_debug_pdlib_p8 gnu
-datm_cdeps_control_cfsr gnu
From b2668e84f3d3046482c422db9ec7b11cfbcbb79b Mon Sep 17 00:00:00 2001
From: Nicholas Szapiro <149816583+NickSzapiro-NOAA@users.noreply.github.com>
Date: Mon, 13 May 2024 13:07:27 -0400
Subject: [PATCH 31/33] Update CICE to CICE-Consortium (2024-05-01)+update mom6
to its main repo. 20240508 commit #2275 (#2259)
* UFSWM - Update CICE to CICE-Consortium (2024-05-01) and mom6 to its main repo (2024-05-08)
* CICE - Update CICE to CICE-Consortium (2024-05-01)
* MOM6 - Update mom6 to its main repo. 20240508 commit
---
CICE-interface/CICE | 2 +-
MOM6-interface/MOM6 | 2 +-
tests/ci/Jenkinsfile.combined | 8 +
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 108 +--
tests/logs/RegressionTests_derecho.log | 611 ++++++++-------
tests/logs/RegressionTests_gaea.log | 530 ++++++-------
tests/logs/RegressionTests_hera.log | 714 +++++++++---------
tests/logs/RegressionTests_hercules.log | 704 ++++++++---------
tests/logs/RegressionTests_jet.log | 468 ++++++------
tests/logs/RegressionTests_orion.log | 526 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 513 +++++++------
tests/opnReqTest | 2 +-
tests/parm/ice_in.IN | 8 +
15 files changed, 2193 insertions(+), 2075 deletions(-)
diff --git a/CICE-interface/CICE b/CICE-interface/CICE
index c9e4679f44..9c0cd8d3ba 160000
--- a/CICE-interface/CICE
+++ b/CICE-interface/CICE
@@ -1 +1 @@
-Subproject commit c9e4679f449e30bb4cc0f22164b4401a8b50f7a6
+Subproject commit 9c0cd8d3ba5963d01711094a3c81b6358fcb8367
diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6
index 0730606b80..3bcfbbea8b 160000
--- a/MOM6-interface/MOM6
+++ b/MOM6-interface/MOM6
@@ -1 +1 @@
-Subproject commit 0730606b808f2979241d850e763955f5526a980c
+Subproject commit 3bcfbbea8b865c3f88497049fde044c1145bd202
diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined
index 5b3d072320..9628cae560 100644
--- a/tests/ci/Jenkinsfile.combined
+++ b/tests/ci/Jenkinsfile.combined
@@ -69,6 +69,10 @@ def generateStage(nodeLabel) {
cd $WORKSPACE/tests/
elif [[ $machine =~ "Orion" ]]
then
+ cd ..
+ module load git/2.28.0
+ git submodule update --init --recursive
+ cd tests
echo "Creating baselines on $machine"
export dprefix=/work2/noaa/$ACCNR/$USER
sed -i 's|/work/noaa/stmp/${USER}|/work/noaa/epic/stmp/role-epic/|g' rt.sh
@@ -214,6 +218,10 @@ def generateStage(nodeLabel) {
elif [[ $machine =~ "Orion" ]]
then
echo "Running regression tests on $machine"
+ cd ..
+ module load git/2.28.0
+ git submodule update --init --recursive
+ cd tests
export dprefix=/work2/noaa/$ACCNR/$USER
sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh
./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 9b774a47d9..7788869a56 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Wed May 8 13:41:14 UTC 2024
+Sun May 12 12:30:46 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 268.660502
- 0: The maximum resident set size (KB) = 1268232
+ 0: The total amount of wall time = 274.685635
+ 0: The maximum resident set size (KB) = 1268520
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 952.646761
- 0: The maximum resident set size (KB) = 1255292
+ 0: The total amount of wall time = 961.766801
+ 0: The maximum resident set size (KB) = 1234336
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.733088
- 0: The maximum resident set size (KB) = 1245144
+ 0: The total amount of wall time = 239.860027
+ 0: The maximum resident set size (KB) = 1250884
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.108039
- 0: The maximum resident set size (KB) = 1248916
+ 0: The total amount of wall time = 241.404044
+ 0: The maximum resident set size (KB) = 1246748
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.313139
- 0: The maximum resident set size (KB) = 1247708
+ 0: The total amount of wall time = 242.962682
+ 0: The maximum resident set size (KB) = 1249268
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.668319
- 0: The maximum resident set size (KB) = 1248200
+ 0: The total amount of wall time = 237.070887
+ 0: The maximum resident set size (KB) = 1238956
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1887419/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 243.736914
- 0: The maximum resident set size (KB) = 1248980
+ 0: The total amount of wall time = 237.482893
+ 0: The maximum resident set size (KB) = 1245620
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 8 14:43:48 UTC 2024
-Elapsed time: 01h:02m:35s. Have a nice day!
+Sun May 12 13:33:32 UTC 2024
+Elapsed time: 01h:02m:46s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index e13da398db..4a9c079313 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Wed May 8 22:03:04 UTC 2024
+Mon May 13 12:14:02 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1313.925417
- 0: The maximum resident set size (KB) = 1367280
+ 0: The total amount of wall time = 1419.286675
+ 0: The maximum resident set size (KB) = 1344244
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 618.318216
- 0: The maximum resident set size (KB) = 1359788
+ 0: The total amount of wall time = 385.831343
+ 0: The maximum resident set size (KB) = 1341548
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3951357/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 541.651862
- 0: The maximum resident set size (KB) = 1359804
+ 0: The total amount of wall time = 389.117762
+ 0: The maximum resident set size (KB) = 1343228
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 8 23:07:07 UTC 2024
-Elapsed time: 01h:04m:04s. Have a nice day!
+Mon May 13 13:13:57 UTC 2024
+Elapsed time: 00h:59m:55s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 8803c1624f..41329d28f6 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Wed May 8 18:21:05 UTC 2024
+Sun May 12 21:58:20 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2920818/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4046824/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving dynf000.nc .........OK
@@ -15,38 +15,20 @@ Moving baseline bit_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 1309.798707
- 0: The maximum resident set size (KB) = 596032
+ 0: The total amount of wall time = 1390.059976
+ 0: The maximum resident set size (KB) = 576080
Test bit_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 8 18:47:56 UTC 2024
-Elapsed time: 00h:26m:51s. Have a nice day!
-Wed May 8 18:48:27 UTC 2024
+Sun May 12 22:27:02 UTC 2024
+Elapsed time: 00h:28m:42s. Have a nice day!
+Sun May 12 22:54:29 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/dcp_dcp
-Checking test dcp results ....
- Comparing dynf000.nc .....USING NCCMP......OK
- Comparing dynf006.nc .....USING NCCMP......OK
- Comparing phyf000.nc .....USING NCCMP......OK
- Comparing phyf006.nc .....USING NCCMP......OK
- Comparing PRSLEV.GrbF00 .....USING CMP......OK
- Comparing PRSLEV.GrbF06 .....USING CMP......OK
- Comparing NATLEV.GrbF00 .....USING CMP......OK
- Comparing NATLEV.GrbF06 .....USING CMP......OK
-
- 0: The total amount of wall time = 2158.789432
- 0: The maximum resident set size (KB) = 560836
-
-Test dcp PASS
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3015786/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -58,20 +40,56 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2165.997972
- 0: The maximum resident set size (KB) = 556908
+ 0: The total amount of wall time = 2241.535310
+ 0: The maximum resident set size (KB) = 542212
Test std_base PASS
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/thr_thr
+Checking test thr results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
+
+ 0: The total amount of wall time = 2211.134928
+ 0: The maximum resident set size (KB) = 542148
+
+Test thr PASS
+
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 8 20:07:02 UTC 2024
-Elapsed time: 01h:18m:35s. Have a nice day!
-Wed May 8 20:12:02 UTC 2024
+Mon May 13 00:16:03 UTC 2024
+Elapsed time: 01h:21m:34s. Have a nice day!
+Mon May 13 03:04:00 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/dcp_dcp
+Checking test dcp results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
+
+ 0: The total amount of wall time = 2157.558307
+ 0: The maximum resident set size (KB) = 546728
+
+Test dcp PASS
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -83,29 +101,11 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2128.207151
- 0: The maximum resident set size (KB) = 555744
+ 0: The total amount of wall time = 2148.505696
+ 0: The maximum resident set size (KB) = 543380
Test std_base PASS
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3343721/thr_thr
-Checking test thr results ....
- Comparing dynf000.nc .....USING NCCMP......OK
- Comparing dynf006.nc .....USING NCCMP......OK
- Comparing phyf000.nc .....USING NCCMP......OK
- Comparing phyf006.nc .....USING NCCMP......OK
- Comparing PRSLEV.GrbF00 .....USING CMP......OK
- Comparing PRSLEV.GrbF06 .....USING CMP......OK
- Comparing NATLEV.GrbF00 .....USING CMP......OK
- Comparing NATLEV.GrbF06 .....USING CMP......OK
-
- 0: The total amount of wall time = 2139.117039
- 0: The maximum resident set size (KB) = 580480
-
-Test thr PASS
-
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Wed May 8 21:29:22 UTC 2024
-Elapsed time: 01h:17m:20s. Have a nice day!
+Mon May 13 04:21:22 UTC 2024
+Elapsed time: 01h:17m:22s. Have a nice day!
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index 00f3b3ffda..aca7db6a29 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,17 +1,17 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-1b73dc3cfe52765a05ce8ae57735fef196de5fab
+57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,270 +36,361 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_15947
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_111254
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:51, 20:04] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:04, 04:57](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:51, 20:27] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [28:28, 13:45](1697 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:42, 15:10](1827 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 07:19](958 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:49](1659 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:19, 10:42] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:35, 21:17](1694 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:51, 20:04] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:28, 05:39](3092 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:12, 05:37](3092 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:31, 03:19](3150 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [18:07, 05:40](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [09:51, 03:20](3179 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:44, 05:34](3092 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:49, 04:37](3400 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:05, 05:35](3100 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [31:09, 08:53](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [19:01, 05:52](3617 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [36:12, 09:48](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [42:55, 07:04](4651 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:31, 05:14](3067 MB)
-
-PASS -- COMPILE 's2sw_intel' [22:51, 19:14] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [18:16, 04:12](1690 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:28, 04:16](1731 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [16:49, 10:37] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:28, 07:43](3156 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [15:46, 10:03] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:10, 05:20](1708 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:50, 14:51] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:18, 04:18](1736 MB)
-
-PASS -- COMPILE 's2s_intel' [17:50, 14:51] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [27:52, 06:40](2667 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [21:42, 01:57](2691 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [07:28, 01:12](2121 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [09:48, 23:12] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:26, 05:27](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [53:49, 20:09] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:52, 14:01](1706 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:07, 07:28](1021 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:24, 16:01](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:53, 09:55] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 22:59](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [07:51, 12:49] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [06:40, 03:23](672 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:17, 02:22](1570 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:29, 02:24](1571 MB)
-PASS -- TEST 'control_latlon_intel' [04:20, 02:22](1564 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:17, 02:27](1568 MB)
-PASS -- TEST 'control_c48_intel' [08:16, 06:12](1620 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:13](738 MB)
-PASS -- TEST 'control_c192_intel' [11:56, 08:43](1694 MB)
-PASS -- TEST 'control_c384_intel' [16:49, 08:56](2010 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:01, 07:22](1203 MB)
-PASS -- TEST 'control_stochy_intel' [02:28, 01:24](626 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:37, 00:51](441 MB)
-PASS -- TEST 'control_lndp_intel' [02:41, 01:20](626 MB)
-PASS -- TEST 'control_iovr4_intel' [03:57, 02:04](624 MB)
-PASS -- TEST 'control_iovr5_intel' [03:56, 02:03](624 MB)
-PASS -- TEST 'control_p8_intel' [04:51, 02:29](1597 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:50, 02:30](1595 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:30](1604 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:31, 01:23](801 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:44, 02:27](1592 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:28, 01:23](808 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:33](1590 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:20](1604 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:17](1661 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:31](1606 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:46, 02:47](1608 MB)
-PASS -- TEST 'regional_control_intel' [06:05, 04:30](628 MB)
-PASS -- TEST 'regional_restart_intel' [04:06, 02:29](801 MB)
-PASS -- TEST 'regional_decomp_intel' [06:58, 04:44](632 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:11, 04:25](1161 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 04:26](628 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:10, 04:30](633 MB)
-PASS -- TEST 'regional_wofs_intel' [07:10, 05:39](1605 MB)
-
-PASS -- COMPILE 'rrfs_intel' [04:49, 11:31] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [12:13, 06:05](1007 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:37](1204 MB)
-PASS -- TEST 'rap_decomp_intel' [08:26, 06:20](1004 MB)
-PASS -- TEST 'rap_restart_intel' [05:18, 03:11](879 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:20, 06:02](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:19, 06:19](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:23, 04:32](880 MB)
-PASS -- TEST 'hrrr_control_intel' [05:04, 03:12](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:08, 03:16](1000 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:48](1091 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:58, 01:44](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:18, 05:58](1002 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:49, 07:19](1961 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 07:03](1955 MB)
-
-PASS -- COMPILE 'csawmg_intel' [03:49, 10:46] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:17, 05:49](695 MB)
-PASS -- TEST 'control_ras_intel' [04:32, 02:51](659 MB)
-
-PASS -- COMPILE 'wam_intel' [59:47, 10:01] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:34, 01:55](387 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [02:48, 12:50] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:47, 02:23](1604 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:05, 04:15](626 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [57:46, 09:15] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:58, 02:30](1595 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:57, 02:29](1593 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:01, 02:55](804 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:35, 02:36](800 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [12:04, 04:01](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:57, 02:38](809 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:30, 02:34](1664 MB)
-PASS -- TEST 'control_debug_p8_intel' [11:01, 02:37](1627 MB)
-PASS -- TEST 'regional_debug_intel' [24:04, 16:04](661 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:18, 04:38](1184 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:32](1177 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 04:46](1180 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:40](1182 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:39](1183 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:38, 04:52](1270 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 04:50](1184 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:50](1185 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:47](1180 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:38](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:35](1178 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:49](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:11, 07:39](1176 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:21, 04:36](1174 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:35](1181 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:36](1182 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 07:54](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [54:44, 06:03] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:25, 04:37](421 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:30, 10:08] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:38, 03:29](1057 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:19, 05:07](883 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:20, 02:46](882 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:18, 02:54](884 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:51](796 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:43, 01:30](778 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:17, 12:16] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:07, 01:57](1084 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:48, 01:01](1086 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:07](976 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:16, 10:11] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:16, 03:36](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 06:15] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1063 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:43, 04:32](1060 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:51, 13:20](1134 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:44, 13:41](821 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:34, 13:17](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:12, 06:12] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 04:32](1083 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:14, 15:57] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:29](721 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:02](1069 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:02, 06:23](785 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:32, 10:54](800 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 11:59](816 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:36, 04:39](480 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 05:45](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:57, 02:18](395 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:06, 06:15](457 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:14, 03:18](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:24, 03:05](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:22, 03:50](586 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:18](429 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:13, 03:25](789 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [13:13, 07:55] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:29, 12:05](646 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [24:18, 19:13] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:22, 07:03](631 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:41, 07:08](692 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:17, 17:05] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:28, 05:19](677 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:13, 14:21] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:45, 05:32](751 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:44, 05:37](743 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:11, 16:11](898 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:13] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [07:40, 01:32](738 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:34, 02:23](638 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:36, 02:24](638 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:24, 02:25](638 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:28](750 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:29](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:33, 02:20](640 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:35, 05:38](694 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:49, 05:41](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:22, 02:32](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:31, 03:52](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [10:27, 03:56](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:38] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:30, 05:02](747 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:21] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:27, 02:31](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:56] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:12](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:31, 01:03](457 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:40, 00:44](452 MB)
-
-PASS -- COMPILE 'atml_intel' [14:20, 13:28] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:56, 06:29](1632 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:34, 06:10](1636 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:06](856 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [09:13, 08:21] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:46, 05:29](1669 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:20, 12:56] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 01:32](1636 MB)
-
-PASS -- COMPILE 'atmaero_intel' [18:21, 11:45] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [08:39, 03:42](2950 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:45, 04:17](2995 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:11, 04:21](3010 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:20, 07:02] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [26:51, 21:57](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:25, 20:12] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:45, 04:54](3072 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:25, 21:20] ( 6 warnings 10 remarks )
+FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:05, 15:44](1659 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:05] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [23:45, 21:23](1693 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:23, 19:56] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:35](3090 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:19, 05:35](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:22, 03:16](3154 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:33](3125 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:23, 03:16](3181 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 05:32](3094 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:58, 04:33](3399 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:16, 05:34](3102 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 08:52](3634 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 05:59](3611 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:40, 09:46](4341 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:57, 07:08](4650 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:17](3068 MB)
+
+PASS -- COMPILE 's2sw_intel' [20:25, 19:20] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:12](1680 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 04:13](1729 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:21, 09:46] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [09:53, 07:41](3155 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [10:22, 09:17] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1706 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:30] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:34, 04:19](1727 MB)
+
+PASS -- COMPILE 's2s_intel' [15:22, 14:44] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:34](2668 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:00](2684 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:10](2123 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:26, 23:19] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:55, 05:28](3103 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:13] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:51, 13:59](1703 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:16](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:50, 16:01](1675 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:13, 09:16] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 22:56](1717 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [14:19, 12:56] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:38, 03:24](669 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:24](1573 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:50, 02:29](1575 MB)
+PASS -- TEST 'control_latlon_intel' [04:28, 02:23](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:26](1568 MB)
+PASS -- TEST 'control_c48_intel' [08:34, 06:12](1621 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:14](737 MB)
+PASS -- TEST 'control_c192_intel' [11:08, 08:38](1692 MB)
+PASS -- TEST 'control_c384_intel' [16:46, 08:56](2003 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:34, 07:18](1204 MB)
+PASS -- TEST 'control_stochy_intel' [02:37, 01:24](625 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:51](441 MB)
+PASS -- TEST 'control_lndp_intel' [02:46, 01:21](627 MB)
+PASS -- TEST 'control_iovr4_intel' [03:51, 02:04](622 MB)
+PASS -- TEST 'control_iovr5_intel' [03:44, 02:05](623 MB)
+PASS -- TEST 'control_p8_intel' [04:47, 02:29](1595 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 02:27](1594 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:27](1605 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:32, 01:25](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:29](1596 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:23](808 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1598 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:22, 04:20](1596 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:42, 03:17](1654 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:29, 02:31](1614 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:41, 02:47](1611 MB)
+PASS -- TEST 'regional_control_intel' [06:12, 04:28](628 MB)
+PASS -- TEST 'regional_restart_intel' [04:03, 02:31](807 MB)
+PASS -- TEST 'regional_decomp_intel' [06:09, 04:43](628 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:06, 04:25](1165 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:29](624 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:02, 04:31](628 MB)
+PASS -- TEST 'regional_wofs_intel' [07:07, 05:40](1606 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:14, 11:27] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:28, 06:08](1009 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:38, 03:41](1204 MB)
+PASS -- TEST 'rap_decomp_intel' [08:28, 06:22](1004 MB)
+PASS -- TEST 'rap_restart_intel' [05:20, 03:13](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:04](1005 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:35](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:06, 03:14](999 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:06, 03:18](1002 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:47](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:44, 01:45](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:29, 05:57](1002 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:22](1961 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:59, 07:08](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:14, 10:21] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:53, 05:49](695 MB)
+PASS -- TEST 'control_ras_intel' [04:25, 02:53](656 MB)
+
+PASS -- COMPILE 'wam_intel' [10:13, 09:40] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:24, 01:54](383 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:14, 12:39] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:37, 02:25](1599 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:06, 04:16](625 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:50] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:10, 02:34](1601 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:15, 02:28](1598 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:54](800 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:34, 02:35](801 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:14, 03:59](838 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:43, 02:36](811 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:28, 02:36](1653 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:05, 02:36](1629 MB)
+PASS -- TEST 'regional_debug_intel' [18:01, 16:42](663 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:33, 04:43](1180 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:38](1177 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:40](1178 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_c3_debug_intel' [, ]( MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 04:40](1180 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:12, 04:50](1266 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 04:49](1187 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:40, 04:39](1183 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:40](1180 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:41, 04:33](1179 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 04:38](1184 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 07:37](1181 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:43, 04:34](1173 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:34](1182 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:38, 04:37](1183 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 07:54](1184 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:12, 05:34] ( 860 warnings )
+FAILED: RUN DID NOT COMPLETE -- TEST 'control_wam_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:58] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:48, 03:31](1058 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:06](884 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:04, 02:45](881 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 02:54](886 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:52](798 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:31](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:00] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:17, 01:51](1084 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1084 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:09](976 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 09:48] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:38](909 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:53] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:38](1058 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:21](1055 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:29, 13:24](1136 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:30, 13:28](820 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 13:27](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:36] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:44, 04:41](1088 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:15, 16:14] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:32, 04:33](716 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:03](1070 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](778 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 10:54](802 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:44, 11:59](816 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:40](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 05:49](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:21](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:50, 06:13](459 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:20](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:25, 03:05](511 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:47](590 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:13](428 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:12, 03:23](791 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:27] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:10, 12:00](617 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [20:22, 19:46] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:20, 07:05](638 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:50, 07:08](693 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 16:58] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:34, 05:26](677 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:13, 14:19] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:37, 05:36](757 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:28, 05:36](740 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:23, 16:15](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:18, 07:58] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](749 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:33](751 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:21](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:25](639 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 02:23](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:39, 02:31](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:31](750 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:30, 02:21](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:32, 05:41](694 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:40, 05:40](673 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:23, 02:28](758 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 03:55](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 03:56](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:07] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 05:02](747 MB)
+
+FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_faster_intel' [, ]
+FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_control_cfsr_faster_intel' [, ]( MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:26] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:35, 01:09](304 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:04](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:42](452 MB)
+
+PASS -- COMPILE 'atml_intel' [14:22, 13:05] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 05:49](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 05:44](1634 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:15](853 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [08:17, 07:47] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:26, 05:29](1658 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:20, 12:57] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:32](1637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 11:28] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:37](2948 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:14](3002 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 04:21](3012 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:33] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:58](4531 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 12:49:22
-Ending Date/Time: 20240508 19:08:33
-Total Time: 06h:20m:08s
-Compiles Completed: 38/38
-Tests Completed: 175/175
+Starting Date/Time: 20240512 06:19:01
+Ending Date/Time: 20240512 07:51:11
+Total Time: 01h:33m:10s
+Compiles Completed: 37/38
+Tests Completed: 168/175
+Failed Compiles:
+* COMPILE datm_cdeps_faster_intel: FAILED: UNABLE TO COMPILE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/compile_datm_cdeps_faster_intel.log
+Failed Tests:
+* TEST cpld_control_gfsv17_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_cpld_control_gfsv17_intel.log
+* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST hrrr_c3_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_hrrr_c3_debug_intel.log
+* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log
+* TEST control_wam_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_control_wam_debug_intel.log
+* TEST datm_cdeps_control_cfsr_faster_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF DERECHO REGRESSION TESTING LOG====
+====START OF DERECHO REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+575b7c28583dac4700e80788b5d7c8e9a12ee4df
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6102
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: nral0032
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'wam_debug_intel' [06:18, 05:28] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:23, 04:42](419 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:34] ( 890 warnings 9 remarks )
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:50](1183 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:39](1181 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:22, 20:43] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:01, 13:47](1684 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:01] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:29](747 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240512 15:55:41
+Ending Date/Time: 20240512 16:35:33
+Total Time: 00h:40m:03s
+Compiles Completed: 4/4
+Tests Completed: 5/5
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index d031ec5ff0..272aea4007 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,17 +1,17 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-f29351be77830efd8ae23ad72436b4b38b886383
+6a75664fc408bfd7a64311ae178ffeb12ffe7b77
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,275 +36,275 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_7744
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_169283
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [19:12, 19:08] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:03, 07:19](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 24:29] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [29:35, 13:28](1698 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:32, 14:22](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:28, 06:49](944 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 15:09](1670 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:12, 11:28] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [31:44, 23:51](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:13, 19:30] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [11:28, 07:57](3098 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:39, 08:23](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [29:54, 05:17](3154 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 08:05](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [29:55, 05:19](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:17, 06:47](3408 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:26, 07:58](3096 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [19:24, 07:29](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:40, 08:18](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [36:30, 10:46](3268 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:54, 07:21](3603 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [51:37, 13:03](4034 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:14, 09:13](4341 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:26, 07:50](3066 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:12, 18:19] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:53, 05:06](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:02, 05:14](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [15:12, 14:19] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [15:45, 10:07](3129 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [12:12, 11:20] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 06:28](1697 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [40:15, 39:44] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [22:52, 05:20](1728 MB)
-
-PASS -- COMPILE 's2s_intel' [26:12, 25:42] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [26:59, 07:03](2659 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [21:24, 02:05](2684 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [12:24, 01:10](2114 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:12, 22:30] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [18:53, 08:11](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [25:13, 24:17] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:37, 15:01](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:42](1000 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:53, 17:40](1683 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:26] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:48, 26:50](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [18:14, 17:20] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [27:31, 03:44](670 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [25:01, 03:17](1567 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:01, 03:16](1579 MB)
-PASS -- TEST 'control_latlon_intel' [17:50, 03:24](1568 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:11, 03:01](1567 MB)
-PASS -- TEST 'control_c48_intel' [13:30, 06:37](1601 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:47, 05:39](722 MB)
-PASS -- TEST 'control_c192_intel' [10:56, 09:57](1683 MB)
-PASS -- TEST 'control_c384_intel' [20:22, 18:14](1986 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:31, 14:12](1183 MB)
-PASS -- TEST 'control_stochy_intel' [02:34, 01:54](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:35, 01:04](430 MB)
-PASS -- TEST 'control_lndp_intel' [03:32, 02:07](628 MB)
-PASS -- TEST 'control_iovr4_intel' [03:37, 02:33](623 MB)
-PASS -- TEST 'control_iovr5_intel' [03:37, 02:32](623 MB)
-PASS -- TEST 'control_p8_intel' [05:14, 03:17](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:31, 03:24](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:11](1607 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:05, 02:08](788 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:18](1594 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:55](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [05:04, 03:43](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:10, 02:45](1684 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:27](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:15, 04:36](1656 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:38](1613 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:15, 03:58](1609 MB)
-PASS -- TEST 'regional_control_intel' [06:45, 04:42](617 MB)
-PASS -- TEST 'regional_restart_intel' [03:41, 02:38](786 MB)
-PASS -- TEST 'regional_decomp_intel' [06:45, 04:49](617 MB)
-PASS -- TEST 'regional_2threads_intel' [04:43, 02:55](758 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:52, 04:52](1155 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:41](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:49, 04:44](617 MB)
-PASS -- TEST 'regional_wofs_intel' [09:18, 06:14](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:11, 12:55] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [31:56, 06:45](1012 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [28:32, 04:00](1189 MB)
-PASS -- TEST 'rap_decomp_intel' [30:57, 07:06](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [30:57, 06:12](1094 MB)
-PASS -- TEST 'rap_restart_intel' [06:03, 03:42](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [31:58, 07:00](1009 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:58, 07:20](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 05:12](882 MB)
-PASS -- TEST 'hrrr_control_intel' [27:24, 04:04](1007 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [27:33, 03:53](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [26:29, 03:04](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:34, 02:06](839 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [32:01, 06:52](1004 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [31:30, 08:08](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [31:30, 08:07](1949 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:11, 12:29] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [31:33, 06:37](696 MB)
-PASS -- TEST 'control_ras_intel' [26:22, 03:30](656 MB)
-
-PASS -- COMPILE 'wam_intel' [14:11, 13:24]
-PASS -- TEST 'control_wam_intel' [03:28, 02:26](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:12, 15:12] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:10, 03:13](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:39, 04:44](617 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [11:11, 11:03] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 03:05](1585 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:55, 03:03](1585 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:04](783 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:47](784 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:41, 04:19](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:28, 02:49](795 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:46, 03:21](1641 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:44, 03:28](1617 MB)
-PASS -- TEST 'regional_debug_intel' [17:44, 16:22](633 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:34, 05:10](1168 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:05](1167 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:24](1173 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:33, 05:29](1173 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:09](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:24](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:27](1169 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:31, 05:47](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:31](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:19](1169 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:17](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:30, 05:21](1167 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 08:03](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 05:25](1167 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:32, 06:26](1171 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:33, 05:28](1169 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:54, 08:20](1174 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:13, 08:47] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:33, 05:02](398 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [23:14, 22:47] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:53](1051 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:05, 05:55](891 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:00, 03:40](887 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:22](949 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:59, 02:48](937 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 03:29](885 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:14, 04:56](785 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:42](769 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:12, 16:07] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:03, 02:12](1091 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:14, 01:09](1073 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:51](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 15:19] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:27, 04:20](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 11:22] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:33, 04:58](1050 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:11, 04:45](1051 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:58, 14:15](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:56, 14:06](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:11](1112 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:21, 14:18](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:14] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:10, 04:58](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [28:12, 27:10] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:20, 05:19](710 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:59, 04:32](1062 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:37](740 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:16, 11:32](785 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:17, 12:44](801 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:17, 05:25](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:53](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:58, 02:58](374 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:01, 08:03](432 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 04:01](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:13, 03:48](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:16, 05:19](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:04, 01:51](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:42, 04:05](769 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [17:16, 16:15] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:29, 13:17](581 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [27:12, 26:35] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:41](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:49](787 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [24:12, 23:45] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:16, 05:59](785 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:11, 17:14] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:28](744 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:13](732 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:16, 20:02](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:45] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:26, 02:36](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:35](746 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:34](641 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:25, 02:29](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](637 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:40](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:34](759 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:28](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:00, 06:12](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](678 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:37](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:59, 04:41](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:35](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:02] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:23](743 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [16:14, 16:05] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:42](761 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [09:11, 08:36] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:02, 01:54](310 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:34](457 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:49, 02:27](456 MB)
-
-PASS -- COMPILE 'atml_intel' [22:15, 21:31] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:54, 08:14](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 08:03](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:03, 04:33](836 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [10:14, 09:55] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:14](1653 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:11, 14:01] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:26, 02:35](1651 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:11, 12:54] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [08:19, 06:43](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:16, 06:48](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 07:38](3019 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [21:11, 20:52] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [21:36, 18:57](4483 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [23:13, 22:29] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:01, 07:52](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 23:06] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [31:42, 13:28](1695 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:09, 14:43](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [24:32, 07:18](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:55, 15:47](1669 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:29] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [29:57, 23:35](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:11, 17:56] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [12:01, 08:31](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:27](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [24:07, 05:03](3154 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 08:35](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [24:09, 05:06](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:03](3411 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:47, 08:25](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:05, 07:33](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:34](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:10, 10:33](3263 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:19](3601 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [41:06, 13:39](4037 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:22, 09:11](4342 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:53, 08:18](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:11, 16:22] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:55](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:16](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:49] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [16:29, 10:25](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:24] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:54](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:57] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 05:13](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:54](2657 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:02](2682 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [06:07, 01:05](2112 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:28] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [21:22, 08:22](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:23] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 15:00](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:47, 07:41](998 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 17:19](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 12:53] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:40, 27:39](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:50] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [19:05, 04:02](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [23:09, 03:28](1566 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:12, 03:30](1579 MB)
+PASS -- TEST 'control_latlon_intel' [21:54, 03:15](1568 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:03, 03:25](1567 MB)
+PASS -- TEST 'control_c48_intel' [25:16, 06:43](1601 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [25:07, 05:39](721 MB)
+PASS -- TEST 'control_c192_intel' [27:54, 10:01](1692 MB)
+PASS -- TEST 'control_c384_intel' [36:00, 18:19](1986 MB)
+PASS -- TEST 'control_c384gdas_intel' [33:58, 14:14](1180 MB)
+PASS -- TEST 'control_stochy_intel' [17:01, 02:12](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:00](430 MB)
+PASS -- TEST 'control_lndp_intel' [17:01, 02:12](628 MB)
+PASS -- TEST 'control_iovr4_intel' [18:20, 02:57](623 MB)
+PASS -- TEST 'control_iovr5_intel' [18:20, 02:57](623 MB)
+PASS -- TEST 'control_p8_intel' [24:19, 03:24](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [23:52, 03:50](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [22:49, 03:41](1607 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:55, 02:03](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [22:34, 03:31](1594 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:48, 02:10](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [21:55, 03:19](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [20:38, 02:40](1687 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:15](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:23, 04:08](1656 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:21, 03:20](1613 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:20, 03:36](1610 MB)
+PASS -- TEST 'regional_control_intel' [06:05, 04:46](617 MB)
+PASS -- TEST 'regional_restart_intel' [04:20, 02:51](786 MB)
+PASS -- TEST 'regional_decomp_intel' [06:10, 04:55](617 MB)
+PASS -- TEST 'regional_2threads_intel' [05:11, 03:02](767 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:54, 04:39](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:47, 04:58](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:43](617 MB)
+PASS -- TEST 'regional_wofs_intel' [07:35, 06:04](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [10:00, 06:57](1012 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:01](1186 MB)
+PASS -- TEST 'rap_decomp_intel' [09:54, 07:06](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:23, 06:06](1100 MB)
+PASS -- TEST 'rap_restart_intel' [16:09, 03:59](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:55](1009 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:24](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [20:25, 05:05](882 MB)
+PASS -- TEST 'hrrr_control_intel' [06:27, 04:11](1007 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 03:54](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:15](1080 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [15:46, 02:17](839 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:42, 06:54](1004 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:46, 08:14](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 08:10](1948 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:13, 12:55] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:52, 06:38](696 MB)
+PASS -- TEST 'control_ras_intel' [18:48, 03:50](656 MB)
+
+PASS -- COMPILE 'wam_intel' [12:13, 12:02]
+PASS -- TEST 'control_wam_intel' [18:57, 02:27](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:22] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [19:47, 03:45](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:14, 04:30](617 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:38] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:23, 02:59](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:20, 03:00](1587 MB)
+PASS -- TEST 'control_stochy_debug_intel' [17:49, 03:13](782 MB)
+PASS -- TEST 'control_lndp_debug_intel' [17:48, 02:53](784 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [19:17, 04:16](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [16:43, 02:52](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [16:55, 03:03](1643 MB)
+PASS -- TEST 'control_debug_p8_intel' [17:01, 03:31](1619 MB)
+PASS -- TEST 'regional_debug_intel' [24:59, 16:14](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [16:39, 05:06](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [16:40, 04:53](1167 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [16:42, 04:56](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [16:42, 05:06](1173 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:14, 05:07](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [18:44, 05:18](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:10](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:32, 05:20](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:15](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:06](1169 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:06](1168 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:42, 05:00](1167 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:05](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:11](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:55](1170 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:32, 05:05](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:23](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:11, 09:02] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:29, 05:08](398 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:46] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 04:02](1048 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:07, 05:54](890 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:10, 03:51](887 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:07](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 02:43](934 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:34](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:15](786 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:40](768 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:30] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:04, 02:20](1092 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:53, 01:03](1076 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:42](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:04, 04:18](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:50] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 05:39](1050 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 05:28](1049 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:00, 14:25](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [14:58, 14:01](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:11](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:40] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 04:54](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:14, 16:42] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:17](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:30](1053 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 07:36](744 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:20, 11:42](791 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 12:52](801 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:28](479 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:45](500 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:21, 02:57](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:05](434 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:04, 03:50](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:36](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:12, 04:40](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:51](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](766 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [11:12, 10:34] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:56](581 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [19:15, 19:08] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:20, 07:44](616 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 07:50](788 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:54] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 06:03](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [17:11, 17:00] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:28, 06:12](744 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:13](731 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 20:05](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:38] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:38](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 02:15](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:59, 02:28](639 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:29](638 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:29](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:28, 02:37](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:24](637 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:09, 06:04](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:28](677 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:35](748 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:36](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 04:35](2021 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:34] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:23](731 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [12:15, 11:38] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:50] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:57, 01:55](311 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:35](457 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:01, 01:06](456 MB)
+
+PASS -- COMPILE 'atml_intel' [20:11, 19:56] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 06:56](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 06:53](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 03:56](836 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [13:12, 12:57] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:14](1651 MB)
+
+PASS -- COMPILE 'atmw_intel' [18:11, 17:49] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:14](1649 MB)
+
+PASS -- COMPILE 'atmaero_intel' [20:12, 19:44] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:17](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:32](3012 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:30, 06:25](3019 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [16:11, 15:44] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [20:49, 18:23](4449 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 10:47:03
-Ending Date/Time: 20240508 12:41:33
-Total Time: 01h:55m:44s
+Starting Date/Time: 20240510 13:48:51
+Ending Date/Time: 20240510 15:46:52
+Total Time: 01h:59m:09s
Compiles Completed: 38/38
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index c9c5cfaf88..bf40591ff6 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,18 +1,18 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-f29351be77830efd8ae23ad72436b4b38b886383
+6a75664fc408bfd7a64311ae178ffeb12ffe7b77
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -25,367 +25,367 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3058841
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2863157
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:49] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:23, 05:31](3184 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:46] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:33, 17:09](1764 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 17:48](2026 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 08:08](1122 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:04, 19:18](1651 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:45] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:06, 22:33](1706 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:11, 12:48] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:18, 05:47](3208 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:25, 05:49](3227 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:24](3257 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:19, 05:50](3252 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:25](3282 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:31](3562 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:18, 05:47](3225 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:19, 04:45](3086 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 05:47](3196 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:25, 10:03](3352 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:35, 06:27](3628 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [23:34, 09:31](4129 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:31, 06:02](4371 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:17, 05:23](3184 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:11, 12:03] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:43](1751 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:11, 04:17](1799 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:28] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:14, 08:29](3210 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:32] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:05, 05:46](1720 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:24] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 04:18](1790 MB)
-
-PASS -- COMPILE 's2s_intel' [12:11, 11:28] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [10:49, 09:20](2830 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:34](2830 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2287 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:31] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:22, 05:26](3226 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:10] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 17:13](1793 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:17, 08:07](1178 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:25, 19:38](1694 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:18] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:50](1737 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:16] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:22, 03:18](711 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [08:51, 02:54](1607 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:55, 02:57](1613 MB)
-PASS -- TEST 'control_latlon_intel' [08:48, 02:52](1601 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:56, 02:55](1597 MB)
-PASS -- TEST 'control_c48_intel' [10:51, 07:35](1761 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 06:24](877 MB)
-PASS -- TEST 'control_c192_intel' [16:08, 10:30](1751 MB)
-PASS -- TEST 'control_c384_intel' [16:07, 10:30](2015 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:53, 08:01](1403 MB)
-PASS -- TEST 'control_stochy_intel' [06:23, 01:39](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:25, 00:58](511 MB)
-PASS -- TEST 'control_lndp_intel' [06:22, 01:35](664 MB)
-PASS -- TEST 'control_iovr4_intel' [07:24, 02:25](651 MB)
-PASS -- TEST 'control_iovr5_intel' [06:24, 02:25](662 MB)
-PASS -- TEST 'control_p8_intel' [07:00, 02:54](1626 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [06:58, 02:54](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:52, 02:49](1635 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:48, 01:37](898 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:51, 02:50](1627 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:38](943 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:49, 02:57](1627 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:41](1716 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:07](1634 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:53](1703 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:57, 03:02](1646 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:55, 03:12](1641 MB)
-PASS -- TEST 'regional_control_intel' [06:42, 05:09](850 MB)
-PASS -- TEST 'regional_restart_intel' [05:45, 02:47](1015 MB)
-PASS -- TEST 'regional_decomp_intel' [06:41, 05:29](852 MB)
-PASS -- TEST 'regional_2threads_intel' [04:43, 03:14](857 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:44, 05:06](1361 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:48, 05:05](852 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:44, 05:05](857 MB)
-PASS -- TEST 'regional_wofs_intel' [07:45, 06:44](1913 MB)
-
-PASS -- COMPILE 'rrfs_intel' [11:11, 10:31] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:43, 07:42](1114 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:07](1301 MB)
-PASS -- TEST 'rap_decomp_intel' [08:35, 08:05](1040 MB)
-PASS -- TEST 'rap_2threads_intel' [10:34, 07:15](1181 MB)
-PASS -- TEST 'rap_restart_intel' [05:53, 04:12](1111 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:46, 07:43](1106 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:15, 08:10](1041 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:47](1133 MB)
-PASS -- TEST 'hrrr_control_intel' [06:36, 04:00](1043 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 04:09](1035 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:36](1112 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:20](1005 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:36](1097 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:13](1989 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2074 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:11, 10:20] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:42, 05:55](759 MB)
-PASS -- TEST 'control_ras_intel' [05:22, 03:14](757 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 03:35]
-PASS -- TEST 'control_csawmg_gnu' [09:40, 08:25](548 MB)
-
-PASS -- COMPILE 'wam_intel' [10:11, 10:04]
-PASS -- TEST 'control_wam_intel' [04:21, 02:06](660 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:31] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:24, 02:45](1631 MB)
-PASS -- TEST 'regional_control_faster_intel' [09:46, 04:45](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:47] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:50, 02:45](1625 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:00, 02:43](1618 MB)
-PASS -- TEST 'control_stochy_debug_intel' [07:24, 03:12](830 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:45, 02:51](826 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:41, 04:16](881 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:02, 02:54](834 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:51, 02:55](1678 MB)
-PASS -- TEST 'control_debug_p8_intel' [05:48, 03:01](1651 MB)
-PASS -- TEST 'regional_debug_intel' [20:47, 17:09](848 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:25, 05:02](1213 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:50](1208 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 04:51](1210 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:52](1211 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 04:50](1205 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:51, 05:06](1300 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 04:55](1208 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 04:55](1205 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:48](1209 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:46](1211 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:44](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 04:45](1209 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:58](1208 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 04:43](1207 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:47](1209 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:50](1207 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:14](1211 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:10, 02:42]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:40, 02:11](532 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:09] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [08:22, 05:00](516 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:51] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 03:55](1170 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:23](1053 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:46, 03:24](991 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1104 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:33, 03:07](971 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:35](936 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:49, 05:03](1039 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [14:38, 01:51](947 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 12:13] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [06:03, 02:06](1208 MB)
-PASS -- TEST 'conus13km_2threads_intel' [15:48, 00:52](1122 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [17:50, 01:14](1110 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:16] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:43, 04:10](990 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:35] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:25, 04:44](1093 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:24, 04:39](1087 MB)
-PASS -- TEST 'conus13km_debug_intel' [18:00, 14:22](1231 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [18:56, 14:50](926 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [23:49, 08:05](1158 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:51, 14:47](1309 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:20] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [19:27, 04:56](1138 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:12, 11:44] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [17:25, 05:04](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [20:36, 06:15](1121 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:32, 07:02](840 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [28:22, 13:25](866 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:41, 15:09](890 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:02, 05:34](506 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:34, 06:45](521 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [16:46, 02:39](380 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [21:19, 07:28](482 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:49, 03:45](538 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:55, 03:32](535 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:57, 04:08](593 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:30, 01:23](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [19:47, 04:16](802 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:51] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [27:59, 12:57](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:12, 12:05] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:11, 08:58](673 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:17, 09:05](739 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:06] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:14, 06:42](732 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:11, 11:07] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [18:24, 06:52](802 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:23, 06:42](826 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:01, 16:21](1216 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:50]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:54](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:36](1106 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:45](1019 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:20, 02:48](1023 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1018 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:51](1148 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1025 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:21](1055 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:29, 06:27](1042 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:35](1153 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:58](2451 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:57](2438 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 02:58] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:12](1084 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:09]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:41](1163 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:58] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:43](260 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:48](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:30](323 MB)
-
-PASS -- COMPILE 'atml_intel' [12:13, 11:37] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:12, 04:06](1616 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:09, 04:07](1616 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:13](901 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:11, 04:13] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:24](1633 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:11, 10:55] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:45](1685 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:28, 10:52] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:00](3031 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 04:50](3094 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:46, 04:52](3114 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:49, 03:32] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [24:13, 21:38](4440 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:10, 04:16]
-PASS -- TEST 'control_c48_gnu' [11:49, 11:07](1544 MB)
-PASS -- TEST 'control_stochy_gnu' [04:25, 03:25](508 MB)
-PASS -- TEST 'control_ras_gnu' [05:22, 04:50](524 MB)
-PASS -- TEST 'control_p8_gnu' [06:05, 04:39](1267 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [06:00, 04:33](1269 MB)
-PASS -- TEST 'control_flake_gnu' [11:23, 10:43](551 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [07:11, 04:28]
-PASS -- TEST 'rap_control_gnu' [11:38, 10:40](862 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:37, 10:53](867 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:39, 09:48](942 MB)
-PASS -- TEST 'rap_restart_gnu' [06:40, 05:24](586 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:38, 10:44](859 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:33, 10:56](860 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:45, 08:02](593 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:38, 05:34](857 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:31, 05:35](848 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [06:32, 05:01](938 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:32, 05:30](859 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:56](571 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:25, 02:51](665 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](855 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 04:03]
-PASS -- TEST 'control_diag_debug_gnu' [03:54, 01:41](1292 MB)
-PASS -- TEST 'regional_debug_gnu' [11:47, 10:19](568 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:39](873 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:37](871 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:38](878 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [04:24, 02:37](876 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [05:36, 02:53](958 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:22, 04:04](871 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:38](875 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:36](869 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:37](503 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:45](504 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:39](1259 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:21, 02:32](873 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:49](877 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:21](879 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:38]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:10, 04:00]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:31, 09:11](716 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 04:56](718 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:34](772 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:27](756 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 04:58](713 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:37, 06:47](563 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:34](549 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:55, 03:13](888 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:49, 05:54](890 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:51, 01:48](568 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:12, 05:45]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](743 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 03:44]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:21, 02:31](721 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:26](724 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:52, 06:59](903 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 06:59](585 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:46, 07:18](905 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:49](971 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:30]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:38](750 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:12, 14:30]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:14]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:11, 07:09](1359 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:28]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [16:13, 14:17]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:10, 26:49](1325 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:16]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:01, 12:51](1336 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 14:15]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:59](705 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:14, 12:46] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:28, 05:44](3166 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 17:06] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:12](1738 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:16](2009 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 08:34](1102 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:23, 19:21](1626 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:35] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:48](1659 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:14, 13:02] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:30, 05:57](3195 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 05:51](3192 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:27](3229 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:30, 06:01](3221 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:30, 03:29](3253 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:27, 05:41](3527 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:30, 06:02](3194 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:58](3051 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:59](3185 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:13](3323 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [10:48, 06:26](3594 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [17:43, 09:45](4103 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 06:52](4340 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:29](3157 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:15, 12:37] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:52](1721 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:26](1769 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:31] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:33](3200 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:25] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 05:50](1708 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:15, 11:32] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:27](1766 MB)
+
+PASS -- COMPILE 's2s_intel' [12:13, 11:38] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [12:50, 09:28](2820 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 02:36](2811 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:46, 01:28](2285 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:15, 16:46] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:22, 05:27](3201 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:29] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 17:29](1762 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:26, 08:24](1141 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:03](1661 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:27] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 25:03](1694 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:15, 11:18] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:27, 03:24](685 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:53](1580 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:57](1588 MB)
+PASS -- TEST 'control_latlon_intel' [03:49, 02:53](1578 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:57](1573 MB)
+PASS -- TEST 'control_c48_intel' [08:52, 07:36](1735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:26](855 MB)
+PASS -- TEST 'control_c192_intel' [12:08, 10:43](1728 MB)
+PASS -- TEST 'control_c384_intel' [13:05, 10:40](1999 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:19, 08:08](1384 MB)
+PASS -- TEST 'control_stochy_intel' [02:24, 01:40](641 MB)
+PASS -- TEST 'control_stochy_restart_intel' [07:29, 01:01](481 MB)
+PASS -- TEST 'control_lndp_intel' [02:23, 01:33](648 MB)
+PASS -- TEST 'control_iovr4_intel' [03:26, 02:25](636 MB)
+PASS -- TEST 'control_iovr5_intel' [03:25, 02:25](642 MB)
+PASS -- TEST 'control_p8_intel' [04:02, 03:02](1611 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:56](1612 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:49](1608 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:49, 01:42](876 MB)
+PASS -- TEST 'control_noqr_p8_intel' [10:01, 02:56](1593 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:04, 01:37](919 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:55, 03:04](1609 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:54, 02:47](1694 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:50, 05:17](1607 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:58, 04:03](1677 MB)
+PASS -- TEST 'control_p8_mynn_intel' [10:04, 03:05](1609 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:02, 03:20](1614 MB)
+PASS -- TEST 'regional_control_intel' [10:42, 05:19](839 MB)
+PASS -- TEST 'regional_restart_intel' [03:42, 02:45](998 MB)
+PASS -- TEST 'regional_decomp_intel' [10:40, 05:39](826 MB)
+PASS -- TEST 'regional_2threads_intel' [08:39, 03:23](824 MB)
+PASS -- TEST 'regional_noquilt_intel' [09:47, 05:15](1343 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 05:15](831 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 05:17](830 MB)
+PASS -- TEST 'regional_wofs_intel' [11:42, 06:53](1894 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:13, 10:38] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [11:59, 07:48](1091 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:11](1279 MB)
+PASS -- TEST 'rap_decomp_intel' [09:48, 08:19](1022 MB)
+PASS -- TEST 'rap_2threads_intel' [08:45, 07:24](1160 MB)
+PASS -- TEST 'rap_restart_intel' [05:58, 04:34](1085 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:09](1085 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:39](1020 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 06:16](1111 MB)
+PASS -- TEST 'hrrr_control_intel' [04:41, 04:01](1024 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 04:09](1007 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:40](1095 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:22](992 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:59](1079 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:54](1978 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:38](2048 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:14, 10:26] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:43, 06:23](744 MB)
+PASS -- TEST 'control_ras_intel' [04:23, 03:14](737 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:14, 03:42]
+PASS -- TEST 'control_csawmg_gnu' [12:59, 08:27](534 MB)
+
+PASS -- COMPILE 'wam_intel' [12:13, 10:08]
+PASS -- TEST 'control_wam_intel' [02:22, 02:04](635 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 10:53] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:00, 02:41](1604 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:43, 05:11](828 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:13, 04:46] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:50, 02:37](1588 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:37](1583 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](785 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:50](786 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:13](829 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:26, 03:04](800 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:57, 02:56](1648 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:47, 03:03](1609 MB)
+PASS -- TEST 'regional_debug_intel' [18:48, 17:52](811 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:27, 05:17](1171 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:11](1171 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:20](1148 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:08](1176 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:06](1166 MB)
+PASS -- TEST 'rap_diag_debug_intel' [10:42, 09:14](1251 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:16](1169 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:15](1174 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1173 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 05:05](1171 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:58](1172 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 05:01](1170 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:09](1170 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:05](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:11](1167 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:01](1170 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 09:10](1181 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:44]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:22](510 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:12, 03:19] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:23, 05:06](463 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:13, 10:10] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:07, 04:26](1140 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 07:03](1036 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:49](973 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:26](1077 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:17](943 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:42](918 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:41, 04:57](1018 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:16](918 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:23] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:07, 02:09](1179 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1097 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:17](1092 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:20] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:17](969 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:29] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:47](1053 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:50](1052 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:49, 15:14](1177 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:34](885 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:20](1101 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:41](1244 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:33] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:00](1092 MB)
+
+PASS -- COMPILE 'hafsw_intel' [19:12, 12:26] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:15](729 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1106 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:06](814 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 13:41](843 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:46, 15:37](851 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:39](483 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:57](497 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:50](358 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:47, 07:21](463 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](508 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:10](569 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](382 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:46, 04:17](781 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:13, 04:03] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:45](534 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [16:13, 12:07] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:47](614 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:14, 08:53](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 12:22] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:09, 06:26](676 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:14, 11:56] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:33](816 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:36](802 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:12](1230 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:13, 06:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:42](1154 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:39](1092 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:39](992 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:41](1025 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:40](1007 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1139 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:38](1156 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1006 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:55, 06:25](1046 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:37, 06:28](1028 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:47](1145 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:23, 03:56](2372 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:52](2437 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 03:15] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:17](1052 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:37](1140 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:27] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:44](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](318 MB)
+
+PASS -- COMPILE 'atml_intel' [13:15, 12:22] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:26, 04:13](1603 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:14, 04:12](1595 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:56, 02:28](885 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:12, 04:36] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:34](1581 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:14, 11:33] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:46](1653 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:14, 11:32] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:05](3011 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 05:00](3064 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:02](3091 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:52] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [27:13, 24:46](4439 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:11, 04:07]
+PASS -- TEST 'control_c48_gnu' [12:45, 11:13](1532 MB)
+PASS -- TEST 'control_stochy_gnu' [04:25, 03:27](491 MB)
+PASS -- TEST 'control_ras_gnu' [06:24, 04:51](504 MB)
+PASS -- TEST 'control_p8_gnu' [06:03, 04:47](1252 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:43](1252 MB)
+PASS -- TEST 'control_flake_gnu' [11:24, 10:44](534 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26]
+PASS -- TEST 'rap_control_gnu' [11:35, 11:06](845 MB)
+PASS -- TEST 'rap_decomp_gnu' [11:35, 10:53](842 MB)
+PASS -- TEST 'rap_2threads_gnu' [10:37, 09:58](925 MB)
+PASS -- TEST 'rap_restart_gnu' [06:43, 05:36](574 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 11:17](840 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:36, 11:20](847 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:09](577 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:39, 05:46](845 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:53](830 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 06:17](914 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:52](844 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:52](560 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:53](655 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:49, 10:58](834 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:11, 04:14]
+PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:39](1265 MB)
+PASS -- TEST 'regional_debug_gnu' [11:44, 10:22](548 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:40](818 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:35](848 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:42](856 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](853 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:54](936 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 04:06](852 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:39](849 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:47](847 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:42](479 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:55](488 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:58](1241 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:51](850 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:30, 02:51](858 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:37, 04:25](857 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:14]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:49]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:30](698 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:04](701 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 09:04](747 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 05:32](745 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:09](698 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 07:01](545 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:37](537 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:51, 03:15](870 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:57](876 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:52](558 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:10, 05:48]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:54](730 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 04:02]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 02:30](696 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:33](709 MB)
+PASS -- TEST 'conus13km_debug_gnu' [08:50, 07:16](870 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 07:06](566 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:36](880 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:38, 06:55](942 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:10, 03:57]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](735 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:12, 14:36]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:23]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:31](1342 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:41]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:13, 14:45]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:33, 32:41](1312 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:04](1307 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:13]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:09](695 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 14:46:21
-Ending Date/Time: 20240508 16:38:40
-Total Time: 01h:53m:59s
+Starting Date/Time: 20240510 17:42:13
+Ending Date/Time: 20240510 20:09:13
+Total Time: 02h:27m:16s
Compiles Completed: 54/54
Tests Completed: 242/242
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 2b0fe10f1e..83ccef861e 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,17 +1,17 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-1b73dc3cfe52765a05ce8ae57735fef196de5fab
+57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679f)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,362 +36,362 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_138572
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1888579
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:37] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:52, 07:39](1890 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:31] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [30:07, 14:45](1771 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:27, 14:16](2169 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:18, 06:25](1176 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:44, 15:16](1687 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:06] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:17, 20:18](1734 MB)
-
-PASS -- COMPILE 's2swa_intel' [14:11, 12:15] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [21:55, 07:40](2064 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:05, 07:35](2086 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:23](1969 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [20:59, 07:43](1981 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 04:26](1731 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [23:53, 09:13](2494 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [21:43, 07:39](2083 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [14:50, 06:30](1895 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:57, 07:48](2088 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [25:42, 15:22](2809 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:22, 05:48](2917 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [31:43, 09:04](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:16, 05:15](3622 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [15:50, 04:53](2023 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:11, 10:30] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [15:44, 07:13](1765 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:51, 04:07](1835 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:07] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [14:05, 06:53](2051 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:51] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:00, 04:48](1802 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:11, 09:48] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:51, 04:07](1822 MB)
-
-PASS -- COMPILE 's2s_intel' [12:11, 09:59] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [15:44, 07:17](2841 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [10:44, 02:06](2813 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [14:45, 01:11](2302 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:11, 13:40] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [25:02, 07:19](2054 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 16:29] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 14:08](1798 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:55, 06:42](1283 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:52, 15:28](1731 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 03:32] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:01, 21:24](1767 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:10, 08:13] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [18:22, 02:49](710 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:37, 02:29](1621 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:40, 02:37](1624 MB)
-PASS -- TEST 'control_latlon_intel' [17:34, 02:28](1605 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:40, 02:32](1605 MB)
-PASS -- TEST 'control_c48_intel' [22:39, 07:04](1744 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [21:27, 05:49](854 MB)
-PASS -- TEST 'control_c192_intel' [24:44, 08:59](1757 MB)
-PASS -- TEST 'control_c384_intel' [25:22, 09:42](2058 MB)
-PASS -- TEST 'control_c384gdas_intel' [24:57, 07:22](1534 MB)
-PASS -- TEST 'control_stochy_intel' [14:18, 01:29](665 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:27, 00:58](536 MB)
-PASS -- TEST 'control_lndp_intel' [11:17, 01:24](670 MB)
-PASS -- TEST 'control_iovr4_intel' [12:19, 02:10](656 MB)
-PASS -- TEST 'control_iovr5_intel' [11:20, 02:17](666 MB)
-PASS -- TEST 'control_p8_intel' [10:52, 02:34](1630 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [05:57, 02:37](1635 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [05:55, 02:34](1644 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:51, 01:24](915 MB)
-PASS -- TEST 'control_noqr_p8_intel' [05:48, 02:33](1628 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:00, 01:21](982 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:47, 02:35](1627 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:24](1723 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:30, 04:25](1632 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:28](1709 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:52, 02:34](1647 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:58, 02:47](1651 MB)
-PASS -- TEST 'regional_control_intel' [05:27, 04:32](961 MB)
-PASS -- TEST 'regional_restart_intel' [03:27, 02:26](1102 MB)
-PASS -- TEST 'regional_decomp_intel' [05:25, 04:41](945 MB)
-PASS -- TEST 'regional_2threads_intel' [03:29, 02:49](913 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:27, 04:19](1492 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:30](955 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:27](963 MB)
-PASS -- TEST 'regional_wofs_intel' [06:26, 05:32](2072 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:10, 07:41] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [07:35, 06:34](1197 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1413 MB)
-PASS -- TEST 'rap_decomp_intel' [07:31, 06:46](1140 MB)
-PASS -- TEST 'rap_2threads_intel' [06:53, 06:06](1376 MB)
-PASS -- TEST 'rap_restart_intel' [04:51, 03:23](1154 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:44, 06:32](1200 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 06:51](1144 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:54, 04:59](1192 MB)
-PASS -- TEST 'hrrr_control_intel' [04:38, 03:25](1088 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 03:29](1048 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:55, 03:04](1126 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:31, 01:50](1026 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:22](1186 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 07:37](2013 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:22](2183 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:10, 07:35] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:28, 05:27](836 MB)
-PASS -- TEST 'control_ras_intel' [03:18, 02:47](820 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [09:10, 04:33]
-PASS -- TEST 'control_csawmg_gnu' [07:35, 06:34](808 MB)
-
-PASS -- COMPILE 'wam_intel' [11:10, 07:07]
-PASS -- TEST 'control_wam_intel' [02:26, 01:50](793 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 09:54] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:52, 02:15](1641 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](953 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:14] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:09](1631 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:33, 02:13](1633 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:29](833 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:16, 02:14](835 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:29](884 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:16, 02:17](838 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:37, 02:13](1682 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:32, 02:20](1657 MB)
-PASS -- TEST 'regional_debug_intel' [14:37, 14:04](904 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:18, 03:58](1223 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:24, 03:52](1224 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 03:56](1227 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:21, 03:59](1222 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:17, 03:55](1221 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1297 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:03](1215 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1233 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:58](1217 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:57](1225 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:17, 03:54](1232 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:17, 04:02](1213 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:17, 06:30](1224 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:54](1213 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:19, 04:53](1225 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:00](1224 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 06:43](1223 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:18]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:52](792 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 02:49] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 06:51] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:15](1324 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:27](1151 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:46, 02:51](1040 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 05:07](1302 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:36](1042 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:00](969 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 04:04](1106 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:18, 01:39](955 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:12] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:40, 01:49](1294 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:33, 00:48](1207 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:31, 01:04](1165 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:56] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:34, 03:41](1088 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 03:07] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:19, 03:55](1101 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:50](1088 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:31, 11:35](1334 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:31, 11:48](1001 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:32, 06:35](1233 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:33, 11:33](1414 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 03:08] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:21, 03:59](1144 MB)
-
-PASS -- COMPILE 'hafsw_intel' [13:11, 10:57] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:08, 05:29](875 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:22, 04:54](1278 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:13, 06:19](965 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:02, 13:50](962 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:15](1005 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:31](607 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:18, 07:03](618 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:54](439 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:11, 07:56](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](620 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 03:41](624 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:46, 04:51](684 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:27](453 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:10, 03:34] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:49, 11:19](625 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [13:11, 10:45] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:49, 15:57](731 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:37](809 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 11:02] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:57, 10:00](838 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [14:11, 10:17] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:24](954 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 05:25](945 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:49, 16:23](1348 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:16] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:08](1139 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1100 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:07](1015 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1018 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1006 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1159 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:14, 02:09](1155 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 02:05](1014 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1156 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:55](1136 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:12, 02:11](1147 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:18, 02:59](2334 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:05](2431 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:47] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:07](1076 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 06:02] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:11](1150 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:00] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 01:03](339 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 01:02](554 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](563 MB)
-
-PASS -- COMPILE 'atml_intel' [10:11, 08:29] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:08, 05:48](1637 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:43](1634 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:38, 02:44](939 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:10, 03:28] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:55, 04:46](1663 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:11, 10:27] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:33](1683 MB)
-
-PASS -- COMPILE 'atmaero_intel' [09:11, 07:20] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:49, 03:30](1798 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:54, 04:23](1811 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:39, 04:27](1826 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [19:34, 17:27](4578 MB)
-
-PASS -- COMPILE 'atm_gnu' [07:11, 05:28]
-PASS -- TEST 'control_c48_gnu' [10:39, 09:29](1576 MB)
-PASS -- TEST 'control_stochy_gnu' [03:20, 02:18](742 MB)
-PASS -- TEST 'control_ras_gnu' [04:17, 03:45](730 MB)
-PASS -- TEST 'control_p8_gnu' [04:46, 03:42](1517 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:40, 03:30](1517 MB)
-PASS -- TEST 'control_flake_gnu' [05:17, 04:24](800 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:11, 05:22]
-PASS -- TEST 'rap_control_gnu' [09:32, 07:49](1083 MB)
-PASS -- TEST 'rap_decomp_gnu' [09:31, 07:53](1084 MB)
-PASS -- TEST 'rap_2threads_gnu' [08:47, 07:02](1127 MB)
-PASS -- TEST 'rap_restart_gnu' [05:49, 03:57](886 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:46, 07:36](1085 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:32, 07:44](1081 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:40](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:34, 03:57](1070 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 03:59](1139 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:48, 03:33](1025 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:56](1073 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [04:36, 02:03](880 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:25, 02:05](935 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:51, 07:36](1083 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:10]
-PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:20](1624 MB)
-PASS -- TEST 'regional_debug_gnu' [07:28, 06:22](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:04](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:53](1088 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:59](1098 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:01](1093 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:27, 02:07](1268 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:03](1094 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:59](1098 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 01:54](1092 MB)
-PASS -- TEST 'control_ras_debug_gnu' [03:16, 01:09](729 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:14](728 MB)
-PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:13](1503 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:22, 01:56](1097 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:09](1098 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:46, 03:15](1101 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:54]
-PASS -- TEST 'control_wam_debug_gnu' [02:23, 02:01](502 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:30]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:31, 07:20](963 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:50, 03:49](950 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:45, 06:44](969 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:27](892 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 03:48](958 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:23](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:03](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:38, 02:29](1266 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:02](1173 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:27, 01:24](928 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:11, 08:47]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:18](992 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:11, 06:02]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:22, 01:57](980 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 01:56](969 MB)
-PASS -- TEST 'conus13km_debug_gnu' [07:36, 05:33](1279 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [08:29, 05:38](952 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:27, 03:19](1191 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:35](1353 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 06:07]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:02](1008 MB)
-
-PASS -- COMPILE 's2swa_gnu' [17:10, 16:45]
-
-PASS -- COMPILE 's2s_gnu' [17:10, 16:41]
-
-PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:33]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:26]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [07:11, 05:45]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [17:13, 16:37]
+PASS -- COMPILE 's2swa_32bit_intel' [13:10, 13:01] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 07:21](1897 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:40] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:19, 13:22](1774 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:58, 14:02](2177 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 06:33](1179 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:34, 15:11](1699 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:55] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:21, 20:25](1727 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:10, 13:03] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:14, 07:28](2089 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:31](2051 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:17](1964 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:37](1969 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:36, 04:20](1729 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:15, 09:08](2497 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 07:41](2065 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:23](1899 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:14, 07:39](2075 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 15:38](2803 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:39, 05:44](2919 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [15:35, 08:35](3631 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 05:29](3616 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 04:53](2032 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:10, 11:55] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 07:05](1772 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 03:54](1814 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:55] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [08:15, 06:46](2056 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:41] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:49, 04:45](1788 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:47] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:55, 03:57](1831 MB)
+
+PASS -- COMPILE 's2s_intel' [11:10, 10:23] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:10](2834 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:01](2821 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:02](2304 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:10, 14:40] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 07:25](2053 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 16:08] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:02, 13:50](1798 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:12, 06:47](1304 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:08, 15:17](1746 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:23] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:36](1777 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:11] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [03:21, 02:52](714 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:29](1610 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:31](1621 MB)
+PASS -- TEST 'control_latlon_intel' [03:42, 02:30](1610 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 02:29](1614 MB)
+PASS -- TEST 'control_c48_intel' [07:46, 07:01](1752 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:44](860 MB)
+PASS -- TEST 'control_c192_intel' [09:53, 09:00](1764 MB)
+PASS -- TEST 'control_c384_intel' [11:44, 09:17](2052 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:17, 07:16](1530 MB)
+PASS -- TEST 'control_stochy_intel' [02:21, 01:25](669 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:52](548 MB)
+PASS -- TEST 'control_lndp_intel' [02:21, 01:19](664 MB)
+PASS -- TEST 'control_iovr4_intel' [02:22, 02:03](668 MB)
+PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](663 MB)
+PASS -- TEST 'control_p8_intel' [04:08, 02:31](1643 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:06, 02:29](1646 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:03, 02:25](1639 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:00, 01:27](910 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:24](1622 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 01:21](981 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:55, 02:31](1626 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:01, 02:17](1731 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:44, 04:25](1636 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:06, 03:24](1718 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1648 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:07, 02:45](1650 MB)
+PASS -- TEST 'regional_control_intel' [05:32, 04:32](961 MB)
+PASS -- TEST 'regional_restart_intel' [03:32, 02:26](1099 MB)
+PASS -- TEST 'regional_decomp_intel' [05:38, 04:41](946 MB)
+PASS -- TEST 'regional_2threads_intel' [03:38, 02:48](921 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 04:28](958 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:31](957 MB)
+PASS -- TEST 'regional_wofs_intel' [06:35, 05:33](2101 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:10, 07:25] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [07:54, 06:34](1193 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:55, 03:24](1414 MB)
+PASS -- TEST 'rap_decomp_intel' [07:52, 06:51](1160 MB)
+PASS -- TEST 'rap_2threads_intel' [06:55, 06:07](1374 MB)
+PASS -- TEST 'rap_restart_intel' [05:10, 03:23](1136 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:52, 06:31](1201 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:02](1151 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:56](1199 MB)
+PASS -- TEST 'hrrr_control_intel' [04:55, 03:22](1066 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:57, 03:26](1042 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:04](1122 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:51](1029 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:19](1193 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:37](2008 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:21](2175 MB)
+
+PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:35, 05:15](822 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:48](814 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 04:06]
+PASS -- TEST 'control_csawmg_gnu' [07:40, 06:25](811 MB)
+
+PASS -- COMPILE 'wam_intel' [07:10, 06:40]
+PASS -- TEST 'control_wam_intel' [02:25, 01:48](787 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:30] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:04, 02:13](1638 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:34, 04:04](963 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:48] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:11](1629 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:06](1635 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:28](832 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:14](832 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:22](876 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:18, 02:16](841 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:40, 02:10](1692 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:41, 02:19](1667 MB)
+PASS -- TEST 'regional_debug_intel' [14:38, 14:01](903 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:22, 03:58](1221 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:22, 03:51](1214 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:57](1219 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 03:59](1230 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:01](1219 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:45, 04:14](1297 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:08](1215 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:10](1228 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:02](1217 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:00](1232 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:59](1221 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 03:57](1229 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:34](1223 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1212 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:49](1229 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:16, 03:58](1221 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 06:46](1221 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:11]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:51](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:34] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:56, 03:14](1271 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:24](1154 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:00, 02:53](1020 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:15](1249 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:38](1033 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:01](981 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 04:05](1102 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:33](959 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:45] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:47, 01:44](1312 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:42, 00:44](1201 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:40, 01:02](1152 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:33] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:37, 03:42](1098 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 03:58](1095 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:22, 03:53](1104 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:42, 11:46](1343 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:42, 11:51](988 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:41, 06:35](1240 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:36, 11:37](1397 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:24, 04:01](1158 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:10, 09:28] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:24](884 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 05:11](1280 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:19, 06:27](944 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:58](984 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:53](1008 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:21](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:55](619 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:41](439 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:13, 07:48](545 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:52](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:46](618 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:47](680 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:19](449 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:03] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:50, 11:23](626 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:10, 10:24] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:23](748 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 16:49](845 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:09, 10:46](832 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [10:11, 09:34] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:19](951 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:11, 05:22](938 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1344 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:56] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:10](1141 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:18](1093 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:06](1017 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:08](1016 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1009 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:12](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:09](1133 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:04](1012 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:48, 04:56](1143 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1137 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2436 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2391 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:56] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:15](1085 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 06:05] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1144 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:54] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:50](336 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](558 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](559 MB)
+
+PASS -- COMPILE 'atml_intel' [08:11, 08:04] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 05:21](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:10, 05:17](1646 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:45](938 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:11, 03:21] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:04, 04:43](1654 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:10, 09:41] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:30](1684 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:10, 07:32] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:57, 03:30](1796 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:13](1797 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:17](1817 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:55] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [17:35, 16:00](4573 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:10, 04:57]
+PASS -- TEST 'control_c48_gnu' [10:45, 09:26](1578 MB)
+PASS -- TEST 'control_stochy_gnu' [03:23, 02:17](729 MB)
+PASS -- TEST 'control_ras_gnu' [04:25, 03:42](736 MB)
+PASS -- TEST 'control_p8_gnu' [05:02, 03:31](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 03:24](1516 MB)
+PASS -- TEST 'control_flake_gnu' [05:21, 04:22](803 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [05:10, 04:47]
+PASS -- TEST 'rap_control_gnu' [09:05, 07:34](1083 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:58, 07:44](1084 MB)
+PASS -- TEST 'rap_2threads_gnu' [09:09, 07:12](1147 MB)
+PASS -- TEST 'rap_restart_gnu' [05:14, 03:55](885 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [09:00, 07:34](1088 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:54, 07:42](1086 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:03, 05:38](884 MB)
+PASS -- TEST 'hrrr_control_gnu' [05:02, 03:59](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 03:58](1140 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:39](1031 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:58, 04:00](1074 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:05](881 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 01:59](932 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:56, 07:31](1084 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:13]
+PASS -- TEST 'control_diag_debug_gnu' [02:40, 01:14](1625 MB)
+PASS -- TEST 'regional_debug_gnu' [07:33, 06:16](927 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:18, 01:59](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:52](1090 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:54](1097 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:57](1094 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:01](1270 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 01:58](1101 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:53](1095 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:12](727 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:14](722 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:14](1502 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:58](1100 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:10](1104 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:00, 03:14](1100 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:35]
+PASS -- TEST 'control_wam_debug_gnu' [02:27, 01:56](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:27]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:44, 07:14](961 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:05, 03:46](952 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:54, 06:40](968 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:51, 03:26](875 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:43, 03:45](948 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:03, 05:28](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:41, 01:58](857 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:45, 02:28](1267 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:36, 01:01](1174 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:24](920 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 14:00]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:16](993 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:29]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:53](979 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:51](974 MB)
+PASS -- TEST 'conus13km_debug_gnu' [06:37, 05:28](1278 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [06:41, 05:30](951 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:15](1189 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:36, 05:25](1356 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 12:43]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 01:57](1002 MB)
+
+PASS -- COMPILE 's2swa_gnu' [19:10, 18:35]
+
+PASS -- COMPILE 's2s_gnu' [17:10, 17:06]
+
+PASS -- COMPILE 's2swa_debug_gnu' [13:10, 12:53]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 17:48]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:11, 12:03]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:56]
SYNOPSIS:
-Starting Date/Time: 20240508 13:49:00
-Ending Date/Time: 20240508 15:19:44
-Total Time: 01h:31m:22s
+Starting Date/Time: 20240512 07:18:29
+Ending Date/Time: 20240512 08:31:43
+Total Time: 01h:13m:36s
Compiles Completed: 54/54
Tests Completed: 237/237
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 9aa3779381..0a73641041 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,17 +1,17 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-f29351be77830efd8ae23ad72436b4b38b886383
+6a75664fc408bfd7a64311ae178ffeb12ffe7b77
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,244 +36,244 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_36815
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3749061
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [59:01, 39:54] ( 1 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:22](1791 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:02, 50:08] ( 1 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [25:05, 22:18](1670 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:27, 24:43](1882 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [16:38, 11:03](999 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:36, 24:52](1636 MB)
-
-PASS -- COMPILE 's2swa_intel' [59:01, 39:55] ( 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [15:42, 08:51](1807 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 08:28](1826 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:09, 05:17](1713 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [15:41, 08:43](1850 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:10, 05:07](1732 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 07:37](2274 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:33, 08:34](1806 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:44, 07:16](1771 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:10, 08:32](1821 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:50, 07:32](1788 MB)
-
-PASS -- COMPILE 's2sw_intel' [57:00, 38:10] ( 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [09:40, 06:06](1649 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:48, 05:59](1693 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [25:57, 07:14] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:08, 10:40](1859 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:47] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:19](1681 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:14, 32:31] ( 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:00, 06:23](1715 MB)
-
-PASS -- COMPILE 's2s_intel' [33:14, 32:30] ( 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [14:20, 12:52](2799 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:10, 03:44](2802 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [04:08, 02:12](2268 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:39] ( 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [15:02, 07:42](1825 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:53] ( 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [37:57, 22:16](1692 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [20:31, 10:55](1040 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:06, 24:29](1657 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:02] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:48, 32:25](1691 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:13, 35:04] ( 1 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [06:33, 04:52](642 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [17:44, 04:56](1533 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:55, 05:00](1551 MB)
-PASS -- TEST 'control_latlon_intel' [19:37, 04:18](1549 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:49, 04:55](1537 MB)
-PASS -- TEST 'control_c48_intel' [17:48, 12:02](1737 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:16](847 MB)
-PASS -- TEST 'control_c192_intel' [22:04, 15:23](1675 MB)
-PASS -- TEST 'control_c384_intel' [26:14, 21:22](1813 MB)
-PASS -- TEST 'control_c384gdas_intel' [23:36, 16:16](1021 MB)
-PASS -- TEST 'control_stochy_intel' [03:31, 02:14](604 MB)
-PASS -- TEST 'control_stochy_restart_intel' [15:52, 01:41](436 MB)
-PASS -- TEST 'control_lndp_intel' [03:31, 02:09](603 MB)
-PASS -- TEST 'control_iovr4_intel' [04:36, 03:43](604 MB)
-PASS -- TEST 'control_iovr5_intel' [04:36, 03:36](595 MB)
-PASS -- TEST 'control_p8_intel' [17:21, 04:23](1576 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [13:26, 04:14](1573 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:27, 04:15](1577 MB)
-PASS -- TEST 'control_restart_p8_intel' [11:33, 02:48](817 MB)
-PASS -- TEST 'control_noqr_p8_intel' [21:09, 04:23](1566 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [08:22, 02:29](852 MB)
-PASS -- TEST 'control_decomp_p8_intel' [18:06, 05:03](1570 MB)
-PASS -- TEST 'control_2threads_p8_intel' [11:21, 04:04](1663 MB)
-PASS -- TEST 'control_p8_lndp_intel' [23:58, 07:52](1570 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:35, 05:26](1618 MB)
-PASS -- TEST 'control_p8_mynn_intel' [19:27, 05:02](1583 MB)
-PASS -- TEST 'merra2_thompson_intel' [21:30, 04:54](1587 MB)
-PASS -- TEST 'regional_control_intel' [24:42, 08:30](764 MB)
-PASS -- TEST 'regional_restart_intel' [06:48, 04:37](934 MB)
-PASS -- TEST 'regional_decomp_intel' [11:34, 08:54](765 MB)
-PASS -- TEST 'regional_2threads_intel' [07:26, 05:37](756 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [22:06, 08:02](762 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [21:49, 08:11](762 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:13, 32:53] ( 3 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [26:38, 11:11](990 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:28, 06:09](1221 MB)
-PASS -- TEST 'rap_decomp_intel' [26:06, 11:23](989 MB)
-PASS -- TEST 'rap_2threads_intel' [25:07, 10:24](1088 MB)
-PASS -- TEST 'rap_restart_intel' [07:17, 05:45](993 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [25:31, 10:46](996 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:04, 11:37](993 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [10:44, 08:08](1000 MB)
-PASS -- TEST 'hrrr_control_intel' [16:19, 05:40](986 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [16:09, 05:43](987 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [16:02, 05:31](1065 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:40, 03:03](916 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [23:52, 11:05](991 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [23:35, 13:29](1944 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [23:35, 13:25](1932 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:14, 31:15] ( 1 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [17:02, 09:03](693 MB)
-PASS -- TEST 'control_ras_intel' [12:27, 05:03](664 MB)
-
-PASS -- COMPILE 'wam_intel' [30:13, 30:08] ( 982 remarks )
-PASS -- TEST 'control_wam_intel' [04:25, 03:14](505 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [43:13, 32:13] ( 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:36, 03:39](1584 MB)
-PASS -- TEST 'regional_control_faster_intel' [10:44, 06:59](769 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [20:13, 06:12] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:05, 03:24](1564 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:16, 03:36](1558 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:29, 03:52](763 MB)
-PASS -- TEST 'control_lndp_debug_intel' [06:31, 03:29](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:00, 05:28](810 MB)
-PASS -- TEST 'control_ras_debug_intel' [06:30, 03:31](776 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:07, 03:25](1630 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:03, 03:41](1588 MB)
-PASS -- TEST 'regional_debug_intel' [24:59, 21:56](780 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:29, 06:14](1155 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:30, 06:11](1148 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:28, 06:23](1154 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:21](1150 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:18](1150 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:38, 06:25](1232 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:27](1150 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:26](1148 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:21](1149 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 06:15](1147 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:29, 06:13](1150 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:11](1143 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:09](1141 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:03](1146 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:31](1149 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:29, 06:12](1151 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:33, 11:00](1156 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [12:11, 04:15] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:28, 06:15](446 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [33:13, 30:33] ( 3 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:24, 05:25](1069 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:08, 08:49](899 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:37](873 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:08, 08:09](947 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:16, 04:05](911 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:21, 05:02](840 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:44](890 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 02:36](837 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:14, 43:02] ( 3 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:12, 03:08](1106 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:56, 01:33](1055 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 01:39](1023 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:37] ( 3 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 05:39](898 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 04:07] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 06:08](1030 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:29, 06:08](1027 MB)
-PASS -- TEST 'conus13km_debug_intel' [24:09, 18:30](1135 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [25:03, 18:45](852 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [16:01, 10:46](1083 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:00, 18:29](1205 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:22] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:37, 06:12](1076 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:13, 34:59] ( 1 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [09:26, 07:43](722 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:37, 07:36](1084 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:53, 09:48](766 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [21:32, 19:14](809 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:54, 19:08](966 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:24, 07:10](775 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [33:13, 32:20] ( 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [12:27, 10:42](772 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:34, 10:43](754 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:03] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:44](1055 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:17](1032 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 03:18](922 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:23, 03:36](927 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](926 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:25, 03:38](1060 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 03:42](1056 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 03:31](926 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:36, 08:25](884 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:34, 08:04](842 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:39](1064 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:16](2400 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:16](2408 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:25] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1017 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:47] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 03:46](1049 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 02:00] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:42, 01:54](233 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:32](253 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:29, 00:56](253 MB)
-
-PASS -- COMPILE 'atml_intel' [39:14, 38:41] ( 8 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:48, 10:14](1605 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [12:47, 10:11](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:57, 05:34](870 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:11, 05:28] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:12, 07:50](1629 MB)
-
-PASS -- COMPILE 'atmw_intel' [32:13, 31:48] ( 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 02:32](1611 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:13, 30:25] ( 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:37, 05:39](1698 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:37](1722 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:13, 06:53](1729 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:49] ( 1 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 07:07](1789 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:21] ( 1 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:01, 20:46](1662 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:34](1883 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 10:25](990 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:34, 23:56](1626 MB)
+
+PASS -- COMPILE 's2swa_intel' [39:14, 39:03] ( 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:22, 07:46](1829 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:46, 07:47](1825 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:24](1716 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 07:49](1866 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:53, 04:39](1730 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:29](2265 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:47](1812 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 06:37](1785 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 07:44](1829 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:20](1792 MB)
+
+PASS -- COMPILE 's2sw_intel' [37:13, 36:56] ( 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 05:55](1667 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:47](1706 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:29] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:57, 11:34](1845 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:15] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:17](1681 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:21] ( 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 05:47](1722 MB)
+
+PASS -- COMPILE 's2s_intel' [33:13, 32:20] ( 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:42](2801 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:34](2794 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:03, 02:00](2273 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:37] ( 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:35](1811 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:31] ( 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:41, 20:51](1684 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:27](1031 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:34, 24:08](1654 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:59] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 32:11](1691 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:35] ( 1 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [05:33, 04:38](644 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [12:19, 04:08](1532 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:33, 04:05](1552 MB)
+PASS -- TEST 'control_latlon_intel' [12:15, 04:04](1510 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:24, 04:09](1546 MB)
+PASS -- TEST 'control_c48_intel' [14:31, 11:56](1729 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:06](846 MB)
+PASS -- TEST 'control_c192_intel' [19:42, 14:12](1689 MB)
+PASS -- TEST 'control_c384_intel' [27:44, 18:16](1809 MB)
+PASS -- TEST 'control_c384gdas_intel' [27:02, 13:35](1018 MB)
+PASS -- TEST 'control_stochy_intel' [03:31, 02:20](601 MB)
+PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:22](441 MB)
+PASS -- TEST 'control_lndp_intel' [03:32, 02:11](600 MB)
+PASS -- TEST 'control_iovr4_intel' [04:36, 03:26](600 MB)
+PASS -- TEST 'control_iovr5_intel' [04:36, 03:27](591 MB)
+PASS -- TEST 'control_p8_intel' [12:38, 03:57](1575 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [15:06, 04:00](1580 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [12:56, 04:01](1544 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:19, 02:12](813 MB)
+PASS -- TEST 'control_noqr_p8_intel' [12:44, 04:01](1525 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:12](837 MB)
+PASS -- TEST 'control_decomp_p8_intel' [12:39, 04:12](1528 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:57, 03:41](1660 MB)
+PASS -- TEST 'control_p8_lndp_intel' [15:26, 07:15](1548 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:08, 05:03](1636 MB)
+PASS -- TEST 'control_p8_mynn_intel' [12:57, 04:05](1555 MB)
+PASS -- TEST 'merra2_thompson_intel' [14:19, 04:29](1548 MB)
+PASS -- TEST 'regional_control_intel' [17:12, 07:14](767 MB)
+PASS -- TEST 'regional_restart_intel' [04:45, 03:50](940 MB)
+PASS -- TEST 'regional_decomp_intel' [10:12, 07:33](763 MB)
+PASS -- TEST 'regional_2threads_intel' [08:14, 04:23](755 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [17:19, 07:17](760 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [14:44, 07:12](763 MB)
+
+PASS -- COMPILE 'rrfs_intel' [33:13, 33:04] ( 3 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [18:28, 10:16](986 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 05:45](1221 MB)
+PASS -- TEST 'rap_decomp_intel' [17:58, 10:48](987 MB)
+PASS -- TEST 'rap_2threads_intel' [14:57, 09:43](1086 MB)
+PASS -- TEST 'rap_restart_intel' [07:20, 05:18](995 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:24, 10:10](995 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:03, 10:49](975 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 07:35](998 MB)
+PASS -- TEST 'hrrr_control_intel' [08:03, 05:15](993 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:06, 05:26](983 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:47](1059 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:53](921 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [11:26, 10:04](987 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1946 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:15](1938 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:14, 31:16] ( 1 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [08:43, 08:08](688 MB)
+PASS -- TEST 'control_ras_intel' [05:24, 04:30](663 MB)
+
+PASS -- COMPILE 'wam_intel' [30:14, 29:45] ( 982 remarks )
+PASS -- TEST 'control_wam_intel' [03:26, 02:44](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:53] ( 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:29, 03:38](1570 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:44, 06:38](770 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 05:40] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 03:25](1567 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:29](1556 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:50](766 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:25, 03:31](765 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:45, 05:23](812 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:25, 03:32](779 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:03, 03:23](1628 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:02, 03:40](1587 MB)
+PASS -- TEST 'regional_debug_intel' [24:43, 21:59](776 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:28, 06:09](1150 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:56](1150 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 06:09](1147 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:04](1154 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:03](1149 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:44, 06:24](1236 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 06:16](1152 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 06:11](1152 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:08](1153 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1149 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:58](1148 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:06](1150 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1148 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 05:59](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:23](1150 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:06](1151 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:31](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:55] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:24, 06:10](444 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:12, 30:25] ( 3 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 05:19](1080 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:03, 08:34](904 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:26](871 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 08:14](947 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:05](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:40](859 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:20, 06:18](898 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:35](842 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:13, 43:10] ( 3 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:05, 02:58](1105 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:25](1050 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:37](1026 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:48] ( 3 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 05:33](913 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:14] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1030 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:59](1024 MB)
+PASS -- TEST 'conus13km_debug_intel' [19:56, 18:29](1139 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 18:35](850 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:44](1088 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 18:22](1202 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:13](1073 MB)
+
+PASS -- COMPILE 'hafsw_intel' [35:13, 35:05] ( 1 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:01](720 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:29](1094 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:48, 09:22](774 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:24](803 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:55, 18:17](823 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:35, 05:48](779 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:13, 32:07] ( 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [13:22, 08:51](769 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:25, 08:43](755 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:49] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:38](1057 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1029 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:33](920 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:38](926 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](935 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:38](1062 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:38](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](921 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 07:58](886 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 07:57](839 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1067 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:06](2395 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:05](2347 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:27] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:03](1014 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 08:04] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 03:38](1051 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:57] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:38](234 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:24](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:53](256 MB)
+
+PASS -- COMPILE 'atml_intel' [34:13, 33:54] ( 8 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 08:05](1601 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [10:47, 08:12](1597 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:55](864 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 05:20] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 07:23](1627 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:13, 32:35] ( 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:19](1595 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:13, 30:57] ( 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:31, 05:21](1702 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:22](1729 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:21, 06:33](1729 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 14:46:39
-Ending Date/Time: 20240509 00:39:50
-Total Time: 09h:53m:54s
+Starting Date/Time: 20240510 17:44:38
+Ending Date/Time: 20240510 21:07:06
+Total Time: 03h:23m:06s
Compiles Completed: 33/33
Tests Completed: 161/161
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 851f2ac9e6..7e0f13836d 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,17 +1,17 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-1b73dc3cfe52765a05ce8ae57735fef196de5fab
+57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,275 +36,275 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_67506
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_114590
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:42] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:54, 05:33](3178 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 20:09] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:21, 17:19](1736 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 18:27](1976 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [15:10, 08:32](1117 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:17, 19:31](1647 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:21] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:58, 23:06](1630 MB)
-
-PASS -- COMPILE 's2swa_intel' [16:11, 15:39] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [07:38, 05:50](3210 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:07, 05:58](3212 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [14:07, 03:22](3250 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:38, 05:52](3236 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [14:06, 03:28](3274 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:54, 06:16](3561 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:54, 05:59](3193 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:39, 04:53](3068 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:55, 05:51](3214 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:57, 10:32](3337 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:34, 06:47](3563 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:01, 11:22](4127 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:56, 07:25](4378 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:35](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [15:11, 14:10] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:50](1738 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:40, 04:34](1781 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:22] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [11:49, 08:45](3251 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:19, 06:04](1754 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [14:11, 14:02] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:43, 04:32](1779 MB)
-
-PASS -- COMPILE 's2s_intel' [14:11, 13:37] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:07](2827 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:01, 02:24](2830 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:21](2307 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:12, 20:07] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:02, 05:26](3222 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:11, 17:12] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:27, 17:32](1767 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:40, 08:33](1138 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:19, 19:34](1678 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:06] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:26, 24:48](1704 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:40] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:26, 03:27](700 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [06:57, 02:57](1553 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:02, 03:03](1600 MB)
-PASS -- TEST 'control_latlon_intel' [06:55, 03:00](1585 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 03:00](1537 MB)
-PASS -- TEST 'control_c48_intel' [11:01, 07:10](1767 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 06:04](875 MB)
-PASS -- TEST 'control_c192_intel' [14:12, 10:28](1752 MB)
-PASS -- TEST 'control_c384_intel' [17:14, 12:49](2008 MB)
-PASS -- TEST 'control_c384gdas_intel' [15:12, 09:10](1352 MB)
-PASS -- TEST 'control_stochy_intel' [04:26, 01:43](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [10:25, 01:08](502 MB)
-PASS -- TEST 'control_lndp_intel' [04:23, 01:37](657 MB)
-PASS -- TEST 'control_iovr4_intel' [05:29, 02:30](651 MB)
-PASS -- TEST 'control_iovr5_intel' [04:26, 02:28](659 MB)
-PASS -- TEST 'control_p8_intel' [12:19, 03:05](1634 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [12:30, 02:59](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:44, 02:54](1625 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:22, 01:40](900 MB)
-PASS -- TEST 'control_noqr_p8_intel' [12:29, 02:54](1623 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:35](927 MB)
-PASS -- TEST 'control_decomp_p8_intel' [12:24, 03:03](1572 MB)
-PASS -- TEST 'control_2threads_p8_intel' [12:14, 03:08](1716 MB)
-PASS -- TEST 'control_p8_lndp_intel' [13:48, 05:15](1638 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:37, 03:57](1695 MB)
-PASS -- TEST 'control_p8_mynn_intel' [13:35, 03:53](1635 MB)
-PASS -- TEST 'merra2_thompson_intel' [12:50, 03:22](1638 MB)
-PASS -- TEST 'regional_control_intel' [12:46, 05:16](858 MB)
-PASS -- TEST 'regional_restart_intel' [04:44, 03:01](991 MB)
-PASS -- TEST 'regional_decomp_intel' [13:50, 05:40](854 MB)
-PASS -- TEST 'regional_2threads_intel' [11:47, 03:53](843 MB)
-PASS -- TEST 'regional_noquilt_intel' [12:48, 05:13](1368 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [12:54, 05:15](855 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:40, 05:15](859 MB)
-PASS -- TEST 'regional_wofs_intel' [10:42, 06:49](1879 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:11, 12:03] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [10:38, 07:50](1105 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:53](1238 MB)
-PASS -- TEST 'rap_decomp_intel' [10:01, 08:09](1032 MB)
-PASS -- TEST 'rap_2threads_intel' [09:23, 07:57](1182 MB)
-PASS -- TEST 'rap_restart_intel' [08:35, 04:05](1105 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1107 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:08, 08:16](1020 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 05:57](1132 MB)
-PASS -- TEST 'hrrr_control_intel' [05:31, 04:03](1030 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:09, 04:10](1024 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 03:29](1112 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:27, 02:12](999 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:27, 07:38](1101 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:15](1988 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 08:58](2065 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:11, 11:56] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:46, 06:09](746 MB)
-PASS -- TEST 'control_ras_intel' [04:23, 03:22](740 MB)
-
-PASS -- COMPILE 'wam_intel' [12:11, 11:28]
-PASS -- TEST 'control_wam_intel' [02:22, 02:06](663 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 12:30] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:36, 02:42](1620 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:49, 04:38](851 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:11, 14:08] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:26](3177 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 20:08] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:11](1747 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:00, 18:20](2023 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:21](1109 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:22](1655 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 05:26] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 23:16](1685 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:11, 13:52] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:41](3206 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:44](3216 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:26](3258 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:52](3232 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:27](3273 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 06:09](3559 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:47](3202 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:05, 04:49](3070 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 05:44](3209 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 10:25](3342 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:30](3625 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [19:38, 11:12](4119 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:01, 06:49](4370 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3176 MB)
+
+PASS -- COMPILE 's2sw_intel' [18:11, 13:39] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:44, 04:40](1736 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 04:27](1783 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [09:11, 04:58] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:29, 08:32](3248 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:11, 04:48] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 05:55](1753 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [17:11, 13:07] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:22, 04:25](1781 MB)
+
+PASS -- COMPILE 's2s_intel' [17:12, 13:14] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:57, 08:10](2836 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [03:56, 02:22](2833 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:02, 01:27](2294 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [22:11, 18:12] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:47, 05:26](3211 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:12] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:23, 17:25](1764 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:20](1169 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 19:27](1673 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:03] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:32](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:27] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [06:27, 03:29](702 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:57, 02:54](1595 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:02](1596 MB)
+PASS -- TEST 'control_latlon_intel' [05:52, 02:52](1594 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 03:01](1598 MB)
+PASS -- TEST 'control_c48_intel' [09:52, 07:07](1770 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 06:01](872 MB)
+PASS -- TEST 'control_c192_intel' [13:09, 10:29](1741 MB)
+PASS -- TEST 'control_c384_intel' [15:15, 11:30](2006 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:58, 08:56](1354 MB)
+PASS -- TEST 'control_stochy_intel' [04:25, 01:40](654 MB)
+PASS -- TEST 'control_stochy_restart_intel' [08:24, 00:59](502 MB)
+PASS -- TEST 'control_lndp_intel' [04:25, 01:36](658 MB)
+PASS -- TEST 'control_iovr4_intel' [05:28, 02:29](648 MB)
+PASS -- TEST 'control_iovr5_intel' [05:27, 02:28](654 MB)
+PASS -- TEST 'control_p8_intel' [09:28, 03:00](1630 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [09:24, 02:57](1634 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [09:41, 02:51](1640 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:17, 01:41](890 MB)
+PASS -- TEST 'control_noqr_p8_intel' [09:23, 02:54](1626 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 01:36](930 MB)
+PASS -- TEST 'control_decomp_p8_intel' [09:24, 03:02](1615 MB)
+PASS -- TEST 'control_2threads_p8_intel' [11:23, 03:05](1712 MB)
+PASS -- TEST 'control_p8_lndp_intel' [11:53, 05:15](1637 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 03:56](1693 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:34, 02:59](1640 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:43, 03:22](1645 MB)
+PASS -- TEST 'regional_control_intel' [10:45, 05:08](860 MB)
+PASS -- TEST 'regional_restart_intel' [05:41, 02:46](1023 MB)
+PASS -- TEST 'regional_decomp_intel' [10:41, 05:30](851 MB)
+PASS -- TEST 'regional_2threads_intel' [08:39, 03:40](848 MB)
+PASS -- TEST 'regional_noquilt_intel' [10:42, 05:05](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [11:44, 05:04](859 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [11:44, 05:05](856 MB)
+PASS -- TEST 'regional_wofs_intel' [12:39, 06:44](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:11, 11:26] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [14:32, 07:44](1106 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:11, 04:40](1301 MB)
+PASS -- TEST 'rap_decomp_intel' [11:07, 08:07](1025 MB)
+PASS -- TEST 'rap_2threads_intel' [11:00, 07:54](1177 MB)
+PASS -- TEST 'rap_restart_intel' [05:02, 04:06](1098 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:20, 07:44](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:04, 08:11](1024 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:50](1124 MB)
+PASS -- TEST 'hrrr_control_intel' [10:11, 04:06](1037 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [10:05, 04:10](1022 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [11:00, 03:26](1114 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:25, 02:11](993 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:36](1102 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:10](1997 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 08:57](2074 MB)
+
+PASS -- COMPILE 'csawmg_intel' [12:11, 11:59] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [10:41, 06:03](746 MB)
+PASS -- TEST 'control_ras_intel' [06:25, 03:20](740 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 10:44]
+PASS -- TEST 'control_wam_intel' [05:20, 02:05](658 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:33] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:31, 02:40](1633 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:38, 04:49](856 MB)
PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:42](1617 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:57, 02:40](1619 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:04](815 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](819 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:22](829 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:24, 02:42](825 MB)
-PASS -- TEST 'control_diag_debug_intel' [07:52, 02:51](1630 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:50, 02:56](1643 MB)
-PASS -- TEST 'regional_debug_intel' [22:49, 17:32](845 MB)
-PASS -- TEST 'rap_control_debug_intel' [09:25, 05:03](1206 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:26, 05:03](1194 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:26, 04:49](1202 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 04:57](1203 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:24, 05:05](1203 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:38, 05:18](1281 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:23, 05:07](1201 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:25, 05:10](1203 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [08:24, 05:14](1206 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:23, 05:04](1204 MB)
-PASS -- TEST 'rap_noah_debug_intel' [08:23, 04:57](1213 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:02](1199 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 08:14](1206 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:24, 04:54](1197 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:24, 06:20](1213 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:57](1202 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:27](1200 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:30] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:24, 05:02](507 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 10:48] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:34](1122 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 06:37](1047 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 03:33](978 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:52, 06:51](1099 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 02:59](968 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:39](920 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:22, 04:55](1027 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:24, 02:01](896 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:08] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:02, 02:04](1199 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:07](1119 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [06:45, 01:21](1110 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 11:07] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:55, 04:17](998 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:39] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:58](1082 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:48](1086 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:03, 14:02](1222 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:30](925 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:25](1162 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 14:34](1288 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 02:59] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:53](1127 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:11, 12:32] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:29](739 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 06:02](1119 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:32, 07:10](837 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 13:28](861 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:26, 15:03](1028 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:00, 06:15](502 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 07:35](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:51, 03:11](368 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:14, 08:13](484 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:46, 04:18](531 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:52, 03:56](498 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:57, 05:19](579 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:28, 01:22](406 MB)
-PASS -- TEST 'gnv1_nested_intel' [11:59, 04:34](804 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:10, 03:51] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:59](565 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [18:10, 13:32] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 09:40](649 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 09:48](741 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 13:00] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:08, 07:06](699 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:11, 12:51] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [13:19, 06:20](830 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:18, 06:29](813 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:58, 15:54](1209 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:11, 06:56]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:18, 02:35](1133 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1088 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:34](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:19, 02:38](996 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:37](1010 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:19, 02:38](1126 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 02:36](1122 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:33](996 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:20, 05:48](1047 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:17, 06:05](1034 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:41](1112 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:29](2435 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 03:37](2434 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 03:46] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1053 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:35]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:40](1138 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:43] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:51](245 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:49](327 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:33](324 MB)
-
-PASS -- COMPILE 'atml_intel' [16:11, 13:04] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:41, 04:15](1613 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:36, 04:19](1598 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:26](894 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:10, 04:08] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:38, 05:43](1614 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:11, 11:19] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:46](1621 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:28, 04:02](3014 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:25, 04:54](3101 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 05:02](3101 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:35] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [22:56, 20:41](4420 MB)
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:43](1619 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:47, 02:41](1616 MB)
+PASS -- TEST 'control_stochy_debug_intel' [06:22, 03:09](822 MB)
+PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:47](821 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:10](866 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:21, 02:53](828 MB)
+PASS -- TEST 'control_diag_debug_intel' [04:49, 02:51](1672 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:46, 02:44](1648 MB)
+PASS -- TEST 'regional_debug_intel' [18:43, 17:18](839 MB)
+PASS -- TEST 'rap_control_debug_intel' [05:26, 04:54](1204 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:51](1200 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:52](1207 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:54](1200 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:56](1204 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:21](1286 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:52](1199 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:59](1198 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:05](1197 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:39](1211 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:49](1200 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:53](1196 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:50](1206 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:47](1200 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:02](1200 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:53](1203 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:25](1216 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 03:45] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [06:21, 05:17](506 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:15] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:26](1176 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 06:27](1054 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:24](981 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 06:45](1098 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:58](960 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:36](919 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:20, 04:58](1043 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](923 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:48] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:01, 02:05](1205 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:03](1124 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:16](1106 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:57] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:16](992 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:46] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:54](1076 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1078 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:52, 14:26](1229 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:39](928 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:55](1147 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 14:46](1294 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:28, 04:41](1124 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:11, 12:30] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:26](742 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1120 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:20, 06:58](831 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:20](864 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:59](884 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:11](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:29](517 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:10](372 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:19, 08:00](518 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 04:12](533 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:03](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:17](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:25, 01:23](408 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:57, 04:36](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [07:10, 04:34] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 13:08](567 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:40] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 09:48](671 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:01, 09:55](740 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 12:14] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 07:01](665 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [18:11, 12:20] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:23](827 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:31](816 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 16:03](1210 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:39](1137 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1089 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:31](1016 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:38](1022 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:36](1015 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:34](1135 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1129 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:14, 05:55](1060 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:00](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:45](1125 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:35](2495 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:31](2436 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:56] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:18](1062 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:15, 06:37]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:38](1129 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](260 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:51](322 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:35](323 MB)
+
+PASS -- COMPILE 'atml_intel' [15:11, 12:14] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:39, 04:15](1614 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:21](1607 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:28](905 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [08:11, 04:03] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:31, 05:41](1619 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:50](1674 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:10, 10:40] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:19, 03:58](3024 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:51](3095 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:57](3096 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [06:10, 03:13] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:52](4577 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 15:06:47
-Ending Date/Time: 20240508 16:39:45
-Total Time: 01h:33m:47s
+Starting Date/Time: 20240512 07:31:45
+Ending Date/Time: 20240512 09:04:54
+Total Time: 01h:33m:38s
Compiles Completed: 38/38
Tests Completed: 182/182
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 257d32ff8a..93b9c16d21 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,18 +1,18 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-f29351be77830efd8ae23ad72436b4b38b886383
+bd6721bc051892b41f039008a028aaef572d7c78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,245 +36,252 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244581
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_123747
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [22:36, 22:17] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:01, 01:24](2973 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:37, 22:35] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [08:00, 01:54](1592 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:01, 01:44](1709 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [50:01, 02:12](851 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:01, 01:40](1576 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:21] ( 1505 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:20, 01:42](1605 MB)
-
-PASS -- COMPILE 's2swa_intel' [11:24, 11:00] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [20:13, 01:29](3005 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:13, 01:45](3002 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:52, 01:54](3062 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [20:13, 01:25](3025 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [11:48, 01:52](3080 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [20:13, 01:07](3311 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [20:13, 01:28](3003 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [20:14, 01:26](2932 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:13, 01:47](3002 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [20:22, 03:33](3952 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [02:29, 04:17](4246 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [20:13, 01:55](2970 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:24, 10:30] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [20:13, 00:50](1593 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:13, 01:04](1640 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [28:42, 28:23] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:54, 00:57](1635 MB)
-
-PASS -- COMPILE 's2s_intel' [10:23, 09:47] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [21:13, 00:43](2657 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [21:13, 01:27](2678 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [17:13, 01:24](2108 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:34, 19:38] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:59, 01:47](3003 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:42, 17:37] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [53:20, 01:11](1604 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:58, 00:42](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:59, 00:40](1581 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:18] ( 1541 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:20, 01:40](1611 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [11:25, 11:01] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [14:54, 00:19](576 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [14:54, 00:27](1468 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:54, 00:27](1478 MB)
-PASS -- TEST 'control_latlon_intel' [14:54, 00:20](1470 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:54, 00:33](1477 MB)
-PASS -- TEST 'control_c48_intel' [14:53, 00:52](1597 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [14:53, 00:55](714 MB)
-PASS -- TEST 'control_c192_intel' [14:54, 00:41](1582 MB)
-PASS -- TEST 'control_c384_intel' [02:53, 01:59](1905 MB)
-PASS -- TEST 'control_c384gdas_intel' [14:58, 01:50](1090 MB)
-PASS -- TEST 'control_stochy_intel' [14:54, 00:29](532 MB)
-PASS -- TEST 'control_stochy_restart_intel' [12:20, 01:04](328 MB)
-PASS -- TEST 'control_lndp_intel' [14:54, 00:34](529 MB)
-PASS -- TEST 'control_iovr4_intel' [14:54, 00:45](524 MB)
-PASS -- TEST 'control_iovr5_intel' [14:54, 00:45](522 MB)
-PASS -- TEST 'control_p8_intel' [14:54, 01:56](1509 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [14:08, 01:53](1501 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [13:59, 01:57](1503 MB)
-PASS -- TEST 'control_restart_p8_intel' [09:26, 00:42](694 MB)
-PASS -- TEST 'control_noqr_p8_intel' [13:45, 01:33](1497 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [08:44, 00:50](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [13:05, 01:21](1495 MB)
-PASS -- TEST 'control_2threads_p8_intel' [12:46, 00:51](1591 MB)
-PASS -- TEST 'control_p8_lndp_intel' [12:46, 01:08](1510 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [12:17, 01:01](1565 MB)
-PASS -- TEST 'control_p8_mynn_intel' [11:53, 01:47](1506 MB)
-PASS -- TEST 'merra2_thompson_intel' [11:40, 01:45](1510 MB)
-PASS -- TEST 'regional_control_intel' [11:30, 00:18](610 MB)
-PASS -- TEST 'regional_restart_intel' [05:48, 00:21](777 MB)
-PASS -- TEST 'regional_decomp_intel' [11:29, 01:05](608 MB)
-PASS -- TEST 'regional_2threads_intel' [11:18, 00:58](660 MB)
-PASS -- TEST 'regional_noquilt_intel' [11:17, 00:24](1146 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:08, 00:27](606 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:03, 00:17](610 MB)
-PASS -- TEST 'regional_wofs_intel' [11:03, 00:34](1577 MB)
-
-PASS -- COMPILE 'rrfs_intel' [27:52, 27:04] ( 3 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [58:26, 01:38](917 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:27, 01:07](1099 MB)
-PASS -- TEST 'rap_decomp_intel' [58:26, 01:23](918 MB)
-PASS -- TEST 'rap_2threads_intel' [58:26, 01:45](1005 MB)
-PASS -- TEST 'rap_restart_intel' [49:28, 01:17](788 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'rap_sfcdiff_intel' [, ]( MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:26, 01:44](916 MB)
-FAILED: UNABLE TO START RUN -- TEST 'rap_sfcdiff_restart_intel' [, ]( MB)
-PASS -- TEST 'hrrr_control_intel' [58:26, 01:02](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [58:26, 00:56](909 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [58:27, 01:23](989 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [53:24, 01:06](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [58:26, 01:15](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [58:26, 01:00](1871 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [58:26, 01:18](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [25:50, 24:55] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [55:23, 00:33](600 MB)
-PASS -- TEST 'control_ras_intel' [55:23, 00:55](560 MB)
-
-PASS -- COMPILE 'wam_intel' [31:02, 30:34]
-PASS -- TEST 'control_wam_intel' [49:08, 00:54](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [23:48, 23:07] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [56:24, 02:02](1504 MB)
-PASS -- TEST 'regional_control_faster_intel' [56:23, 00:26](609 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [22:40, 21:56] ( 870 warnings 92 remarks )
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [52:13, 00:29](1493 MB)
-PASS -- TEST 'control_stochy_debug_intel' [52:13, 00:56](693 MB)
-PASS -- TEST 'control_lndp_debug_intel' [52:13, 01:16](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [52:13, 00:41](732 MB)
-PASS -- TEST 'control_ras_debug_intel' [52:13, 01:12](704 MB)
-PASS -- TEST 'control_diag_debug_intel' [52:13, 01:17](1546 MB)
-PASS -- TEST 'control_debug_p8_intel' [52:13, 01:05](1524 MB)
-PASS -- TEST 'regional_debug_intel' [52:12, 00:47](629 MB)
-PASS -- TEST 'rap_control_debug_intel' [52:13, 00:57](1074 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [52:13, 01:06](1068 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [50:58, 01:01](1072 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [50:57, 00:58](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [50:42, 00:53](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [50:00, 00:50](1156 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [49:58, 00:44](1076 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [49:31, 00:46](1073 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [49:28, 00:53](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [49:00, 00:56](1076 MB)
-PASS -- TEST 'rap_noah_debug_intel' [48:48, 01:02](1073 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [48:47, 00:54](1078 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [48:20, 00:41](1077 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [47:51, 01:02](1071 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [47:43, 01:06](1077 MB)
-PASS -- TEST 'rap_flake_debug_intel' [47:43, 00:55](1074 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [47:43, 02:13](1084 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:25, 05:18] ( 842 warnings )
-PASS -- TEST 'control_wam_debug_intel' [04:37, 00:50](301 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:53, 21:07] ( 3 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [46:29, 01:27](957 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [45:53, 01:19](791 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [45:45, 01:39](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [45:42, 01:38](856 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [45:42, 01:33](839 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [44:58, 01:47](789 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [38:29, 01:34](688 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:41, 00:19](669 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:38, 13:31] ( 3 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [53:22, 01:03](1006 MB)
-PASS -- TEST 'conus13km_2threads_intel' [47:42, 00:54](1008 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [47:29, 00:42](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 13:44] ( 3 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [47:24, 01:25](806 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:42, 11:26] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:51, 00:57](952 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:51, 01:11](951 MB)
-PASS -- TEST 'conus13km_debug_intel' [44:24, 00:30](1039 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [44:24, 01:06](709 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [44:17, 00:33](1038 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:04, 00:24](1102 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:22, 07:56] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:32, 00:58](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [21:46, 20:34] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [34:40, 02:07](621 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [34:40, 00:37](971 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [34:38, 01:55](663 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [34:38, 01:35](704 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:39, 01:22](711 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [34:38, 01:07](386 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [34:39, 02:14](401 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [34:39, 01:26](292 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [34:42, 02:26](376 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [34:29, 01:30](417 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [33:14, 00:52](410 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [33:13, 00:49](493 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [33:12, 00:23](316 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [15:29, 15:00] ( 1449 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:56, 00:39](507 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:25, 10:26] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:00, 00:44](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:00, 00:44](708 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:30, 12:24] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [39:52, 00:53](712 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:27, 10:23] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [40:47, 01:21](661 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:46, 01:23](647 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:44, 00:30](882 MB)
-
-PASS -- COMPILE 'atml_intel' [20:39, 19:53] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:32, 01:21](1543 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [29:32, 01:21](1550 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [22:52, 00:21](746 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:21, 04:33] ( 866 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [35:22, 01:44](1569 MB)
-
-PASS -- COMPILE 'atmaero_intel' [10:32, 10:09] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [39:31, 01:31](2850 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [39:31, 00:53](2914 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [39:31, 01:51](2923 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [10:23, 09:56] ( 870 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [38:47, 01:36](4445 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:23] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:18, 01:24](2974 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:34, 16:56] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:43, 01:59](1596 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [04:36, 01:43](1712 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [04:19, 02:16](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 01:35](1567 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:52] ( 1505 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [47:27, 01:57](1600 MB)
+
+PASS -- COMPILE 's2swa_intel' [24:40, 24:02] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [28:04, 01:06](3002 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:04, 01:37](3004 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [14:39, 02:02](3061 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [28:04, 01:08](3025 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [19:47, 01:56](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [28:03, 01:09](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [28:03, 01:14](3004 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [28:04, 01:33](2930 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:04, 01:29](3005 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:12, 04:11](3948 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:21, 04:19](4247 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [28:04, 01:44](2975 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:24, 10:28] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [41:19, 00:50](1585 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:38, 01:48](1640 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [20:33, 20:19] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:10, 01:59](1632 MB)
+
+PASS -- COMPILE 's2s_intel' [21:36, 21:17] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [31:07, 00:43](2645 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [31:07, 01:27](2665 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [27:03, 01:10](2105 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:40, 20:11] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [02:27, 01:47](3004 MB)
+
+FAILED: UNABLE TO COMPILE -- COMPILE 's2sw_pdlib_intel' [, ]
+FAILED: UNABLE TO START RUN -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 09:17] ( 1541 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:21, 01:43](1613 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [27:42, 26:34] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [19:43, 00:24](576 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [19:43, 00:27](1468 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:43, 00:28](1475 MB)
+PASS -- TEST 'control_latlon_intel' [19:43, 00:23](1474 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:43, 00:33](1474 MB)
+PASS -- TEST 'control_c48_intel' [19:42, 00:56](1597 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [19:42, 00:50](713 MB)
+PASS -- TEST 'control_c192_intel' [19:43, 00:40](1583 MB)
+PASS -- TEST 'control_c384_intel' [19:47, 01:50](1904 MB)
+PASS -- TEST 'control_c384gdas_intel' [19:47, 02:36](1086 MB)
+PASS -- TEST 'control_stochy_intel' [19:43, 00:26](532 MB)
+PASS -- TEST 'control_stochy_restart_intel' [17:17, 01:04](332 MB)
+PASS -- TEST 'control_lndp_intel' [19:43, 00:31](525 MB)
+PASS -- TEST 'control_iovr4_intel' [19:43, 00:45](523 MB)
+PASS -- TEST 'control_iovr5_intel' [19:43, 00:43](525 MB)
+PASS -- TEST 'control_p8_intel' [19:43, 01:38](1499 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [19:43, 01:57](1500 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [19:43, 02:01](1503 MB)
+PASS -- TEST 'control_restart_p8_intel' [14:28, 01:04](693 MB)
+PASS -- TEST 'control_noqr_p8_intel' [19:43, 01:39](1492 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [14:27, 01:03](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [19:38, 01:31](1499 MB)
+PASS -- TEST 'control_2threads_p8_intel' [19:28, 01:14](1595 MB)
+PASS -- TEST 'control_p8_lndp_intel' [19:28, 01:11](1503 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [14:30, 01:54](1554 MB)
+PASS -- TEST 'control_p8_mynn_intel' [17:17, 01:50](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [16:14, 01:59](1509 MB)
+PASS -- TEST 'regional_control_intel' [16:12, 00:18](606 MB)
+PASS -- TEST 'regional_restart_intel' [10:30, 00:22](777 MB)
+PASS -- TEST 'regional_decomp_intel' [15:58, 00:55](609 MB)
+PASS -- TEST 'regional_2threads_intel' [15:55, 00:59](668 MB)
+PASS -- TEST 'regional_noquilt_intel' [15:49, 00:20](1147 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [15:46, 00:21](606 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [15:42, 00:13](608 MB)
+PASS -- TEST 'regional_wofs_intel' [15:14, 00:26](1579 MB)
+
+PASS -- COMPILE 'rrfs_intel' [24:41, 23:37] ( 3 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [14:56, 01:30](918 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:51, 01:07](1101 MB)
+PASS -- TEST 'rap_decomp_intel' [14:38, 01:49](919 MB)
+PASS -- TEST 'rap_2threads_intel' [14:29, 01:39](1001 MB)
+PASS -- TEST 'rap_restart_intel' [06:08, 01:18](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [14:14, 01:04](915 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 01:36](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 01:48](788 MB)
+PASS -- TEST 'hrrr_control_intel' [14:08, 01:21](910 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [13:00, 01:07](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [12:58, 01:35](989 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [08:46, 01:03](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:29, 01:15](912 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [11:54, 00:56](1875 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:38, 01:14](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [17:33, 16:25] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [23:45, 00:30](603 MB)
+PASS -- TEST 'control_ras_intel' [23:45, 00:51](559 MB)
+
+PASS -- COMPILE 'wam_intel' [32:52, 31:41]
+PASS -- TEST 'control_wam_intel' [07:25, 01:07](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 11:50] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [11:11, 02:00](1510 MB)
+PASS -- TEST 'regional_control_faster_intel' [11:01, 00:30](611 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:19] ( 870 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:16, 01:19](1487 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:27, 00:28](1491 MB)
+PASS -- TEST 'control_stochy_debug_intel' [10:06, 00:53](692 MB)
+PASS -- TEST 'control_lndp_debug_intel' [10:02, 01:11](692 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [09:59, 00:38](730 MB)
+PASS -- TEST 'control_ras_debug_intel' [09:18, 01:09](701 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:42, 01:22](1555 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:27, 01:07](1524 MB)
+PASS -- TEST 'regional_debug_intel' [08:07, 00:47](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:53, 00:56](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:50, 01:02](1070 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 00:57](1073 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:53, 00:55](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:48, 00:52](1074 MB)
+PASS -- TEST 'rap_diag_debug_intel' [06:34, 00:50](1156 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:08, 00:55](1074 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:43, 00:47](1077 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:40, 00:50](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 00:55](1075 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:37, 00:58](1075 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 00:56](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [05:10, 00:50](1075 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 00:59](1067 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [04:57, 01:07](1075 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:49, 00:46](1077 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:21, 06:55] ( 842 warnings )
+PASS -- TEST 'control_wam_debug_intel' [20:42, 00:58](297 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:38, 17:53] ( 3 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:39, 01:28](954 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:38, 01:05](790 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:38, 02:33](784 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:38, 01:34](852 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:20, 02:09](787 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:26, 01:29](685 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:36, 00:20](671 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:43] ( 3 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:43, 01:03](1002 MB)
+PASS -- TEST 'conus13km_2threads_intel' [59:52, 00:54](1007 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [59:30, 00:42](880 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:32, 16:53] ( 3 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:21, 01:23](806 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:37, 20:54] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:05, 01:06](959 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:05, 01:14](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [58:05, 00:30](1038 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [58:05, 01:15](707 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [57:24, 00:30](1040 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:12, 00:25](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:56] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:40, 00:54](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:31, 14:50] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [02:11, 02:12](622 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [02:05, 00:30](965 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:21, 01:48](659 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [01:19, 01:29](702 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:20, 01:33](715 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:44, 01:10](392 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:24, 02:13](402 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [00:24, 01:29](282 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:01, 02:35](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:17, 01:37](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:14, 00:56](416 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:14, 00:53](495 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:12, 00:22](320 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [12:28, 12:01] ( 1449 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:36, 00:41](506 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [11:26, 10:24] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:08, 01:36](524 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:54, 01:38](707 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:38, 14:23] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:13, 00:50](710 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:27, 12:38] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [53:58, 01:19](668 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:58, 01:16](651 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:56, 00:27](882 MB)
+
+PASS -- COMPILE 'atml_intel' [19:35, 18:36] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:34, 01:29](1544 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [44:34, 02:23](1541 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:40, 00:23](744 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [04:18, 03:44] ( 866 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [50:18, 01:42](1565 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:27, 13:04] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [49:52, 01:26](2851 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [49:52, 01:52](2913 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:52, 01:52](2923 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:28] ( 870 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [56:40, 01:28](4439 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 15:27:57
-Ending Date/Time: 20240508 16:47:23
-Total Time: 01h:19m:56s
-Compiles Completed: 31/31
-Tests Completed: 155/158
+Starting Date/Time: 20240513 12:06:51
+Ending Date/Time: 20240513 13:29:43
+Total Time: 01h:23m:30s
+Compiles Completed: 30/31
+Tests Completed: 153/158
+Failed Compiles:
+* COMPILE s2sw_pdlib_intel: FAILED: UNABLE TO COMPILE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_s2sw_pdlib_intel.log
Failed Tests:
-* TEST rap_sfcdiff_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_rap_sfcdiff_intel.log
-* TEST rap_sfcdiff_restart_intel: FAILED: UNABLE TO START RUN
+* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO START RUN
-- LOG: N/A
-* TEST control_CubedSphereGrid_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/fabiolrdiniz/ufs-weather-model/tests/logs/log_wcoss2/run_control_CubedSphereGrid_debug_intel.log
+* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST gnv1_c96_no_nest_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_gnv1_c96_no_nest_debug_intel.log
+* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_hrrr_control_2threads_dyn32_phy32_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -287,18 +294,18 @@ Result: FAILURE
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-f29351be77830efd8ae23ad72436b4b38b886383
+bd6721bc051892b41f039008a028aaef572d7c78
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac)
+ 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -307,7 +314,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -322,26 +329,30 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_51903
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18671
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-b) - NEW BASELINES FROM FILE: test_changes.list
* (-e) - USE ECFLOW
-PASS -- COMPILE 'rrfs_intel' [10:23, 09:15] ( 3 warnings 92 remarks )
-PASS -- TEST 'rap_sfcdiff_intel' [21:31, 02:11](915 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [12:05, 01:20](791 MB)
+PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:31] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:36, 01:12](1604 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 01:24](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:05, 01:32](1584 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:19, 04:13] ( 870 warnings 92 remarks )
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 02:17](1087 MB)
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:18, 04:12] ( 870 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [26:36, 01:18](1490 MB)
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 08:10] ( 3 warnings 91 remarks )
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 01:32](842 MB)
SYNOPSIS:
-Starting Date/Time: 20240508 17:27:57
-Ending Date/Time: 20240508 17:56:08
-Total Time: 00h:28m:25s
-Compiles Completed: 2/2
-Tests Completed: 3/3
+Starting Date/Time: 20240513 13:45:47
+Ending Date/Time: 20240513 14:37:26
+Total Time: 00h:51m:58s
+Compiles Completed: 3/3
+Tests Completed: 5/5
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/opnReqTest b/tests/opnReqTest
index cf854962b7..3578f1a098 100755
--- a/tests/opnReqTest
+++ b/tests/opnReqTest
@@ -633,7 +633,7 @@ mkdir -p ${STMP}/${USER}
NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST
RTPWD=${NEW_BASELINE}
INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501}
-INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/
+INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214/
INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207}
rm -rf $NEW_BASELINE
diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN
index 7910561fe0..e0a29ecacb 100644
--- a/tests/parm/ice_in.IN
+++ b/tests/parm/ice_in.IN
@@ -195,6 +195,14 @@
/
&icefields_nml
+ f_tlon = .true.
+ f_tlat = .true.
+ f_ulon = .true.
+ f_ulat = .true.
+ f_nlon = .true.
+ f_nlat = .true.
+ f_elon = .true.
+ f_elat = .true.
f_tmask = .true.
f_blkmask = .true.
f_tarea = .true.
From 1c6b4d464b7c1c0c73c2fbfa74a3875cf0ef5b47 Mon Sep 17 00:00:00 2001
From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com>
Date: Thu, 16 May 2024 01:35:49 -0400
Subject: [PATCH 32/33] Add a RT for SFS with hydrostatic options (#2255)
* UFSWM - Add a RT for SFS with hydrostatic options
* FV3 - Remove -DUSE_COND and -DMOIST_CAPPA compiling flags for hydrostatic runs;
Fix the issue to write out geopotential height for inline post in hydrostatic runs;
Use omega from the model if defined in diag_table instead calculated in post
* atmos_cubed_sphere - Remove -DUSE_COND and -DMOIST_CAPPA compiling flags for hydrostatic runs
---
CMakeLists.txt | 2 +
FV3 | 2 +-
NOAHMP-interface/CMakeLists.txt | 6 +-
tests/default_vars.sh | 8 +
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../logs/OpnReqTests_cpld_sfs_hydro_hera.log | 126 +++
.../OpnReqTests_regional_control_hera.log | 89 +--
tests/logs/RegressionTests_acorn.log | 588 +++++++-------
tests/logs/RegressionTests_derecho.log | 593 +++++++-------
tests/logs/RegressionTests_gaea.log | 539 ++++++-------
tests/logs/RegressionTests_hera.log | 721 +++++++++---------
tests/logs/RegressionTests_hercules.log | 713 ++++++++---------
tests/logs/RegressionTests_jet.log | 477 ++++++------
tests/logs/RegressionTests_orion.log | 539 ++++++-------
tests/logs/RegressionTests_wcoss2.log | 552 ++++++--------
tests/parm/diag_table/diag_table_cpld_sfs.IN | 311 ++++++++
tests/parm/global_control.nml.IN | 24 +-
tests/rt.conf | 16 +-
tests/rt_utils.sh | 6 +-
tests/test_changes.list | 1 +
tests/tests/cpld_control_sfs | 89 +++
22 files changed, 2992 insertions(+), 2482 deletions(-)
create mode 100644 tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log
create mode 100644 tests/parm/diag_table/diag_table_cpld_sfs.IN
create mode 100644 tests/tests/cpld_control_sfs
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9e9c8ccd39..4f4d418862 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -73,6 +73,7 @@ set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver")
set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator")
set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB")
set(CDEPS_INLINE OFF CACHE BOOL "Enable CDEPS inline capability")
+set(HYDRO OFF CACHE BOOL "Enable hydrostatic set")
set(CMAKE_Platform $ENV{CMAKE_Platform})
if(CMAKE_Platform)
@@ -122,6 +123,7 @@ message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}")
message("JEDI_DRIVER ...... ${JEDI_DRIVER}")
message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}")
message("CDEPS_INLINE ..... ${CDEPS_INLINE}")
+message("HYDRO ........... ${HYDRO}")
message("")
diff --git a/FV3 b/FV3
index 7147dac3d5..9534e14d3c 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 7147dac3d5075c38a43cc221d1e7e7337c28437f
+Subproject commit 9534e14d3c740c8aa9c915ad03f36dc7b75d8ab8
diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt
index fa533818fb..f8b6d99ab1 100644
--- a/NOAHMP-interface/CMakeLists.txt
+++ b/NOAHMP-interface/CMakeLists.txt
@@ -56,8 +56,10 @@ endif()
#------------------------------------------------------------------------------
# Add model-specific flags for C/C++/Fortran preprocessor
-add_definitions(-DMOIST_CAPPA -DUSE_COND -DNEMS_GSM)
-add_definitions(-DINTERNAL_FILE_NML)
+if (NOT HYDRO)
+add_definitions(-DMOIST_CAPPA -DUSE_COND)
+endif()
+add_definitions(-DINTERNAL_FILE_NML -DNEMS_GSM)
#------------------------------------------------------------------------------
# NOAHMP
diff --git a/tests/default_vars.sh b/tests/default_vars.sh
index 03e70f9308..7c7c71d765 100644
--- a/tests/default_vars.sh
+++ b/tests/default_vars.sh
@@ -556,6 +556,14 @@ export EXTERNAL_IC=.true.
export MAKE_NH=.true.
export MOUNTAIN=.false.
export NA_INIT=1
+export DO_VORT_DAMP=.true.
+export HYDROSTATIC=.false.
+export KORD_XX=9
+export KORD_TM=-9
+export D_CON=1.
+export HORD_XX=5
+export HORD_DP=-5
+export HORD_TR=8
# Radiation
export DO_RRTMGP=.false.
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 7788869a56..3476a24c88 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Sun May 12 12:30:46 UTC 2024
+Mon May 13 18:14:19 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 274.685635
- 0: The maximum resident set size (KB) = 1268520
+ 0: The total amount of wall time = 270.538118
+ 0: The maximum resident set size (KB) = 1254096
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 961.766801
- 0: The maximum resident set size (KB) = 1234336
+ 0: The total amount of wall time = 975.476688
+ 0: The maximum resident set size (KB) = 1230856
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 239.860027
- 0: The maximum resident set size (KB) = 1250884
+ 0: The total amount of wall time = 237.920448
+ 0: The maximum resident set size (KB) = 1231760
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 241.404044
- 0: The maximum resident set size (KB) = 1246748
+ 0: The total amount of wall time = 238.597717
+ 0: The maximum resident set size (KB) = 1233284
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 242.962682
- 0: The maximum resident set size (KB) = 1249268
+ 0: The total amount of wall time = 237.803525
+ 0: The maximum resident set size (KB) = 1234508
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 237.070887
- 0: The maximum resident set size (KB) = 1238956
+ 0: The total amount of wall time = 241.082583
+ 0: The maximum resident set size (KB) = 1232320
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_209637/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.482893
- 0: The maximum resident set size (KB) = 1245620
+ 0: The total amount of wall time = 246.042458
+ 0: The maximum resident set size (KB) = 1232080
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Sun May 12 13:33:32 UTC 2024
-Elapsed time: 01h:02m:46s. Have a nice day!
+Mon May 13 19:16:46 UTC 2024
+Elapsed time: 01h:02m:28s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 4a9c079313..5a5ebcd930 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Mon May 13 12:14:02 UTC 2024
+Tue May 14 03:58:00 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1419.286675
- 0: The maximum resident set size (KB) = 1344244
+ 0: The total amount of wall time = 1357.491643
+ 0: The maximum resident set size (KB) = 1368672
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 385.831343
- 0: The maximum resident set size (KB) = 1341548
+ 0: The total amount of wall time = 388.602017
+ 0: The maximum resident set size (KB) = 1356348
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_963796/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 389.117762
- 0: The maximum resident set size (KB) = 1343228
+ 0: The total amount of wall time = 392.294030
+ 0: The maximum resident set size (KB) = 1358828
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 13 13:13:57 UTC 2024
-Elapsed time: 00h:59m:55s. Have a nice day!
+Tue May 14 04:56:24 UTC 2024
+Elapsed time: 00h:58m:24s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log
new file mode 100644
index 0000000000..2372e020a4
--- /dev/null
+++ b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log
@@ -0,0 +1,126 @@
+
+baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_intel
+working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1959771/rst_rst
+Checking test rst results ....
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+
+ 0: The total amount of wall time = 1001.529109
+ 0: The maximum resident set size (KB) = 1728376
+
+Test rst PASS
+
+Mon May 13 19:39:40 UTC 2024
+Start Operation Requirement Test
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_bit_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/bit_base_bit_base
+Checking test bit_base results ....
+Moving baseline bit_base files ....
+ Moving sfcf021.nc .........OK
+ Moving sfcf024.nc .........OK
+ Moving atmf021.nc .........OK
+ Moving atmf024.nc .........OK
+ Moving GFSFLX.GrbF21 .........OK
+ Moving GFSFLX.GrbF24 .........OK
+ Moving GFSPRS.GrbF21 .........OK
+ Moving GFSPRS.GrbF24 .........OK
+
+ 0: The total amount of wall time = 1277.784752
+ 0: The maximum resident set size (KB) = 1309112
+
+Test bit_base PASS
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base
+Checking test dbg_base results ....
+Moving baseline dbg_base files ....
+ Moving sfcf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf021.nc
+ Moving sfcf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf024.nc
+ Moving atmf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf021.nc
+ Moving atmf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf024.nc
+ Moving GFSFLX.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF21
+ Moving GFSFLX.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF24
+ Moving GFSPRS.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF21
+ Moving GFSPRS.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF24
+
+
+Test dbg_base FAIL
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/std_base_std_base
+Checking test std_base results ....
+Moving baseline std_base files ....
+ Moving sfcf021.nc .........OK
+ Moving sfcf024.nc .........OK
+ Moving atmf021.nc .........OK
+ Moving atmf024.nc .........OK
+ Moving GFSFLX.GrbF21 .........OK
+ Moving GFSFLX.GrbF24 .........OK
+ Moving GFSPRS.GrbF21 .........OK
+ Moving GFSPRS.GrbF24 .........OK
+
+ 0: The total amount of wall time = 1316.780909
+ 0: The maximum resident set size (KB) = 1297596
+
+Test std_base PASS
+
+FAILED TESTS:
+Test dbg_base failed in check_result failed
+Test dcp failed in check_result failed
+Test rst failed in check_result failed
+OPERATION REQUIREMENT TEST FAILED
+Mon May 13 23:18:35 UTC 2024
+Elapsed time: 03h:38m:57s. Have a nice day!
+Mon May 13 23:52:01 UTC 2024
+Start Operation Requirement Test
+
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3335353/dbg_base_dbg_base
+Checking test dbg_base results ....
+Moving baseline dbg_base files ....
+ Moving sfcf021.nc .........OK
+ Moving sfcf024.nc .........OK
+ Moving atmf021.nc .........OK
+ Moving atmf024.nc .........OK
+ Moving GFSFLX.GrbF21 .........OK
+ Moving GFSFLX.GrbF24 .........OK
+ Moving GFSPRS.GrbF21 .........OK
+ Moving GFSPRS.GrbF24 .........OK
+
+ 0: The total amount of wall time = 3225.706174
+ 0: The maximum resident set size (KB) = 1322788
+
+Test dbg_base PASS
+
+OPERATION REQUIREMENT TEST WAS SUCCESSFUL
+Tue May 14 00:50:40 UTC 2024
+Elapsed time: 00h:58m:40s. Have a nice day!
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3478207/dcp_dcp
+Checking test dcp results ....
+ Comparing sfcf021.nc .....USING NCCMP......OK
+ Comparing sfcf024.nc .....USING NCCMP......OK
+ Comparing atmf021.nc .....USING NCCMP......OK
+ Comparing atmf024.nc .....USING NCCMP......OK
+ Comparing GFSFLX.GrbF21 .....USING CMP......OK
+ Comparing GFSFLX.GrbF24 .....USING CMP......OK
+ Comparing GFSPRS.GrbF21 .....USING CMP......OK
+ Comparing GFSPRS.GrbF24 .....USING CMP......OK
+
+ 0: The total amount of wall time = 1556.575445
+ 0: The maximum resident set size (KB) = 1314156
+
+Test dcp PASS
+
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 41329d28f6..78733d81a4 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Sun May 12 21:58:20 UTC 2024
+Tue May 14 12:09:43 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_4046824/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving dynf000.nc .........OK
@@ -15,20 +15,32 @@ Moving baseline bit_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 1390.059976
- 0: The maximum resident set size (KB) = 576080
+ 0: The total amount of wall time = 1347.763107
+ 0: The maximum resident set size (KB) = 583388
Test bit_base PASS
-OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Sun May 12 22:27:02 UTC 2024
-Elapsed time: 00h:28m:42s. Have a nice day!
-Sun May 12 22:54:29 UTC 2024
-Start Operation Requirement Test
+
+baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/dcp_dcp
+Checking test dcp results ....
+ Comparing dynf000.nc .....USING NCCMP......OK
+ Comparing dynf006.nc .....USING NCCMP......OK
+ Comparing phyf000.nc .....USING NCCMP......OK
+ Comparing phyf006.nc .....USING NCCMP......OK
+ Comparing PRSLEV.GrbF00 .....USING CMP......OK
+ Comparing PRSLEV.GrbF06 .....USING CMP......OK
+ Comparing NATLEV.GrbF00 .....USING CMP......OK
+ Comparing NATLEV.GrbF06 .....USING CMP......OK
+
+ 0: The total amount of wall time = 2795.464199
+ 0: The maximum resident set size (KB) = 541676
+
+Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -40,14 +52,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2241.535310
- 0: The maximum resident set size (KB) = 542212
+ 0: The total amount of wall time = 2362.646234
+ 0: The maximum resident set size (KB) = 541132
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_56239/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -58,54 +70,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2211.134928
- 0: The maximum resident set size (KB) = 542148
+ 0: The total amount of wall time = 2378.042584
+ 0: The maximum resident set size (KB) = 541716
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 13 00:16:03 UTC 2024
-Elapsed time: 01h:21m:34s. Have a nice day!
-Mon May 13 03:04:00 UTC 2024
-Start Operation Requirement Test
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/dcp_dcp
-Checking test dcp results ....
- Comparing dynf000.nc .....USING NCCMP......OK
- Comparing dynf006.nc .....USING NCCMP......OK
- Comparing phyf000.nc .....USING NCCMP......OK
- Comparing phyf006.nc .....USING NCCMP......OK
- Comparing PRSLEV.GrbF00 .....USING CMP......OK
- Comparing PRSLEV.GrbF06 .....USING CMP......OK
- Comparing NATLEV.GrbF00 .....USING CMP......OK
- Comparing NATLEV.GrbF06 .....USING CMP......OK
-
- 0: The total amount of wall time = 2157.558307
- 0: The maximum resident set size (KB) = 546728
-
-Test dcp PASS
-
-
-baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1227404/std_base_std_base
-Checking test std_base results ....
-Moving baseline std_base files ....
- Moving dynf000.nc .........OK
- Moving dynf006.nc .........OK
- Moving phyf000.nc .........OK
- Moving phyf006.nc .........OK
- Moving PRSLEV.GrbF00 .........OK
- Moving PRSLEV.GrbF06 .........OK
- Moving NATLEV.GrbF00 .........OK
- Moving NATLEV.GrbF06 .........OK
-
- 0: The total amount of wall time = 2148.505696
- 0: The maximum resident set size (KB) = 543380
-
-Test std_base PASS
-
-OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 13 04:21:22 UTC 2024
-Elapsed time: 01h:17m:22s. Have a nice day!
+Tue May 14 14:52:00 UTC 2024
+Elapsed time: 02h:42m:17s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index db9e35c572..b6a7a66536 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,18 +1,18 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-11f08c4352632e1432d9c38e6d066387da2828e1
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- c9e4679f449e30bb4cc0f22164b4401a8b50f7a6 CICE-interface/CICE (CICE6.0.0-447-gc9e4679)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- cf9b7655becf840bb2861ad84ad0a76a9952ddc7 FV3 (remotes/origin/fv3atm_output_dir)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 0730606b808f2979241d850e763955f5526a980c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10046-g0730606b8)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,266 +36,338 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_210135
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_188435
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [10:22, 10:08] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:27, 01:23](3047 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:28, 15:44] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [45:10, 01:31](1655 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:12, 01:10](1777 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [19:08, 01:32](911 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [45:00, 02:02](1631 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:43] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [57:34, 01:06](1673 MB)
-
-PASS -- COMPILE 's2swa_intel' [10:22, 10:09] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [51:27, 01:20](3076 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [51:27, 01:30](3077 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [43:04, 01:27](3131 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [51:27, 01:23](3096 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [43:03, 01:23](3149 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [51:27, 01:03](3384 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [51:27, 01:26](3072 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [51:28, 01:24](3001 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [51:27, 00:55](3074 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [51:27, 00:48](3042 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:22, 09:39] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [51:27, 00:51](1653 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:27, 00:57](1695 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [09:22, 09:05] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [42:35, 01:02](1700 MB)
-
-PASS -- COMPILE 's2s_intel' [09:21, 09:10] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [52:27, 00:41](2678 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [52:27, 00:28](2696 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [49:34, 01:18](2130 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:27, 14:35] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [44:30, 01:28](3076 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:11] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [43:57, 01:11](1671 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:32, 01:14](969 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:28, 00:36](1644 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:10] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [56:32, 01:28](1683 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:22, 09:09] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [48:10, 01:09](637 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [48:10, 01:07](1527 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [48:10, 01:08](1546 MB)
-PASS -- TEST 'control_latlon_intel' [48:10, 00:57](1540 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [48:10, 01:04](1534 MB)
-PASS -- TEST 'control_c48_intel' [48:09, 00:47](1616 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [48:09, 01:18](742 MB)
-PASS -- TEST 'control_c192_intel' [48:10, 01:14](1650 MB)
-PASS -- TEST 'control_c384_intel' [48:14, 01:52](1964 MB)
-PASS -- TEST 'control_c384gdas_intel' [48:14, 01:40](1157 MB)
-PASS -- TEST 'control_stochy_intel' [48:10, 00:48](596 MB)
-PASS -- TEST 'control_stochy_restart_intel' [41:40, 00:55](397 MB)
-PASS -- TEST 'control_lndp_intel' [48:10, 00:37](592 MB)
-PASS -- TEST 'control_iovr4_intel' [48:10, 00:26](588 MB)
-PASS -- TEST 'control_iovr5_intel' [48:10, 01:02](587 MB)
-PASS -- TEST 'control_p8_intel' [48:10, 01:03](1562 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [43:55, 01:31](1563 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [43:09, 01:12](1575 MB)
-PASS -- TEST 'control_restart_p8_intel' [33:29, 01:29](758 MB)
-PASS -- TEST 'control_noqr_p8_intel' [41:40, 01:55](1557 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [28:12, 01:13](760 MB)
-PASS -- TEST 'control_decomp_p8_intel' [40:50, 01:02](1561 MB)
-PASS -- TEST 'control_2threads_p8_intel' [40:37, 00:58](1653 MB)
-PASS -- TEST 'control_p8_lndp_intel' [38:45, 00:29](1573 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [38:35, 01:26](1625 MB)
-PASS -- TEST 'control_p8_mynn_intel' [37:47, 01:14](1572 MB)
-PASS -- TEST 'merra2_thompson_intel' [36:48, 01:48](1573 MB)
-PASS -- TEST 'regional_control_intel' [36:31, 00:44](631 MB)
-PASS -- TEST 'regional_restart_intel' [24:46, 00:24](800 MB)
-PASS -- TEST 'regional_decomp_intel' [21:24, 00:20](632 MB)
-PASS -- TEST 'regional_2threads_intel' [35:07, 00:25](728 MB)
-PASS -- TEST 'regional_noquilt_intel' [34:53, 00:47](1167 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [34:01, 00:25](634 MB)
-PASS -- TEST 'regional_wofs_intel' [32:17, 00:39](1609 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:21, 07:56] ( 1 warnings )
-PASS -- TEST 'regional_ifi_control_intel' [31:44, 01:02](631 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [31:04, 00:19](631 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [30:37, 00:52](727 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:22, 08:39] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [30:29, 01:25](974 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:45, 00:29](1154 MB)
-PASS -- TEST 'rap_decomp_intel' [29:11, 01:30](975 MB)
-PASS -- TEST 'rap_2threads_intel' [28:29, 00:44](1061 MB)
-PASS -- TEST 'rap_restart_intel' [21:12, 01:54](843 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [28:29, 01:17](971 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [28:12, 00:55](972 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [19:13, 01:11](845 MB)
-PASS -- TEST 'hrrr_control_intel' [28:04, 01:19](964 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [27:44, 01:01](970 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [27:14, 01:10](1052 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [21:50, 00:22](795 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [26:28, 01:36](970 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [26:28, 00:54](1931 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [26:26, 01:02](1920 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:21, 08:20] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [26:11, 00:55](662 MB)
-
-PASS -- COMPILE 'wam_intel' [42:59, 08:04] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [00:05, 00:35](332 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [25:53, 01:37](1560 MB)
-PASS -- TEST 'regional_control_faster_intel' [25:49, 00:30](628 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:22, 03:58] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [25:16, 00:27](1560 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:58, 01:00](1564 MB)
-PASS -- TEST 'control_stochy_debug_intel' [23:52, 00:56](764 MB)
-PASS -- TEST 'control_lndp_debug_intel' [23:49, 01:03](775 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [22:09, 01:06](801 MB)
-PASS -- TEST 'control_ras_debug_intel' [21:50, 00:35](774 MB)
-PASS -- TEST 'control_diag_debug_intel' [20:35, 01:10](1626 MB)
-PASS -- TEST 'control_debug_p8_intel' [20:34, 00:57](1595 MB)
-PASS -- TEST 'regional_debug_intel' [19:36, 00:43](673 MB)
-PASS -- TEST 'rap_control_debug_intel' [19:17, 00:27](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [19:13, 00:37](1139 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [18:27, 00:59](1141 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [18:25, 00:33](1144 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [18:24, 00:28](1146 MB)
-PASS -- TEST 'rap_diag_debug_intel' [17:13, 00:31](1229 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [17:12, 00:30](1147 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [16:57, 00:27](1148 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [16:30, 01:04](1148 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [16:07, 01:00](1145 MB)
-PASS -- TEST 'rap_noah_debug_intel' [15:56, 00:26](1143 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [15:56, 00:27](1145 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:53, 01:09](1146 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [15:50, 01:11](1137 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [15:31, 01:10](1147 MB)
-PASS -- TEST 'rap_flake_debug_intel' [14:58, 00:28](1145 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:04, 01:21](1150 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [40:56, 02:51] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:13, 01:02](376 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [45:01, 08:08] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:21, 00:53](1020 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:20, 01:26](853 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:20, 01:58](849 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:20, 01:52](913 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:21, 01:56](904 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:20, 01:38](852 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [50:59, 01:33](747 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:17, 00:44](732 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [48:03, 10:16] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [58:18, 00:38](1061 MB)
-PASS -- TEST 'conus13km_2threads_intel' [27:59, 00:17](1041 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [27:58, 00:55](941 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [44:59, 08:17] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [00:21, 01:21](873 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [37:51, 03:02] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:13, 01:08](1026 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 00:14](1021 MB)
-PASS -- TEST 'conus13km_debug_intel' [05:13, 00:58](1112 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [05:13, 00:41](789 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [05:14, 00:31](1087 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [05:13, 00:17](1184 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [37:53, 02:55] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:10, 01:07](1046 MB)
-
-PASS -- COMPILE 'hafsw_intel' [43:57, 09:17] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [46:28, 01:45](674 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:10, 00:38](1027 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:08, 02:01](712 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [58:08, 01:35](761 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [58:09, 02:06](769 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [58:08, 01:30](441 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [58:09, 02:04](464 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [58:09, 01:02](339 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [58:12, 02:38](400 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [58:08, 00:41](479 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:08, 00:56](479 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [58:10, 01:24](537 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [58:09, 01:09](370 MB)
-PASS -- TEST 'gnv1_nested_intel' [57:41, 01:17](733 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [37:51, 03:19] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:15, 01:04](571 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [40:55, 09:30] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [56:37, 01:12](577 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [55:26, 01:23](752 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:33] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [55:24, 01:03](755 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [09:22, 09:00] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [52:37, 01:29](714 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [51:00, 02:08](698 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [50:04, 00:47](897 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:22, 08:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [48:08, 00:34](763 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:46, 00:11](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [48:08, 00:45](645 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [46:01, 00:17](640 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [45:19, 00:46](641 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [44:56, 00:42](763 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [43:47, 00:37](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [43:07, 01:03](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [42:52, 00:47](645 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [42:25, 01:13](627 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [41:40, 00:18](762 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [40:59, 00:50](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [40:36, 00:56](2025 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 07:46]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [40:16, 00:11](763 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 00:50] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [00:07, 00:45](266 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [00:07, 00:49](412 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [39:57, 00:12](411 MB)
-
-PASS -- COMPILE 'atml_intel' [11:23, 09:45] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [39:24, 01:48](1608 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [39:09, 01:53](1611 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [28:45, 00:27](803 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:17, 03:33] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [38:27, 01:20](1631 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:23, 08:35] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [38:00, 01:38](1611 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:23, 08:33] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [37:21, 01:42](2916 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [36:04, 01:25](2983 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [35:38, 01:09](2991 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [08:20, 03:03] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [34:56, 01:20](4501 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:25, 10:15] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:36, 01:15](3046 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:14] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [44:31, 01:59](1652 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:42, 02:01](1777 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [26:23, 01:25](908 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:32, 01:37](1633 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:46] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [28:39, 00:49](1648 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:46] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [56:45, 01:53](1684 MB)
+
+PASS -- COMPILE 's2swa_intel' [10:24, 10:06] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [38:36, 00:50](3074 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:35, 01:04](3074 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [16:03, 01:02](3131 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [37:16, 00:50](3098 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [15:54, 01:31](3150 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [36:33, 01:22](3387 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [36:33, 01:46](3073 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [35:26, 01:02](2998 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:44, 01:13](3075 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [30:46, 01:18](3039 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:23, 09:46] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [50:37, 00:51](1650 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:37, 00:56](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:52] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:36, 00:57](1698 MB)
+
+PASS -- COMPILE 's2s_intel' [09:23, 09:04] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [51:37, 00:44](2679 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_warmstart_c48_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_c48_intel' [, ]( MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:30, 14:22] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [45:31, 01:37](3075 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:48] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:30, 01:12](1670 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:12, 00:44](971 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:04, 01:32](1646 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:30] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:28, 01:29](1697 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:14] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [42:04, 01:04](637 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [42:04, 00:47](1537 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:04, 00:27](1542 MB)
+PASS -- TEST 'control_latlon_intel' [42:04, 00:52](1536 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:04, 00:34](1533 MB)
+PASS -- TEST 'control_c48_intel' [42:03, 00:48](1615 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [42:03, 00:48](740 MB)
+PASS -- TEST 'control_c192_intel' [42:04, 01:19](1650 MB)
+PASS -- TEST 'control_c384_intel' [42:08, 01:29](1964 MB)
+PASS -- TEST 'control_c384gdas_intel' [42:08, 02:06](1149 MB)
+PASS -- TEST 'control_stochy_intel' [42:04, 00:16](593 MB)
+PASS -- TEST 'control_stochy_restart_intel' [25:19, 00:51](395 MB)
+PASS -- TEST 'control_lndp_intel' [42:04, 01:04](592 MB)
+PASS -- TEST 'control_iovr4_intel' [42:04, 00:24](587 MB)
+PASS -- TEST 'control_iovr5_intel' [42:04, 00:24](587 MB)
+PASS -- TEST 'control_p8_intel' [42:04, 01:01](1569 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [21:47, 01:11](1573 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [42:04, 01:14](1562 MB)
+PASS -- TEST 'control_restart_p8_intel' [24:08, 01:08](751 MB)
+PASS -- TEST 'control_noqr_p8_intel' [42:04, 01:15](1556 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [21:17, 00:45](759 MB)
+PASS -- TEST 'control_decomp_p8_intel' [42:04, 01:36](1562 MB)
+PASS -- TEST 'control_2threads_p8_intel' [42:04, 01:34](1656 MB)
+PASS -- TEST 'control_p8_lndp_intel' [25:18, 00:25](1573 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [25:09, 01:17](1620 MB)
+PASS -- TEST 'control_p8_mynn_intel' [24:35, 01:27](1577 MB)
+PASS -- TEST 'merra2_thompson_intel' [23:19, 01:22](1570 MB)
+PASS -- TEST 'regional_control_intel' [22:44, 00:54](632 MB)
+PASS -- TEST 'regional_restart_intel' [06:48, 01:00](800 MB)
+PASS -- TEST 'regional_decomp_intel' [22:40, 01:00](631 MB)
+PASS -- TEST 'regional_2threads_intel' [22:32, 00:38](733 MB)
+PASS -- TEST 'regional_noquilt_intel' [22:03, 00:30](1167 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [21:37, 00:20](634 MB)
+PASS -- TEST 'regional_wofs_intel' [21:24, 00:13](1603 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:21, 08:01] ( 1 warnings )
+PASS -- TEST 'regional_ifi_control_intel' [43:15, 00:50](635 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [43:15, 00:37](629 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [43:16, 00:48](727 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:23, 08:45] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [21:17, 01:18](975 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:18, 00:39](1152 MB)
+PASS -- TEST 'rap_decomp_intel' [20:03, 01:31](974 MB)
+PASS -- TEST 'rap_2threads_intel' [19:49, 01:07](1060 MB)
+PASS -- TEST 'rap_restart_intel' [07:54, 01:52](841 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [16:03, 02:06](972 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:59, 01:49](970 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [04:36, 01:37](841 MB)
+PASS -- TEST 'hrrr_control_intel' [15:56, 01:05](969 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [15:29, 00:51](973 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [15:27, 01:57](1048 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [08:42, 00:53](803 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [15:15, 01:08](968 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [15:03, 00:51](1936 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:54, 01:10](1919 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:23, 08:21] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [13:44, 00:59](661 MB)
+
+PASS -- COMPILE 'wam_intel' [08:22, 08:06] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [13:11, 00:19](333 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:42] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [12:44, 00:56](1564 MB)
+PASS -- TEST 'regional_control_faster_intel' [12:32, 00:12](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:17, 04:02] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:23, 00:33](1557 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:18, 00:29](1562 MB)
+PASS -- TEST 'control_stochy_debug_intel' [12:16, 00:54](764 MB)
+PASS -- TEST 'control_lndp_debug_intel' [12:13, 01:09](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [11:50, 00:33](803 MB)
+PASS -- TEST 'control_ras_debug_intel' [11:39, 00:22](772 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:36, 01:06](1624 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:32, 00:34](1599 MB)
+PASS -- TEST 'regional_debug_intel' [07:38, 00:20](672 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:51, 00:23](1147 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:44, 00:28](1136 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:43, 01:10](1142 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:41, 01:00](1143 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:54, 00:39](1147 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:26, 00:34](1226 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:00, 00:44](1145 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:48, 00:36](1145 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:46, 00:38](1148 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:36, 00:43](1145 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:33, 00:24](1142 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:25, 00:29](1142 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:14, 00:17](1143 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 00:36](1135 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [03:42, 00:51](1143 MB)
+PASS -- TEST 'rap_flake_debug_intel' [03:31, 00:38](1142 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:22, 01:54](1151 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:16, 02:59] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [54:24, 00:51](375 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:07] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:49, 00:41](1016 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:08, 01:30](853 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:59, 01:30](849 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:13, 01:24](911 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:26, 02:10](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:16, 01:11](850 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [51:54, 01:00](751 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:24, 00:58](732 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 10:14] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [59:39, 01:14](1060 MB)
+PASS -- TEST 'conus13km_2threads_intel' [54:52, 00:59](1040 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [54:42, 00:37](939 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:59, 08:17] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:07, 00:38](873 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 02:57] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:27, 00:31](1020 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:36](1024 MB)
+PASS -- TEST 'conus13km_debug_intel' [59:11, 01:16](1113 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [58:51, 01:08](789 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 01:01](1090 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:25, 00:18](1181 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 02:55] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:23, 00:48](1047 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:29, 09:11] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [58:23, 02:02](677 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:13, 01:05](1027 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:07, 01:54](708 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [56:59, 01:47](764 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:21, 02:01](772 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:52, 00:57](437 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:16, 02:10](465 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [54:04, 01:10](339 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:07, 02:23](405 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:45, 01:29](476 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:38, 01:28](476 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:15, 00:43](542 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:03, 00:54](370 MB)
+PASS -- TEST 'gnv1_nested_intel' [51:59, 00:54](731 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:21, 03:14] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [49:01, 00:47](576 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [48:37, 00:46](584 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:52, 01:09](753 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 09:21] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [47:43, 00:51](755 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:24, 08:53] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [44:41, 01:39](715 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:13, 02:06](699 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [41:57, 01:08](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:23, 07:32]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [41:19, 00:42](764 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:58, 00:46](751 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:35, 00:42](643 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:52, 00:49](643 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [36:33, 00:29](644 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:31, 00:47](763 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [36:26, 00:50](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [36:15, 00:11](642 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [34:55, 01:06](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:50, 00:37](632 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:37, 00:51](763 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:32, 00:13](2019 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [31:53, 00:41](2016 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 08:38]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:36, 00:44](762 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [39:54, 00:53] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:38, 01:04](276 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:29, 00:59](410 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [27:02, 00:44](410 MB)
+
+PASS -- COMPILE 'atml_intel' [50:05, 09:44] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:42, 01:23](1610 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [29:07, 01:51](1605 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:44, 00:27](806 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [40:58, 03:36] ( 881 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:36, 01:32](1635 MB)
+
+PASS -- COMPILE 'atmw_intel' [46:00, 08:45] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:26, 00:59](1609 MB)
+
+PASS -- COMPILE 'atmaero_intel' [47:05, 08:30] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [28:09, 00:48](2922 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [27:04, 01:15](2975 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:02, 01:36](2987 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [40:58, 03:01] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 00:44](4512 MB)
SYNOPSIS:
-Starting Date/Time: 20240509 10:57:51
-Ending Date/Time: 20240509 12:51:12
-Total Time: 01h:53m:37s
-Compiles Completed: 36/36
-Tests Completed: 176/176
+Starting Date/Time: 20240514 18:58:41
+Ending Date/Time: 20240514 20:59:35
+Total Time: 02h:01m:11s
+Compiles Completed: 37/37
+Tests Completed: 175/177
+Failed Tests:
+* TEST cpld_warmstart_c48_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/XiaqiongZhou-NOAA/ufs-weather-model/tests/logs/log_acorn/run_cpld_warmstart_c48_intel.log
+* TEST cpld_restart_c48_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ACORN REGRESSION TESTING LOG====
+====START OF ACORN REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_195507
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-b) - NEW BASELINES FROM FILE: test_changes.list
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 's2s_intel' [09:22, 09:02] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_warmstart_c48_intel' [10:31, 01:25](1487 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [07:35, 01:10](2132 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240515 15:39:57
+Ending Date/Time: 20240515 15:56:26
+Total Time: 00h:16m:39s
+Compiles Completed: 1/1
+Tests Completed: 2/2
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index aca7db6a29..f5ed43ee9f 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,18 +1,18 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,288 +36,286 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_111254
+COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_19059
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:25, 20:12] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:45, 04:54](3072 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:25, 21:20] ( 6 warnings 10 remarks )
-FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:05, 15:44](1659 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:05] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [23:45, 21:23](1693 MB)
-
-PASS -- COMPILE 's2swa_intel' [20:23, 19:56] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:02, 05:35](3090 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:19, 05:35](3092 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:22, 03:16](3154 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:02, 05:33](3125 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:23, 03:16](3181 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 05:32](3094 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:58, 04:33](3399 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:16, 05:34](3102 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:21, 08:52](3634 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 05:59](3611 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:40, 09:46](4341 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [30:57, 07:08](4650 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [08:44, 05:17](3068 MB)
-
-PASS -- COMPILE 's2sw_intel' [20:25, 19:20] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:12](1680 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 04:13](1729 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [10:21, 09:46] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [09:53, 07:41](3155 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [10:22, 09:17] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:32, 05:14](1706 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [15:22, 14:30] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:34, 04:19](1727 MB)
-
-PASS -- COMPILE 's2s_intel' [15:22, 14:44] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:19, 06:34](2668 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:00](2684 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:10](2123 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:26, 23:19] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:55, 05:28](3103 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [21:15, 20:13] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:51, 13:59](1703 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:01, 07:16](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:50, 16:01](1675 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:13, 09:16] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 22:56](1717 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:19, 12:56] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:38, 03:24](669 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:31, 02:24](1573 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:50, 02:29](1575 MB)
-PASS -- TEST 'control_latlon_intel' [04:28, 02:23](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:34, 02:26](1568 MB)
-PASS -- TEST 'control_c48_intel' [08:34, 06:12](1621 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:14](737 MB)
-PASS -- TEST 'control_c192_intel' [11:08, 08:38](1692 MB)
-PASS -- TEST 'control_c384_intel' [16:46, 08:56](2003 MB)
-PASS -- TEST 'control_c384gdas_intel' [17:34, 07:18](1204 MB)
-PASS -- TEST 'control_stochy_intel' [02:37, 01:24](625 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:51](441 MB)
-PASS -- TEST 'control_lndp_intel' [02:46, 01:21](627 MB)
-PASS -- TEST 'control_iovr4_intel' [03:51, 02:04](622 MB)
-PASS -- TEST 'control_iovr5_intel' [03:44, 02:05](623 MB)
-PASS -- TEST 'control_p8_intel' [04:47, 02:29](1595 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:40, 02:27](1594 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:27](1605 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:32, 01:25](802 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:29](1596 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:23](808 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:34](1598 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:22, 04:20](1596 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:42, 03:17](1654 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:29, 02:31](1614 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:41, 02:47](1611 MB)
-PASS -- TEST 'regional_control_intel' [06:12, 04:28](628 MB)
-PASS -- TEST 'regional_restart_intel' [04:03, 02:31](807 MB)
-PASS -- TEST 'regional_decomp_intel' [06:09, 04:43](628 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:06, 04:25](1165 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:06, 04:29](624 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:02, 04:31](628 MB)
-PASS -- TEST 'regional_wofs_intel' [07:07, 05:40](1606 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:14, 11:27] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:28, 06:08](1009 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:38, 03:41](1204 MB)
-PASS -- TEST 'rap_decomp_intel' [08:28, 06:22](1004 MB)
-PASS -- TEST 'rap_restart_intel' [05:20, 03:13](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:28, 06:04](1005 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 06:23](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:15, 04:35](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:06, 03:14](999 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:06, 03:18](1002 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:47](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:44, 01:45](832 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:29, 05:57](1002 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:56, 07:22](1961 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:59, 07:08](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:14, 10:21] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:53, 05:49](695 MB)
-PASS -- TEST 'control_ras_intel' [04:25, 02:53](656 MB)
-
-PASS -- COMPILE 'wam_intel' [10:13, 09:40] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:24, 01:54](383 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:14, 12:39] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:37, 02:25](1599 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:06, 04:16](625 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:20, 08:50] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:10, 02:34](1601 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:15, 02:28](1598 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:42, 02:54](800 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:34, 02:35](801 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:14, 03:59](838 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:43, 02:36](811 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:28, 02:36](1653 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:05, 02:36](1629 MB)
-PASS -- TEST 'regional_debug_intel' [18:01, 16:42](663 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:33, 04:43](1180 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:38](1177 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:40](1178 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_c3_debug_intel' [, ]( MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:37, 04:40](1180 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:12, 04:50](1266 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:39, 04:49](1187 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:40, 04:39](1183 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 04:40](1180 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:41, 04:33](1179 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:37, 04:38](1184 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:26, 07:37](1181 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:43, 04:34](1173 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:37, 05:34](1182 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:38, 04:37](1183 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:12, 07:54](1184 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [06:12, 05:34] ( 860 warnings )
-FAILED: RUN DID NOT COMPLETE -- TEST 'control_wam_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 09:58] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:48, 03:31](1058 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:06](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:04, 02:45](881 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:14, 02:54](886 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:52](798 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:31](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:13, 12:00] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:17, 01:51](1084 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1084 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [03:37, 01:09](976 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:19, 09:48] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:38](909 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:12, 05:53] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:42, 04:38](1058 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:21](1055 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:29, 13:24](1136 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:30, 13:28](820 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 13:27](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 05:36] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:44, 04:41](1088 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:15, 16:14] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:32, 04:33](716 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 05:03](1070 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:24](778 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 10:54](802 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:44, 11:59](816 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 04:40](478 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 05:49](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:05, 02:21](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:50, 06:13](459 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:08, 03:20](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:25, 03:05](511 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:32, 03:47](590 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:13](428 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:12, 03:23](791 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:19, 07:27] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:10, 12:00](617 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [20:22, 19:46] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:20, 07:05](638 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:50, 07:08](693 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 16:58] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:34, 05:26](677 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:13, 14:19] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:37, 05:36](757 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:28, 05:36](740 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:23, 16:15](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [09:18, 07:58] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:29](749 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:33](751 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:21](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:25](639 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [09:24, 02:23](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:39, 02:31](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:25, 02:31](750 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:30, 02:21](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:32, 05:41](694 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:40, 05:40](673 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:23, 02:28](758 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:25, 03:55](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [08:31, 03:56](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:17, 05:07] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:27, 05:02](747 MB)
-
-FAILED: UNABLE TO COMPILE -- COMPILE 'datm_cdeps_faster_intel' [, ]
-FAILED: UNABLE TO START RUN -- TEST 'datm_cdeps_control_cfsr_faster_intel' [, ]( MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:26] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:35, 01:09](304 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:04](453 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:42](452 MB)
-
-PASS -- COMPILE 'atml_intel' [14:22, 13:05] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 05:49](1633 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:32, 05:44](1634 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:06, 03:15](853 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [08:17, 07:47] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:26, 05:29](1658 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:20, 12:57] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:13, 01:32](1637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:20, 11:28] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:40, 03:37](2948 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:36, 04:14](3002 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:09, 04:21](3012 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:33] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [25:19, 21:58](4531 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:22, 20:44] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 04:55](3074 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:24, 22:12] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:42](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:08](1829 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:45, 07:18](961 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 15:44](1660 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:24, 21:21] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [17:07, 13:36](1692 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:35] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 21:20](1693 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:23, 20:49] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:20, 05:41](3093 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:38](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:18, 03:23](3149 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 05:37](3123 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:21](3179 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 05:15](3679 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [10:16, 05:33](3089 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 04:36](3395 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:44, 05:35](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:33, 08:51](3636 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [15:32, 06:03](3618 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [32:06, 09:55](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:55, 07:49](4649 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 05:16](3063 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:23, 20:13] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:57, 04:11](1683 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 04:13](1736 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [11:20, 10:37] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:27, 07:37](3154 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [11:20, 10:07] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:55, 05:13](1710 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:21, 15:45] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:16](1729 MB)
+
+PASS -- COMPILE 's2s_intel' [17:23, 16:14] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:12, 06:34](2666 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:14, 01:59](2689 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:09](2127 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:09] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:45, 05:29](3101 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:21, 19:31] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:54, 14:06](1699 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:26](1017 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:06](1667 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:18, 08:43] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:00, 23:10](1716 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:30] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:44, 03:24](672 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:25](1570 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:29](1570 MB)
+PASS -- TEST 'control_latlon_intel' [04:16, 02:24](1574 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:26](1565 MB)
+PASS -- TEST 'control_c48_intel' [08:12, 06:15](1616 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:17](738 MB)
+PASS -- TEST 'control_c192_intel' [11:11, 08:43](1690 MB)
+PASS -- TEST 'control_c384_intel' [16:39, 09:07](2006 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:49, 07:24](1198 MB)
+PASS -- TEST 'control_stochy_intel' [02:49, 01:26](630 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:00](440 MB)
+PASS -- TEST 'control_lndp_intel' [02:49, 01:22](625 MB)
+PASS -- TEST 'control_iovr4_intel' [04:47, 02:11](624 MB)
+PASS -- TEST 'control_iovr5_intel' [03:38, 02:06](626 MB)
+PASS -- TEST 'control_p8_intel' [04:52, 02:30](1606 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:29](1598 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:45, 02:30](1601 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:40, 01:27](804 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:28](1587 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](806 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:34](1590 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:02, 02:19](1686 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:03, 04:22](1604 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:20](1662 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:32](1604 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:02, 02:50](1607 MB)
+PASS -- TEST 'regional_control_intel' [06:29, 04:32](633 MB)
+PASS -- TEST 'regional_restart_intel' [04:22, 02:33](799 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'regional_decomp_intel' [, ]( MB)
+PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1157 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:31](630 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:31](628 MB)
+PASS -- TEST 'regional_wofs_intel' [07:14, 05:41](1604 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:14, 11:14] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:49, 06:09](1010 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 03:45](1207 MB)
+PASS -- TEST 'rap_decomp_intel' [08:49, 06:19](1008 MB)
+PASS -- TEST 'rap_2threads_intel' [07:33, 05:39](1096 MB)
+PASS -- TEST 'rap_restart_intel' [05:20, 03:12](882 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:08](1006 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:22](1008 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:34](881 MB)
+PASS -- TEST 'hrrr_control_intel' [05:22, 03:13](998 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:18](1000 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_intel' [, ]( MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:52, 01:46](834 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:56, 05:59](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:06, 07:22](1958 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 07:08](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:20, 10:14] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:20, 05:51](695 MB)
+PASS -- TEST 'control_ras_intel' [04:38, 02:54](659 MB)
+
+PASS -- COMPILE 'wam_intel' [13:14, 09:35] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:31, 01:56](383 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:15, 12:38] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:47, 02:24](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:08, 04:19](625 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 08:32] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:29](1595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:26](1602 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](800 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:36](796 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:01](840 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:40, 02:42](811 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:47, 02:35](1667 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:16, 02:36](1633 MB)
+PASS -- TEST 'regional_debug_intel' [18:11, 15:56](662 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'rap_control_debug_intel' [, ]( MB)
+PASS -- TEST 'hrrr_control_debug_intel' [05:52, 04:31](1179 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [05:46, 04:39](1182 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:38](1183 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:46, 04:36](1181 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:49, 04:52](1267 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:45](1182 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:57](1186 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:55](1184 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:37](1181 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:31](1182 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:42](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:36](1179 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:33](1178 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 05:37](1185 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:48, 04:41](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:26, 08:02](1187 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [08:13, 05:18] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:35, 04:35](424 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:41] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:29, 03:46](1055 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:20, 05:13](884 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:46](882 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 04:46](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:28](943 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 02:55](884 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:22, 03:58](797 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:34](777 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:39] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:44, 01:54](1082 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:13, 01:03](1086 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:08, 01:12](979 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:14, 09:42] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:38](910 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:47] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:34](1063 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:31](1059 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:20, 13:15](1135 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:14, 13:29](821 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 07:52](1135 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:22](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:37] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 04:47](1084 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:20, 16:05] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:38](717 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:17](1072 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:04, 06:33](782 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:58, 10:57](804 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 12:11](809 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](475 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:01](494 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:36](392 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 06:38](462 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 03:29](512 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:11](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:33, 04:11](590 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:27](429 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:35, 03:32](787 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:12, 07:17] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:06](621 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:22, 19:58] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:39, 07:13](635 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:19, 07:24](695 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:38] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 05:25](677 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:16, 14:36] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:37](752 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:35, 05:48](740 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:19, 16:14](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:37](761 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:33](749 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](638 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:31](640 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:46, 02:34](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:30](760 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:42, 05:53](694 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:18, 05:46](672 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:29](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:03, 03:59](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 04:01](2017 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:00] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:05](744 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:40] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 02:29](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:27](314 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:20](452 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:46](451 MB)
+
+PASS -- COMPILE 'atml_intel' [14:21, 13:26] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:53, 07:38](1634 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [09:54, 07:32](1638 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:31](853 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [09:17, 08:04] ( 885 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:16, 05:35](1668 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:19, 13:04] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 01:35](1637 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 11:21] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:03, 03:38](2949 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](2998 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:21](3020 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:41] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:09](4519 MB)
SYNOPSIS:
-Starting Date/Time: 20240512 06:19:01
-Ending Date/Time: 20240512 07:51:11
-Total Time: 01h:33m:10s
-Compiles Completed: 37/38
-Tests Completed: 168/175
-Failed Compiles:
-* COMPILE datm_cdeps_faster_intel: FAILED: UNABLE TO COMPILE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/compile_datm_cdeps_faster_intel.log
+Starting Date/Time: 20240514 11:25:11
+Ending Date/Time: 20240514 13:04:32
+Total Time: 01h:40m:23s
+Compiles Completed: 39/39
+Tests Completed: 179/182
Failed Tests:
-* TEST cpld_control_gfsv17_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_cpld_control_gfsv17_intel.log
-* TEST cpld_control_gfsv17_iau_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST cpld_restart_gfsv17_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST hrrr_c3_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_hrrr_c3_debug_intel.log
-* TEST rap_cires_ugwp_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_rap_cires_ugwp_debug_intel.log
-* TEST control_wam_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2259/tests/logs/log_derecho/run_control_wam_debug_intel.log
-* TEST datm_cdeps_control_cfsr_faster_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
+* TEST regional_decomp_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_regional_decomp_intel.log
+* TEST hrrr_control_2threads_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_hrrr_control_2threads_intel.log
+* TEST rap_control_debug_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_rap_control_debug_intel.log
NOTES:
A file 'test_changes.list' was generated with list of all failed tests.
@@ -330,18 +328,18 @@ Result: FAILURE
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-575b7c28583dac4700e80788b5d7c8e9a12ee4df
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -350,7 +348,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -365,32 +363,27 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6102
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14710
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 'wam_debug_intel' [06:18, 05:28] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:23, 04:42](419 MB)
-PASS -- COMPILE 'atm_debug_dyn32_intel' [09:19, 08:34] ( 890 warnings 9 remarks )
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:24, 04:50](1183 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:39](1181 MB)
+PASS -- COMPILE 'atm_dyn32_intel' [14:17, 13:23] ( 6 warnings 1 remarks )
+PASS -- TEST 'regional_decomp_intel' [07:06, 04:49](632 MB)
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:22, 20:43] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:01, 13:47](1684 MB)
+PASS -- COMPILE 'rrfs_intel' [13:21, 11:55] ( 8 warnings 9 remarks )
+PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:50](1092 MB)
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:01] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:29](747 MB)
+PASS -- COMPILE 'atm_debug_dyn32_intel' [10:21, 09:17] ( 890 warnings 9 remarks )
+PASS -- TEST 'rap_control_debug_intel' [06:31, 04:45](1182 MB)
SYNOPSIS:
-Starting Date/Time: 20240512 15:55:41
-Ending Date/Time: 20240512 16:35:33
-Total Time: 00h:40m:03s
-Compiles Completed: 4/4
-Tests Completed: 5/5
+Starting Date/Time: 20240514 13:31:19
+Ending Date/Time: 20240514 14:28:08
+Total Time: 00h:57m:05s
+Compiles Completed: 3/3
+Tests Completed: 3/3
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 272aea4007..31eec5fdb0 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,18 +1,18 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6a75664fc408bfd7a64311ae178ffeb12ffe7b77
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,277 +36,280 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_169283
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_222558
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [23:13, 22:29] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:01, 07:52](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 23:06] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [31:42, 13:28](1695 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:09, 14:43](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [24:32, 07:18](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:55, 15:47](1669 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:11, 12:29] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [29:57, 23:35](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:11, 17:56] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [12:01, 08:31](3098 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 08:27](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [24:07, 05:03](3154 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:00, 08:35](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [24:09, 05:06](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:16, 07:03](3411 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:47, 08:25](3096 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:05, 07:33](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:15, 08:34](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:10, 10:33](3263 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:19](3601 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [41:06, 13:39](4037 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [27:22, 09:11](4342 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:53, 08:18](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:11, 16:22] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:45, 04:55](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:16](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:49] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [16:29, 10:25](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:24] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:36, 05:54](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:57] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 05:13](1730 MB)
-
-PASS -- COMPILE 's2s_intel' [16:11, 15:56] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:54](2657 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 02:02](2682 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [06:07, 01:05](2112 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [23:13, 22:28] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [21:22, 08:22](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [23:11, 22:23] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:59, 15:00](1701 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:47, 07:41](998 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:09, 17:19](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 12:53] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:40, 27:39](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:50] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [19:05, 04:02](670 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [23:09, 03:28](1566 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:12, 03:30](1579 MB)
-PASS -- TEST 'control_latlon_intel' [21:54, 03:15](1568 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [22:03, 03:25](1567 MB)
-PASS -- TEST 'control_c48_intel' [25:16, 06:43](1601 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [25:07, 05:39](721 MB)
-PASS -- TEST 'control_c192_intel' [27:54, 10:01](1692 MB)
-PASS -- TEST 'control_c384_intel' [36:00, 18:19](1986 MB)
-PASS -- TEST 'control_c384gdas_intel' [33:58, 14:14](1180 MB)
-PASS -- TEST 'control_stochy_intel' [17:01, 02:12](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:54, 01:00](430 MB)
-PASS -- TEST 'control_lndp_intel' [17:01, 02:12](628 MB)
-PASS -- TEST 'control_iovr4_intel' [18:20, 02:57](623 MB)
-PASS -- TEST 'control_iovr5_intel' [18:20, 02:57](623 MB)
-PASS -- TEST 'control_p8_intel' [24:19, 03:24](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [23:52, 03:50](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [22:49, 03:41](1607 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:55, 02:03](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [22:34, 03:31](1594 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:48, 02:10](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [21:55, 03:19](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [20:38, 02:40](1687 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:54, 05:15](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:23, 04:08](1656 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:21, 03:20](1613 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:20, 03:36](1610 MB)
-PASS -- TEST 'regional_control_intel' [06:05, 04:46](617 MB)
-PASS -- TEST 'regional_restart_intel' [04:20, 02:51](786 MB)
-PASS -- TEST 'regional_decomp_intel' [06:10, 04:55](617 MB)
-PASS -- TEST 'regional_2threads_intel' [05:11, 03:02](767 MB)
-PASS -- TEST 'regional_noquilt_intel' [07:54, 04:39](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:47, 04:58](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 04:43](617 MB)
-PASS -- TEST 'regional_wofs_intel' [07:35, 06:04](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [14:11, 13:38] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [10:00, 06:57](1012 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 04:01](1186 MB)
-PASS -- TEST 'rap_decomp_intel' [09:54, 07:06](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [09:23, 06:06](1100 MB)
-PASS -- TEST 'rap_restart_intel' [16:09, 03:59](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:12, 06:55](1009 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 07:24](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [20:25, 05:05](882 MB)
-PASS -- TEST 'hrrr_control_intel' [06:27, 04:11](1007 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:55, 03:54](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 03:15](1080 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [15:46, 02:17](839 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:42, 06:54](1004 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:46, 08:14](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:38, 08:10](1948 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:13, 12:55] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:52, 06:38](696 MB)
-PASS -- TEST 'control_ras_intel' [18:48, 03:50](656 MB)
-
-PASS -- COMPILE 'wam_intel' [12:13, 12:02]
-PASS -- TEST 'control_wam_intel' [18:57, 02:27](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:22] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [19:47, 03:45](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:14, 04:30](617 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:38] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:23, 02:59](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:20, 03:00](1587 MB)
-PASS -- TEST 'control_stochy_debug_intel' [17:49, 03:13](782 MB)
-PASS -- TEST 'control_lndp_debug_intel' [17:48, 02:53](784 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [19:17, 04:16](825 MB)
-PASS -- TEST 'control_ras_debug_intel' [16:43, 02:52](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [16:55, 03:03](1643 MB)
-PASS -- TEST 'control_debug_p8_intel' [17:01, 03:31](1619 MB)
-PASS -- TEST 'regional_debug_intel' [24:59, 16:14](635 MB)
-PASS -- TEST 'rap_control_debug_intel' [16:39, 05:06](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [16:40, 04:53](1167 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [16:42, 04:56](1173 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [16:42, 05:06](1173 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [19:14, 05:07](1168 MB)
-PASS -- TEST 'rap_diag_debug_intel' [18:44, 05:18](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:38, 05:10](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:32, 05:20](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:15](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:06](1169 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:35, 05:06](1168 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:42, 05:00](1167 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:30, 08:05](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [07:33, 05:11](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:55](1170 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:32, 05:05](1169 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:23](1169 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [09:11, 09:02] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:29, 05:08](398 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:46] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:19, 04:02](1048 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:07, 05:54](890 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:10, 03:51](887 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:01, 05:07](948 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 02:43](934 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:02, 03:34](885 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:03, 04:15](786 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:33, 01:40](768 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:30] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:04, 02:20](1092 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:53, 01:03](1076 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:42](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:15, 13:58] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:04, 04:18](904 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:50] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 05:39](1050 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:32, 05:28](1049 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:00, 14:25](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [14:58, 14:01](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:47, 08:11](1112 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:48, 14:11](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 08:40] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 04:54](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:14, 16:42] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:17](706 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 04:30](1053 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:41, 07:36](744 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:20, 11:42](791 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:32, 12:52](801 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:55, 05:28](479 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:37, 06:45](500 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:21, 02:57](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:25, 08:05](434 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:04, 03:50](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:09, 03:36](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:12, 04:40](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:39, 01:51](401 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:34, 04:08](766 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [11:12, 10:34] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:56](581 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [19:15, 19:08] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:20, 07:44](616 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:22, 07:50](788 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:54] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 06:03](787 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [17:11, 17:00] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:28, 06:12](744 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:13](731 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:17, 20:05](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [12:15, 11:38] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:38](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:30, 02:15](748 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:59, 02:28](639 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:29](638 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:27, 02:29](639 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:28, 02:37](762 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:36](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:24](637 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:09, 06:04](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:28](677 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:35](748 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:36](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 04:35](2021 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 08:34] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:36, 05:23](731 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [12:15, 11:38] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:31, 02:36](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:50] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:57, 01:55](311 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:56, 01:35](457 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:01, 01:06](456 MB)
-
-PASS -- COMPILE 'atml_intel' [20:11, 19:56] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:51, 06:56](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:37, 06:53](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 03:56](836 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [13:12, 12:57] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:42, 06:14](1651 MB)
-
-PASS -- COMPILE 'atmw_intel' [18:11, 17:49] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:14](1649 MB)
-
-PASS -- COMPILE 'atmaero_intel' [20:12, 19:44] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [09:30, 06:17](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 06:32](3012 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:30, 06:25](3019 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [16:11, 15:44] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [20:49, 18:23](4449 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:33] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:46, 08:08](3070 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 24:37] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [16:33, 14:04](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:09, 14:05](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:48](945 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:28, 15:00](1670 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:14, 26:04] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [15:55, 14:14](1688 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:41] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:57](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:15, 20:43] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [11:58, 08:58](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:07, 08:49](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:00, 05:50](3154 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:50, 09:11](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:32](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 07:47](3412 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:45](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [10:43, 08:05](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:07, 08:53](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 11:35](3266 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 07:36](3605 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [21:36, 13:45](4037 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 09:43](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:43](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:11, 18:53] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:05, 05:35](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:39](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:14, 14:25] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:57, 10:40](3131 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:13, 13:33] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:16, 06:12](1697 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:24] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:35](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [17:11, 16:58] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:29, 06:59](2657 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:04](2681 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:12](2112 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:37] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [11:10, 08:21](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:44] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:06, 15:38](1699 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:25](998 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:59, 17:30](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 15:02] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:14](1714 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:17] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [06:05, 04:06](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [07:30, 03:05](1566 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:27, 03:10](1579 MB)
+PASS -- TEST 'control_latlon_intel' [07:17, 03:03](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:33, 03:42](1567 MB)
+PASS -- TEST 'control_c48_intel' [12:12, 06:52](1604 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [08:57, 05:42](723 MB)
+PASS -- TEST 'control_c192_intel' [14:10, 10:10](1684 MB)
+PASS -- TEST 'control_c384_intel' [22:40, 18:28](1986 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:01, 14:24](1183 MB)
+PASS -- TEST 'control_stochy_intel' [04:17, 02:03](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:38, 01:09](430 MB)
+PASS -- TEST 'control_lndp_intel' [04:17, 01:58](628 MB)
+PASS -- TEST 'control_iovr4_intel' [05:19, 02:45](623 MB)
+PASS -- TEST 'control_iovr5_intel' [05:19, 02:39](623 MB)
+PASS -- TEST 'control_p8_intel' [08:46, 03:57](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [09:06, 04:01](1607 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [08:55, 03:52](1607 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:38, 02:06](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [08:46, 03:50](1594 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 02:03](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:41, 03:26](1595 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:44, 02:46](1684 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:29](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:46, 04:18](1656 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:37](1613 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1610 MB)
+PASS -- TEST 'regional_control_intel' [06:00, 04:46](617 MB)
+PASS -- TEST 'regional_restart_intel' [03:44, 02:36](787 MB)
+PASS -- TEST 'regional_decomp_intel' [05:50, 04:54](617 MB)
+PASS -- TEST 'regional_2threads_intel' [04:24, 03:02](757 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:58, 04:37](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:39](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 04:37](617 MB)
+PASS -- TEST 'regional_wofs_intel' [08:03, 06:14](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [16:12, 15:22] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:22, 06:53](1012 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:25, 04:06](1190 MB)
+PASS -- TEST 'rap_decomp_intel' [09:27, 07:14](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [08:31, 06:11](1097 MB)
+PASS -- TEST 'rap_restart_intel' [06:31, 03:56](883 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:27, 06:45](1009 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:21](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 04:56](882 MB)
+PASS -- TEST 'hrrr_control_intel' [05:15, 03:55](1007 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:16](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1087 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:52, 02:24](839 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:52](1004 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:44, 08:35](1968 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 08:02](1951 MB)
+
+PASS -- COMPILE 'csawmg_intel' [15:15, 14:59] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:46, 06:36](696 MB)
+PASS -- TEST 'control_ras_intel' [04:39, 03:36](656 MB)
+
+PASS -- COMPILE 'wam_intel' [16:13, 15:32]
+PASS -- TEST 'control_wam_intel' [03:32, 02:22](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 18:42] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:46, 03:49](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:48, 05:01](617 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [14:17, 13:39] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 03:09](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:21](1588 MB)
+PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:33](782 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:56](784 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:33](827 MB)
+PASS -- TEST 'control_ras_debug_intel' [05:06, 03:07](794 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:08, 03:16](1643 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:56, 03:25](1619 MB)
+PASS -- TEST 'regional_debug_intel' [18:01, 16:43](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:43, 05:35](1169 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:39, 05:20](1167 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:35](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [06:43, 05:26](1173 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:48](1169 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:51](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:46, 05:46](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 05:21](1169 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:53](1170 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:37](1169 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:44, 05:35](1169 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 05:46](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:36, 08:27](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 05:19](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [08:43, 06:25](1171 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:15](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:33](1170 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [12:11, 11:17] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:37, 04:59](398 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 13:54] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:17, 03:53](1050 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:10](891 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:07, 03:41](887 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:12, 05:21](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:26, 02:51](938 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:33](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 04:27](785 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:50, 01:41](769 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 16:30] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:19, 02:11](1092 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:12](1077 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:33](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:15, 15:15] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:25](905 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:12, 11:48] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 05:04](1050 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1049 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:44, 14:08](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 13:48](804 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:01, 08:26](1110 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:13](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:36] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 05:04](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:15, 19:52] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:22](708 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:38, 04:39](1054 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:39, 07:48](740 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:19, 11:40](790 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:02, 13:04](800 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:23](476 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 07:11](501 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:03](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:04](443 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:42](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:22, 03:41](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:48](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:49, 01:46](403 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:39, 04:09](771 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [14:13, 13:43] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:49](584 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [22:12, 21:37] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 07:53](613 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:56](792 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 20:03] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:36, 06:10](788 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:11, 18:25] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:14](744 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:32](733 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 20:04](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:28] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:42](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:40](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:37](637 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:31](641 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:27](647 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:35](747 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:35](746 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:34](639 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:21](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:37, 06:05](678 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:35](759 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:36](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:04, 04:36](2018 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:06] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:30](746 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:38] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:34](759 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 05:37] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:11, 02:16](318 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:53](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 02:29](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:15, 16:52] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 08:38](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [11:25, 08:35](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 04:52](837 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [13:14, 13:02] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:49](1651 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:11, 14:59] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:38](1650 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:14, 13:44] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [09:51, 07:06](2947 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:55, 07:44](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:19](3017 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:30] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [23:12, 19:08](4481 MB)
SYNOPSIS:
-Starting Date/Time: 20240510 13:48:51
-Ending Date/Time: 20240510 15:46:52
-Total Time: 01h:59m:09s
-Compiles Completed: 38/38
-Tests Completed: 182/182
+Starting Date/Time: 20240514 13:04:47
+Ending Date/Time: 20240514 14:41:21
+Total Time: 01h:38m:16s
+Compiles Completed: 39/39
+Tests Completed: 183/183
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index bf40591ff6..47aa4b7561 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,18 +1,18 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6a75664fc408bfd7a64311ae178ffeb12ffe7b77
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -25,369 +25,372 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2863157
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_299275
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:14, 12:46] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:28, 05:44](3166 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 17:06] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:12](1738 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:31, 18:16](2009 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:25, 08:34](1102 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:23, 19:21](1626 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:35] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:48](1659 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:14, 13:02] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:30, 05:57](3195 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:43, 05:51](3192 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [11:25, 03:27](3229 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:30, 06:01](3221 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:30, 03:29](3253 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [07:27, 05:41](3527 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:30, 06:02](3194 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:27, 04:58](3051 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:59](3185 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [13:24, 10:13](3323 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [10:48, 06:26](3594 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [17:43, 09:45](4103 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:31, 06:52](4340 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:27, 05:29](3157 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:15, 12:37] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:52](1721 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:26](1769 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:12, 04:31] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:33](3200 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:25] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:12, 05:50](1708 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:15, 11:32] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:14, 04:27](1766 MB)
-
-PASS -- COMPILE 's2s_intel' [12:13, 11:38] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [12:50, 09:28](2820 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:53, 02:36](2811 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [02:46, 01:28](2285 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [17:15, 16:46] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:22, 05:27](3201 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:29] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:17, 17:29](1762 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:26, 08:24](1141 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:03](1661 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:27] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 25:03](1694 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:15, 11:18] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:27, 03:24](685 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:54, 02:53](1580 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:56, 02:57](1588 MB)
-PASS -- TEST 'control_latlon_intel' [03:49, 02:53](1578 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:57, 02:57](1573 MB)
-PASS -- TEST 'control_c48_intel' [08:52, 07:36](1735 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:26](855 MB)
-PASS -- TEST 'control_c192_intel' [12:08, 10:43](1728 MB)
-PASS -- TEST 'control_c384_intel' [13:05, 10:40](1999 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:19, 08:08](1384 MB)
-PASS -- TEST 'control_stochy_intel' [02:24, 01:40](641 MB)
-PASS -- TEST 'control_stochy_restart_intel' [07:29, 01:01](481 MB)
-PASS -- TEST 'control_lndp_intel' [02:23, 01:33](648 MB)
-PASS -- TEST 'control_iovr4_intel' [03:26, 02:25](636 MB)
-PASS -- TEST 'control_iovr5_intel' [03:25, 02:25](642 MB)
-PASS -- TEST 'control_p8_intel' [04:02, 03:02](1611 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:01, 02:56](1612 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:54, 02:49](1608 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:49, 01:42](876 MB)
-PASS -- TEST 'control_noqr_p8_intel' [10:01, 02:56](1593 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:04, 01:37](919 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:55, 03:04](1609 MB)
-PASS -- TEST 'control_2threads_p8_intel' [09:54, 02:47](1694 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:50, 05:17](1607 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:58, 04:03](1677 MB)
-PASS -- TEST 'control_p8_mynn_intel' [10:04, 03:05](1609 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:02, 03:20](1614 MB)
-PASS -- TEST 'regional_control_intel' [10:42, 05:19](839 MB)
-PASS -- TEST 'regional_restart_intel' [03:42, 02:45](998 MB)
-PASS -- TEST 'regional_decomp_intel' [10:40, 05:39](826 MB)
-PASS -- TEST 'regional_2threads_intel' [08:39, 03:23](824 MB)
-PASS -- TEST 'regional_noquilt_intel' [09:47, 05:15](1343 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:47, 05:15](831 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 05:17](830 MB)
-PASS -- TEST 'regional_wofs_intel' [11:42, 06:53](1894 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:13, 10:38] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [11:59, 07:48](1091 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:03, 04:11](1279 MB)
-PASS -- TEST 'rap_decomp_intel' [09:48, 08:19](1022 MB)
-PASS -- TEST 'rap_2threads_intel' [08:45, 07:24](1160 MB)
-PASS -- TEST 'rap_restart_intel' [05:58, 04:34](1085 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [09:47, 08:09](1085 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:39](1020 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 06:16](1111 MB)
-PASS -- TEST 'hrrr_control_intel' [04:41, 04:01](1024 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:44, 04:09](1007 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:40](1095 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:28, 02:22](992 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:52, 07:59](1079 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:54](1978 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:38](2048 MB)
-
-PASS -- COMPILE 'csawmg_intel' [13:14, 10:26] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:43, 06:23](744 MB)
-PASS -- TEST 'control_ras_intel' [04:23, 03:14](737 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:14, 03:42]
-PASS -- TEST 'control_csawmg_gnu' [12:59, 08:27](534 MB)
-
-PASS -- COMPILE 'wam_intel' [12:13, 10:08]
-PASS -- TEST 'control_wam_intel' [02:22, 02:04](635 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [13:13, 10:53] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:00, 02:41](1604 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:43, 05:11](828 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [06:13, 04:46] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:50, 02:37](1588 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:49, 02:37](1583 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:07](785 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:50](786 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:13](829 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:26, 03:04](800 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:57, 02:56](1648 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:47, 03:03](1609 MB)
-PASS -- TEST 'regional_debug_intel' [18:48, 17:52](811 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:27, 05:17](1171 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:26, 05:11](1171 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 05:20](1148 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:08](1176 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:06](1166 MB)
-PASS -- TEST 'rap_diag_debug_intel' [10:42, 09:14](1251 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:16](1169 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 05:15](1174 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1173 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:29, 05:05](1171 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:58](1172 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 05:01](1170 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:09](1170 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:05](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:11](1167 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:24, 05:01](1170 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 09:10](1181 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:44]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:22](510 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:12, 03:19] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:23, 05:06](463 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:13, 10:10] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:07, 04:26](1140 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 07:03](1036 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:49](973 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:26](1077 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:17](943 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:42](918 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:41, 04:57](1018 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:16](918 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 12:23] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:07, 02:09](1179 MB)
-PASS -- TEST 'conus13km_2threads_intel' [03:46, 00:57](1097 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:17](1092 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:20] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:17](969 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:29] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:47](1053 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:50](1052 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:49, 15:14](1177 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:34](885 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:20](1101 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 14:41](1244 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:33] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:00](1092 MB)
-
-PASS -- COMPILE 'hafsw_intel' [19:12, 12:26] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:15](729 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:30, 06:23](1106 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:06](814 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 13:41](843 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:46, 15:37](851 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:59, 05:39](483 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:33, 06:57](497 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:50](358 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:47, 07:21](463 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:46](508 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:34](506 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:10](569 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:13](382 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:46, 04:17](781 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:13, 04:03] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:45](534 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [16:13, 12:07] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:47](614 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:14, 08:53](688 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [16:13, 12:22] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:09, 06:26](676 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:14, 11:56] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:33](816 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:36](802 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:55, 16:12](1230 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:13, 06:06]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:42](1154 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:39](1092 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:39](992 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:41](1025 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:19, 02:40](1007 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1139 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:38](1156 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1006 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:55, 06:25](1046 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:37, 06:28](1028 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:47](1145 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:23, 03:56](2372 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:52](2437 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 03:15] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:17](1052 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 06:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:37](1140 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:27] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:44](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:31](318 MB)
-
-PASS -- COMPILE 'atml_intel' [13:15, 12:22] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:26, 04:13](1603 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:14, 04:12](1595 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:56, 02:28](885 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:12, 04:36] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:34](1581 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:14, 11:33] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:46](1653 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:14, 11:32] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:05](3011 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 05:00](3064 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:02](3091 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:52] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [27:13, 24:46](4439 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:11, 04:07]
-PASS -- TEST 'control_c48_gnu' [12:45, 11:13](1532 MB)
-PASS -- TEST 'control_stochy_gnu' [04:25, 03:27](491 MB)
-PASS -- TEST 'control_ras_gnu' [06:24, 04:51](504 MB)
-PASS -- TEST 'control_p8_gnu' [06:03, 04:47](1252 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:43](1252 MB)
-PASS -- TEST 'control_flake_gnu' [11:24, 10:44](534 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:11, 04:26]
-PASS -- TEST 'rap_control_gnu' [11:35, 11:06](845 MB)
-PASS -- TEST 'rap_decomp_gnu' [11:35, 10:53](842 MB)
-PASS -- TEST 'rap_2threads_gnu' [10:37, 09:58](925 MB)
-PASS -- TEST 'rap_restart_gnu' [06:43, 05:36](574 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:40, 11:17](840 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:36, 11:20](847 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:09](577 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:39, 05:46](845 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:53](830 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 06:17](914 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:52](844 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 02:52](560 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:53](655 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:49, 10:58](834 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:11, 04:14]
-PASS -- TEST 'control_diag_debug_gnu' [03:24, 01:39](1265 MB)
-PASS -- TEST 'regional_debug_gnu' [11:44, 10:22](548 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:40](818 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:35](848 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:42](856 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:40](853 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [03:34, 02:54](936 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:20, 04:06](852 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:21, 02:39](849 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:20, 02:47](847 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:42](479 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:55](488 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:58](1241 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:51](850 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:30, 02:51](858 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:37, 04:25](857 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:14]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:49]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:30](698 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:35, 05:04](701 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 09:04](747 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:30, 05:32](745 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:09](698 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:40, 07:01](545 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:25, 02:37](537 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:51, 03:15](870 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [06:44, 05:57](876 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:45, 01:52](558 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:10, 05:48]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:54](730 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:10, 04:02]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 02:30](696 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 02:33](709 MB)
-PASS -- TEST 'conus13km_debug_gnu' [08:50, 07:16](870 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [08:43, 07:06](566 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [08:40, 07:36](880 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:38, 06:55](942 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:10, 03:57]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 02:42](735 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:12, 14:36]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:23]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:31](1342 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:41]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:13, 14:45]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [34:33, 32:41](1312 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:04](1307 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:13]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:20, 03:09](695 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:52] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 05:30](3198 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:17] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1743 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 18:01](2033 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 08:08](1118 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:26](1653 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:49](1753 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:29] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 22:43](1698 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:11, 12:59] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:45](3206 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:48, 05:45](3218 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:33, 03:23](3258 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:33, 05:53](3246 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 03:21](3284 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [08:25, 05:34](3566 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 06:08](3229 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:25, 04:47](3062 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:47](3218 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:14](3358 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:09](3623 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [16:22, 09:36](4123 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:05, 06:06](4362 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:34, 05:25](3181 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:11, 12:19] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:00](1738 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 04:21](1770 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:24] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:06, 08:20](3234 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:15] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 05:45](1746 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:30] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:24](1787 MB)
+
+PASS -- COMPILE 's2s_intel' [12:11, 11:30] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [12:44, 09:23](2834 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:37](2828 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2303 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:25](3207 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:09] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:08](1779 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 08:01](1169 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:32, 19:43](1684 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:15] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 24:39](1726 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:23] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [05:23, 03:21](701 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:54](1573 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:58](1601 MB)
+PASS -- TEST 'control_latlon_intel' [03:42, 02:53](1593 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:54](1599 MB)
+PASS -- TEST 'control_c48_intel' [08:47, 07:36](1762 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:22](866 MB)
+PASS -- TEST 'control_c192_intel' [12:17, 10:27](1746 MB)
+PASS -- TEST 'control_c384_intel' [13:28, 10:26](2009 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:48, 07:59](1412 MB)
+PASS -- TEST 'control_stochy_intel' [02:25, 01:37](658 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:31, 00:57](504 MB)
+PASS -- TEST 'control_lndp_intel' [02:24, 01:32](661 MB)
+PASS -- TEST 'control_iovr4_intel' [03:24, 02:25](656 MB)
+PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](659 MB)
+PASS -- TEST 'control_p8_intel' [03:57, 02:58](1592 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:56](1630 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:49](1629 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:50, 01:36](896 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:58, 02:53](1615 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:36](935 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:54, 03:02](1611 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:56, 02:43](1716 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:54, 05:11](1628 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:53](1698 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:04, 02:56](1635 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:03, 03:13](1647 MB)
+PASS -- TEST 'regional_control_intel' [05:45, 05:09](846 MB)
+PASS -- TEST 'regional_restart_intel' [03:42, 02:41](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [06:40, 05:31](848 MB)
+PASS -- TEST 'regional_2threads_intel' [04:40, 03:13](844 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:40, 05:10](1362 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:21](860 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:09](857 MB)
+PASS -- TEST 'regional_wofs_intel' [07:43, 06:50](1912 MB)
+
+PASS -- COMPILE 'rrfs_intel' [15:11, 10:43] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [08:44, 07:42](1109 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:12](1301 MB)
+PASS -- TEST 'rap_decomp_intel' [08:36, 08:08](1029 MB)
+PASS -- TEST 'rap_2threads_intel' [08:35, 07:13](1183 MB)
+PASS -- TEST 'rap_restart_intel' [06:43, 04:08](1106 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [08:47, 07:42](1110 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:08](1043 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1130 MB)
+PASS -- TEST 'hrrr_control_intel' [05:08, 03:57](1048 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 04:07](1030 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:38](1118 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:09](1004 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:37](1103 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:18](1990 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:02](2063 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:41, 05:59](751 MB)
+PASS -- TEST 'control_ras_intel' [04:26, 03:13](750 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [06:11, 03:36]
+PASS -- TEST 'control_csawmg_gnu' [09:39, 08:18](549 MB)
+
+PASS -- COMPILE 'wam_intel' [13:11, 09:48]
+PASS -- TEST 'control_wam_intel' [02:23, 02:04](656 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 10:50] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:01, 02:38](1628 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](853 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:48] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:35](1611 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:01, 02:39](1615 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:25, 02:59](823 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:39](824 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:11](867 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:26, 02:38](833 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:59, 02:39](1675 MB)
+PASS -- TEST 'control_debug_p8_intel' [06:56, 02:51](1637 MB)
+PASS -- TEST 'regional_debug_intel' [20:55, 16:55](859 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:28, 04:46](1212 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:47](1210 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:51](1205 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 04:51](1217 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 04:57](1210 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:07](1292 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 04:55](1210 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:00](1201 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:01](1211 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:46](1211 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:52](1209 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1209 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 07:49](1206 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 04:56](1206 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:55](1215 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:52](1207 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 08:17](1217 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39]
+PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:11](529 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:14] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:27, 04:56](522 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:09, 03:56](1165 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:45, 06:24](1051 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:23](988 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1099 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:13](961 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:35](925 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:50](1038 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:50](934 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1200 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:52](1121 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:12](1110 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](985 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:22] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:46](1092 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:48](1090 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:56, 14:07](1235 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:40](918 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:08](1155 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:47](1313 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 03:29] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:48](1131 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:13, 11:44] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:58](738 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:31, 05:49](1124 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:51](840 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [18:21, 13:20](861 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:31, 15:03](891 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:59, 05:30](504 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:39](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:40](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:14, 07:09](483 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:39](530 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 03:30](534 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:05](592 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:14](407 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:50, 04:06](807 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:58] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:36](582 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:54] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 08:43](642 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:11, 08:45](747 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:54] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:12, 06:23](709 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [12:11, 11:21] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [11:26, 06:24](832 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:22, 06:32](821 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:04, 15:54](1212 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:11]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1151 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1103 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:39](1021 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1030 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:35](1014 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:39](1145 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:30](1019 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:07](1061 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:20, 06:19](1058 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:40](1149 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:48](2497 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2425 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:17](1094 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:07]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1156 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:06] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:47](325 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:30](320 MB)
+
+PASS -- COMPILE 'atml_intel' [12:12, 11:46] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:05, 04:08](1623 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:10](1619 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:16](901 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:12, 04:21] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:29](1607 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:12, 11:01] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:59, 01:43](1682 MB)
+
+PASS -- COMPILE 'atmaero_intel' [11:12, 10:27] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:03](3043 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:48](3101 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 04:53](3118 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:40] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [43:25, 39:50](4440 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:11, 03:40]
+PASS -- TEST 'control_c48_gnu' [12:46, 11:10](1544 MB)
+PASS -- TEST 'control_stochy_gnu' [04:23, 03:22](506 MB)
+PASS -- TEST 'control_ras_gnu' [05:22, 04:41](514 MB)
+PASS -- TEST 'control_p8_gnu' [06:00, 04:38](1271 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:27](1269 MB)
+PASS -- TEST 'control_flake_gnu' [11:24, 10:38](553 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:11, 03:43]
+PASS -- TEST 'rap_control_gnu' [11:40, 10:42](858 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:38, 10:53](858 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:34, 09:47](944 MB)
+PASS -- TEST 'rap_restart_gnu' [06:45, 05:34](585 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [12:41, 10:55](857 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:35, 11:03](857 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:43, 07:51](587 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:33, 05:34](857 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:34, 05:32](842 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:00](934 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:30](856 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:31, 02:51](570 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](668 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:39](855 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:36]
+PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:36](1286 MB)
+PASS -- TEST 'regional_debug_gnu' [12:42, 10:53](562 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:34](871 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:37](869 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 02:36](877 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:32](876 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:45](962 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 04:02](870 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](871 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](867 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](506 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:44](498 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:35](1255 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:35](871 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](875 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:13](877 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:37]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:36, 09:25](714 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:39, 04:52](713 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:33](759 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:33](756 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:02](716 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](557 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:28](549 MB)
+PASS -- TEST 'conus13km_control_gnu' [04:56, 03:09](886 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [05:44, 05:05](889 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:25]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:50](740 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:38]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:30](721 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:27](720 MB)
+PASS -- TEST 'conus13km_debug_gnu' [08:00, 06:47](898 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 06:52](593 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [09:51, 07:32](899 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 07:06](964 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:39]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:34](743 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:13, 14:32]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:27]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 06:34](1357 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:30]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:14]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 23:58](1321 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:22]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:57, 16:21](1335 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:16]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:03](697 MB)
SYNOPSIS:
-Starting Date/Time: 20240510 17:42:13
-Ending Date/Time: 20240510 20:09:13
-Total Time: 02h:27m:16s
-Compiles Completed: 54/54
-Tests Completed: 242/242
+Starting Date/Time: 20240514 17:03:26
+Ending Date/Time: 20240514 18:48:41
+Total Time: 01h:45m:33s
+Compiles Completed: 55/55
+Tests Completed: 243/243
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 83ccef861e..2bc231638e 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,18 +1,18 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d3)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,364 +36,367 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1888579
+COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1854380
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:10, 13:01] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 07:21](1897 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:40] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:19, 13:22](1774 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:58, 14:02](2177 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:27, 06:33](1179 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:34, 15:11](1699 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:55] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:21, 20:25](1727 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:10, 13:03] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:14, 07:28](2089 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:31](2051 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:36, 04:17](1964 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:14, 07:37](1969 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:36, 04:20](1729 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:15, 09:08](2497 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 07:41](2065 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:23](1899 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:14, 07:39](2075 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 15:38](2803 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:39, 05:44](2919 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [15:35, 08:35](3631 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 05:29](3616 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [06:07, 04:53](2032 MB)
-
-PASS -- COMPILE 's2sw_intel' [12:10, 11:55] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:57, 07:05](1772 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:15, 03:54](1814 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:55] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [08:15, 06:46](2056 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:41] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:49, 04:45](1788 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:47] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:55, 03:57](1831 MB)
-
-PASS -- COMPILE 's2s_intel' [11:10, 10:23] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:10](2834 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:01](2821 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [01:50, 01:02](2304 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:10, 14:40] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 07:25](2053 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:10, 16:08] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:02, 13:50](1798 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:12, 06:47](1304 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:08, 15:17](1746 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:23] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:50, 21:36](1777 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:11] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [03:21, 02:52](714 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:29](1610 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:31](1621 MB)
-PASS -- TEST 'control_latlon_intel' [03:42, 02:30](1610 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 02:29](1614 MB)
-PASS -- TEST 'control_c48_intel' [07:46, 07:01](1752 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:31, 05:44](860 MB)
-PASS -- TEST 'control_c192_intel' [09:53, 09:00](1764 MB)
-PASS -- TEST 'control_c384_intel' [11:44, 09:17](2052 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:17, 07:16](1530 MB)
-PASS -- TEST 'control_stochy_intel' [02:21, 01:25](669 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:39, 00:52](548 MB)
-PASS -- TEST 'control_lndp_intel' [02:21, 01:19](664 MB)
-PASS -- TEST 'control_iovr4_intel' [02:22, 02:03](668 MB)
-PASS -- TEST 'control_iovr5_intel' [02:21, 02:05](663 MB)
-PASS -- TEST 'control_p8_intel' [04:08, 02:31](1643 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:06, 02:29](1646 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:03, 02:25](1639 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:00, 01:27](910 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:01, 02:24](1622 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:11, 01:21](981 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:55, 02:31](1626 MB)
-PASS -- TEST 'control_2threads_p8_intel' [04:01, 02:17](1731 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:44, 04:25](1636 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:06, 03:24](1718 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:02, 02:33](1648 MB)
-PASS -- TEST 'merra2_thompson_intel' [04:07, 02:45](1650 MB)
-PASS -- TEST 'regional_control_intel' [05:32, 04:32](961 MB)
-PASS -- TEST 'regional_restart_intel' [03:32, 02:26](1099 MB)
-PASS -- TEST 'regional_decomp_intel' [05:38, 04:41](946 MB)
-PASS -- TEST 'regional_2threads_intel' [03:38, 02:48](921 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:38, 04:22](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 04:28](958 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:31](957 MB)
-PASS -- TEST 'regional_wofs_intel' [06:35, 05:33](2101 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:10, 07:25] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [07:54, 06:34](1193 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:55, 03:24](1414 MB)
-PASS -- TEST 'rap_decomp_intel' [07:52, 06:51](1160 MB)
-PASS -- TEST 'rap_2threads_intel' [06:55, 06:07](1374 MB)
-PASS -- TEST 'rap_restart_intel' [05:10, 03:23](1136 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:52, 06:31](1201 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:53, 07:02](1151 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:06, 04:56](1199 MB)
-PASS -- TEST 'hrrr_control_intel' [04:55, 03:22](1066 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:57, 03:26](1042 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:58, 03:04](1122 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:38, 01:51](1029 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:19](1193 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:37](2008 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:21](2175 MB)
-
-PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:35, 05:15](822 MB)
-PASS -- TEST 'control_ras_intel' [03:18, 02:48](814 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [04:10, 04:06]
-PASS -- TEST 'control_csawmg_gnu' [07:40, 06:25](811 MB)
-
-PASS -- COMPILE 'wam_intel' [07:10, 06:40]
-PASS -- TEST 'control_wam_intel' [02:25, 01:48](787 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:30] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:04, 02:13](1638 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:34, 04:04](963 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 03:48] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:41, 02:11](1629 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:42, 02:06](1635 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:19, 02:28](832 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:14](832 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:22](876 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:18, 02:16](841 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:40, 02:10](1692 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:41, 02:19](1667 MB)
-PASS -- TEST 'regional_debug_intel' [14:38, 14:01](903 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:22, 03:58](1221 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:22, 03:51](1214 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 03:57](1219 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:22, 03:59](1230 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:27, 04:01](1219 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:45, 04:14](1297 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:08](1215 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:10](1228 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:02](1217 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:00](1232 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:59](1221 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 03:57](1229 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:34](1223 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1212 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:49](1229 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:16, 03:58](1221 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 06:46](1221 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:11]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:35, 01:51](790 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:10, 02:38] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:34] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:56, 03:14](1271 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:45, 05:24](1154 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:00, 02:53](1020 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:40, 05:15](1249 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:04, 02:38](1033 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:01](981 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:57, 04:05](1102 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 01:33](959 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:45] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [02:47, 01:44](1312 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:42, 00:44](1201 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:40, 01:02](1152 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:33] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:37, 03:42](1098 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:21, 03:58](1095 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:22, 03:53](1104 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:42, 11:46](1343 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:42, 11:51](988 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:41, 06:35](1240 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:36, 11:37](1397 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:27] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:24, 04:01](1158 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:10, 09:28] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:24](884 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 05:11](1280 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:19, 06:27](944 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:58](984 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:53](1008 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:53, 05:21](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:55](619 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:41](439 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:13, 07:48](545 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:52](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:46](618 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:47](680 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:24, 01:19](449 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:03] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:50, 11:23](626 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:10, 10:24] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:53, 17:23](748 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:08, 16:49](845 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:09, 10:46](832 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [10:11, 09:34] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:10, 05:19](951 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:11, 05:22](938 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1344 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [06:11, 05:56] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:10](1141 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:17, 01:18](1093 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:15, 02:06](1017 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:08](1016 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1009 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:12](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 02:09](1133 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:04](1012 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:48, 04:56](1143 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1137 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:02](2436 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2391 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:56] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:15](1085 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 06:05] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:08](1144 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:54] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:50](336 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](558 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:31](559 MB)
-
-PASS -- COMPILE 'atml_intel' [08:11, 08:04] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:11, 05:21](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:10, 05:17](1646 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:45](938 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:11, 03:21] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:04, 04:43](1654 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:10, 09:41] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:57, 01:30](1684 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:10, 07:32] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:57, 03:30](1796 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:13](1797 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:17](1817 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:55] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [17:35, 16:00](4573 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:10, 04:57]
-PASS -- TEST 'control_c48_gnu' [10:45, 09:26](1578 MB)
-PASS -- TEST 'control_stochy_gnu' [03:23, 02:17](729 MB)
-PASS -- TEST 'control_ras_gnu' [04:25, 03:42](736 MB)
-PASS -- TEST 'control_p8_gnu' [05:02, 03:31](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:52, 03:24](1516 MB)
-PASS -- TEST 'control_flake_gnu' [05:21, 04:22](803 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [05:10, 04:47]
-PASS -- TEST 'rap_control_gnu' [09:05, 07:34](1083 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:58, 07:44](1084 MB)
-PASS -- TEST 'rap_2threads_gnu' [09:09, 07:12](1147 MB)
-PASS -- TEST 'rap_restart_gnu' [05:14, 03:55](885 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [09:00, 07:34](1088 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:54, 07:42](1086 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:03, 05:38](884 MB)
-PASS -- TEST 'hrrr_control_gnu' [05:02, 03:59](1072 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [04:54, 03:58](1140 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:57, 03:39](1031 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:58, 04:00](1074 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:36, 02:05](881 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:37, 01:59](932 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:56, 07:31](1084 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:13]
-PASS -- TEST 'control_diag_debug_gnu' [02:40, 01:14](1625 MB)
-PASS -- TEST 'regional_debug_gnu' [07:33, 06:16](927 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:18, 01:59](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:21, 01:52](1090 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:54](1097 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:57](1094 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [02:28, 02:01](1270 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:19, 03:03](1097 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 01:58](1101 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:53](1095 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:12](727 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:19, 01:14](722 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:14](1502 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:58](1100 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:10](1104 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:00, 03:14](1100 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [04:10, 03:35]
-PASS -- TEST 'control_wam_debug_gnu' [02:27, 01:56](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:27]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:44, 07:14](961 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:05, 03:46](952 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:54, 06:40](968 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:51, 03:26](875 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:43, 03:45](948 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:03, 05:28](860 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:41, 01:58](857 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:45, 02:28](1267 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:36, 01:01](1174 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:35, 01:24](920 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 14:00]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:32, 04:16](993 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:29]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 01:53](979 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:51](974 MB)
-PASS -- TEST 'conus13km_debug_gnu' [06:37, 05:28](1278 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [06:41, 05:30](951 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:15](1189 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:36, 05:25](1356 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 12:43]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 01:57](1002 MB)
-
-PASS -- COMPILE 's2swa_gnu' [19:10, 18:35]
-
-PASS -- COMPILE 's2s_gnu' [17:10, 17:06]
-
-PASS -- COMPILE 's2swa_debug_gnu' [13:10, 12:53]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [18:10, 17:48]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:11, 12:03]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:56]
+PASS -- COMPILE 's2swa_32bit_intel' [15:10, 15:08] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:40](1887 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 22:09] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:47](1762 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 14:27](2177 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:22, 06:45](1188 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:33](1689 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:14, 28:19] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [14:38, 13:20](1766 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:43] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:18, 20:19](1727 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:10, 12:53] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:45](2149 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:06, 07:37](2051 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:15](1949 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:51, 07:38](1985 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:19](1734 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:49, 08:55](2497 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:29](2076 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 06:25](1902 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:04, 07:36](2093 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:36](2787 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 05:45](2928 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [14:39, 08:29](3634 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 05:26](3620 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:57, 04:56](2034 MB)
+
+PASS -- COMPILE 's2sw_intel' [13:10, 12:35] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 07:05](1777 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:01, 03:59](1835 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [08:11, 06:56](2061 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:22] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:43](1802 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:19] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:00](1827 MB)
+
+PASS -- COMPILE 's2s_intel' [10:10, 09:34] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:13](2825 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:04](2829 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:37, 01:10](2298 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:23] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:14](2063 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 17:17] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:55, 14:18](1811 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:50](1285 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:27](1732 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:13] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:48, 21:35](1775 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [08:11, 08:03] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [03:19, 02:51](718 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 02:27](1610 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:42, 02:32](1617 MB)
+PASS -- TEST 'control_latlon_intel' [03:36, 02:27](1614 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 02:26](1612 MB)
+PASS -- TEST 'control_c48_intel' [07:41, 06:59](1733 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:50](862 MB)
+PASS -- TEST 'control_c192_intel' [09:44, 08:56](1752 MB)
+PASS -- TEST 'control_c384_intel' [10:23, 09:06](2045 MB)
+PASS -- TEST 'control_c384gdas_intel' [08:49, 07:02](1538 MB)
+PASS -- TEST 'control_stochy_intel' [02:19, 01:26](661 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:23, 00:53](538 MB)
+PASS -- TEST 'control_lndp_intel' [02:19, 01:29](673 MB)
+PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](671 MB)
+PASS -- TEST 'control_iovr5_intel' [02:20, 02:04](657 MB)
+PASS -- TEST 'control_p8_intel' [03:57, 02:33](1643 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:51, 02:32](1644 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:26](1636 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:47, 01:26](913 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:28](1632 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:27](991 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:31](1621 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:43, 02:24](1731 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:24](1646 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:29](1714 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:48, 02:29](1659 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1665 MB)
+PASS -- TEST 'regional_control_intel' [05:30, 04:27](960 MB)
+PASS -- TEST 'regional_restart_intel' [03:31, 02:29](1102 MB)
+PASS -- TEST 'regional_decomp_intel' [05:27, 04:43](948 MB)
+PASS -- TEST 'regional_2threads_intel' [03:28, 02:51](914 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:31, 04:20](1488 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:32](957 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:32](954 MB)
+PASS -- TEST 'regional_wofs_intel' [06:26, 05:38](2067 MB)
+
+PASS -- COMPILE 'rrfs_intel' [08:11, 07:36] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [07:40, 06:32](1219 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:25](1447 MB)
+PASS -- TEST 'rap_decomp_intel' [07:33, 06:50](1142 MB)
+PASS -- TEST 'rap_2threads_intel' [06:48, 06:07](1370 MB)
+PASS -- TEST 'rap_restart_intel' [04:51, 03:25](1137 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:43, 06:41](1203 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:52](1166 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 04:54](1186 MB)
+PASS -- TEST 'hrrr_control_intel' [04:35, 03:20](1070 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:31](1043 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:05](1127 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:50](1023 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:50, 06:19](1206 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 07:38](2007 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:42](2186 MB)
+
+PASS -- COMPILE 'csawmg_intel' [08:10, 07:12] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:32, 05:17](805 MB)
+PASS -- TEST 'control_ras_intel' [03:16, 02:51](811 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [05:11, 04:10]
+PASS -- TEST 'control_csawmg_gnu' [07:32, 06:27](808 MB)
+
+PASS -- COMPILE 'wam_intel' [07:11, 07:01]
+PASS -- TEST 'control_wam_intel' [02:23, 01:53](788 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:45] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:50, 02:22](1643 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:25, 04:06](955 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 04:01] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:11](1632 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 02:09](1632 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](832 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:13](832 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:24](883 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](837 MB)
+PASS -- TEST 'control_diag_debug_intel' [03:34, 02:20](1688 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:31, 02:23](1663 MB)
+PASS -- TEST 'regional_debug_intel' [14:41, 14:08](892 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:20, 03:55](1229 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:50](1216 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:16, 03:58](1231 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 03:57](1216 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:57](1225 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1316 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:05](1223 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:15, 04:05](1218 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:04](1217 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:57](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1224 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:56](1216 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:23](1211 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:52](1223 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:46](1224 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:17, 03:56](1217 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 06:48](1214 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:38]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:44](792 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 03:42] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:13] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:19](1277 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:35, 05:18](1149 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:50](1018 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:52, 05:04](1284 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:38](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:39, 03:04](1010 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:52, 04:11](1107 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:34](961 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:21] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:35, 01:44](1288 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:50](1196 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:34, 01:04](1162 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:15] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:32, 03:45](1095 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:19, 03:54](1102 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:57](1093 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:32, 11:44](1346 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:33, 11:48](993 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:39](1243 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:45](1412 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:42] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:59](1154 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:11, 10:06] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:24](882 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:01](1280 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](955 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:05, 14:14](979 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 15:06](1001 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:37](606 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:13, 06:53](620 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:43](439 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:54](541 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:50](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:41](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:53](683 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:17](450 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:24] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:37, 11:29](635 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:12] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:46, 16:26](769 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:48, 16:34](850 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:10] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:01](824 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:10, 10:14] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:26](957 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:30](926 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1341 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:15, 06:47] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:13](1140 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:22](1088 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:06](1011 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:05](1010 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1013 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1143 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:12](1150 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:03](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:00](1156 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:44, 04:54](1147 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:09](1152 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:04](2434 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:03](2388 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:50] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1075 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 10:30] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:10](1144 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:52](338 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](561 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](565 MB)
+
+PASS -- COMPILE 'atml_intel' [09:10, 08:47] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 05:23](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 05:15](1649 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:46](951 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:52] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:37](1654 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:11, 09:25] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:30](1701 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:10, 07:21] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:28](1804 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:20](1797 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:24](1822 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:54] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [18:25, 16:13](4564 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:10, 04:39]
+PASS -- TEST 'control_c48_gnu' [10:37, 09:31](1576 MB)
+PASS -- TEST 'control_stochy_gnu' [03:21, 02:19](736 MB)
+PASS -- TEST 'control_ras_gnu' [04:20, 03:35](736 MB)
+PASS -- TEST 'control_p8_gnu' [04:51, 03:35](1512 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:31](1518 MB)
+PASS -- TEST 'control_flake_gnu' [05:16, 04:25](815 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [06:11, 05:17]
+PASS -- TEST 'rap_control_gnu' [08:32, 07:38](1089 MB)
+PASS -- TEST 'rap_decomp_gnu' [08:34, 07:52](1083 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:43, 07:08](1124 MB)
+PASS -- TEST 'rap_restart_gnu' [04:59, 04:00](891 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:45](1085 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:33, 07:55](1083 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:38](886 MB)
+PASS -- TEST 'hrrr_control_gnu' [04:46, 04:00](1071 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:16](1138 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:45](1040 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:59](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:04](880 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:02](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:57, 07:40](1091 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 06:06]
+PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:15](1625 MB)
+PASS -- TEST 'regional_debug_gnu' [07:28, 06:29](925 MB)
+PASS -- TEST 'rap_control_debug_gnu' [02:16, 02:04](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 01:53](1091 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:59](1095 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:59](1097 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:05](1271 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:02](1099 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:58](1103 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:03](1095 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:15, 01:11](737 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:15, 01:16](721 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:14](1511 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1101 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 02:13](1103 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 03:21](1099 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:22]
+PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 05:50]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:46, 07:08](962 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:43](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:31, 06:39](996 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:27](891 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:48](957 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:50, 05:32](858 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:35, 02:26](1265 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:34, 01:09](1176 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:26](934 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:10]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](999 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:17]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:52](976 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:57](966 MB)
+PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:31](1278 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:33](962 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:08](1187 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:25](1346 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:10, 04:37]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:54](1001 MB)
+
+PASS -- COMPILE 's2swa_gnu' [24:11, 23:27]
+
+PASS -- COMPILE 's2s_gnu' [16:10, 15:53]
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:12]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 15:01]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:18]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:58]
SYNOPSIS:
-Starting Date/Time: 20240512 07:18:29
-Ending Date/Time: 20240512 08:31:43
-Total Time: 01h:13m:36s
-Compiles Completed: 54/54
-Tests Completed: 237/237
+Starting Date/Time: 20240514 12:24:37
+Ending Date/Time: 20240514 13:37:18
+Total Time: 01h:13m:08s
+Compiles Completed: 55/55
+Tests Completed: 238/238
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index 0a73641041..d70b602ea3 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,18 +1,18 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-6a75664fc408bfd7a64311ae178ffeb12ffe7b77
+07a3943227ebdf1db521865cebc527e018f85290
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,246 +36,249 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3749061
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_982280
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [39:13, 38:49] ( 1 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:45, 07:07](1789 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:15, 53:21] ( 1 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [23:01, 20:46](1662 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:17, 22:34](1883 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [13:18, 10:25](990 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:34, 23:56](1626 MB)
-
-PASS -- COMPILE 's2swa_intel' [39:14, 39:03] ( 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:22, 07:46](1829 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:46, 07:47](1825 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:24](1716 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 07:49](1866 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:53, 04:39](1730 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:17, 07:29](2265 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:17, 07:47](1812 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:45, 06:37](1785 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:45, 07:44](1829 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:36, 07:20](1792 MB)
-
-PASS -- COMPILE 's2sw_intel' [37:13, 36:56] ( 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:37, 05:55](1667 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:47, 05:47](1706 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:29] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:57, 11:34](1845 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:15] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:25, 07:17](1681 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:21] ( 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:52, 05:47](1722 MB)
-
-PASS -- COMPILE 's2s_intel' [33:13, 32:20] ( 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:42](2801 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:34](2794 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:03, 02:00](2273 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:37] ( 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:55, 07:35](1811 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [47:14, 46:31] ( 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:41, 20:51](1684 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 10:27](1031 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:34, 24:08](1654 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:59] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:41, 32:11](1691 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [35:13, 34:35] ( 1 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [05:33, 04:38](644 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [12:19, 04:08](1532 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:33, 04:05](1552 MB)
-PASS -- TEST 'control_latlon_intel' [12:15, 04:04](1510 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:24, 04:09](1546 MB)
-PASS -- TEST 'control_c48_intel' [14:31, 11:56](1729 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [10:43, 10:06](846 MB)
-PASS -- TEST 'control_c192_intel' [19:42, 14:12](1689 MB)
-PASS -- TEST 'control_c384_intel' [27:44, 18:16](1809 MB)
-PASS -- TEST 'control_c384gdas_intel' [27:02, 13:35](1018 MB)
-PASS -- TEST 'control_stochy_intel' [03:31, 02:20](601 MB)
-PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:22](441 MB)
-PASS -- TEST 'control_lndp_intel' [03:32, 02:11](600 MB)
-PASS -- TEST 'control_iovr4_intel' [04:36, 03:26](600 MB)
-PASS -- TEST 'control_iovr5_intel' [04:36, 03:27](591 MB)
-PASS -- TEST 'control_p8_intel' [12:38, 03:57](1575 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [15:06, 04:00](1580 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [12:56, 04:01](1544 MB)
-PASS -- TEST 'control_restart_p8_intel' [04:19, 02:12](813 MB)
-PASS -- TEST 'control_noqr_p8_intel' [12:44, 04:01](1525 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:11, 02:12](837 MB)
-PASS -- TEST 'control_decomp_p8_intel' [12:39, 04:12](1528 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:57, 03:41](1660 MB)
-PASS -- TEST 'control_p8_lndp_intel' [15:26, 07:15](1548 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:08, 05:03](1636 MB)
-PASS -- TEST 'control_p8_mynn_intel' [12:57, 04:05](1555 MB)
-PASS -- TEST 'merra2_thompson_intel' [14:19, 04:29](1548 MB)
-PASS -- TEST 'regional_control_intel' [17:12, 07:14](767 MB)
-PASS -- TEST 'regional_restart_intel' [04:45, 03:50](940 MB)
-PASS -- TEST 'regional_decomp_intel' [10:12, 07:33](763 MB)
-PASS -- TEST 'regional_2threads_intel' [08:14, 04:23](755 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [17:19, 07:17](760 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [14:44, 07:12](763 MB)
-
-PASS -- COMPILE 'rrfs_intel' [33:13, 33:04] ( 3 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [18:28, 10:16](986 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 05:45](1221 MB)
-PASS -- TEST 'rap_decomp_intel' [17:58, 10:48](987 MB)
-PASS -- TEST 'rap_2threads_intel' [14:57, 09:43](1086 MB)
-PASS -- TEST 'rap_restart_intel' [07:20, 05:18](995 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:24, 10:10](995 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:03, 10:49](975 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:37, 07:35](998 MB)
-PASS -- TEST 'hrrr_control_intel' [08:03, 05:15](993 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [08:06, 05:26](983 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:47](1059 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:53](921 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [11:26, 10:04](987 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:26, 12:28](1946 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:15](1938 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:14, 31:16] ( 1 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [08:43, 08:08](688 MB)
-PASS -- TEST 'control_ras_intel' [05:24, 04:30](663 MB)
-
-PASS -- COMPILE 'wam_intel' [30:14, 29:45] ( 982 remarks )
-PASS -- TEST 'control_wam_intel' [03:26, 02:44](501 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:53] ( 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:29, 03:38](1570 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:44, 06:38](770 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [13:11, 05:40] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:55, 03:25](1567 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:55, 03:29](1556 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:26, 03:50](766 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:25, 03:31](765 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:45, 05:23](812 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:25, 03:32](779 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:03, 03:23](1628 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:02, 03:40](1587 MB)
-PASS -- TEST 'regional_debug_intel' [24:43, 21:59](776 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:28, 06:09](1150 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:27, 05:56](1150 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:24, 06:09](1147 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:04](1154 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:03](1149 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:44, 06:24](1236 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 06:16](1152 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:28, 06:11](1152 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:28, 06:08](1153 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:08](1149 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:28, 05:58](1148 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:06](1150 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:27, 09:57](1148 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:28, 05:59](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:23](1150 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:24, 06:06](1151 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:31](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:55] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:24, 06:10](444 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:12, 30:25] ( 3 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 05:19](1080 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:03, 08:34](904 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:02, 04:26](871 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:03, 08:14](947 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 04:05](904 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:00, 04:40](859 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:20, 06:18](898 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 02:35](842 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:13, 43:10] ( 3 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:05, 02:58](1105 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:25](1050 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:37](1026 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:48] ( 3 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:59, 05:33](913 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:14] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1030 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:26, 05:59](1024 MB)
-PASS -- TEST 'conus13km_debug_intel' [19:56, 18:29](1139 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [19:56, 18:35](850 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [11:51, 10:44](1088 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:51, 18:22](1202 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:13](1073 MB)
-
-PASS -- COMPILE 'hafsw_intel' [35:13, 35:05] ( 1 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:01](720 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:29](1094 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:48, 09:22](774 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:24](803 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:55, 18:17](823 MB)
-PASS -- TEST 'gnv1_nested_intel' [07:35, 05:48](779 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [32:13, 32:07] ( 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [13:22, 08:51](769 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:25, 08:43](755 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:49] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:23, 03:38](1057 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1029 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:33](920 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:38](926 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:24, 03:36](935 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:38](1062 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:38](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](921 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:24, 07:58](886 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 07:57](839 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1067 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:25, 05:06](2395 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:24, 05:05](2347 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:27] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:03](1014 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 08:04] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 03:38](1051 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:57] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:38](234 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:24](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:53](256 MB)
-
-PASS -- COMPILE 'atml_intel' [34:13, 33:54] ( 8 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:50, 08:05](1601 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [10:47, 08:12](1597 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:50, 04:55](864 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:11, 05:20] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 07:23](1627 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:13, 32:35] ( 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:28, 02:19](1595 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:13, 30:57] ( 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:31, 05:21](1702 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:22](1729 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:21, 06:33](1729 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [40:14, 39:29] ( 1 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:21, 09:11](1793 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:33] ( 1 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [26:27, 23:36](1661 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 23:44](1881 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [14:14, 11:27](996 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:52, 26:47](1632 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:16, 50:33] ( 1 warnings 1424 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [27:56, 23:34](1645 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:14, 39:29] ( 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [25:00, 11:01](1810 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:42, 10:27](1828 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [09:32, 06:48](1712 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [24:08, 10:30](1838 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:34](1731 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 08:10](2263 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [21:54, 09:26](1825 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:15, 09:25](1780 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 08:43](1806 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [26:33, 10:07](1784 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:14, 37:36] ( 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [16:40, 07:29](1665 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:53, 07:04](1706 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:14, 06:01] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [23:23, 11:39](1849 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:10] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:41, 08:34](1677 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [36:16, 33:11] ( 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:56, 08:02](1713 MB)
+
+PASS -- COMPILE 's2s_intel' [36:17, 33:55] ( 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:37, 12:47](2800 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:39](2796 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:17, 02:01](2265 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:28, 33:54] ( 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:02](1818 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [50:16, 48:55] ( 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:27, 24:10](1688 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:24, 11:12](1038 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:06, 25:15](1657 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:59] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:51, 32:42](1693 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [36:20, 35:40] ( 1 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [13:39, 07:39](646 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [19:46, 05:10](1542 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:56, 04:41](1557 MB)
+PASS -- TEST 'control_latlon_intel' [20:37, 04:49](1547 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:41, 06:48](1546 MB)
+PASS -- TEST 'control_c48_intel' [19:59, 12:06](1730 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:19, 10:29](843 MB)
+PASS -- TEST 'control_c192_intel' [23:00, 18:45](1681 MB)
+PASS -- TEST 'control_c384_intel' [47:37, 24:42](1816 MB)
+PASS -- TEST 'control_c384gdas_intel' [43:07, 19:08](1020 MB)
+PASS -- TEST 'control_stochy_intel' [13:37, 04:40](604 MB)
+PASS -- TEST 'control_stochy_restart_intel' [11:59, 01:38](435 MB)
+PASS -- TEST 'control_lndp_intel' [09:37, 03:06](599 MB)
+PASS -- TEST 'control_iovr4_intel' [15:45, 06:03](595 MB)
+PASS -- TEST 'control_iovr5_intel' [11:39, 05:01](596 MB)
+PASS -- TEST 'control_p8_intel' [23:17, 04:34](1577 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [20:33, 05:20](1582 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [17:38, 06:14](1577 MB)
+PASS -- TEST 'control_restart_p8_intel' [07:58, 03:10](816 MB)
+PASS -- TEST 'control_noqr_p8_intel' [19:31, 05:15](1565 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [07:32, 02:18](846 MB)
+PASS -- TEST 'control_decomp_p8_intel' [23:06, 04:31](1567 MB)
+PASS -- TEST 'control_2threads_p8_intel' [21:04, 04:45](1660 MB)
+PASS -- TEST 'control_p8_lndp_intel' [22:42, 08:46](1569 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [23:35, 06:10](1642 MB)
+PASS -- TEST 'control_p8_mynn_intel' [17:45, 06:20](1578 MB)
+PASS -- TEST 'merra2_thompson_intel' [21:45, 05:41](1591 MB)
+PASS -- TEST 'regional_control_intel' [29:43, 11:55](764 MB)
+PASS -- TEST 'regional_restart_intel' [11:15, 05:53](937 MB)
+PASS -- TEST 'regional_decomp_intel' [26:39, 12:38](763 MB)
+PASS -- TEST 'regional_2threads_intel' [09:33, 06:56](755 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [21:42, 11:46](760 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [28:41, 09:06](759 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:15, 33:47] ( 3 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [22:26, 12:23](996 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:38, 06:22](1212 MB)
+PASS -- TEST 'rap_decomp_intel' [23:15, 13:21](982 MB)
+PASS -- TEST 'rap_2threads_intel' [22:26, 11:52](1087 MB)
+PASS -- TEST 'rap_restart_intel' [09:45, 06:47](989 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [23:56, 13:48](992 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:08, 14:10](984 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [13:01, 08:49](1003 MB)
+PASS -- TEST 'hrrr_control_intel' [14:06, 06:45](991 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [14:05, 06:53](984 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [13:58, 06:10](1062 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [06:53, 04:26](920 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [18:59, 12:57](989 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [20:35, 16:29](1944 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:31, 15:43](1926 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:16, 31:52] ( 1 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [17:48, 11:39](690 MB)
+PASS -- TEST 'control_ras_intel' [12:30, 06:11](666 MB)
+
+PASS -- COMPILE 'wam_intel' [30:14, 29:59] ( 982 remarks )
+PASS -- TEST 'control_wam_intel' [06:20, 03:56](505 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [49:16, 33:07] ( 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [09:04, 03:41](1577 MB)
+PASS -- TEST 'regional_control_faster_intel' [12:01, 07:01](769 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [16:13, 06:39] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:37, 04:01](1569 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:41, 03:35](1570 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:37, 03:48](767 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:25](761 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:29, 05:43](808 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:38, 03:28](775 MB)
+PASS -- TEST 'control_diag_debug_intel' [05:39, 03:54](1618 MB)
+PASS -- TEST 'control_debug_p8_intel' [07:56, 03:51](1586 MB)
+PASS -- TEST 'regional_debug_intel' [24:40, 22:34](780 MB)
+PASS -- TEST 'rap_control_debug_intel' [07:38, 06:11](1150 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [07:39, 06:14](1140 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:23](1150 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:17](1149 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:15](1147 MB)
+PASS -- TEST 'rap_diag_debug_intel' [07:46, 06:39](1236 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:50](1153 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 06:41](1151 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:51, 06:17](1152 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 06:18](1152 MB)
+PASS -- TEST 'rap_noah_debug_intel' [07:34, 06:10](1146 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 06:09](1151 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 10:11](1151 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [08:35, 06:21](1145 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:45](1155 MB)
+PASS -- TEST 'rap_flake_debug_intel' [08:04, 06:20](1154 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 10:29](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [13:13, 04:54] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [08:28, 06:38](452 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:23] ( 3 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:25, 05:35](1087 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:06, 09:56](903 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:11, 04:46](865 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:47, 09:00](951 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:51, 04:25](912 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:08, 04:55](855 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:32](893 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 03:11](843 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:19, 43:28] ( 3 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:32, 02:59](1108 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:44](1041 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:49](1025 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:09] ( 3 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 06:04](898 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:33, 06:11](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:32, 06:02](1031 MB)
+PASS -- TEST 'conus13km_debug_intel' [23:10, 19:02](1139 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [23:10, 19:16](855 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:02, 10:41](1079 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:04, 18:53](1204 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 06:15](1069 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:15, 35:28] ( 1 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [11:37, 08:29](714 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:42, 10:10](1082 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 13:00](764 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [24:43, 20:08](801 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:54, 20:35](825 MB)
+PASS -- TEST 'gnv1_nested_intel' [14:18, 09:28](783 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [34:15, 33:05] ( 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [11:38, 09:57](767 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:36, 11:49](748 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [10:17, 08:12] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:56](1059 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:17](1017 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 04:13](923 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:51](922 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:49](916 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:48](1064 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:49](1061 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:48](926 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:49, 08:06](882 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 08:03](848 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 03:48](1065 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:18](2403 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:32](2384 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:41] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:26, 08:02](1013 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:59] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:44](1061 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:47] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 02:17](231 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 02:01](257 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:10](251 MB)
+
+PASS -- COMPILE 'atml_intel' [35:14, 34:30] ( 8 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:06, 14:07](1610 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [20:08, 13:46](1609 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:20, 06:19](865 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:12, 05:41] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:50](1614 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:25, 32:55] ( 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 02:35](1601 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:14, 31:03] ( 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:51, 05:35](1702 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:43, 09:56](1720 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:21, 09:49](1737 MB)
SYNOPSIS:
-Starting Date/Time: 20240510 17:44:38
-Ending Date/Time: 20240510 21:07:06
-Total Time: 03h:23m:06s
-Compiles Completed: 33/33
-Tests Completed: 161/161
+Starting Date/Time: 20240515 03:36:54
+Ending Date/Time: 20240515 07:32:42
+Total Time: 03h:56m:31s
+Compiles Completed: 34/34
+Tests Completed: 162/162
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 7e0f13836d..0e09bf3788 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,18 +1,18 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-57df4fd8b6ec5e0bca03b4a3ca21768f68c5bfaa
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (heads/develop)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (201912_public_release-389-g9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
@@ -21,7 +21,7 @@ Submodule hashes used in testing:
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,277 +36,280 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_114590
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4366
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:11, 14:08] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:11, 05:26](3177 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 20:08] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 17:11](1747 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:00, 18:20](2023 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 08:21](1109 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 19:22](1655 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 05:26] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [25:44, 23:16](1685 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:11, 13:52] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [07:49, 05:41](3206 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:13, 05:44](3216 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:26](3258 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [07:49, 05:52](3232 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:00, 03:27](3273 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 06:09](3559 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [07:49, 05:47](3202 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:05, 04:49](3070 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:12, 05:44](3209 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:27, 10:25](3342 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:30](3625 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [19:38, 11:12](4119 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:01, 06:49](4370 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [07:59, 05:27](3176 MB)
-
-PASS -- COMPILE 's2sw_intel' [18:11, 13:39] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:44, 04:40](1736 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:05, 04:27](1783 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [09:11, 04:58] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:29, 08:32](3248 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [09:11, 04:48] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 05:55](1753 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [17:11, 13:07] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:22, 04:25](1781 MB)
-
-PASS -- COMPILE 's2s_intel' [17:12, 13:14] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:57, 08:10](2836 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [03:56, 02:22](2833 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:02, 01:27](2294 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [22:11, 18:12] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:47, 05:26](3211 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:12] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:23, 17:25](1764 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:20](1169 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:12, 19:27](1673 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:03] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 24:32](1715 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:27] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [06:27, 03:29](702 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [05:57, 02:54](1595 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:02](1596 MB)
-PASS -- TEST 'control_latlon_intel' [05:52, 02:52](1594 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:01, 03:01](1598 MB)
-PASS -- TEST 'control_c48_intel' [09:52, 07:07](1770 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 06:01](872 MB)
-PASS -- TEST 'control_c192_intel' [13:09, 10:29](1741 MB)
-PASS -- TEST 'control_c384_intel' [15:15, 11:30](2006 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:58, 08:56](1354 MB)
-PASS -- TEST 'control_stochy_intel' [04:25, 01:40](654 MB)
-PASS -- TEST 'control_stochy_restart_intel' [08:24, 00:59](502 MB)
-PASS -- TEST 'control_lndp_intel' [04:25, 01:36](658 MB)
-PASS -- TEST 'control_iovr4_intel' [05:28, 02:29](648 MB)
-PASS -- TEST 'control_iovr5_intel' [05:27, 02:28](654 MB)
-PASS -- TEST 'control_p8_intel' [09:28, 03:00](1630 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [09:24, 02:57](1634 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [09:41, 02:51](1640 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:17, 01:41](890 MB)
-PASS -- TEST 'control_noqr_p8_intel' [09:23, 02:54](1626 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:08, 01:36](930 MB)
-PASS -- TEST 'control_decomp_p8_intel' [09:24, 03:02](1615 MB)
-PASS -- TEST 'control_2threads_p8_intel' [11:23, 03:05](1712 MB)
-PASS -- TEST 'control_p8_lndp_intel' [11:53, 05:15](1637 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:34, 03:56](1693 MB)
-PASS -- TEST 'control_p8_mynn_intel' [09:34, 02:59](1640 MB)
-PASS -- TEST 'merra2_thompson_intel' [10:43, 03:22](1645 MB)
-PASS -- TEST 'regional_control_intel' [10:45, 05:08](860 MB)
-PASS -- TEST 'regional_restart_intel' [05:41, 02:46](1023 MB)
-PASS -- TEST 'regional_decomp_intel' [10:41, 05:30](851 MB)
-PASS -- TEST 'regional_2threads_intel' [08:39, 03:40](848 MB)
-PASS -- TEST 'regional_noquilt_intel' [10:42, 05:05](1364 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [11:44, 05:04](859 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [11:44, 05:05](856 MB)
-PASS -- TEST 'regional_wofs_intel' [12:39, 06:44](1921 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:11, 11:26] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [14:32, 07:44](1106 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:11, 04:40](1301 MB)
-PASS -- TEST 'rap_decomp_intel' [11:07, 08:07](1025 MB)
-PASS -- TEST 'rap_2threads_intel' [11:00, 07:54](1177 MB)
-PASS -- TEST 'rap_restart_intel' [05:02, 04:06](1098 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:20, 07:44](1099 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:04, 08:11](1024 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:27, 05:50](1124 MB)
-PASS -- TEST 'hrrr_control_intel' [10:11, 04:06](1037 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [10:05, 04:10](1022 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [11:00, 03:26](1114 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:25, 02:11](993 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [13:25, 07:36](1102 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [13:24, 09:10](1997 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:25, 08:57](2074 MB)
-
-PASS -- COMPILE 'csawmg_intel' [12:11, 11:59] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [10:41, 06:03](746 MB)
-PASS -- TEST 'control_ras_intel' [06:25, 03:20](740 MB)
-
-PASS -- COMPILE 'wam_intel' [11:10, 10:44]
-PASS -- TEST 'control_wam_intel' [05:20, 02:05](658 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 11:33] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [06:31, 02:40](1633 MB)
-PASS -- TEST 'regional_control_faster_intel' [07:38, 04:49](856 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:37] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:47, 02:43](1619 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:47, 02:41](1616 MB)
-PASS -- TEST 'control_stochy_debug_intel' [06:22, 03:09](822 MB)
-PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:47](821 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:10](866 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:21, 02:53](828 MB)
-PASS -- TEST 'control_diag_debug_intel' [04:49, 02:51](1672 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:46, 02:44](1648 MB)
-PASS -- TEST 'regional_debug_intel' [18:43, 17:18](839 MB)
-PASS -- TEST 'rap_control_debug_intel' [05:26, 04:54](1204 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:24, 04:51](1200 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:23, 04:52](1207 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:23, 04:54](1200 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:56](1204 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:21](1286 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:22, 04:52](1199 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 04:59](1198 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:21, 05:05](1197 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:39](1211 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:49](1200 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:53](1196 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:50](1206 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:47](1200 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 06:02](1200 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:53](1203 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:25](1216 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 03:45] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [06:21, 05:17](506 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:15] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:02, 04:26](1176 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:20, 06:27](1054 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:29, 03:24](981 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:00, 06:45](1098 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:58](960 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:36](919 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:20, 04:58](1043 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](923 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:48] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:01, 02:05](1205 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:48, 01:03](1124 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:16](1106 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 10:57] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:16](992 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:46] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:54](1076 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1078 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:52, 14:26](1229 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:39](928 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:43, 08:55](1147 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 14:46](1294 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:28, 04:41](1124 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:11, 12:30] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:15, 05:26](742 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:29, 05:51](1120 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:20, 06:58](831 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:20](864 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:22, 14:59](884 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 06:11](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 07:29](517 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 03:10](372 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:19, 08:00](518 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:43, 04:12](533 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 04:03](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 05:17](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:25, 01:23](408 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:57, 04:36](803 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [07:10, 04:34] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:51, 13:08](567 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [19:11, 12:40] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 09:48](671 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:01, 09:55](740 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 12:14] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:05, 07:01](665 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [18:11, 12:20] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [10:15, 06:23](827 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:13, 06:31](816 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 16:03](1210 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [14:12, 08:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:39](1137 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:39](1089 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:31](1016 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:38](1022 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:36](1015 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:34](1135 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:37](1129 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:36](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:14, 05:55](1060 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:00](1040 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:45](1125 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:18, 03:35](2495 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:19, 03:31](2436 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 03:56] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:18](1062 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [09:15, 06:37]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:38](1129 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:12] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:49](260 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:23, 00:51](322 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:35](323 MB)
-
-PASS -- COMPILE 'atml_intel' [15:11, 12:14] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:39, 04:15](1614 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:21](1607 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:28](905 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [08:11, 04:03] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:31, 05:41](1619 MB)
-
-PASS -- COMPILE 'atmw_intel' [12:11, 11:05] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:24, 01:50](1674 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:10, 10:40] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [05:19, 03:58](3024 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [06:21, 04:51](3095 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:06, 04:57](3096 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [06:10, 03:13] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [23:44, 20:52](4577 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [18:11, 15:13] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:00, 05:31](3174 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:18] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [24:10, 17:11](1738 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 18:18](2024 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [17:19, 08:37](1108 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 19:27](1644 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 18:56] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [22:50, 16:59](1744 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 05:05] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [28:16, 22:54](1696 MB)
+
+PASS -- COMPILE 's2swa_intel' [18:11, 15:46] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [16:51, 05:45](3209 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:14, 05:45](3213 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [08:08, 03:27](3253 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [16:51, 05:48](3238 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:32](3279 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [11:27, 06:17](3555 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [16:51, 05:51](3133 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:48, 04:57](3065 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 05:45](3210 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [16:16, 10:27](3342 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 06:43](3625 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [26:39, 10:54](4116 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:23, 07:05](4285 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [15:51, 05:32](3173 MB)
+
+PASS -- COMPILE 's2sw_intel' [17:11, 14:00] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:08, 04:48](1735 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:31](1780 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [08:11, 05:07] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [14:36, 08:39](3249 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [08:11, 04:56] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:16, 06:01](1747 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [16:11, 13:24] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:22](1784 MB)
+
+PASS -- COMPILE 's2s_intel' [15:11, 12:24] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:08](2832 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:04, 02:21](2831 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [10:08, 01:22](2305 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [24:11, 20:00] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [07:54, 05:28](3211 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 18:31] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1772 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:31, 08:34](1173 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:23, 19:29](1686 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 04:16] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 25:22](1712 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:10, 13:04] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [05:22, 03:33](699 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 03:00](1593 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 03:03](1604 MB)
+PASS -- TEST 'control_latlon_intel' [04:40, 03:01](1588 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:58](1594 MB)
+PASS -- TEST 'control_c48_intel' [07:52, 07:08](1760 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:00](874 MB)
+PASS -- TEST 'control_c192_intel' [12:00, 10:37](1750 MB)
+PASS -- TEST 'control_c384_intel' [15:11, 12:37](2013 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:15, 09:01](1356 MB)
+PASS -- TEST 'control_stochy_intel' [02:29, 01:45](660 MB)
+PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:06](504 MB)
+PASS -- TEST 'control_lndp_intel' [02:23, 01:41](654 MB)
+PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB)
+PASS -- TEST 'control_iovr5_intel' [03:29, 02:31](652 MB)
+PASS -- TEST 'control_p8_intel' [04:21, 02:59](1637 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [04:17, 02:58](1632 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 02:54](1641 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:15, 01:46](880 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:29, 02:57](1622 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:41](933 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:22, 03:09](1618 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:20, 03:04](1721 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:03, 05:23](1634 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 03:54](1700 MB)
+PASS -- TEST 'control_p8_mynn_intel' [07:32, 03:05](1635 MB)
+PASS -- TEST 'merra2_thompson_intel' [07:50, 03:21](1640 MB)
+PASS -- TEST 'regional_control_intel' [08:44, 05:07](859 MB)
+PASS -- TEST 'regional_restart_intel' [09:47, 02:50](1027 MB)
+PASS -- TEST 'regional_decomp_intel' [09:46, 05:34](846 MB)
+PASS -- TEST 'regional_2threads_intel' [04:39, 03:42](845 MB)
+PASS -- TEST 'regional_noquilt_intel' [08:42, 05:13](1365 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 05:16](856 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:43, 05:15](858 MB)
+PASS -- TEST 'regional_wofs_intel' [07:43, 06:46](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:10, 12:07] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:31, 07:53](1103 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:41](1302 MB)
+PASS -- TEST 'rap_decomp_intel' [10:07, 08:08](1026 MB)
+PASS -- TEST 'rap_2threads_intel' [10:07, 07:54](1177 MB)
+PASS -- TEST 'rap_restart_intel' [07:30, 04:07](1105 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [10:33, 07:50](1103 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:04, 08:11](1036 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:59](1128 MB)
+PASS -- TEST 'hrrr_control_intel' [06:02, 04:06](1032 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 04:17](1033 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:28](1110 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [07:25, 02:12](955 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:48](1100 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:20](1935 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:59](2078 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:11, 10:56] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:46, 06:05](747 MB)
+PASS -- TEST 'control_ras_intel' [05:22, 03:25](738 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 10:24]
+PASS -- TEST 'control_wam_intel' [03:21, 02:09](651 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:15] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [10:35, 02:46](1620 MB)
+PASS -- TEST 'regional_control_faster_intel' [11:42, 04:41](854 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:20] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:59, 02:42](1617 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:04, 02:43](1610 MB)
+PASS -- TEST 'control_stochy_debug_intel' [08:27, 03:12](817 MB)
+PASS -- TEST 'control_lndp_debug_intel' [07:26, 02:48](816 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [09:01, 04:16](858 MB)
+PASS -- TEST 'control_ras_debug_intel' [07:26, 02:52](827 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:02, 02:51](1675 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:01, 02:59](1650 MB)
+PASS -- TEST 'regional_debug_intel' [22:58, 17:25](845 MB)
+PASS -- TEST 'rap_control_debug_intel' [10:28, 05:07](1205 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:30, 04:55](1196 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 04:58](1206 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [11:28, 05:01](1205 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:26, 04:59](1203 MB)
+PASS -- TEST 'rap_diag_debug_intel' [11:36, 05:12](1288 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1214 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:24, 05:02](1200 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [12:27, 05:00](1203 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:25, 05:27](1159 MB)
+PASS -- TEST 'rap_noah_debug_intel' [11:26, 04:50](1158 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [11:28, 05:05](1207 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:26, 08:06](1199 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:52](1199 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [11:26, 05:38](1198 MB)
+PASS -- TEST 'rap_flake_debug_intel' [11:23, 04:54](1205 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 08:24](1212 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:10, 03:09] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:23, 04:59](506 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:51] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:29](1164 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 06:32](1046 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:50, 03:27](989 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 06:44](1095 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:53, 02:58](974 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:45](919 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:27, 04:59](1041 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](903 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:12] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:02, 02:13](1203 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:01](1126 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1109 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:40] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:23](989 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:12] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:53](1084 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:51](1082 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:52, 14:19](1227 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:56](926 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:30](1155 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:46](1289 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:23] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:59](1116 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:11, 12:43] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:44](744 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:23](1116 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:06](838 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:22](858 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 15:26](891 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 06:21](499 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:46](519 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:23](321 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:39, 08:13](481 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 04:16](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:59, 03:59](529 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:23](585 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:29, 01:25](400 MB)
+PASS -- TEST 'gnv1_nested_intel' [10:03, 04:38](801 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:55] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:13](572 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:26] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 09:55](601 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 09:51](742 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:44] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 07:16](757 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:31](824 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:36](818 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:02](1212 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:39](1123 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:47](1070 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:35](1013 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:38](1010 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:42](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:39](1134 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1138 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:34](1012 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:21, 06:01](1057 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 06:00](1031 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:52](1121 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:41](2488 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:44](2485 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:45] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:18](1048 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:12]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:42](1136 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](258 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:53](324 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:36](320 MB)
+
+PASS -- COMPILE 'atml_intel' [16:11, 13:46] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:42, 04:17](1601 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:16](1602 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:21](902 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:10, 04:28] ( 880 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 05:41](1622 MB)
+
+PASS -- COMPILE 'atmw_intel' [15:11, 12:04] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:52](1674 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 12:07] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [07:25, 03:59](3025 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:52](3092 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:00](3031 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:32] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [22:52, 20:58](4573 MB)
SYNOPSIS:
-Starting Date/Time: 20240512 07:31:45
-Ending Date/Time: 20240512 09:04:54
-Total Time: 01h:33m:38s
-Compiles Completed: 38/38
-Tests Completed: 182/182
+Starting Date/Time: 20240514 13:54:30
+Ending Date/Time: 20240514 15:33:04
+Total Time: 01h:39m:28s
+Compiles Completed: 39/39
+Tests Completed: 183/183
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index 93b9c16d21..d7ba8f67e0 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,27 +1,27 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-bd6721bc051892b41f039008a028aaef572d7c78
+c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488)
+ b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (201912_public_release-390-gaabfdcc)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4229-g1c2a898e)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
@@ -36,323 +36,241 @@ The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_123747
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_221962
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:23] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:18, 01:24](2974 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:34, 16:56] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [22:43, 01:59](1596 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [04:36, 01:43](1712 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [04:19, 02:16](847 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 01:35](1567 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:52] ( 1505 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [47:27, 01:57](1600 MB)
-
-PASS -- COMPILE 's2swa_intel' [24:40, 24:02] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [28:04, 01:06](3002 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:04, 01:37](3004 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [14:39, 02:02](3061 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [28:04, 01:08](3025 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [19:47, 01:56](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [28:03, 01:09](3314 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [28:03, 01:14](3004 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [28:04, 01:33](2930 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:04, 01:29](3005 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [28:12, 04:11](3948 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:21, 04:19](4247 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [28:04, 01:44](2975 MB)
-
-PASS -- COMPILE 's2sw_intel' [11:24, 10:28] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [41:19, 00:50](1585 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:38, 01:48](1640 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [20:33, 20:19] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:10, 01:59](1632 MB)
-
-PASS -- COMPILE 's2s_intel' [21:36, 21:17] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [31:07, 00:43](2645 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [31:07, 01:27](2665 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [27:03, 01:10](2105 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [20:40, 20:11] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [02:27, 01:47](3004 MB)
-
-FAILED: UNABLE TO COMPILE -- COMPILE 's2sw_pdlib_intel' [, ]
-FAILED: UNABLE TO START RUN -- TEST 'cpld_control_pdlib_p8_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_pdlib_p8_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 09:17] ( 1541 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:21, 01:43](1613 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [27:42, 26:34] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [19:43, 00:24](576 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [19:43, 00:27](1468 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:43, 00:28](1475 MB)
-PASS -- TEST 'control_latlon_intel' [19:43, 00:23](1474 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [19:43, 00:33](1474 MB)
-PASS -- TEST 'control_c48_intel' [19:42, 00:56](1597 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [19:42, 00:50](713 MB)
-PASS -- TEST 'control_c192_intel' [19:43, 00:40](1583 MB)
-PASS -- TEST 'control_c384_intel' [19:47, 01:50](1904 MB)
-PASS -- TEST 'control_c384gdas_intel' [19:47, 02:36](1086 MB)
-PASS -- TEST 'control_stochy_intel' [19:43, 00:26](532 MB)
-PASS -- TEST 'control_stochy_restart_intel' [17:17, 01:04](332 MB)
-PASS -- TEST 'control_lndp_intel' [19:43, 00:31](525 MB)
-PASS -- TEST 'control_iovr4_intel' [19:43, 00:45](523 MB)
-PASS -- TEST 'control_iovr5_intel' [19:43, 00:43](525 MB)
-PASS -- TEST 'control_p8_intel' [19:43, 01:38](1499 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [19:43, 01:57](1500 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [19:43, 02:01](1503 MB)
-PASS -- TEST 'control_restart_p8_intel' [14:28, 01:04](693 MB)
-PASS -- TEST 'control_noqr_p8_intel' [19:43, 01:39](1492 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [14:27, 01:03](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [19:38, 01:31](1499 MB)
-PASS -- TEST 'control_2threads_p8_intel' [19:28, 01:14](1595 MB)
-PASS -- TEST 'control_p8_lndp_intel' [19:28, 01:11](1503 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [14:30, 01:54](1554 MB)
-PASS -- TEST 'control_p8_mynn_intel' [17:17, 01:50](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [16:14, 01:59](1509 MB)
-PASS -- TEST 'regional_control_intel' [16:12, 00:18](606 MB)
-PASS -- TEST 'regional_restart_intel' [10:30, 00:22](777 MB)
-PASS -- TEST 'regional_decomp_intel' [15:58, 00:55](609 MB)
-PASS -- TEST 'regional_2threads_intel' [15:55, 00:59](668 MB)
-PASS -- TEST 'regional_noquilt_intel' [15:49, 00:20](1147 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [15:46, 00:21](606 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [15:42, 00:13](608 MB)
-PASS -- TEST 'regional_wofs_intel' [15:14, 00:26](1579 MB)
-
-PASS -- COMPILE 'rrfs_intel' [24:41, 23:37] ( 3 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [14:56, 01:30](918 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:51, 01:07](1101 MB)
-PASS -- TEST 'rap_decomp_intel' [14:38, 01:49](919 MB)
-PASS -- TEST 'rap_2threads_intel' [14:29, 01:39](1001 MB)
-PASS -- TEST 'rap_restart_intel' [06:08, 01:18](787 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [14:14, 01:04](915 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 01:36](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [05:53, 01:48](788 MB)
-PASS -- TEST 'hrrr_control_intel' [14:08, 01:21](910 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [13:00, 01:07](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [12:58, 01:35](989 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [08:46, 01:03](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [12:29, 01:15](912 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [11:54, 00:56](1875 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:38, 01:14](1861 MB)
-
-PASS -- COMPILE 'csawmg_intel' [17:33, 16:25] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [23:45, 00:30](603 MB)
-PASS -- TEST 'control_ras_intel' [23:45, 00:51](559 MB)
-
-PASS -- COMPILE 'wam_intel' [32:52, 31:41]
-PASS -- TEST 'control_wam_intel' [07:25, 01:07](272 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:26, 11:50] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [11:11, 02:00](1510 MB)
-PASS -- TEST 'regional_control_faster_intel' [11:01, 00:30](611 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [14:29, 13:19] ( 870 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:16, 01:19](1487 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:27, 00:28](1491 MB)
-PASS -- TEST 'control_stochy_debug_intel' [10:06, 00:53](692 MB)
-PASS -- TEST 'control_lndp_debug_intel' [10:02, 01:11](692 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [09:59, 00:38](730 MB)
-PASS -- TEST 'control_ras_debug_intel' [09:18, 01:09](701 MB)
-PASS -- TEST 'control_diag_debug_intel' [08:42, 01:22](1555 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:27, 01:07](1524 MB)
-PASS -- TEST 'regional_debug_intel' [08:07, 00:47](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:53, 00:56](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:50, 01:02](1070 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [07:50, 00:57](1073 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:53, 00:55](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:48, 00:52](1074 MB)
-PASS -- TEST 'rap_diag_debug_intel' [06:34, 00:50](1156 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:08, 00:55](1074 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:43, 00:47](1077 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:40, 00:50](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:39, 00:55](1075 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:37, 00:58](1075 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 00:56](1071 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [05:10, 00:50](1075 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:09, 00:59](1067 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [04:57, 01:07](1075 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:49, 00:46](1077 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB)
-
-PASS -- COMPILE 'wam_debug_intel' [07:21, 06:55] ( 842 warnings )
-PASS -- TEST 'control_wam_debug_intel' [20:42, 00:58](297 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:38, 17:53] ( 3 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [53:39, 01:28](954 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [53:38, 01:05](790 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [53:38, 02:33](784 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:38, 01:34](852 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [, ]( MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:20, 02:09](787 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [46:26, 01:29](685 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [47:36, 00:20](671 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:33, 17:43] ( 3 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:43, 01:03](1002 MB)
-PASS -- TEST 'conus13km_2threads_intel' [59:52, 00:54](1007 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [59:30, 00:42](880 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:32, 16:53] ( 3 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [02:21, 01:23](806 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [21:37, 20:54] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [58:05, 01:06](959 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [58:05, 01:14](951 MB)
-PASS -- TEST 'conus13km_debug_intel' [58:05, 00:30](1038 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [58:05, 01:15](707 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [57:24, 00:30](1040 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [57:12, 00:25](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:25, 10:56] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [03:40, 00:54](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:31, 14:50] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [02:11, 02:12](622 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [02:05, 00:30](965 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:21, 01:48](659 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [01:19, 01:29](702 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [01:20, 01:33](715 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:44, 01:10](392 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:24, 02:13](402 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [00:24, 01:29](282 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [00:01, 02:35](371 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:17, 01:37](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:14, 00:56](416 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:14, 00:53](495 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:12, 00:22](320 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [12:28, 12:01] ( 1449 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [03:36, 00:41](506 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [11:26, 10:24] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:08, 01:36](524 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [56:54, 01:38](707 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:38, 14:23] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:13, 00:50](710 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:27, 12:38] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [53:58, 01:19](668 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [53:58, 01:16](651 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [53:56, 00:27](882 MB)
-
-PASS -- COMPILE 'atml_intel' [19:35, 18:36] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [44:34, 01:29](1544 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [44:34, 02:23](1541 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [36:40, 00:23](744 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [04:18, 03:44] ( 866 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [50:18, 01:42](1565 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:27, 13:04] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [49:52, 01:26](2851 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [49:52, 01:52](2913 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [49:52, 01:52](2923 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [05:18, 04:28] ( 870 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [56:40, 01:28](4439 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:29, 10:59] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:27, 01:19](2978 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:31, 11:34] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [48:26, 02:03](1598 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:22, 01:25](1713 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [30:22, 02:01](849 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:27, 01:24](1572 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:31, 11:33] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [48:26, 01:04](1591 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:39, 20:28] ( 1505 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [39:18, 01:48](1606 MB)
+
+PASS -- COMPILE 's2swa_intel' [23:42, 22:48] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [37:14, 01:18](3007 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:14, 01:35](3003 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [28:52, 01:54](3060 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [37:14, 01:14](3031 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [28:52, 01:46](3079 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [37:14, 01:14](3313 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [37:14, 01:14](2998 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [37:15, 01:38](2927 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:14, 01:35](3007 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [37:23, 04:27](3948 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:47, 04:12](4251 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [37:14, 01:51](2971 MB)
+
+PASS -- COMPILE 's2sw_intel' [21:41, 21:12] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [39:15, 01:47](1592 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [39:15, 01:55](1633 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:47] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [50:28, 02:07](1639 MB)
+
+PASS -- COMPILE 's2s_intel' [32:53, 32:35] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [28:02, 00:39](2652 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 01:32](2668 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [23:46, 01:03](2103 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:07] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [44:22, 01:41](3004 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [40:01, 39:32] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:55, 01:03](1611 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:12, 01:08](903 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:57, 01:18](1580 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:57, 30:52] ( 1541 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:03, 00:51](1621 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [34:01, 33:40] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [15:23, 00:25](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [15:23, 00:26](1475 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:23, 00:26](1480 MB)
+PASS -- TEST 'control_latlon_intel' [15:15, 00:20](1472 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:41, 00:31](1468 MB)
+PASS -- TEST 'control_c48_intel' [14:22, 00:53](1591 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [13:09, 00:52](714 MB)
+PASS -- TEST 'control_c192_intel' [13:09, 00:28](1591 MB)
+PASS -- TEST 'control_c384_intel' [12:16, 01:48](1899 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:01, 02:40](1093 MB)
+PASS -- TEST 'control_stochy_intel' [11:52, 00:23](529 MB)
+PASS -- TEST 'control_stochy_restart_intel' [09:23, 00:59](333 MB)
+PASS -- TEST 'control_lndp_intel' [11:36, 00:35](528 MB)
+PASS -- TEST 'control_iovr4_intel' [11:32, 00:44](522 MB)
+PASS -- TEST 'control_iovr5_intel' [11:30, 00:43](522 MB)
+PASS -- TEST 'control_p8_intel' [11:29, 01:31](1506 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:29, 01:58](1509 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:01, 01:56](1501 MB)
+PASS -- TEST 'control_restart_p8_intel' [06:20, 00:57](694 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:01, 01:30](1494 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:53, 00:43](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:54, 01:21](1498 MB)
+PASS -- TEST 'control_2threads_p8_intel' [10:54, 01:07](1596 MB)
+PASS -- TEST 'control_p8_lndp_intel' [10:53, 01:06](1510 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 02:01](1566 MB)
+PASS -- TEST 'control_p8_mynn_intel' [10:47, 01:48](1514 MB)
+PASS -- TEST 'merra2_thompson_intel' [09:20, 01:38](1509 MB)
+PASS -- TEST 'regional_control_intel' [03:33, 00:19](610 MB)
+PASS -- TEST 'regional_restart_intel' [57:35, 01:01](777 MB)
+PASS -- TEST 'regional_decomp_intel' [09:18, 00:56](606 MB)
+PASS -- TEST 'regional_2threads_intel' [09:12, 00:56](666 MB)
+PASS -- TEST 'regional_noquilt_intel' [09:08, 00:21](1147 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 00:21](606 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [09:05, 00:15](606 MB)
+PASS -- TEST 'regional_wofs_intel' [09:03, 00:49](1581 MB)
+
+PASS -- COMPILE 'rrfs_intel' [27:52, 27:37] ( 3 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [20:33, 01:40](919 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:34, 01:10](1099 MB)
+PASS -- TEST 'rap_decomp_intel' [20:33, 01:21](921 MB)
+PASS -- TEST 'rap_2threads_intel' [20:33, 01:53](1005 MB)
+PASS -- TEST 'rap_restart_intel' [09:01, 01:03](792 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [20:33, 02:08](916 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:33, 01:51](916 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 01:42](786 MB)
+PASS -- TEST 'hrrr_control_intel' [20:33, 01:04](911 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [20:33, 00:59](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [20:34, 01:26](996 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [08:00, 01:03](742 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [20:33, 01:19](907 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [20:33, 00:52](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:33, 01:12](1862 MB)
+
+PASS -- COMPILE 'csawmg_intel' [42:10, 41:04] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [05:58, 00:32](599 MB)
+PASS -- TEST 'control_ras_intel' [05:49, 00:52](561 MB)
+
+PASS -- COMPILE 'wam_intel' [16:37, 15:33]
+PASS -- TEST 'control_wam_intel' [27:44, 00:53](274 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [17:42, 16:54] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [21:34, 02:04](1505 MB)
+PASS -- TEST 'regional_control_faster_intel' [21:33, 00:23](610 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [18:42, 17:58] ( 870 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:33, 01:18](1487 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:33, 01:26](1490 MB)
+PASS -- TEST 'control_stochy_debug_intel' [20:33, 00:48](692 MB)
+PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:09](694 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [20:33, 00:37](729 MB)
+PASS -- TEST 'control_ras_debug_intel' [20:33, 01:04](705 MB)
+PASS -- TEST 'control_diag_debug_intel' [20:33, 01:16](1555 MB)
+PASS -- TEST 'control_debug_p8_intel' [20:33, 01:02](1520 MB)
+PASS -- TEST 'regional_debug_intel' [20:32, 00:36](630 MB)
+PASS -- TEST 'rap_control_debug_intel' [19:48, 00:33](1076 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [18:45, 01:01](1067 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [16:02, 00:54](1072 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [16:01, 00:52](1071 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:53, 00:53](1075 MB)
+PASS -- TEST 'rap_diag_debug_intel' [15:48, 00:49](1159 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:43, 00:47](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 00:49](1072 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [15:36, 00:50](1078 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:32, 00:50](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:50, 00:59](1073 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 00:54](1075 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:25, 00:42](1073 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 00:56](1070 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [05:29, 01:00](1077 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:18, 00:51](1075 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [04:25, 02:10](1077 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [15:32, 14:58] ( 842 warnings )
+PASS -- TEST 'control_wam_debug_intel' [21:42, 00:52](301 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:39, 20:41] ( 3 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 01:18](953 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 01:14](795 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 02:02](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:44, 01:19](857 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:44, 01:58](847 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:22, 01:23](785 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:02, 01:58](686 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:28, 00:42](665 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 15:27] ( 3 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:22, 01:10](1005 MB)
+PASS -- TEST 'conus13km_2threads_intel' [59:16, 00:41](1005 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [59:15, 00:50](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 10:22] ( 3 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:16, 01:25](810 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 09:38] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:47, 00:36](958 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:29, 00:49](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [01:55, 00:27](1037 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [01:29, 01:14](710 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [01:20, 00:32](1040 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:18, 00:25](1104 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 07:04] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:44, 00:57](981 MB)
+
+PASS -- COMPILE 'hafsw_intel' [22:40, 21:47] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [57:55, 01:56](618 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:55, 00:23](967 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:53, 01:22](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [57:53, 01:23](694 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:54, 01:56](715 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [57:24, 00:57](390 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:55, 02:08](404 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [56:46, 01:32](288 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:20, 02:51](372 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:00, 00:54](415 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:22, 01:40](423 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:21, 01:35](493 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:56, 00:33](314 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [25:41, 25:03] ( 1449 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:14, 01:36](507 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [10:30, 09:58] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:12, 01:30](534 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:12, 01:03](709 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [13:28, 13:04] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:38, 00:49](713 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:30, 15:13] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [57:59, 02:11](664 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:59, 01:35](648 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:57, 01:02](882 MB)
+
+PASS -- COMPILE 'atml_intel' [10:27, 10:11] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:17, 01:40](1545 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [59:59, 01:38](1546 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [52:18, 00:39](744 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [15:31, 15:10] ( 866 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:53, 02:07](1564 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:36, 13:43] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [52:48, 00:56](2849 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [52:33, 01:23](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:17, 01:19](2926 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [11:24, 10:32] ( 870 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [51:59, 00:57](4430 MB)
SYNOPSIS:
-Starting Date/Time: 20240513 12:06:51
-Ending Date/Time: 20240513 13:29:43
-Total Time: 01h:23m:30s
-Compiles Completed: 30/31
-Tests Completed: 153/158
-Failed Compiles:
-* COMPILE s2sw_pdlib_intel: FAILED: UNABLE TO COMPILE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_s2sw_pdlib_intel.log
-Failed Tests:
-* TEST cpld_control_pdlib_p8_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST cpld_restart_pdlib_p8_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST cpld_mpi_pdlib_p8_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-* TEST gnv1_c96_no_nest_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_gnv1_c96_no_nest_debug_intel.log
-* TEST hrrr_control_2threads_dyn32_phy32_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/NickSzapiro-NOAA/ufs-weather-model/tests/logs/log_wcoss2/run_hrrr_control_2threads_dyn32_phy32_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF WCOSS2 REGRESSION TESTING LOG====
-====START OF WCOSS2 REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-bd6721bc051892b41f039008a028aaef572d7c78
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 500073c60809f6f887194d3e79c1d632d1b5ed26 CICE-interface/CICE (remotes/origin/cice_sync)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- 7147dac3d5075c38a43cc221d1e7e7337c28437f FV3 (7147dac)
- 97114888f529c2df70ed4a350fd2428df74839ff FV3/atmos_cubed_sphere (9711488)
- 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 129e1bda02d454fb280819d1d87ae16347fd044c MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10049-g129e1bda0)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18671
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
-* (-b) - NEW BASELINES FROM FILE: test_changes.list
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2sw_pdlib_intel' [12:27, 11:31] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:36, 01:12](1604 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [44:04, 01:24](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [44:05, 01:32](1584 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:19, 04:13] ( 870 warnings 92 remarks )
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:44, 02:17](1087 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:24, 08:10] ( 3 warnings 91 remarks )
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 01:32](842 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240513 13:45:47
-Ending Date/Time: 20240513 14:37:26
-Total Time: 00h:51m:58s
-Compiles Completed: 3/3
-Tests Completed: 5/5
+Starting Date/Time: 20240514 18:58:32
+Ending Date/Time: 20240514 20:37:35
+Total Time: 01h:39m:46s
+Compiles Completed: 32/32
+Tests Completed: 159/159
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/parm/diag_table/diag_table_cpld_sfs.IN b/tests/parm/diag_table/diag_table_cpld_sfs.IN
new file mode 100644
index 0000000000..9d82b7f0e7
--- /dev/null
+++ b/tests/parm/diag_table/diag_table_cpld_sfs.IN
@@ -0,0 +1,311 @@
+@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono
+@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0
+
+"fv3_history", 0, "hours", 1, "hours", "time"
+"fv3_history2d", 0, "hours", 1, "hours", "time"
+######################
+"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0"
+"@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0"
+##############################################
+# static fields
+ "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+ "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2
+
+# ocean output TSUV and others
+ "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+
+# save daily SST
+ "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2
+ "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2
+ "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .true., "none", 2
+
+# Z-Space Fields Provided for CMIP6 (CMOR Names):
+#===============================================
+ "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+
+# forcing
+ "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+ "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2
+#
+###
+# FV3 variabls needed for NGGPS evaluation
+###
+"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2
+#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2
+#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2
+
+# chemical tracers advected by FV3
+"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2
+"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2
+
+"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2
+#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2
+
+"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2
+"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2
+
+"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2
+
+"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2
+"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2
+#=============================================================================================
+#
+#====> This file can be used with diag_manager/v2.0a (or higher) <====
+#
+#
+# FORMATS FOR FILE ENTRIES (not all input values are used)
+# ------------------------
+#
+#"file_name", output_freq, "output_units", format, "time_units", "long_name",
+#
+#
+#output_freq: > 0 output frequency in "output_units"
+# = 0 output frequency every time step
+# =-1 output frequency at end of run
+#
+#output_units = units used for output frequency
+# (years, months, days, minutes, hours, seconds)
+#
+#time_units = units used to label the time axis
+# (days, minutes, hours, seconds)
+#
+#
+# FORMAT FOR FIELD ENTRIES (not all input values are used)
+# ------------------------
+#
+#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing
+#
+#time_avg = .true. or .false.
+#
+#packing = 1 double precision
+# = 2 float
+# = 4 packed 16-bit integers
+# = 8 packed 1-byte (not tested?)
diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN
index c2e5ec8e43..6158aa1657 100644
--- a/tests/parm/global_control.nml.IN
+++ b/tests/parm/global_control.nml.IN
@@ -42,11 +42,11 @@
rf_cutoff = 10.
d2_bg_k1 = @[D2_BG_K1]
d2_bg_k2 = @[D2_BG_K2]
- kord_tm = -9
- kord_mt = 9
- kord_wz = 9
- kord_tr = 9
- hydrostatic = .false.
+ kord_tm = @[KORD_TM]
+ kord_mt = @[KORD_XX]
+ kord_wz = @[KORD_XX]
+ kord_tr = @[KORD_XX]
+ hydrostatic = @[HYDROSTATIC]
phys_hydrostatic = .false.
use_hydro_pressure = .false.
beta = 0.
@@ -66,19 +66,19 @@
vtdm4 = 0.02
delt_max = 0.002
ke_bg = 0.
- do_vort_damp = .true.
+ do_vort_damp = @[DO_VORT_DAMP]
external_ic = @[EXTERNAL_IC]
external_eta = .true.
gfs_phil = .false.
nggps_ic = @[NGGPS_IC]
mountain = @[MOUNTAIN]
ncep_ic = .false.
- d_con = 1.
- hord_mt = 5
- hord_vt = 5
- hord_tm = 5
- hord_dp = -5
- hord_tr = 8
+ d_con = @[D_CON]
+ hord_mt = @[HORD_XX]
+ hord_vt = @[HORD_XX]
+ hord_tm = @[HORD_XX]
+ hord_dp = @[HORD_DP]
+ hord_tr = @[HORD_TR]
adjust_dry_mass = .false.
dry_mass = 98320.0
consv_te = 1.
diff --git a/tests/rt.conf b/tests/rt.conf
index 2fa9bfd999..eda2ad0f6f 100644
--- a/tests/rt.conf
+++ b/tests/rt.conf
@@ -31,6 +31,10 @@ RUN | cpld_control_gfsv17_iau | - noaacloud
RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17
RUN | cpld_mpi_gfsv17 | - noaacloud | |
+#SFS
+COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 |
+RUN | cpld_control_sfs | - noaacloud | baseline |
+
COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 |
RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline |
@@ -40,7 +44,7 @@ RUN | cpld_control_p8.v2.sfc | - noaacloud
RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8
RUN | cpld_control_qr_p8 | - noaacloud | |
RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8
-RUN | cpld_2threads_p8 | - derecho noaacloud | |
+RUN | cpld_2threads_p8 | - noaacloud | |
RUN | cpld_decomp_p8 | - noaacloud | |
RUN | cpld_mpi_p8 | - noaacloud | |
RUN | cpld_control_ciceC_p8 | - noaacloud | baseline |
@@ -107,7 +111,7 @@ RUN | control_restart_p8 | - noaacloud
RUN | control_noqr_p8 | - noaacloud | |
RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8
RUN | control_decomp_p8 | - noaacloud | |
-RUN | control_2threads_p8 | - derecho noaacloud | |
+RUN | control_2threads_p8 | - noaacloud | |
RUN | control_p8_lndp | | baseline |
RUN | control_p8_rrtmgp | - noaacloud | baseline |
RUN | control_p8_mynn | - noaacloud | baseline |
@@ -130,7 +134,7 @@ COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRR
RUN | rap_control | | baseline |
RUN | regional_spp_sppt_shum_skeb | | baseline |
RUN | rap_decomp | - noaacloud | |
-RUN | rap_2threads | - derecho noaacloud | |
+RUN | rap_2threads | - noaacloud | |
RUN | rap_restart | - noaacloud | | rap_control
RUN | rap_sfcdiff | - noaacloud | baseline |
RUN | rap_sfcdiff_decomp | - noaacloud | |
@@ -198,8 +202,8 @@ COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D
RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline |
RUN | rap_control_dyn32_phy32 | - noaacloud | baseline |
RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline |
-RUN | rap_2threads_dyn32_phy32 | - derecho noaacloud | |
-RUN | hrrr_control_2threads_dyn32_phy32 | - derecho noaacloud | |
+RUN | rap_2threads_dyn32_phy32 | - noaacloud | |
+RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | |
RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | |
RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32
RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32
@@ -221,7 +225,7 @@ RUN | rap_control_debug_dyn32_phy32 | - noaacloud
RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline |
RUN | conus13km_debug | - noaacloud | baseline |
RUN | conus13km_debug_qr | - noaacloud | |
-RUN | conus13km_debug_2threads | - derecho noaacloud | |
+RUN | conus13km_debug_2threads | - noaacloud | |
RUN | conus13km_radar_tten_debug | - noaacloud | baseline |
# Expected to fail:
diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh
index 1d72ada3fe..cc375c189c 100755
--- a/tests/rt_utils.sh
+++ b/tests/rt_utils.sh
@@ -230,15 +230,15 @@ submit_and_wait() {
#fail/completed cases
#pbs: E
#slurm: F/FAILED TO/TIMEOUT CA/CANCELLED
- E|F|TO|CA|FAILED|TIMEOUT|CANCELLED)
+ F|TO|CA|FAILED|TIMEOUT|CANCELLED)
echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!"
job_running=false #Trip the loop to end with these status flags
interrupt_job
exit 1
;;
#completed
- #pbs only: C
- C)
+ #pbs only: C-Complete E-Exiting
+ C|E)
status_label='Completed'
;;
*)
diff --git a/tests/test_changes.list b/tests/test_changes.list
index e69de29bb2..52067a1431 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -0,0 +1 @@
+cpld_control_sfs intel
diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs
new file mode 100644
index 0000000000..eedbe81193
--- /dev/null
+++ b/tests/tests/cpld_control_sfs
@@ -0,0 +1,89 @@
+#
+# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag +
+# version 1 non-stationary GWD, hydrostatic
+#
+
+export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system hydrostatic version - C96MX100 - unst WW3"
+
+export CNTL_DIR=cpld_control_sfs
+
+export LIST_FILES="sfcf021.nc \
+ sfcf024.nc \
+ atmf021.nc \
+ atmf024.nc \
+ GFSFLX.GrbF21 \
+ GFSFLX.GrbF24 \
+ GFSPRS.GrbF21 \
+ GFSPRS.GrbF24"
+
+export_fv3
+export_cpl
+
+export CPLCHM=.false.
+export DNATS=0
+export MAKE_NH=.false.
+export DDDMP=0
+export DO_VORT_DAMP=.false.
+export HYDROSTATIC=.true.
+export HORD_XX=10
+export HORD_DP=10
+export KORD_XX=12
+export KORD_TM=-12
+export D_CON=0
+
+export RESTART_N=3
+export RESTART_INTERVAL="${RESTART_N} -1"
+export OUTPUT_FH='0 21 24'
+export OUTPUT_GRID="'gaussian_grid'"
+export WRITE_DOPOST=.true.
+
+export INPES=$INPES_cpl_unstr
+export JNPES=$JNPES_cpl_unstr
+export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr ))
+
+OCN_tasks=$OCN_tasks_cpl_unstr
+ICE_tasks=$ICE_tasks_cpl_unstr
+WAV_tasks=$WAV_tasks_cpl_unstr
+
+export atm_omp_num_threads=$THRD_cpl_unstr
+export med_omp_num_threads=$atm_omp_num_threads
+
+# UGWP1
+export GWD_OPT=2
+export CDMBWD=20.0,2.5,1.0,1.0
+export DO_UGWP_V1=.true.
+export KNOB_UGWP_VERSION=1
+export KNOB_UGWP_NSLOPE=1
+export DO_UGWP_V0=.false.
+export DO_GSL_DRAG_LS_BL=.true.
+export DO_GSL_DRAG_SS=.true.
+export DO_GSL_DRAG_TOFD=.true.
+export DO_UGWP_V1_OROG_ONLY=.false.
+export DO_UGWP_V0_NST_ONLY=.false.
+export LDIAG_UGWP=.false.
+export KNOB_UGWP_DOKDIS=2
+export KNOB_UGWP_NDX4LH=4
+
+export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc
+export MOM6_ALLOW_LANDMASK_CHANGES=True
+export eps_imesh=2.5e-1
+
+export WW3_DOMAIN=global_270k
+export MESH_WAV=mesh.${WW3_DOMAIN}.nc
+export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN}
+
+export FV3_RUN=cpld_control_run.IN
+export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1
+export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma
+export DIAG_TABLE=diag_table_cpld_sfs.IN
+export INPUT_NML=global_control.nml.IN
+
+export UFS_CONFIGURE=ufs.configure.s2sw.IN
+
+#GFSv17 settings
+export PROGSIGMA=.true.
+export IOPT_DIAG=1
+
+if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then
+ WLCLK=40
+fi
From d55f1b89342c65d72a118ba02aa892d6bbf6d098 Mon Sep 17 00:00:00 2001
From: Grant Firl
Date: Mon, 20 May 2024 11:43:27 -0400
Subject: [PATCH 33/33] Combination CCPP-related PR for ozone diagnostics,
metadata intent bugfixes, sfcsub.F landmask bugfix, and canopy resistance
output (#2264)
* UFSWM, CMEPS, FV3/ccpp_physics - CCPP Physics bugfixes for metadata intents and sfcsub.f landmask and output changes for ozone diagnostics and canopy resistance
---
CMEPS-interface/CMEPS | 2 +-
FV3 | 2 +-
NOAHMP-interface/noahmp | 2 +-
tests/bl_date.conf | 2 +-
tests/logs/OpnReqTests_control_p8_hera.log | 48 +-
...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +-
.../OpnReqTests_regional_control_hera.log | 30 +-
tests/logs/RegressionTests_acorn.log | 593 +++++++-------
tests/logs/RegressionTests_derecho.log | 617 +++++++--------
tests/logs/RegressionTests_gaea.log | 542 ++++++-------
tests/logs/RegressionTests_hera.log | 722 +++++++++---------
tests/logs/RegressionTests_hercules.log | 714 ++++++++---------
tests/logs/RegressionTests_jet.log | 480 ++++++------
tests/logs/RegressionTests_orion.log | 631 ++++++++-------
tests/logs/RegressionTests_wcoss2.log | 556 ++++++++------
tests/test_changes.list | 5 +-
16 files changed, 2500 insertions(+), 2470 deletions(-)
diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS
index 4e19850cb0..2d837b16af 160000
--- a/CMEPS-interface/CMEPS
+++ b/CMEPS-interface/CMEPS
@@ -1 +1 @@
-Subproject commit 4e19850cb083bc474b7cde5dc2f8506ec74cc442
+Subproject commit 2d837b16af326b09ff4018daab4de84f4deff7ec
diff --git a/FV3 b/FV3
index 9534e14d3c..10271c97aa 160000
--- a/FV3
+++ b/FV3
@@ -1 +1 @@
-Subproject commit 9534e14d3c740c8aa9c915ad03f36dc7b75d8ab8
+Subproject commit 10271c97aa884f64d0c2003c3202eb229cc1d65b
diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp
index 1e259014c1..ec38ea3d90 160000
--- a/NOAHMP-interface/noahmp
+++ b/NOAHMP-interface/noahmp
@@ -1 +1 @@
-Subproject commit 1e259014c1eba9070cec7027d8b4b479ae54275a
+Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108
diff --git a/tests/bl_date.conf b/tests/bl_date.conf
index 26b75780f3..1e9296108e 100644
--- a/tests/bl_date.conf
+++ b/tests/bl_date.conf
@@ -1 +1 @@
-export BL_DATE=20240503
+export BL_DATE=20240516
diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log
index 3476a24c88..89afac6ba2 100644
--- a/tests/logs/OpnReqTests_control_p8_hera.log
+++ b/tests/logs/OpnReqTests_control_p8_hera.log
@@ -1,9 +1,9 @@
-Mon May 13 18:14:19 UTC 2024
+Thu May 16 20:24:57 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving sfcf000.nc .........OK
@@ -51,14 +51,14 @@ Moving baseline bit_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 270.538118
- 0: The maximum resident set size (KB) = 1254096
+ 0: The total amount of wall time = 278.785657
+ 0: The maximum resident set size (KB) = 1253096
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf000.nc .........OK
@@ -106,14 +106,14 @@ Moving baseline dbg_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 975.476688
- 0: The maximum resident set size (KB) = 1230856
+ 0: The total amount of wall time = 945.032567
+ 0: The maximum resident set size (KB) = 1233484
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/dcp_dcp
Checking test dcp results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -160,14 +160,14 @@ Checking test dcp results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.920448
- 0: The maximum resident set size (KB) = 1231760
+ 0: The total amount of wall time = 244.990573
+ 0: The maximum resident set size (KB) = 1232508
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/mpi_mpi
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/mpi_mpi
Checking test mpi results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -214,14 +214,14 @@ Checking test mpi results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 238.597717
- 0: The maximum resident set size (KB) = 1233284
+ 0: The total amount of wall time = 241.154280
+ 0: The maximum resident set size (KB) = 1233296
Test mpi PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/rst_rst
Checking test rst results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -268,14 +268,14 @@ Checking test rst results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 237.803525
- 0: The maximum resident set size (KB) = 1234508
+ 0: The total amount of wall time = 242.646838
+ 0: The maximum resident set size (KB) = 1233060
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf000.nc .........OK
@@ -323,14 +323,14 @@ Moving baseline std_base files ....
Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK
Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK
- 0: The total amount of wall time = 241.082583
- 0: The maximum resident set size (KB) = 1232320
+ 0: The total amount of wall time = 263.767716
+ 0: The maximum resident set size (KB) = 1233204
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1903784/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_197061/thr_thr
Checking test thr results ....
Comparing sfcf000.nc .....USING NCCMP......OK
Comparing sfcf021.nc .....USING NCCMP......OK
@@ -377,11 +377,11 @@ Checking test thr results ....
Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK
Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 246.042458
- 0: The maximum resident set size (KB) = 1232080
+ 0: The total amount of wall time = 246.202485
+ 0: The maximum resident set size (KB) = 1231200
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Mon May 13 19:16:46 UTC 2024
-Elapsed time: 01h:02m:28s. Have a nice day!
+Thu May 16 21:50:50 UTC 2024
+Elapsed time: 01h:27m:39s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
index 5a5ebcd930..aad139e461 100644
--- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
+++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log
@@ -1,9 +1,9 @@
-Tue May 14 03:58:00 UTC 2024
+Fri May 17 15:45:56 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/dbg_base_dbg_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/dbg_base_dbg_base
Checking test dbg_base results ....
Moving baseline dbg_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -66,14 +66,14 @@ Moving baseline dbg_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 1357.491643
- 0: The maximum resident set size (KB) = 1368672
+ 0: The total amount of wall time = 1313.057110
+ 0: The maximum resident set size (KB) = 1342956
Test dbg_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/rst_rst
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/rst_rst
Checking test rst results ....
Comparing sfcf021.tile1.nc .....USING NCCMP......OK
Comparing sfcf021.tile2.nc .....USING NCCMP......OK
@@ -135,14 +135,14 @@ Checking test rst results ....
Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK
Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK
- 0: The total amount of wall time = 388.602017
- 0: The maximum resident set size (KB) = 1356348
+ 0: The total amount of wall time = 518.573154
+ 0: The maximum resident set size (KB) = 1341724
Test rst PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2934958/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1600376/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving sfcf021.tile1.nc .........OK
@@ -205,11 +205,11 @@ Moving baseline std_base files ....
Moving RESTART/iced.2021-03-23-21600.nc .........OK
Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK
- 0: The total amount of wall time = 392.294030
- 0: The maximum resident set size (KB) = 1358828
+ 0: The total amount of wall time = 393.159431
+ 0: The maximum resident set size (KB) = 1342660
Test std_base PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue May 14 04:56:24 UTC 2024
-Elapsed time: 00h:58m:24s. Have a nice day!
+Fri May 17 16:50:15 UTC 2024
+Elapsed time: 01h:04m:19s. Have a nice day!
diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log
index 78733d81a4..0a3673a0f2 100644
--- a/tests/logs/OpnReqTests_regional_control_hera.log
+++ b/tests/logs/OpnReqTests_regional_control_hera.log
@@ -1,9 +1,9 @@
-Tue May 14 12:09:43 UTC 2024
+Fri May 17 13:09:07 UTC 2024
Start Operation Requirement Test
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/bit_base_bit_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/bit_base_bit_base
Checking test bit_base results ....
Moving baseline bit_base files ....
Moving dynf000.nc .........OK
@@ -15,14 +15,14 @@ Moving baseline bit_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 1347.763107
- 0: The maximum resident set size (KB) = 583388
+ 0: The total amount of wall time = 1380.751535
+ 0: The maximum resident set size (KB) = 575872
Test bit_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/dcp_dcp
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/dcp_dcp
Checking test dcp results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -33,14 +33,14 @@ Checking test dcp results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2795.464199
- 0: The maximum resident set size (KB) = 541676
+ 0: The total amount of wall time = 2250.847202
+ 0: The maximum resident set size (KB) = 545220
Test dcp PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/std_base_std_base
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/std_base_std_base
Checking test std_base results ....
Moving baseline std_base files ....
Moving dynf000.nc .........OK
@@ -52,14 +52,14 @@ Moving baseline std_base files ....
Moving NATLEV.GrbF00 .........OK
Moving NATLEV.GrbF06 .........OK
- 0: The total amount of wall time = 2362.646234
- 0: The maximum resident set size (KB) = 541132
+ 0: The total amount of wall time = 2153.300954
+ 0: The maximum resident set size (KB) = 541236
Test std_base PASS
baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu
-working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_440332/thr_thr
+working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_959654/thr_thr
Checking test thr results ....
Comparing dynf000.nc .....USING NCCMP......OK
Comparing dynf006.nc .....USING NCCMP......OK
@@ -70,11 +70,11 @@ Checking test thr results ....
Comparing NATLEV.GrbF00 .....USING CMP......OK
Comparing NATLEV.GrbF06 .....USING CMP......OK
- 0: The total amount of wall time = 2378.042584
- 0: The maximum resident set size (KB) = 541716
+ 0: The total amount of wall time = 2143.988793
+ 0: The maximum resident set size (KB) = 542088
Test thr PASS
OPERATION REQUIREMENT TEST WAS SUCCESSFUL
-Tue May 14 14:52:00 UTC 2024
-Elapsed time: 02h:42m:17s. Have a nice day!
+Fri May 17 15:35:34 UTC 2024
+Elapsed time: 02h:26m:28s. Have a nice day!
diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log
index b6a7a66536..f664480f0c 100644
--- a/tests/logs/RegressionTests_acorn.log
+++ b/tests/logs/RegressionTests_acorn.log
@@ -1,7 +1,7 @@
====START OF ACORN REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,339 +35,270 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_188435
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117947
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:25, 10:15] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:36, 01:15](3046 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:30, 16:14] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [44:31, 01:59](1652 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:42, 02:01](1777 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [26:23, 01:25](908 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:32, 01:37](1633 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 15:46] ( 2 warnings 8 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [28:39, 00:49](1648 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:16, 03:46] ( 1526 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [56:45, 01:53](1684 MB)
-
-PASS -- COMPILE 's2swa_intel' [10:24, 10:06] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [38:36, 00:50](3074 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:35, 01:04](3074 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [16:03, 01:02](3131 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [37:16, 00:50](3098 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [15:54, 01:31](3150 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [36:33, 01:22](3387 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [36:33, 01:46](3073 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [35:26, 01:02](2998 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:44, 01:13](3075 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [30:46, 01:18](3039 MB)
-
-PASS -- COMPILE 's2sw_intel' [10:23, 09:46] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [50:37, 00:51](1650 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [50:37, 00:56](1699 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:25, 10:52] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [49:36, 00:57](1698 MB)
-
-PASS -- COMPILE 's2s_intel' [09:23, 09:04] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [51:37, 00:44](2679 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_warmstart_c48_intel' [, ]( MB)
-FAILED: UNABLE TO START RUN -- TEST 'cpld_restart_c48_intel' [, ]( MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [15:30, 14:22] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [45:31, 01:37](3075 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:48] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:30, 01:12](1670 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:12, 00:44](971 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:04, 01:32](1646 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:30] ( 1561 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [52:28, 01:29](1697 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:14] ( 2 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [42:04, 01:04](637 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [42:04, 00:47](1537 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:04, 00:27](1542 MB)
-PASS -- TEST 'control_latlon_intel' [42:04, 00:52](1536 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:04, 00:34](1533 MB)
-PASS -- TEST 'control_c48_intel' [42:03, 00:48](1615 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [42:03, 00:48](740 MB)
-PASS -- TEST 'control_c192_intel' [42:04, 01:19](1650 MB)
-PASS -- TEST 'control_c384_intel' [42:08, 01:29](1964 MB)
-PASS -- TEST 'control_c384gdas_intel' [42:08, 02:06](1149 MB)
-PASS -- TEST 'control_stochy_intel' [42:04, 00:16](593 MB)
-PASS -- TEST 'control_stochy_restart_intel' [25:19, 00:51](395 MB)
-PASS -- TEST 'control_lndp_intel' [42:04, 01:04](592 MB)
-PASS -- TEST 'control_iovr4_intel' [42:04, 00:24](587 MB)
-PASS -- TEST 'control_iovr5_intel' [42:04, 00:24](587 MB)
-PASS -- TEST 'control_p8_intel' [42:04, 01:01](1569 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [21:47, 01:11](1573 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [42:04, 01:14](1562 MB)
-PASS -- TEST 'control_restart_p8_intel' [24:08, 01:08](751 MB)
-PASS -- TEST 'control_noqr_p8_intel' [42:04, 01:15](1556 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [21:17, 00:45](759 MB)
-PASS -- TEST 'control_decomp_p8_intel' [42:04, 01:36](1562 MB)
-PASS -- TEST 'control_2threads_p8_intel' [42:04, 01:34](1656 MB)
-PASS -- TEST 'control_p8_lndp_intel' [25:18, 00:25](1573 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [25:09, 01:17](1620 MB)
-PASS -- TEST 'control_p8_mynn_intel' [24:35, 01:27](1577 MB)
-PASS -- TEST 'merra2_thompson_intel' [23:19, 01:22](1570 MB)
-PASS -- TEST 'regional_control_intel' [22:44, 00:54](632 MB)
-PASS -- TEST 'regional_restart_intel' [06:48, 01:00](800 MB)
-PASS -- TEST 'regional_decomp_intel' [22:40, 01:00](631 MB)
-PASS -- TEST 'regional_2threads_intel' [22:32, 00:38](733 MB)
-PASS -- TEST 'regional_noquilt_intel' [22:03, 00:30](1167 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [21:37, 00:20](634 MB)
-PASS -- TEST 'regional_wofs_intel' [21:24, 00:13](1603 MB)
-
-PASS -- COMPILE 'ifi_intel' [08:21, 08:01] ( 1 warnings )
-PASS -- TEST 'regional_ifi_control_intel' [43:15, 00:50](635 MB)
-PASS -- TEST 'regional_ifi_decomp_intel' [43:15, 00:37](629 MB)
-PASS -- TEST 'regional_ifi_2threads_intel' [43:16, 00:48](727 MB)
-
-PASS -- COMPILE 'rrfs_intel' [09:23, 08:45] ( 4 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [21:17, 01:18](975 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:18, 00:39](1152 MB)
-PASS -- TEST 'rap_decomp_intel' [20:03, 01:31](974 MB)
-PASS -- TEST 'rap_2threads_intel' [19:49, 01:07](1060 MB)
-PASS -- TEST 'rap_restart_intel' [07:54, 01:52](841 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [16:03, 02:06](972 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:59, 01:49](970 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [04:36, 01:37](841 MB)
-PASS -- TEST 'hrrr_control_intel' [15:56, 01:05](969 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [15:29, 00:51](973 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [15:27, 01:57](1048 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [08:42, 00:53](803 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [15:15, 01:08](968 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [15:03, 00:51](1936 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:54, 01:10](1919 MB)
-
-PASS -- COMPILE 'csawmg_intel' [09:23, 08:21] ( 2 warnings )
-PASS -- TEST 'control_csawmg_intel' [13:44, 00:59](661 MB)
-
-PASS -- COMPILE 'wam_intel' [08:22, 08:06] ( 1 warnings )
-PASS -- TEST 'control_wam_intel' [13:11, 00:19](333 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:42] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [12:44, 00:56](1564 MB)
-PASS -- TEST 'regional_control_faster_intel' [12:32, 00:12](629 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:17, 04:02] ( 886 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:23, 00:33](1557 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [12:18, 00:29](1562 MB)
-PASS -- TEST 'control_stochy_debug_intel' [12:16, 00:54](764 MB)
-PASS -- TEST 'control_lndp_debug_intel' [12:13, 01:09](764 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [11:50, 00:33](803 MB)
-PASS -- TEST 'control_ras_debug_intel' [11:39, 00:22](772 MB)
-PASS -- TEST 'control_diag_debug_intel' [08:36, 01:06](1624 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:32, 00:34](1599 MB)
-PASS -- TEST 'regional_debug_intel' [07:38, 00:20](672 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:51, 00:23](1147 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:44, 00:28](1136 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:43, 01:10](1142 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:41, 01:00](1143 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:54, 00:39](1147 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:26, 00:34](1226 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:00, 00:44](1145 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:48, 00:36](1145 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:46, 00:38](1148 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:36, 00:43](1145 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:33, 00:24](1142 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:25, 00:29](1142 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:14, 00:17](1143 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:11, 00:36](1135 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [03:42, 00:51](1143 MB)
-PASS -- TEST 'rap_flake_debug_intel' [03:31, 00:38](1142 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [03:22, 01:54](1151 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [03:16, 02:59] ( 856 warnings )
-PASS -- TEST 'control_wam_debug_intel' [54:24, 00:51](375 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:25, 08:07] ( 4 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [02:49, 00:41](1016 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [02:08, 01:30](853 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:59, 01:30](849 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:13, 01:24](911 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [00:26, 02:10](904 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [00:16, 01:11](850 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [51:54, 01:00](751 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [54:24, 00:58](732 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:24, 10:14] ( 4 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [59:39, 01:14](1060 MB)
-PASS -- TEST 'conus13km_2threads_intel' [54:52, 00:59](1040 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [54:42, 00:37](939 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [46:59, 08:17] ( 4 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [45:07, 00:38](873 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 02:57] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [59:27, 00:31](1020 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [59:13, 00:36](1024 MB)
-PASS -- TEST 'conus13km_debug_intel' [59:11, 01:16](1113 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [58:51, 01:08](789 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [58:35, 01:01](1090 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [58:25, 00:18](1181 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 02:55] ( 788 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [58:23, 00:48](1047 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:29, 09:11] ( 2 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [58:23, 02:02](677 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [58:13, 01:05](1027 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [58:07, 01:54](708 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [56:59, 01:47](764 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:21, 02:01](772 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [55:52, 00:57](437 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [54:16, 02:10](465 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [54:04, 01:10](339 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [54:07, 02:23](405 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [53:45, 01:29](476 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [53:38, 01:28](476 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [53:15, 00:43](542 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [53:03, 00:54](370 MB)
-PASS -- TEST 'gnv1_nested_intel' [51:59, 00:54](731 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:21, 03:14] ( 1468 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [49:01, 00:47](576 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:27, 09:35] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [48:37, 00:46](584 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:52, 01:09](753 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:29, 09:21] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [47:43, 00:51](755 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:24, 08:53] ( 1 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [44:41, 01:39](715 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [44:13, 02:06](699 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [41:57, 01:08](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:23, 07:32]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [41:19, 00:42](764 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [37:58, 00:46](751 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [39:35, 00:42](643 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:52, 00:49](643 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [36:33, 00:29](644 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [36:31, 00:47](763 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [36:26, 00:50](761 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [36:15, 00:11](642 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [34:55, 01:06](647 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:50, 00:37](632 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [34:37, 00:51](763 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [33:32, 00:13](2019 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [31:53, 00:41](2016 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 08:38]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:36, 00:44](762 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [39:54, 00:53] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [30:38, 01:04](276 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [30:29, 00:59](410 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [27:02, 00:44](410 MB)
-
-PASS -- COMPILE 'atml_intel' [50:05, 09:44] ( 9 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [29:42, 01:23](1610 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [29:07, 01:51](1605 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [21:44, 00:27](806 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [40:58, 03:36] ( 881 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [28:36, 01:32](1635 MB)
-
-PASS -- COMPILE 'atmw_intel' [46:00, 08:45] ( 1 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:26, 00:59](1609 MB)
-
-PASS -- COMPILE 'atmaero_intel' [47:05, 08:30] ( 1 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [28:09, 00:48](2922 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [27:04, 01:15](2975 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:02, 01:36](2987 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [40:58, 03:01] ( 885 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [26:35, 00:44](4512 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:18] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:08, 01:29](3046 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:31, 16:21] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [20:01, 01:37](1656 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [54:01, 01:35](1779 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [53:43, 01:50](912 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:02, 02:07](1635 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:28, 16:09] ( 2 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [21:03, 01:15](1648 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:17, 03:53] ( 1526 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [33:15, 01:44](1677 MB)
+
+PASS -- COMPILE 's2swa_intel' [11:24, 11:01] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [26:07, 01:41](3077 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:07, 01:02](3073 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [17:25, 01:23](3130 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [26:07, 01:00](3099 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [11:23, 01:29](3152 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [26:07, 01:16](3387 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [26:07, 01:39](3070 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [26:08, 00:40](3000 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [26:07, 01:19](3078 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [26:07, 01:51](3039 MB)
+
+PASS -- COMPILE 's2sw_intel' [10:22, 09:37] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [27:09, 00:51](1655 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:09, 00:55](1701 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:14] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [27:08, 00:57](1699 MB)
+
+PASS -- COMPILE 's2s_intel' [11:25, 10:44] ( 1 warnings 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [26:06, 00:44](2679 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [26:06, 00:29](2701 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [22:57, 01:18](2131 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [15:29, 14:23] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [22:03, 01:14](3075 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 14:53] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:03, 01:24](1669 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:44, 00:43](973 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:30, 01:37](1652 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:16, 03:38] ( 1561 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:58, 01:32](1689 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [10:22, 09:18] ( 2 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [18:34, 00:50](638 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [18:34, 00:56](1537 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:34, 01:17](1543 MB)
+PASS -- TEST 'control_latlon_intel' [18:34, 01:07](1536 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:34, 01:18](1535 MB)
+PASS -- TEST 'control_c48_intel' [18:33, 01:19](1617 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [18:33, 00:39](740 MB)
+PASS -- TEST 'control_c192_intel' [18:34, 01:19](1650 MB)
+PASS -- TEST 'control_c384_intel' [18:38, 00:58](1958 MB)
+PASS -- TEST 'control_c384gdas_intel' [17:53, 01:34](1149 MB)
+PASS -- TEST 'control_stochy_intel' [17:34, 00:53](594 MB)
+PASS -- TEST 'control_stochy_restart_intel' [00:54, 00:42](395 MB)
+PASS -- TEST 'control_lndp_intel' [16:45, 01:10](592 MB)
+PASS -- TEST 'control_iovr4_intel' [14:38, 00:17](589 MB)
+PASS -- TEST 'control_iovr5_intel' [14:24, 00:32](587 MB)
+PASS -- TEST 'control_p8_intel' [13:38, 01:41](1566 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:25, 01:17](1569 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [11:59, 01:23](1564 MB)
+PASS -- TEST 'control_restart_p8_intel' [58:09, 00:55](753 MB)
+PASS -- TEST 'control_noqr_p8_intel' [11:21, 01:24](1552 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [57:11, 01:06](763 MB)
+PASS -- TEST 'control_decomp_p8_intel' [10:59, 01:29](1564 MB)
+PASS -- TEST 'control_2threads_p8_intel' [09:51, 00:39](1653 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:37, 01:02](1564 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:18, 01:18](1617 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:57, 01:27](1579 MB)
+PASS -- TEST 'merra2_thompson_intel' [04:51, 02:01](1575 MB)
+PASS -- TEST 'regional_control_intel' [03:45, 01:01](633 MB)
+PASS -- TEST 'regional_restart_intel' [55:02, 00:55](803 MB)
+PASS -- TEST 'regional_decomp_intel' [02:25, 00:11](631 MB)
+PASS -- TEST 'regional_2threads_intel' [01:39, 00:19](722 MB)
+PASS -- TEST 'regional_noquilt_intel' [01:36, 01:13](1168 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [01:26, 00:28](631 MB)
+PASS -- TEST 'regional_wofs_intel' [00:16, 00:15](1604 MB)
+
+PASS -- COMPILE 'ifi_intel' [08:21, 08:06] ( 1 warnings )
+PASS -- TEST 'regional_ifi_control_intel' [18:46, 01:08](632 MB)
+PASS -- TEST 'regional_ifi_decomp_intel' [18:46, 00:31](631 MB)
+PASS -- TEST 'regional_ifi_2threads_intel' [18:47, 00:32](725 MB)
+
+PASS -- COMPILE 'rrfs_intel' [09:22, 08:57] ( 4 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [00:07, 01:21](976 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:02, 01:28](1155 MB)
+PASS -- TEST 'rap_decomp_intel' [59:47, 00:51](976 MB)
+PASS -- TEST 'rap_2threads_intel' [59:07, 01:37](1059 MB)
+PASS -- TEST 'rap_restart_intel' [48:49, 00:44](841 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [58:04, 01:09](970 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [57:55, 01:37](971 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [47:50, 01:21](845 MB)
+PASS -- TEST 'hrrr_control_intel' [57:47, 01:04](970 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [57:40, 01:29](966 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [57:33, 01:32](1048 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [50:33, 01:01](798 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [56:51, 01:50](967 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [56:27, 01:02](1934 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [55:57, 01:17](1920 MB)
+
+PASS -- COMPILE 'csawmg_intel' [09:22, 08:25] ( 2 warnings )
+PASS -- TEST 'control_csawmg_intel' [55:39, 00:54](665 MB)
+
+PASS -- COMPILE 'wam_intel' [08:22, 08:05] ( 1 warnings )
+PASS -- TEST 'control_wam_intel' [54:56, 00:20](334 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 08:41] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [54:54, 00:59](1560 MB)
+PASS -- TEST 'regional_control_faster_intel' [54:43, 01:05](630 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [38:53, 04:07] ( 886 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [43:10, 00:51](1560 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [43:10, 00:30](1562 MB)
+PASS -- TEST 'control_stochy_debug_intel' [43:10, 00:58](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [43:10, 00:14](766 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [43:10, 00:08](806 MB)
+PASS -- TEST 'control_ras_debug_intel' [43:10, 00:13](778 MB)
+PASS -- TEST 'control_diag_debug_intel' [43:10, 00:30](1629 MB)
+PASS -- TEST 'control_debug_p8_intel' [43:10, 00:37](1591 MB)
+PASS -- TEST 'regional_debug_intel' [43:09, 00:58](674 MB)
+PASS -- TEST 'rap_control_debug_intel' [43:10, 01:03](1148 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [43:10, 00:45](1140 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [43:10, 00:32](1145 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [43:10, 00:17](1150 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:10, 00:41](1149 MB)
+PASS -- TEST 'rap_diag_debug_intel' [43:10, 00:34](1227 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [43:10, 00:44](1148 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:10, 00:47](1148 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [43:10, 00:42](1147 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:10, 00:53](1149 MB)
+PASS -- TEST 'rap_noah_debug_intel' [43:10, 00:54](1146 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [43:10, 00:56](1143 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:58, 01:01](1140 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [42:44, 00:58](1142 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [40:56, 00:45](1148 MB)
+PASS -- TEST 'rap_flake_debug_intel' [40:32, 00:44](1149 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:22, 01:46](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [36:51, 02:54] ( 856 warnings )
+PASS -- TEST 'control_wam_debug_intel' [45:12, 00:54](375 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [41:55, 08:10] ( 4 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:46, 00:48](1019 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:36, 01:06](854 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:56, 02:02](848 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:33, 00:57](917 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:26, 01:54](904 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [35:31, 01:07](850 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [44:58, 01:48](737 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [46:43, 00:38](729 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [42:56, 10:16] ( 4 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [34:30, 00:43](1062 MB)
+PASS -- TEST 'conus13km_2threads_intel' [46:02, 00:12](1043 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [45:35, 00:34](938 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [40:56, 08:11] ( 4 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [34:30, 00:32](873 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [35:49, 03:00] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [39:39, 00:19](1017 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [39:38, 00:31](1022 MB)
+PASS -- TEST 'conus13km_debug_intel' [39:11, 00:30](1117 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [33:28, 00:54](786 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [33:28, 00:43](1083 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:26, 00:27](1182 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:51, 03:02] ( 788 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:26, 00:33](1046 MB)
+
+PASS -- COMPILE 'hafsw_intel' [41:57, 09:22] ( 2 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [33:28, 01:23](674 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:00, 01:06](1025 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [31:26, 01:36](707 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [29:21, 01:43](753 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:55, 01:28](773 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [20:35, 00:51](436 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [20:22, 01:30](465 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [19:57, 01:30](336 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:34, 02:35](403 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:06, 00:39](478 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:27, 01:23](474 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:45, 01:08](535 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:44, 00:31](369 MB)
+PASS -- TEST 'gnv1_nested_intel' [05:16, 00:48](735 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [34:48, 03:20] ( 1468 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [04:09, 00:55](574 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [40:57, 09:39] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [02:55, 01:10](579 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:44, 01:29](759 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:23, 09:29] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:07, 01:29](754 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [09:23, 09:07] ( 1 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [00:30, 01:16](717 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [59:23, 01:04](697 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [59:18, 00:52](896 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [14:27, 08:33]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [58:23, 00:54](749 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [43:51, 00:22](737 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [58:15, 00:09](638 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [55:23, 00:17](645 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [53:23, 00:09](643 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [51:59, 00:28](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [51:59, 00:32](762 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [51:44, 00:55](649 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [50:52, 01:10](647 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [50:26, 00:33](631 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [50:16, 00:11](761 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [50:08, 00:35](2018 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [47:59, 00:24](2020 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [14:27, 08:31]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [47:24, 00:54](763 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [07:21, 00:50] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [47:23, 00:33](273 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [47:17, 00:24](410 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [44:51, 00:34](411 MB)
+
+PASS -- COMPILE 'atml_intel' [14:28, 09:43] ( 9 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [47:15, 01:50](1608 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [46:44, 01:08](1609 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [39:19, 00:28](805 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:18, 03:32] ( 883 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [46:37, 01:28](1634 MB)
+
+PASS -- COMPILE 'atmw_intel' [11:24, 08:39] ( 1 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [46:04, 00:49](1609 MB)
+
+PASS -- COMPILE 'atmaero_intel' [10:23, 08:30] ( 1 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [44:51, 01:01](2916 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [44:45, 01:31](2977 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:46, 00:56](2987 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [05:17, 03:16] ( 885 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [43:23, 00:57](4491 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 18:58:41
-Ending Date/Time: 20240514 20:59:35
-Total Time: 02h:01m:11s
+Starting Date/Time: 20240516 20:22:09
+Ending Date/Time: 20240516 22:42:53
+Total Time: 02h:21m:02s
Compiles Completed: 37/37
-Tests Completed: 175/177
-Failed Tests:
-* TEST cpld_warmstart_c48_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/XiaqiongZhou-NOAA/ufs-weather-model/tests/logs/log_acorn/run_cpld_warmstart_c48_intel.log
-* TEST cpld_restart_c48_intel: FAILED: UNABLE TO START RUN
--- LOG: N/A
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF ACORN REGRESSION TESTING LOG====
-====START OF ACORN REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
- 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_195507
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
-* (-b) - NEW BASELINES FROM FILE: test_changes.list
-* (-e) - USE ECFLOW
-
-PASS -- COMPILE 's2s_intel' [09:22, 09:02] ( 1 warnings 1 remarks )
-PASS -- TEST 'cpld_warmstart_c48_intel' [10:31, 01:25](1487 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [07:35, 01:10](2132 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240515 15:39:57
-Ending Date/Time: 20240515 15:56:26
-Total Time: 00h:16m:39s
-Compiles Completed: 1/1
-Tests Completed: 2/2
+Tests Completed: 177/177
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log
index f5ed43ee9f..b2a6cf9050 100644
--- a/tests/logs/RegressionTests_derecho.log
+++ b/tests/logs/RegressionTests_derecho.log
@@ -1,7 +1,7 @@
====START OF DERECHO REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,355 +35,280 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_19059
+BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_113730
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: nral0032
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:22, 20:44] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:35, 04:55](3074 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:24, 22:12] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:42](1696 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:16, 15:08](1829 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [10:45, 07:18](961 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:29, 15:44](1660 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:24, 21:21] ( 6 warnings 10 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [17:07, 13:36](1692 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:21, 10:35] ( 1530 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 21:20](1693 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:23, 20:49] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:20, 05:41](3093 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:42, 05:38](3092 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:18, 03:23](3149 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 05:37](3123 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:21](3179 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:16, 05:15](3679 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [10:16, 05:33](3089 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 04:36](3395 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:44, 05:35](3101 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [15:33, 08:51](3636 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [15:32, 06:03](3618 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [32:06, 09:55](4343 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:55, 07:49](4649 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [10:09, 05:16](3063 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:23, 20:13] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:57, 04:11](1683 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:06, 04:13](1736 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [11:20, 10:37] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [10:27, 07:37](3154 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [11:20, 10:07] ( 1455 warnings 1209 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:55, 05:13](1710 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:21, 15:45] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:37, 04:16](1729 MB)
-
-PASS -- COMPILE 's2s_intel' [17:23, 16:14] ( 5 warnings 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:12, 06:34](2666 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:14, 01:59](2689 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:09](2127 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:22, 23:09] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:45, 05:29](3101 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [20:21, 19:31] ( 5 warnings 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:54, 14:06](1699 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:41, 07:26](1017 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:06](1667 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:18, 08:43] ( 1565 warnings 1948 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:00, 23:10](1716 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:30] ( 6 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [04:44, 03:24](672 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:25](1570 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:29](1570 MB)
-PASS -- TEST 'control_latlon_intel' [04:16, 02:24](1574 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:26](1565 MB)
-PASS -- TEST 'control_c48_intel' [08:12, 06:15](1616 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:17](738 MB)
-PASS -- TEST 'control_c192_intel' [11:11, 08:43](1690 MB)
-PASS -- TEST 'control_c384_intel' [16:39, 09:07](2006 MB)
-PASS -- TEST 'control_c384gdas_intel' [18:49, 07:24](1198 MB)
-PASS -- TEST 'control_stochy_intel' [02:49, 01:26](630 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:00](440 MB)
-PASS -- TEST 'control_lndp_intel' [02:49, 01:22](625 MB)
-PASS -- TEST 'control_iovr4_intel' [04:47, 02:11](624 MB)
-PASS -- TEST 'control_iovr5_intel' [03:38, 02:06](626 MB)
-PASS -- TEST 'control_p8_intel' [04:52, 02:30](1606 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:55, 02:29](1598 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [04:45, 02:30](1601 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:40, 01:27](804 MB)
-PASS -- TEST 'control_noqr_p8_intel' [04:46, 02:28](1587 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:49, 01:22](806 MB)
-PASS -- TEST 'control_decomp_p8_intel' [04:32, 02:34](1590 MB)
-PASS -- TEST 'control_2threads_p8_intel' [05:02, 02:19](1686 MB)
-PASS -- TEST 'control_p8_lndp_intel' [07:03, 04:22](1604 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [06:09, 03:20](1662 MB)
-PASS -- TEST 'control_p8_mynn_intel' [05:04, 02:32](1604 MB)
-PASS -- TEST 'merra2_thompson_intel' [06:02, 02:50](1607 MB)
-PASS -- TEST 'regional_control_intel' [06:29, 04:32](633 MB)
-PASS -- TEST 'regional_restart_intel' [04:22, 02:33](799 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'regional_decomp_intel' [, ]( MB)
-PASS -- TEST 'regional_noquilt_intel' [06:25, 04:24](1157 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:22, 04:31](630 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:15, 04:31](628 MB)
-PASS -- TEST 'regional_wofs_intel' [07:14, 05:41](1604 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:14, 11:14] ( 8 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:49, 06:09](1010 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 03:45](1207 MB)
-PASS -- TEST 'rap_decomp_intel' [08:49, 06:19](1008 MB)
-PASS -- TEST 'rap_2threads_intel' [07:33, 05:39](1096 MB)
-PASS -- TEST 'rap_restart_intel' [05:20, 03:12](882 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:08](1006 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:43, 06:22](1008 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:26, 04:34](881 MB)
-PASS -- TEST 'hrrr_control_intel' [05:22, 03:13](998 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:18](1000 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'hrrr_control_2threads_intel' [, ]( MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:52, 01:46](834 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:56, 05:59](1000 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:06, 07:22](1958 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:03, 07:08](1950 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:20, 10:14] ( 6 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:20, 05:51](695 MB)
-PASS -- TEST 'control_ras_intel' [04:38, 02:54](659 MB)
-
-PASS -- COMPILE 'wam_intel' [13:14, 09:35] ( 5 warnings )
-PASS -- TEST 'control_wam_intel' [03:31, 01:56](383 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [16:15, 12:38] ( 5 warnings 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:47, 02:24](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [06:08, 04:19](625 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 08:32] ( 890 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:29](1595 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:26](1602 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](800 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:43, 02:36](796 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:01](840 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:40, 02:42](811 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:47, 02:35](1667 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:16, 02:36](1633 MB)
-PASS -- TEST 'regional_debug_intel' [18:11, 15:56](662 MB)
-FAILED: RUN DID NOT COMPLETE -- TEST 'rap_control_debug_intel' [, ]( MB)
-PASS -- TEST 'hrrr_control_debug_intel' [05:52, 04:31](1179 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [05:46, 04:39](1182 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [05:45, 04:38](1183 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:46, 04:36](1181 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:49, 04:52](1267 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:45](1182 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:42, 04:57](1186 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:55](1184 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:41, 04:37](1181 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:42, 04:31](1182 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:42](1182 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:50, 07:36](1179 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:33](1178 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [06:40, 05:37](1185 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:48, 04:41](1180 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:26, 08:02](1187 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [08:13, 05:18] ( 860 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:35, 04:35](424 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 09:41] ( 8 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:29, 03:46](1055 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:20, 05:13](884 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:12, 02:46](882 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 04:46](948 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:19, 02:28](943 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 02:55](884 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:22, 03:58](797 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:34](777 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:21, 11:39] ( 8 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:44, 01:54](1082 MB)
-PASS -- TEST 'conus13km_2threads_intel' [04:13, 01:03](1086 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [04:08, 01:12](979 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:14, 09:42] ( 8 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:05, 03:38](910 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 05:47] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:34](1063 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:47, 04:31](1059 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:20, 13:15](1135 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [16:14, 13:29](821 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 07:52](1135 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 13:22](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 05:37] ( 792 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:48, 04:47](1084 MB)
-
-PASS -- COMPILE 'hafsw_intel' [17:20, 16:05] ( 6 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [06:56, 04:38](717 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:17](1072 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:04, 06:33](782 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:58, 10:57](804 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:52, 12:11](809 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](475 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:01](494 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:13, 02:36](392 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 06:38](462 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:21, 03:29](512 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 03:11](513 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:33, 04:11](590 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:36, 01:27](429 MB)
-PASS -- TEST 'gnv1_nested_intel' [05:35, 03:32](787 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [08:12, 07:17] ( 1472 warnings 1481 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:35, 12:06](621 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [21:22, 19:58] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:39, 07:13](635 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:19, 07:24](695 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [17:20, 16:38] ( 5 warnings 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 05:25](677 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [16:16, 14:36] ( 5 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:43, 05:37](752 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:35, 05:48](740 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:19, 16:14](895 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:19, 07:45] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:24, 02:37](761 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:33](749 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](638 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:35, 02:24](637 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:31](640 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:46, 02:34](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:30](760 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:22](641 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:42, 05:53](694 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:18, 05:46](672 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:29](761 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:03, 03:59](2017 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 04:01](2017 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:00] ( 7 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:05](744 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:13, 07:40] ( 5 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:44, 02:29](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:27](314 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:20](452 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:46, 00:46](451 MB)
-
-PASS -- COMPILE 'atml_intel' [14:21, 13:26] ( 13 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:53, 07:38](1634 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [09:54, 07:32](1638 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:31](853 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [09:17, 08:04] ( 885 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:16, 05:35](1668 MB)
-
-PASS -- COMPILE 'atmw_intel' [14:19, 13:04] ( 5 warnings 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:41, 01:35](1637 MB)
-
-PASS -- COMPILE 'atmaero_intel' [12:20, 11:21] ( 5 warnings 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:03, 03:38](2949 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:17, 04:20](2998 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 04:21](3020 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [07:19, 06:41] ( 889 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [26:54, 22:09](4519 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [20:24, 19:13] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:51, 04:59](3076 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:24, 20:38] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [18:01, 13:45](1691 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:13, 15:29](1829 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:09, 07:36](957 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:44, 15:43](1666 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:24, 20:37] ( 6 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [17:04, 13:39](1684 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:21, 09:05] ( 1530 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:23, 21:17](1705 MB)
+
+PASS -- COMPILE 's2swa_intel' [20:23, 19:15] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [09:51, 05:39](3093 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:55, 05:39](3092 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:54, 03:25](3154 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [09:51, 05:38](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 03:32](3178 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:26, 05:15](3678 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:26, 05:33](3091 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 04:37](3399 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:10, 05:38](3101 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:07, 08:53](3633 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [19:43, 06:17](3611 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [41:39, 10:05](4343 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [44:13, 08:21](4645 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [09:23, 05:17](3067 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:23, 18:36] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:54, 04:12](1681 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:15](1732 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [10:22, 09:09] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:29, 07:44](3153 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [09:21, 08:35] ( 1455 warnings 1209 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:18](1706 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [15:23, 14:08] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:39, 04:17](1729 MB)
+
+PASS -- COMPILE 's2s_intel' [15:22, 14:07] ( 5 warnings 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:15, 06:42](2665 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:15, 02:01](2687 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:29, 01:10](2120 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:21, 22:54] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:12, 05:35](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [20:20, 19:42] ( 5 warnings 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:10, 14:04](1705 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:05, 07:46](1018 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:29, 16:09](1677 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:17, 08:22] ( 1565 warnings 1948 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:16, 22:59](1720 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:19, 12:15] ( 6 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [04:45, 03:31](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:22, 02:29](1564 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:03, 02:32](1575 MB)
+PASS -- TEST 'control_latlon_intel' [04:32, 02:26](1573 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](1573 MB)
+PASS -- TEST 'control_c48_intel' [08:27, 06:16](1618 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:54, 05:20](735 MB)
+PASS -- TEST 'control_c192_intel' [12:41, 08:47](1690 MB)
+PASS -- TEST 'control_c384_intel' [19:14, 09:21](2004 MB)
+PASS -- TEST 'control_c384gdas_intel' [24:54, 07:41](1197 MB)
+PASS -- TEST 'control_stochy_intel' [02:48, 01:27](627 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:57, 00:54](442 MB)
+PASS -- TEST 'control_lndp_intel' [02:54, 01:30](624 MB)
+PASS -- TEST 'control_iovr4_intel' [04:13, 02:07](621 MB)
+PASS -- TEST 'control_iovr5_intel' [04:16, 02:07](623 MB)
+PASS -- TEST 'control_p8_intel' [05:07, 02:31](1598 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 02:30](1599 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:32](1599 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:48, 01:29](802 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:05, 02:34](1586 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:51, 01:27](805 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:45, 02:38](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:45, 02:23](1691 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:48, 04:25](1601 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 03:22](1654 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:04, 02:35](1607 MB)
+PASS -- TEST 'merra2_thompson_intel' [06:56, 02:53](1612 MB)
+PASS -- TEST 'regional_control_intel' [08:00, 04:38](628 MB)
+PASS -- TEST 'regional_restart_intel' [04:12, 02:35](800 MB)
+PASS -- TEST 'regional_decomp_intel' [07:00, 04:50](632 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:46, 04:29](1159 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:24, 04:32](628 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:34](630 MB)
+PASS -- TEST 'regional_wofs_intel' [07:18, 05:40](1603 MB)
+
+PASS -- COMPILE 'rrfs_intel' [12:18, 10:56] ( 8 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:05, 06:21](1011 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:09, 03:54](1204 MB)
+PASS -- TEST 'rap_decomp_intel' [09:06, 06:25](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [09:05, 05:51](1092 MB)
+PASS -- TEST 'rap_restart_intel' [05:44, 03:17](881 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:08, 06:09](1008 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:06, 06:32](1008 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [06:39, 04:39](880 MB)
+PASS -- TEST 'hrrr_control_intel' [05:19, 03:25](1000 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:19, 03:29](1001 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:19, 02:52](1090 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:56, 01:48](832 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:16, 06:02](1000 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:27](1960 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 07:08](1953 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:18, 10:07] ( 6 warnings )
+PASS -- TEST 'control_csawmg_intel' [08:35, 05:54](694 MB)
+PASS -- TEST 'control_ras_intel' [04:51, 02:55](659 MB)
+
+PASS -- COMPILE 'wam_intel' [10:18, 09:21] ( 5 warnings )
+PASS -- TEST 'control_wam_intel' [03:34, 01:55](384 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:20, 12:33] ( 5 warnings 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:55, 02:33](1594 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:30, 04:24](629 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:18, 08:21] ( 890 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:36](1595 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 02:29](1591 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:50, 02:52](802 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:43](796 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [06:21, 03:57](839 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:53, 02:41](810 MB)
+PASS -- TEST 'control_diag_debug_intel' [06:07, 02:38](1656 MB)
+PASS -- TEST 'control_debug_p8_intel' [04:16, 02:42](1629 MB)
+PASS -- TEST 'regional_debug_intel' [18:15, 16:15](661 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:41, 04:53](1183 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:45, 04:48](1178 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:53, 04:50](1181 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [05:51, 04:41](1182 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:49, 04:46](1182 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:35, 05:01](1269 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:03](1183 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:50, 04:46](1187 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [06:41, 04:40](1185 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:46](1182 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:53, 04:45](1182 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:51, 04:40](1182 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:45, 07:32](1182 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:35](1175 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:48, 05:52](1184 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:42](1180 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:00](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [06:19, 05:08] ( 860 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:41, 04:40](421 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:20, 09:35] ( 8 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:05, 03:53](1058 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:11](883 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:32, 02:51](882 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:38, 04:49](948 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:35, 02:31](942 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 02:57](881 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 03:56](796 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:03, 01:35](781 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:20, 12:05] ( 8 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [07:13, 02:00](1087 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:12](1083 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:21, 01:15](978 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:20, 10:12] ( 8 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:38, 03:40](907 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:19, 06:11] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:47, 04:42](1055 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 04:30](1052 MB)
+PASS -- TEST 'conus13km_debug_intel' [17:09, 13:21](1134 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:57, 13:42](817 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [11:49, 07:55](1134 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 13:27](1205 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:18, 05:51] ( 792 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:53, 04:35](1086 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:22, 16:22] ( 6 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [08:12, 04:49](720 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:12, 05:24](1073 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:45, 06:45](780 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 11:15](801 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:24, 12:24](814 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:33, 04:51](478 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:15, 05:59](492 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:33](394 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:34, 06:47](457 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:28, 03:31](514 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:27, 03:14](513 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:22, 04:07](589 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:26](428 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:00, 03:46](787 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [08:21, 07:27] ( 1472 warnings 1481 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:38, 12:19](615 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:23, 20:03] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:07, 07:20](630 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:26, 07:39](690 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [18:20, 17:12] ( 5 warnings 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:46, 05:34](679 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [15:20, 14:46] ( 5 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:28, 06:06](751 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:14, 06:09](740 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:39, 16:19](895 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:01, 02:38](762 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:01, 01:40](748 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:55, 02:26](638 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 02:29](642 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:56, 02:27](639 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:51, 02:33](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:53, 02:36](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:54, 02:24](638 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [19:51, 05:56](692 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [19:44, 05:55](674 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:31](762 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:13, 04:03](2017 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [10:48, 04:05](1957 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:23] ( 7 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:54, 05:06](732 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:17] ( 5 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [13:48, 02:32](749 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [03:17, 02:31] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:46, 01:31](305 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:39, 01:23](453 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:36, 00:52](450 MB)
+
+PASS -- COMPILE 'atml_intel' [14:19, 13:18] ( 13 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [15:26, 08:09](1633 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:24, 07:43](1633 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:48, 03:47](854 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [09:19, 08:02] ( 887 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:16, 06:06](1662 MB)
+
+PASS -- COMPILE 'atmw_intel' [14:21, 13:10] ( 5 warnings 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:06, 01:40](1636 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:20, 11:40] ( 5 warnings 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [10:43, 03:49](2948 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [11:48, 04:21](3003 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:06, 04:24](3012 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:17, 06:58] ( 889 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:34](4529 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 11:25:11
-Ending Date/Time: 20240514 13:04:32
-Total Time: 01h:40m:23s
+Starting Date/Time: 20240517 07:10:29
+Ending Date/Time: 20240517 08:58:48
+Total Time: 01h:49m:15s
Compiles Completed: 39/39
-Tests Completed: 179/182
-Failed Tests:
-* TEST regional_decomp_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_regional_decomp_intel.log
-* TEST hrrr_control_2threads_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_hrrr_control_2threads_intel.log
-* TEST rap_control_debug_intel: FAILED: RUN DID NOT COMPLETE
--- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/s-weather-model_pipeline_PR-2255/tests/logs/log_derecho/run_rap_control_debug_intel.log
-
-NOTES:
-A file 'test_changes.list' was generated with list of all failed tests.
-You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
-If you are using this log as a pull request verification, please commit 'test_changes.list'.
-
-Result: FAILURE
-
-====END OF DERECHO REGRESSION TESTING LOG====
-====START OF DERECHO REGRESSION TESTING LOG====
-
-UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
-
-Submodule hashes used in testing:
- 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
- be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
- 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
- f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
- cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
- 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
- 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
--1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
--7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
- 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
- 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
- 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
- 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
- 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
- d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
- 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
-
-
-NOTES:
-[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
-The first time is for the full script (prep+run+finalize).
-The second time is specifically for the run phase.
-Times/Memory will be empty for failed tests.
-
-BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_14710
-
-RT.SH OPTIONS USED:
-* (-a) - HPC PROJECT ACCOUNT: nral0032
-* (-l) - USE CONFIG FILE: rt.conf
-
-PASS -- COMPILE 'atm_dyn32_intel' [14:17, 13:23] ( 6 warnings 1 remarks )
-PASS -- TEST 'regional_decomp_intel' [07:06, 04:49](632 MB)
-
-PASS -- COMPILE 'rrfs_intel' [13:21, 11:55] ( 8 warnings 9 remarks )
-PASS -- TEST 'hrrr_control_2threads_intel' [05:12, 02:50](1092 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [10:21, 09:17] ( 890 warnings 9 remarks )
-PASS -- TEST 'rap_control_debug_intel' [06:31, 04:45](1182 MB)
-
-SYNOPSIS:
-Starting Date/Time: 20240514 13:31:19
-Ending Date/Time: 20240514 14:28:08
-Total Time: 00h:57m:05s
-Compiles Completed: 3/3
-Tests Completed: 3/3
+Tests Completed: 182/182
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log
index 31eec5fdb0..f2bc960cc7 100755
--- a/tests/logs/RegressionTests_gaea.log
+++ b/tests/logs/RegressionTests_gaea.log
@@ -1,7 +1,7 @@
====START OF GAEA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,279 +35,279 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_222558
+BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_245093
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:33] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:46, 08:08](3070 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:16, 24:37] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [16:33, 14:04](1696 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:09, 14:05](1808 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:48](945 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:28, 15:00](1670 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:14, 26:04] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [15:55, 14:14](1688 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:14, 14:41] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:53, 23:57](1707 MB)
-
-PASS -- COMPILE 's2swa_intel' [21:15, 20:43] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [11:58, 08:58](3098 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:07, 08:49](3097 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:00, 05:50](3154 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [12:50, 09:11](3121 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:02, 05:32](3175 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 07:47](3412 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [11:48, 08:45](3096 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [10:43, 08:05](3021 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:07, 08:53](3098 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [18:03, 11:35](3266 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [11:52, 07:36](3605 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [21:36, 13:45](4037 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:49, 09:43](4344 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [11:36, 08:43](3065 MB)
-
-PASS -- COMPILE 's2sw_intel' [19:11, 18:53] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:05, 05:35](1686 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:16, 05:39](1732 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [15:14, 14:25] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [12:57, 10:40](3131 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [14:13, 13:33] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:16, 06:12](1697 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [18:15, 17:24] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:00, 05:35](1730 MB)
-
-PASS -- COMPILE 's2s_intel' [17:11, 16:58] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:29, 06:59](2657 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [03:37, 02:04](2681 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:44, 01:12](2112 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [25:14, 24:37] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [11:10, 08:21](3102 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 23:44] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:06, 15:38](1699 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:25](998 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:59, 17:30](1680 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:14, 15:02] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 26:14](1714 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:17] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [06:05, 04:06](670 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [07:30, 03:05](1566 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:27, 03:10](1579 MB)
-PASS -- TEST 'control_latlon_intel' [07:17, 03:03](1570 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:33, 03:42](1567 MB)
-PASS -- TEST 'control_c48_intel' [12:12, 06:52](1604 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [08:57, 05:42](723 MB)
-PASS -- TEST 'control_c192_intel' [14:10, 10:10](1684 MB)
-PASS -- TEST 'control_c384_intel' [22:40, 18:28](1986 MB)
-PASS -- TEST 'control_c384gdas_intel' [20:01, 14:24](1183 MB)
-PASS -- TEST 'control_stochy_intel' [04:17, 02:03](627 MB)
-PASS -- TEST 'control_stochy_restart_intel' [02:38, 01:09](430 MB)
-PASS -- TEST 'control_lndp_intel' [04:17, 01:58](628 MB)
-PASS -- TEST 'control_iovr4_intel' [05:19, 02:45](623 MB)
-PASS -- TEST 'control_iovr5_intel' [05:19, 02:39](623 MB)
-PASS -- TEST 'control_p8_intel' [08:46, 03:57](1605 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [09:06, 04:01](1607 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [08:55, 03:52](1607 MB)
-PASS -- TEST 'control_restart_p8_intel' [03:38, 02:06](789 MB)
-PASS -- TEST 'control_noqr_p8_intel' [08:46, 03:50](1594 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 02:03](792 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:41, 03:26](1595 MB)
-PASS -- TEST 'control_2threads_p8_intel' [06:44, 02:46](1684 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:29](1605 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [07:46, 04:18](1656 MB)
-PASS -- TEST 'control_p8_mynn_intel' [06:12, 03:37](1613 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1610 MB)
-PASS -- TEST 'regional_control_intel' [06:00, 04:46](617 MB)
-PASS -- TEST 'regional_restart_intel' [03:44, 02:36](787 MB)
-PASS -- TEST 'regional_decomp_intel' [05:50, 04:54](617 MB)
-PASS -- TEST 'regional_2threads_intel' [04:24, 03:02](757 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:58, 04:37](1153 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:08, 04:39](614 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:58, 04:37](617 MB)
-PASS -- TEST 'regional_wofs_intel' [08:03, 06:14](1591 MB)
-
-PASS -- COMPILE 'rrfs_intel' [16:12, 15:22] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:22, 06:53](1012 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:25, 04:06](1190 MB)
-PASS -- TEST 'rap_decomp_intel' [09:27, 07:14](1009 MB)
-PASS -- TEST 'rap_2threads_intel' [08:31, 06:11](1097 MB)
-PASS -- TEST 'rap_restart_intel' [06:31, 03:56](883 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:27, 06:45](1009 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:29, 07:21](1006 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 04:56](882 MB)
-PASS -- TEST 'hrrr_control_intel' [05:15, 03:55](1007 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [06:26, 04:16](1006 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:28, 03:09](1087 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [03:52, 02:24](839 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:10, 06:52](1004 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [09:44, 08:35](1968 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:14, 08:02](1951 MB)
-
-PASS -- COMPILE 'csawmg_intel' [15:15, 14:59] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [07:46, 06:36](696 MB)
-PASS -- TEST 'control_ras_intel' [04:39, 03:36](656 MB)
-
-PASS -- COMPILE 'wam_intel' [16:13, 15:32]
-PASS -- TEST 'control_wam_intel' [03:32, 02:22](370 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 18:42] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [05:46, 03:49](1607 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:48, 05:01](617 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [14:17, 13:39] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:20, 03:09](1587 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:21](1588 MB)
-PASS -- TEST 'control_stochy_debug_intel' [05:28, 03:33](782 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:40, 02:56](784 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [05:50, 04:33](827 MB)
-PASS -- TEST 'control_ras_debug_intel' [05:06, 03:07](794 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:08, 03:16](1643 MB)
-PASS -- TEST 'control_debug_p8_intel' [04:56, 03:25](1619 MB)
-PASS -- TEST 'regional_debug_intel' [18:01, 16:43](635 MB)
-PASS -- TEST 'rap_control_debug_intel' [06:43, 05:35](1169 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [06:39, 05:20](1167 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 05:35](1173 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [06:43, 05:26](1173 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:31, 05:48](1169 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:45, 05:51](1252 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:46, 05:46](1168 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:36, 05:21](1169 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:34, 05:53](1170 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:37](1169 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:44, 05:35](1169 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:35, 05:46](1166 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:36, 08:27](1168 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:33, 05:19](1165 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [08:43, 06:25](1171 MB)
-PASS -- TEST 'rap_flake_debug_intel' [07:25, 05:15](1169 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:22, 08:33](1170 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [12:11, 11:17] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [05:37, 04:59](398 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 13:54] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:17, 03:53](1050 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:10](891 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:07, 03:41](887 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:12, 05:21](948 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:26, 02:51](938 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:33](885 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:26, 04:27](785 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:50, 01:41](769 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 16:30] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:19, 02:11](1092 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:12](1077 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:51, 01:33](975 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:15, 15:15] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:25](905 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:12, 11:48] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:40, 05:04](1050 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:03](1049 MB)
-PASS -- TEST 'conus13km_debug_intel' [16:44, 14:08](1129 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:03, 13:48](804 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:01, 08:26](1110 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:00, 14:13](1195 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:36] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:38, 05:04](1066 MB)
-
-PASS -- COMPILE 'hafsw_intel' [20:15, 19:52] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:22](708 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:38, 04:39](1054 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:39, 07:48](740 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [13:19, 11:40](790 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:02, 13:04](800 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:28, 05:23](476 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:38, 07:11](501 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:03](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:04](443 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:42](510 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:22, 03:41](509 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:48](573 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:49, 01:46](403 MB)
-PASS -- TEST 'gnv1_nested_intel' [06:39, 04:09](771 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [14:13, 13:43] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:28, 12:49](584 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [22:12, 21:37] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:27, 07:53](613 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:02, 07:56](792 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [20:12, 20:03] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:36, 06:10](788 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [19:11, 18:25] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:14](744 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:32](733 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:25, 20:04](893 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:28] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:32, 02:42](759 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:40](748 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:37](637 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:31](641 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:27](647 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:35](747 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:27, 02:35](746 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:34](639 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:21](692 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:37, 06:05](678 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:34, 02:35](759 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:36](2018 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:04, 04:36](2018 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [10:14, 10:06] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:30](746 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [14:11, 13:38] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:34](759 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [06:10, 05:37] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:11, 02:16](318 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:53](456 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 02:29](456 MB)
-
-PASS -- COMPILE 'atml_intel' [17:15, 16:52] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:26, 08:38](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [11:25, 08:35](1640 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:15, 04:52](837 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [13:14, 13:02] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:14, 06:49](1651 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:11, 14:59] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:49, 02:38](1650 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:14, 13:44] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [09:51, 07:06](2947 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [09:55, 07:44](3013 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:19](3017 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [12:15, 11:30] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [23:12, 19:08](4481 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [21:15, 20:37] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 07:26](3071 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 23:54] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [22:02, 14:14](1696 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:12, 14:26](1808 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [11:00, 07:58](944 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:56, 15:22](1669 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:11, 23:19] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [15:59, 13:40](1688 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:45] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [26:45, 23:53](1707 MB)
+
+PASS -- COMPILE 's2swa_intel' [21:15, 20:26] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [12:06, 08:10](3098 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:17, 08:07](3097 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [14:13, 05:47](3155 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [12:06, 08:15](3121 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [14:13, 05:51](3175 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:46, 07:00](3410 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [11:59, 08:36](3096 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:48, 07:30](3021 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:58, 08:20](3098 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:04, 10:34](3373 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [14:09, 08:10](3598 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [28:25, 13:17](4039 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 09:21](4344 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:02](3065 MB)
+
+PASS -- COMPILE 's2sw_intel' [19:11, 18:43] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 05:27](1686 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:11, 05:51](1731 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [14:15, 13:34] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [13:07, 10:18](3130 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:15, 12:49] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [22:49, 20:41](1699 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:24] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:20, 05:38](1730 MB)
+
+PASS -- COMPILE 's2s_intel' [17:15, 16:44] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:36, 06:55](2657 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [03:28, 01:58](2681 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:41, 01:06](2113 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:53] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [12:38, 09:13](3102 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [25:15, 24:15] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:04, 15:01](1701 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:26, 07:16](998 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:20, 17:12](1680 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:11, 14:22] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:47, 25:45](1715 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:51] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [08:59, 04:14](670 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [11:32, 03:27](1567 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:26, 03:29](1579 MB)
+PASS -- TEST 'control_latlon_intel' [11:13, 03:20](1570 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:12, 03:23](1567 MB)
+PASS -- TEST 'control_c48_intel' [13:22, 06:38](1601 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [12:13, 05:43](723 MB)
+PASS -- TEST 'control_c192_intel' [15:02, 10:07](1683 MB)
+PASS -- TEST 'control_c384_intel' [22:23, 18:33](1985 MB)
+PASS -- TEST 'control_c384gdas_intel' [18:31, 14:46](1183 MB)
+PASS -- TEST 'control_stochy_intel' [03:45, 02:14](626 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:08, 01:21](429 MB)
+PASS -- TEST 'control_lndp_intel' [03:40, 02:12](628 MB)
+PASS -- TEST 'control_iovr4_intel' [03:44, 03:05](623 MB)
+PASS -- TEST 'control_iovr5_intel' [04:54, 03:09](623 MB)
+PASS -- TEST 'control_p8_intel' [06:49, 04:15](1605 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [07:12, 04:27](1606 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:32](1608 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:37, 02:06](789 MB)
+PASS -- TEST 'control_noqr_p8_intel' [06:44, 03:56](1594 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 02:12](792 MB)
+PASS -- TEST 'control_decomp_p8_intel' [06:02, 03:55](1596 MB)
+PASS -- TEST 'control_2threads_p8_intel' [06:26, 03:26](1689 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:07, 05:35](1605 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [07:35, 04:39](1656 MB)
+PASS -- TEST 'control_p8_mynn_intel' [06:47, 03:57](1613 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:43, 03:50](1610 MB)
+PASS -- TEST 'regional_control_intel' [07:00, 05:03](617 MB)
+PASS -- TEST 'regional_restart_intel' [08:45, 02:53](786 MB)
+PASS -- TEST 'regional_decomp_intel' [06:50, 05:24](617 MB)
+PASS -- TEST 'regional_2threads_intel' [04:52, 03:08](759 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:59, 04:58](1153 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [07:14, 05:22](614 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:03, 05:49](617 MB)
+PASS -- TEST 'regional_wofs_intel' [07:54, 06:16](1591 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:11, 13:18] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [13:00, 07:05](1012 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:35, 04:22](1188 MB)
+PASS -- TEST 'rap_decomp_intel' [13:58, 07:32](1009 MB)
+PASS -- TEST 'rap_2threads_intel' [11:51, 06:11](1100 MB)
+PASS -- TEST 'rap_restart_intel' [06:20, 04:27](883 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [13:00, 07:23](1009 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:00, 07:16](1006 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [08:03, 05:19](881 MB)
+PASS -- TEST 'hrrr_control_intel' [11:51, 04:24](1007 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [09:57, 03:53](1006 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [11:51, 03:04](1084 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [04:12, 02:23](839 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [13:00, 06:58](1004 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [12:17, 08:13](1967 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:03, 08:14](1950 MB)
+
+PASS -- COMPILE 'csawmg_intel' [14:11, 13:19] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [07:49, 06:52](695 MB)
+PASS -- TEST 'control_ras_intel' [05:44, 03:51](656 MB)
+
+PASS -- COMPILE 'wam_intel' [13:15, 13:01]
+PASS -- TEST 'control_wam_intel' [04:35, 02:23](370 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:25] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [06:39, 03:45](1607 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:02, 04:51](616 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:43] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:18, 03:02](1587 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:09, 03:14](1587 MB)
+PASS -- TEST 'control_stochy_debug_intel' [07:31, 03:26](782 MB)
+PASS -- TEST 'control_lndp_debug_intel' [08:38, 03:03](784 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:30](825 MB)
+PASS -- TEST 'control_ras_debug_intel' [08:30, 03:07](795 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:50, 03:02](1643 MB)
+PASS -- TEST 'control_debug_p8_intel' [09:42, 03:30](1619 MB)
+PASS -- TEST 'regional_debug_intel' [22:45, 16:06](635 MB)
+PASS -- TEST 'rap_control_debug_intel' [10:33, 04:57](1168 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [09:35, 05:05](1167 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [09:31, 05:06](1173 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [09:34, 05:06](1173 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:38, 05:03](1168 MB)
+PASS -- TEST 'rap_diag_debug_intel' [08:54, 05:21](1252 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:44, 05:16](1168 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:09](1168 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [07:39, 05:03](1171 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:35, 05:05](1168 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:59](1169 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:31, 05:12](1166 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:38, 07:49](1168 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:58](1165 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:34, 05:55](1171 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:39, 05:03](1168 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:04, 08:20](1169 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [09:11, 08:53] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:32, 05:02](398 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 14:19] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:11, 03:50](1044 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:28, 06:18](891 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 03:37](887 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 05:12](949 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:07, 02:46](935 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:04, 03:38](885 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 04:10](785 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:45](768 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:08] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1092 MB)
+PASS -- TEST 'conus13km_2threads_intel' [03:44, 02:13](1075 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 02:26](975 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:20] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:50, 04:26](904 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:28] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:01, 04:59](1050 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:00, 04:56](1049 MB)
+PASS -- TEST 'conus13km_debug_intel' [16:12, 14:23](1129 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [16:07, 14:38](805 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [10:02, 08:34](1112 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:01, 14:24](1195 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:11, 10:41] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 05:04](1066 MB)
+
+PASS -- COMPILE 'hafsw_intel' [20:12, 19:13] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:33](706 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:52, 04:47](1053 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:46](741 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [13:29, 11:46](786 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:54, 13:00](802 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:32](477 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:00](499 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [06:45, 03:43](373 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:40, 08:27](433 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:11, 04:27](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 04:02](509 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:18, 04:50](573 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:57, 01:52](401 MB)
+PASS -- TEST 'gnv1_nested_intel' [06:45, 04:13](767 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:51] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:25, 13:06](583 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [21:11, 20:36] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:42](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:59, 07:53](787 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [21:15, 20:28] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:59, 06:16](787 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [19:18, 18:13] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:26](745 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:03, 06:21](737 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:26, 20:10](893 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [13:13, 12:53] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:33, 02:34](759 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:36, 01:35](746 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:31, 02:28](645 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:30, 02:28](637 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:33](640 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:37](759 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:33, 02:34](761 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:27](641 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:01, 06:23](690 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 05:59](677 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:42](760 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:00, 04:39](2020 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [05:50, 04:39](2020 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 09:07] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:25](745 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [13:13, 12:29] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:44](761 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [06:14, 05:14] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:04, 03:36](319 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:05, 02:53](456 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:58, 01:12](456 MB)
+
+PASS -- COMPILE 'atml_intel' [17:11, 16:17] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:19, 08:46](1640 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [12:16, 08:43](1640 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:34, 04:06](837 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [12:15, 11:18] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 07:15](1653 MB)
+
+PASS -- COMPILE 'atmw_intel' [17:15, 15:49] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:28, 02:51](1649 MB)
+
+PASS -- COMPILE 'atmaero_intel' [14:15, 13:08] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [10:33, 07:01](2943 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [10:40, 07:35](3013 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:23, 07:37](3021 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [10:11, 10:04] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [21:51, 18:59](4487 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 13:04:47
-Ending Date/Time: 20240514 14:41:21
-Total Time: 01h:38m:16s
+Starting Date/Time: 20240516 16:59:51
+Ending Date/Time: 20240516 19:09:07
+Total Time: 02h:10m:32s
Compiles Completed: 39/39
Tests Completed: 183/183
diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log
index 47aa4b7561..7e86ac795a 100644
--- a/tests/logs/RegressionTests_hera.log
+++ b/tests/logs/RegressionTests_hera.log
@@ -1,19 +1,19 @@
====START OF HERA REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -24,371 +24,371 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_299275
+BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2895930
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:52] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:40, 05:30](3198 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:17] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 17:07](1743 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:20, 18:01](2033 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [09:17, 08:08](1118 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:01, 19:26](1653 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:31] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [18:44, 16:49](1753 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:29] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [26:01, 22:43](1698 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:11, 12:59] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [09:32, 05:45](3206 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:48, 05:45](3218 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [07:33, 03:23](3258 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [09:33, 05:53](3246 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [07:32, 03:21](3284 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [08:25, 05:34](3566 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [09:29, 06:08](3229 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [08:25, 04:47](3062 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:47, 05:47](3218 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [14:19, 10:14](3358 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [09:37, 06:09](3623 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [16:22, 09:36](4123 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:05, 06:06](4362 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [09:34, 05:25](3181 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:11, 12:19] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [08:19, 05:00](1738 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:24, 04:21](1770 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:24] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [13:06, 08:20](3234 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:15] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:58, 05:45](1746 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:30] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:07, 04:24](1787 MB)
-
-PASS -- COMPILE 's2s_intel' [12:11, 11:30] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [12:44, 09:23](2834 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 02:37](2828 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:25](2303 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:02] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:25](3207 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:09] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:08](1779 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:50, 08:01](1169 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:32, 19:43](1684 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:15] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:58, 24:39](1726 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:23] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [05:23, 03:21](701 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:54](1573 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:48, 02:58](1601 MB)
-PASS -- TEST 'control_latlon_intel' [03:42, 02:53](1593 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 02:54](1599 MB)
-PASS -- TEST 'control_c48_intel' [08:47, 07:36](1762 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [07:27, 06:22](866 MB)
-PASS -- TEST 'control_c192_intel' [12:17, 10:27](1746 MB)
-PASS -- TEST 'control_c384_intel' [13:28, 10:26](2009 MB)
-PASS -- TEST 'control_c384gdas_intel' [10:48, 07:59](1412 MB)
-PASS -- TEST 'control_stochy_intel' [02:25, 01:37](658 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:31, 00:57](504 MB)
-PASS -- TEST 'control_lndp_intel' [02:24, 01:32](661 MB)
-PASS -- TEST 'control_iovr4_intel' [03:24, 02:25](656 MB)
-PASS -- TEST 'control_iovr5_intel' [03:24, 02:26](659 MB)
-PASS -- TEST 'control_p8_intel' [03:57, 02:58](1592 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:56](1630 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:49](1629 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:50, 01:36](896 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:58, 02:53](1615 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:36](935 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:54, 03:02](1611 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:56, 02:43](1716 MB)
-PASS -- TEST 'control_p8_lndp_intel' [06:54, 05:11](1628 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:53](1698 MB)
-PASS -- TEST 'control_p8_mynn_intel' [04:04, 02:56](1635 MB)
-PASS -- TEST 'merra2_thompson_intel' [05:03, 03:13](1647 MB)
-PASS -- TEST 'regional_control_intel' [05:45, 05:09](846 MB)
-PASS -- TEST 'regional_restart_intel' [03:42, 02:41](1021 MB)
-PASS -- TEST 'regional_decomp_intel' [06:40, 05:31](848 MB)
-PASS -- TEST 'regional_2threads_intel' [04:40, 03:13](844 MB)
-PASS -- TEST 'regional_noquilt_intel' [06:40, 05:10](1362 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:21](860 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:09](857 MB)
-PASS -- TEST 'regional_wofs_intel' [07:43, 06:50](1912 MB)
-
-PASS -- COMPILE 'rrfs_intel' [15:11, 10:43] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [08:44, 07:42](1109 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:12](1301 MB)
-PASS -- TEST 'rap_decomp_intel' [08:36, 08:08](1029 MB)
-PASS -- TEST 'rap_2threads_intel' [08:35, 07:13](1183 MB)
-PASS -- TEST 'rap_restart_intel' [06:43, 04:08](1106 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [08:47, 07:42](1110 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 08:08](1043 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 05:48](1130 MB)
-PASS -- TEST 'hrrr_control_intel' [05:08, 03:57](1048 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 04:07](1030 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:38](1118 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:09](1004 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [08:50, 07:37](1103 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:18](1990 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 09:02](2063 MB)
-
-PASS -- COMPILE 'csawmg_intel' [14:11, 10:24] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:41, 05:59](751 MB)
-PASS -- TEST 'control_ras_intel' [04:26, 03:13](750 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [06:11, 03:36]
-PASS -- TEST 'control_csawmg_gnu' [09:39, 08:18](549 MB)
-
-PASS -- COMPILE 'wam_intel' [13:11, 09:48]
-PASS -- TEST 'control_wam_intel' [02:23, 02:04](656 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 10:50] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [04:01, 02:38](1628 MB)
-PASS -- TEST 'regional_control_faster_intel' [05:41, 04:43](853 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:48] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 02:35](1611 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:01, 02:39](1615 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:25, 02:59](823 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:39](824 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [08:52, 04:11](867 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:26, 02:38](833 MB)
-PASS -- TEST 'control_diag_debug_intel' [06:59, 02:39](1675 MB)
-PASS -- TEST 'control_debug_p8_intel' [06:56, 02:51](1637 MB)
-PASS -- TEST 'regional_debug_intel' [20:55, 16:55](859 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:28, 04:46](1212 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [08:28, 04:47](1210 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [09:29, 04:51](1205 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:31, 04:51](1217 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:30, 04:57](1210 MB)
-PASS -- TEST 'rap_diag_debug_intel' [08:44, 05:07](1292 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 04:55](1210 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:23, 05:00](1201 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:01](1211 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:46](1211 MB)
-PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:52](1209 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 04:59](1209 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 07:49](1206 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:31, 04:56](1206 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:55](1215 MB)
-PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:52](1207 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:42, 08:17](1217 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:11, 02:39]
-PASS -- TEST 'control_csawmg_debug_gnu' [03:37, 02:11](529 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:11, 03:14] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:27, 04:56](522 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:09, 03:56](1165 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:45, 06:24](1051 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:39, 03:23](988 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:37, 06:04](1099 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:36, 03:13](961 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:35](925 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:45, 04:50](1038 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:50](934 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:55, 02:09](1200 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:41, 00:52](1121 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:12](1110 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 10:04] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](985 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:22] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:46](1092 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:48](1090 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:56, 14:07](1235 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:40](918 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 08:08](1155 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:48, 14:47](1313 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:13, 03:29] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:48](1131 MB)
-
-PASS -- COMPILE 'hafsw_intel' [14:13, 11:44] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:58](738 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:31, 05:49](1124 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:51](840 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [18:21, 13:20](861 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:31, 15:03](891 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:59, 05:30](504 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:28, 06:39](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [05:41, 02:40](373 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:14, 07:09](483 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:39](530 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:50, 03:30](534 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:57, 04:05](592 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:31, 01:14](407 MB)
-PASS -- TEST 'gnv1_nested_intel' [09:50, 04:06](807 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:58] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:53, 12:36](582 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:54] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:03, 08:43](642 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:11, 08:45](747 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 11:54] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:12, 06:23](709 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [12:11, 11:21] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [11:26, 06:24](832 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:22, 06:32](821 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:04, 15:54](1212 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:11]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:42](1151 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1103 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:18, 02:39](1021 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](1030 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:35](1014 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:39](1145 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1154 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:30](1019 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:23, 06:07](1061 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:20, 06:19](1058 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:40](1149 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:21, 03:48](2497 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2425 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:09] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:17](1094 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:07]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:37](1156 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:06] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:45](261 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:47](325 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:30](320 MB)
-
-PASS -- COMPILE 'atml_intel' [12:12, 11:46] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:05, 04:08](1623 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [07:01, 04:10](1619 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 02:16](901 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:12, 04:21] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:29](1607 MB)
-
-PASS -- COMPILE 'atmw_intel' [11:12, 11:01] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:59, 01:43](1682 MB)
-
-PASS -- COMPILE 'atmaero_intel' [11:12, 10:27] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:03](3043 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:07, 04:48](3101 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 04:53](3118 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:40] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [43:25, 39:50](4440 MB)
-
-PASS -- COMPILE 'atm_gnu' [04:11, 03:40]
-PASS -- TEST 'control_c48_gnu' [12:46, 11:10](1544 MB)
-PASS -- TEST 'control_stochy_gnu' [04:23, 03:22](506 MB)
-PASS -- TEST 'control_ras_gnu' [05:22, 04:41](514 MB)
-PASS -- TEST 'control_p8_gnu' [06:00, 04:38](1271 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:27](1269 MB)
-PASS -- TEST 'control_flake_gnu' [11:24, 10:38](553 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [04:11, 03:43]
-PASS -- TEST 'rap_control_gnu' [11:40, 10:42](858 MB)
-PASS -- TEST 'rap_decomp_gnu' [12:38, 10:53](858 MB)
-PASS -- TEST 'rap_2threads_gnu' [11:34, 09:47](944 MB)
-PASS -- TEST 'rap_restart_gnu' [06:45, 05:34](585 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [12:41, 10:55](857 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:35, 11:03](857 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:43, 07:51](587 MB)
-PASS -- TEST 'hrrr_control_gnu' [06:33, 05:34](857 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [06:34, 05:32](842 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [05:37, 05:00](934 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:30](856 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [03:31, 02:51](570 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:48](668 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:39](855 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:36]
-PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:36](1286 MB)
-PASS -- TEST 'regional_debug_gnu' [12:42, 10:53](562 MB)
-PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:34](871 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [03:22, 02:37](869 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [03:22, 02:36](877 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [03:21, 02:32](876 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [04:35, 02:45](962 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:23, 04:02](870 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:22, 02:34](871 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:21, 02:38](867 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](506 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [03:21, 01:44](498 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:44, 01:35](1255 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:35](871 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:46](875 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:13](877 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [02:11, 01:49]
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:37]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:36, 09:25](714 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:39, 04:52](713 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:40, 08:33](759 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:31, 04:33](756 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:02](716 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:44, 06:58](557 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:28](549 MB)
-PASS -- TEST 'conus13km_control_gnu' [04:56, 03:09](886 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [05:44, 05:05](889 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:47](559 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:25]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:50](740 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:11, 03:38]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:30](721 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:27](720 MB)
-PASS -- TEST 'conus13km_debug_gnu' [08:00, 06:47](898 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [07:53, 06:52](593 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [09:51, 07:32](899 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:50, 07:06](964 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:12, 03:39]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:34](743 MB)
-
-PASS -- COMPILE 's2swa_gnu' [15:13, 14:32]
-
-PASS -- COMPILE 's2s_gnu' [15:12, 14:27]
-PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 06:34](1357 MB)
-
-PASS -- COMPILE 's2swa_debug_gnu' [03:12, 02:30]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:14]
-PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:06, 23:58](1321 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:22]
-PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [17:57, 16:21](1335 MB)
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:12, 14:16]
-PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:19, 03:03](697 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [22:12, 13:07] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:47, 05:40](3153 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:12, 15:55] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [19:20, 17:11](1740 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 17:54](1995 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:19, 08:09](1094 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:19, 19:23](1621 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 16:39] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [17:51, 16:52](1722 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:12, 04:40] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:05, 22:42](1653 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:12, 12:49] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:57, 06:18](3191 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:53, 05:54](3202 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [16:43, 03:27](3244 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [07:45, 05:59](3206 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [14:58, 03:29](3249 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [07:37, 05:44](3535 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [07:37, 06:05](3175 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [06:40, 04:51](3036 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:53, 05:55](3191 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [13:42, 10:17](3317 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [12:38, 06:27](3591 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [17:46, 10:00](4104 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:48, 06:19](4333 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:45, 05:35](3167 MB)
+
+PASS -- COMPILE 's2sw_intel' [23:12, 12:23] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:35, 04:50](1717 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:46, 04:23](1774 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [15:12, 04:42] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:18](3186 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [14:12, 04:07] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:25, 05:55](1708 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [21:12, 11:38] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:28, 04:22](1761 MB)
+
+PASS -- COMPILE 's2s_intel' [21:12, 11:28] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [11:00, 09:29](2803 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:35](2813 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:04, 01:25](2275 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [17:12, 17:08] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [17:00, 05:25](3199 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:36] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:16, 17:18](1754 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:29, 08:08](1144 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:09, 19:51](1660 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:13, 04:12] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:31, 24:50](1683 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [12:13, 11:36] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [07:43, 03:23](687 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [04:09, 02:52](1580 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:16, 02:58](1589 MB)
+PASS -- TEST 'control_latlon_intel' [04:04, 02:54](1578 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:56, 02:56](1571 MB)
+PASS -- TEST 'control_c48_intel' [08:46, 07:37](1743 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:24](856 MB)
+PASS -- TEST 'control_c192_intel' [12:22, 10:42](1734 MB)
+PASS -- TEST 'control_c384_intel' [13:37, 10:50](1991 MB)
+PASS -- TEST 'control_c384gdas_intel' [12:56, 08:17](1379 MB)
+PASS -- TEST 'control_stochy_intel' [02:32, 01:39](642 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:55, 01:01](488 MB)
+PASS -- TEST 'control_lndp_intel' [02:38, 01:34](642 MB)
+PASS -- TEST 'control_iovr4_intel' [03:37, 02:32](645 MB)
+PASS -- TEST 'control_iovr5_intel' [03:36, 02:28](640 MB)
+PASS -- TEST 'control_p8_intel' [05:42, 02:59](1617 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [05:44, 03:00](1611 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [04:33, 02:57](1608 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:00, 01:39](875 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:43, 02:59](1597 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:09, 01:41](920 MB)
+PASS -- TEST 'control_decomp_p8_intel' [04:23, 03:03](1603 MB)
+PASS -- TEST 'control_2threads_p8_intel' [04:18, 02:51](1712 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:17, 05:21](1609 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:01](1680 MB)
+PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:00](1622 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:26, 03:18](1614 MB)
+PASS -- TEST 'regional_control_intel' [07:02, 05:14](837 MB)
+PASS -- TEST 'regional_restart_intel' [03:45, 02:57](1005 MB)
+PASS -- TEST 'regional_decomp_intel' [07:01, 05:33](836 MB)
+PASS -- TEST 'regional_2threads_intel' [05:07, 03:18](825 MB)
+PASS -- TEST 'regional_noquilt_intel' [07:02, 05:13](1348 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [08:02, 05:11](828 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:14](831 MB)
+PASS -- TEST 'regional_wofs_intel' [09:50, 06:54](1893 MB)
+
+PASS -- COMPILE 'rrfs_intel' [11:12, 10:34] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [10:41, 07:46](1090 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 04:14](1264 MB)
+PASS -- TEST 'rap_decomp_intel' [10:38, 08:12](1007 MB)
+PASS -- TEST 'rap_2threads_intel' [09:44, 07:27](1170 MB)
+PASS -- TEST 'rap_restart_intel' [05:49, 04:03](1085 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:49, 07:58](1090 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:47, 08:14](1018 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [11:59, 05:53](1120 MB)
+PASS -- TEST 'hrrr_control_intel' [05:43, 04:04](1032 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:40, 04:10](1016 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [05:43, 03:44](1095 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:11](985 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:02, 07:38](1080 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:21](1974 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:30, 09:03](2045 MB)
+
+PASS -- COMPILE 'csawmg_intel' [11:12, 10:37] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](736 MB)
+PASS -- TEST 'control_ras_intel' [04:24, 03:18](727 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:12, 03:38]
+PASS -- TEST 'control_csawmg_gnu' [09:51, 08:22](533 MB)
+
+PASS -- COMPILE 'wam_intel' [10:12, 10:08]
+PASS -- TEST 'control_wam_intel' [03:23, 02:08](640 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 10:40] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:57, 02:45](1618 MB)
+PASS -- TEST 'regional_control_faster_intel' [05:44, 04:45](837 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:43] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:07, 02:36](1577 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:08, 02:33](1587 MB)
+PASS -- TEST 'control_stochy_debug_intel' [13:31, 03:04](778 MB)
+PASS -- TEST 'control_lndp_debug_intel' [12:34, 02:48](775 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [17:07, 04:10](833 MB)
+PASS -- TEST 'control_ras_debug_intel' [12:32, 02:49](790 MB)
+PASS -- TEST 'control_diag_debug_intel' [15:14, 02:39](1642 MB)
+PASS -- TEST 'control_debug_p8_intel' [15:06, 02:50](1608 MB)
+PASS -- TEST 'regional_debug_intel' [31:05, 17:50](817 MB)
+PASS -- TEST 'rap_control_debug_intel' [15:38, 04:53](1174 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [14:36, 04:49](1157 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [15:37, 04:52](1174 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [15:37, 04:51](1175 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:37, 04:55](1173 MB)
+PASS -- TEST 'rap_diag_debug_intel' [17:21, 05:04](1253 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:45, 05:03](1173 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 05:03](1168 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [15:37, 05:01](1171 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:00](1167 MB)
+PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:57](1169 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [05:28, 04:52](1172 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:55](1166 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:52](1168 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:49](1169 MB)
+PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:51](1169 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:33](1176 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [03:12, 02:46]
+PASS -- TEST 'control_csawmg_debug_gnu' [12:51, 02:17](509 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [04:11, 03:31] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:24, 04:54](467 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:12, 10:00] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:53](1141 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:42, 06:29](1037 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:24](954 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:34, 06:09](1074 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 03:10](943 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:34](910 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:46, 04:52](1017 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 01:53](922 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:12, 12:23] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:53, 02:05](1178 MB)
+PASS -- TEST 'conus13km_2threads_intel' [04:48, 00:55](1099 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [05:51, 01:15](1095 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [22:12, 10:21] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](968 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [15:13, 03:32] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 04:55](1051 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:25, 04:44](1048 MB)
+PASS -- TEST 'conus13km_debug_intel' [18:02, 14:18](1180 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [18:02, 14:35](849 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [13:55, 08:12](1101 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 14:12](1256 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:12, 03:32] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 04:54](1085 MB)
+
+PASS -- COMPILE 'hafsw_intel' [22:12, 11:36] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:15, 04:58](721 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:01](1099 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:23, 06:54](815 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:35](839 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:34, 15:12](871 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](482 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:28, 06:45](505 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:43, 02:49](350 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:18, 07:26](448 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:49, 03:43](506 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:50, 03:40](510 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 04:07](565 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:28, 01:14](384 MB)
+PASS -- TEST 'gnv1_nested_intel' [09:53, 04:23](785 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:12, 03:54] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:52, 12:53](542 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [23:12, 12:06] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:06, 09:01](613 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:49](688 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [22:12, 11:55] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:08, 06:34](706 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [20:12, 11:15] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [08:21, 06:40](814 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:16, 06:35](793 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:57, 16:29](1200 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [06:12, 05:51]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:39](1144 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:40](1105 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:40](1020 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:37](997 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:39](1029 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:40](1129 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:40](1138 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1015 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:31, 06:16](1039 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:20](1036 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:42](1147 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:24, 03:53](2441 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:23, 03:50](2440 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [03:12, 02:57] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:08](1062 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:58]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1121 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:09] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:53](316 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:27, 00:48](313 MB)
+
+PASS -- COMPILE 'atml_intel' [12:12, 11:53] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:12, 04:57](1589 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [08:04, 04:22](1588 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:15](886 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:26] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:01, 06:16](1580 MB)
+
+PASS -- COMPILE 'atmw_intel' [12:12, 10:59] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:58, 02:09](1648 MB)
+
+PASS -- COMPILE 'atmaero_intel' [12:12, 10:54] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:25](3008 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [09:03, 05:16](3077 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:49, 05:03](3084 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:31] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [32:15, 28:45](4441 MB)
+
+PASS -- COMPILE 'atm_gnu' [04:11, 03:43]
+PASS -- TEST 'control_c48_gnu' [12:48, 11:14](1531 MB)
+PASS -- TEST 'control_stochy_gnu' [05:27, 03:39](492 MB)
+PASS -- TEST 'control_ras_gnu' [07:25, 04:52](501 MB)
+PASS -- TEST 'control_p8_gnu' [07:04, 04:58](1260 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:43](1253 MB)
+PASS -- TEST 'control_flake_gnu' [13:25, 11:18](537 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:11, 03:40]
+PASS -- TEST 'rap_control_gnu' [12:42, 11:13](841 MB)
+PASS -- TEST 'rap_decomp_gnu' [12:37, 11:10](842 MB)
+PASS -- TEST 'rap_2threads_gnu' [11:35, 10:09](922 MB)
+PASS -- TEST 'rap_restart_gnu' [06:45, 05:29](569 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 11:05](844 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:40, 11:09](845 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:49, 08:02](572 MB)
+PASS -- TEST 'hrrr_control_gnu' [06:38, 05:41](844 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [06:33, 05:39](828 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [06:33, 05:10](915 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:40](841 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:56](561 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:29, 02:49](652 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [11:58, 10:37](836 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [04:11, 03:43]
+PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:39](1266 MB)
+PASS -- TEST 'regional_debug_gnu' [11:41, 10:38](554 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:32](849 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:32](860 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:31](824 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:32](850 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:44](935 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:24, 04:01](857 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:34](850 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:33](846 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:32](494 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:43](485 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:41](1246 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [03:24, 02:33](859 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:52](862 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:21](866 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [02:12, 01:52]
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 03:40]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:35, 09:22](708 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:00](710 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:38, 08:48](760 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:38](754 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:36, 05:09](694 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:45, 07:01](544 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:37](534 MB)
+PASS -- TEST 'conus13km_control_gnu' [05:02, 03:12](868 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [06:48, 05:29](870 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:55](553 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:11, 05:23]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:44, 05:47](728 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [04:12, 03:37]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:33](701 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:26, 02:29](703 MB)
+PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:49](878 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [07:48, 07:02](567 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [08:43, 07:42](878 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 06:57](952 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [04:11, 03:41]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:37](720 MB)
+
+PASS -- COMPILE 's2swa_gnu' [15:12, 14:35]
+
+PASS -- COMPILE 's2s_gnu' [15:12, 14:22]
+PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:13, 06:39](1342 MB)
+
+PASS -- COMPILE 's2swa_debug_gnu' [03:11, 02:37]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:12, 14:22]
+PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:03, 22:41](1307 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:12, 02:27]
+PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [18:58, 17:09](1307 MB)
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:05]
+PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:02](694 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 17:03:26
-Ending Date/Time: 20240514 18:48:41
-Total Time: 01h:45m:33s
+Starting Date/Time: 20240516 20:50:21
+Ending Date/Time: 20240516 22:43:43
+Total Time: 01h:53m:38s
Compiles Completed: 55/55
Tests Completed: 243/243
diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log
index 2bc231638e..84e8e5b410 100644
--- a/tests/logs/RegressionTests_hercules.log
+++ b/tests/logs/RegressionTests_hercules.log
@@ -1,20 +1,20 @@
====START OF HERCULES REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
- 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d3)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850c)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,366 +35,366 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1854380
+BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3011761
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [15:10, 15:08] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:05, 07:40](1887 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 22:09] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:47](1762 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:20, 14:27](2177 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [08:22, 06:45](1188 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:10, 15:33](1689 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:14, 28:19] ( 1 warnings 10 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [14:38, 13:20](1766 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:43] ( 1525 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [22:18, 20:19](1727 MB)
-
-PASS -- COMPILE 's2swa_intel' [13:10, 12:53] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [08:50, 07:45](2149 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:06, 07:37](2051 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:15](1949 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [08:51, 07:38](1985 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [06:05, 04:19](1734 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [09:49, 08:55](2497 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:29](2076 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [07:56, 06:25](1902 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:04, 07:36](2093 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [17:42, 15:36](2787 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [08:25, 05:45](2928 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [14:39, 08:29](3634 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:26, 05:26](3620 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [05:57, 04:56](2034 MB)
-
-PASS -- COMPILE 's2sw_intel' [13:10, 12:35] ( 10 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [07:52, 07:05](1777 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:01, 03:59](1835 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:05] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [08:11, 06:56](2061 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:22] ( 1450 warnings 1230 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:54, 04:43](1802 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:19] ( 3 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:00](1827 MB)
-
-PASS -- COMPILE 's2s_intel' [10:10, 09:34] ( 3 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [08:42, 07:13](2825 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [02:42, 02:04](2829 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [02:37, 01:10](2298 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:23] ( 10 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:14](2063 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [18:10, 17:17] ( 10 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:55, 14:18](1811 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:01, 06:50](1285 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:50, 15:27](1732 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:13] ( 1560 warnings 2000 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:48, 21:35](1775 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [08:11, 08:03] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [03:19, 02:51](718 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:38, 02:27](1610 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:42, 02:32](1617 MB)
-PASS -- TEST 'control_latlon_intel' [03:36, 02:27](1614 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:41, 02:26](1612 MB)
-PASS -- TEST 'control_c48_intel' [07:41, 06:59](1733 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:50](862 MB)
-PASS -- TEST 'control_c192_intel' [09:44, 08:56](1752 MB)
-PASS -- TEST 'control_c384_intel' [10:23, 09:06](2045 MB)
-PASS -- TEST 'control_c384gdas_intel' [08:49, 07:02](1538 MB)
-PASS -- TEST 'control_stochy_intel' [02:19, 01:26](661 MB)
-PASS -- TEST 'control_stochy_restart_intel' [01:23, 00:53](538 MB)
-PASS -- TEST 'control_lndp_intel' [02:19, 01:29](673 MB)
-PASS -- TEST 'control_iovr4_intel' [02:20, 02:04](671 MB)
-PASS -- TEST 'control_iovr5_intel' [02:20, 02:04](657 MB)
-PASS -- TEST 'control_p8_intel' [03:57, 02:33](1643 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [03:51, 02:32](1644 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [03:52, 02:26](1636 MB)
-PASS -- TEST 'control_restart_p8_intel' [02:47, 01:26](913 MB)
-PASS -- TEST 'control_noqr_p8_intel' [03:43, 02:28](1632 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:27](991 MB)
-PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:31](1621 MB)
-PASS -- TEST 'control_2threads_p8_intel' [03:43, 02:24](1731 MB)
-PASS -- TEST 'control_p8_lndp_intel' [05:31, 04:24](1646 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [04:53, 03:29](1714 MB)
-PASS -- TEST 'control_p8_mynn_intel' [03:48, 02:29](1659 MB)
-PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1665 MB)
-PASS -- TEST 'regional_control_intel' [05:30, 04:27](960 MB)
-PASS -- TEST 'regional_restart_intel' [03:31, 02:29](1102 MB)
-PASS -- TEST 'regional_decomp_intel' [05:27, 04:43](948 MB)
-PASS -- TEST 'regional_2threads_intel' [03:28, 02:51](914 MB)
-PASS -- TEST 'regional_noquilt_intel' [05:31, 04:20](1488 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [05:30, 04:32](957 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:32](954 MB)
-PASS -- TEST 'regional_wofs_intel' [06:26, 05:38](2067 MB)
-
-PASS -- COMPILE 'rrfs_intel' [08:11, 07:36] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [07:40, 06:32](1219 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:25](1447 MB)
-PASS -- TEST 'rap_decomp_intel' [07:33, 06:50](1142 MB)
-PASS -- TEST 'rap_2threads_intel' [06:48, 06:07](1370 MB)
-PASS -- TEST 'rap_restart_intel' [04:51, 03:25](1137 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [07:43, 06:41](1203 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:33, 06:52](1166 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [06:00, 04:54](1186 MB)
-PASS -- TEST 'hrrr_control_intel' [04:35, 03:20](1070 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 03:31](1043 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [03:52, 03:05](1127 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:50](1023 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [07:50, 06:19](1206 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [08:19, 07:38](2007 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:20, 07:42](2186 MB)
-
-PASS -- COMPILE 'csawmg_intel' [08:10, 07:12] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [06:32, 05:17](805 MB)
-PASS -- TEST 'control_ras_intel' [03:16, 02:51](811 MB)
-
-PASS -- COMPILE 'csawmg_gnu' [05:11, 04:10]
-PASS -- TEST 'control_csawmg_gnu' [07:32, 06:27](808 MB)
-
-PASS -- COMPILE 'wam_intel' [07:11, 07:01]
-PASS -- TEST 'control_wam_intel' [02:23, 01:53](788 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 09:45] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [03:50, 02:22](1643 MB)
-PASS -- TEST 'regional_control_faster_intel' [04:25, 04:06](955 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [04:10, 04:01] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:30, 02:11](1632 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:32, 02:09](1632 MB)
-PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:27](832 MB)
-PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:13](832 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [04:33, 03:24](883 MB)
-PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](837 MB)
-PASS -- TEST 'control_diag_debug_intel' [03:34, 02:20](1688 MB)
-PASS -- TEST 'control_debug_p8_intel' [03:31, 02:23](1663 MB)
-PASS -- TEST 'regional_debug_intel' [14:41, 14:08](892 MB)
-PASS -- TEST 'rap_control_debug_intel' [04:20, 03:55](1229 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [04:19, 03:50](1216 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [04:16, 03:58](1231 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 03:57](1216 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 03:57](1225 MB)
-PASS -- TEST 'rap_diag_debug_intel' [05:23, 04:11](1316 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:05](1223 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:15, 04:05](1218 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:04](1217 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 03:57](1217 MB)
-PASS -- TEST 'rap_noah_debug_intel' [04:17, 03:53](1224 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [04:17, 03:56](1216 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 06:23](1211 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [04:18, 03:52](1223 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:46](1224 MB)
-PASS -- TEST 'rap_flake_debug_intel' [04:17, 03:56](1217 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 06:48](1214 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 03:38]
-PASS -- TEST 'control_csawmg_debug_gnu' [02:27, 01:44](792 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 03:42] ( 855 warnings )
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 07:13] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:45, 03:19](1277 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:35, 05:18](1149 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:05, 02:50](1018 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:52, 05:04](1284 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:39, 02:38](1039 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:39, 03:04](1010 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:52, 04:11](1107 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:30, 01:34](961 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 09:21] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [02:35, 01:44](1288 MB)
-PASS -- TEST 'conus13km_2threads_intel' [01:34, 00:50](1196 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [01:34, 01:04](1162 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:15] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:32, 03:45](1095 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:19, 03:54](1102 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 03:57](1093 MB)
-PASS -- TEST 'conus13km_debug_intel' [12:32, 11:44](1346 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [12:33, 11:48](993 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:39](1243 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:26, 11:45](1412 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:42] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 03:59](1154 MB)
-
-PASS -- COMPILE 'hafsw_intel' [10:11, 10:06] ( 1 warnings 9 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [07:02, 05:24](882 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:23, 05:01](1280 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](955 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:05, 14:14](979 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:17, 15:06](1001 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:48, 05:37](606 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:13, 06:53](620 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:43](439 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:01, 07:54](541 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:43, 03:50](617 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:46, 03:41](619 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:50, 04:53](683 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:17](450 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:24] ( 1467 warnings 1502 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:37, 11:29](635 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:12] ( 8 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:46, 16:26](769 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:48, 16:34](850 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:10] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:01](824 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [11:10, 10:14] ( 8 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [07:04, 05:26](957 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:30](926 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:20](1341 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [07:15, 06:47] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:15, 02:13](1140 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:22](1088 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [12:11, 12:00] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:02, 07:38](1887 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:35] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [15:10, 13:43](1784 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:45](2177 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:34](1188 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 15:14](1695 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 18:48] ( 1 warnings 10 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [14:29, 13:18](1760 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:15] ( 1525 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [22:13, 20:24](1733 MB)
+
+PASS -- COMPILE 's2swa_intel' [13:11, 12:21] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [08:49, 07:54](2084 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:08, 07:38](2076 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [06:06, 04:16](1963 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 07:39](1976 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [06:03, 04:21](1745 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:00](2498 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [08:47, 07:38](2059 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:01, 06:36](1882 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:03, 07:40](2073 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [17:49, 15:36](2811 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [08:12, 05:53](2919 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [14:50, 08:36](3622 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:02, 05:40](3618 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [05:58, 05:07](2034 MB)
+
+PASS -- COMPILE 's2sw_intel' [12:11, 12:05] ( 10 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:51, 07:06](1771 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:54, 04:04](1826 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:23] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [07:57, 06:52](2049 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:58] ( 1450 warnings 1230 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:59, 04:50](1791 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:03] ( 3 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:53, 04:06](1811 MB)
+
+PASS -- COMPILE 's2s_intel' [08:10, 07:50] ( 3 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [08:41, 07:16](2829 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [02:44, 02:05](2825 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:17](2306 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [12:11, 11:39] ( 10 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 07:12](2066 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:17] ( 10 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:49, 14:01](1814 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:02, 07:02](1268 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:00, 15:26](1728 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 03:35] ( 1560 warnings 2000 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:47, 21:41](1766 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:51] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [03:23, 02:50](715 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 02:27](1607 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:39, 02:31](1626 MB)
+PASS -- TEST 'control_latlon_intel' [03:31, 02:29](1612 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:32](1606 MB)
+PASS -- TEST 'control_c48_intel' [07:35, 06:58](1735 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:27, 05:49](861 MB)
+PASS -- TEST 'control_c192_intel' [09:43, 08:58](1759 MB)
+PASS -- TEST 'control_c384_intel' [11:27, 09:29](2039 MB)
+PASS -- TEST 'control_c384gdas_intel' [10:07, 07:10](1525 MB)
+PASS -- TEST 'control_stochy_intel' [02:20, 01:28](666 MB)
+PASS -- TEST 'control_stochy_restart_intel' [01:25, 00:51](533 MB)
+PASS -- TEST 'control_lndp_intel' [02:20, 01:24](672 MB)
+PASS -- TEST 'control_iovr4_intel' [02:22, 02:09](659 MB)
+PASS -- TEST 'control_iovr5_intel' [02:22, 02:06](659 MB)
+PASS -- TEST 'control_p8_intel' [03:50, 02:32](1646 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [03:56, 02:37](1627 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [03:53, 02:27](1637 MB)
+PASS -- TEST 'control_restart_p8_intel' [02:43, 01:25](918 MB)
+PASS -- TEST 'control_noqr_p8_intel' [03:42, 02:30](1627 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:54, 01:25](974 MB)
+PASS -- TEST 'control_decomp_p8_intel' [03:40, 02:33](1621 MB)
+PASS -- TEST 'control_2threads_p8_intel' [03:40, 02:20](1729 MB)
+PASS -- TEST 'control_p8_lndp_intel' [05:32, 04:23](1642 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [04:51, 03:22](1715 MB)
+PASS -- TEST 'control_p8_mynn_intel' [03:50, 02:30](1646 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:54, 02:46](1647 MB)
+PASS -- TEST 'regional_control_intel' [05:27, 04:29](959 MB)
+PASS -- TEST 'regional_restart_intel' [03:28, 02:31](1100 MB)
+PASS -- TEST 'regional_decomp_intel' [05:27, 04:42](944 MB)
+PASS -- TEST 'regional_2threads_intel' [03:26, 02:50](912 MB)
+PASS -- TEST 'regional_noquilt_intel' [05:26, 04:19](1487 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:27](958 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [05:24, 04:30](954 MB)
+PASS -- TEST 'regional_wofs_intel' [06:27, 05:40](2087 MB)
+
+PASS -- COMPILE 'rrfs_intel' [07:11, 06:43] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [07:53, 06:32](1194 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:26](1417 MB)
+PASS -- TEST 'rap_decomp_intel' [07:33, 06:53](1150 MB)
+PASS -- TEST 'rap_2threads_intel' [07:35, 06:18](1379 MB)
+PASS -- TEST 'rap_restart_intel' [04:37, 03:24](1139 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [07:48, 06:26](1202 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:35, 06:53](1146 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [05:52, 05:06](1198 MB)
+PASS -- TEST 'hrrr_control_intel' [04:36, 03:32](1077 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [04:37, 03:29](1047 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [03:45, 03:08](1121 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [02:20, 01:53](1034 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [07:58, 06:21](1187 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [08:25, 07:42](2007 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:26](2164 MB)
+
+PASS -- COMPILE 'csawmg_intel' [07:11, 06:36] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:30, 05:16](823 MB)
+PASS -- TEST 'control_ras_intel' [03:18, 02:51](819 MB)
+
+PASS -- COMPILE 'csawmg_gnu' [04:10, 03:53]
+PASS -- TEST 'control_csawmg_gnu' [07:32, 06:35](810 MB)
+
+PASS -- COMPILE 'wam_intel' [07:11, 06:33]
+PASS -- TEST 'control_wam_intel' [02:23, 01:47](801 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:27] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [03:52, 02:23](1634 MB)
+PASS -- TEST 'regional_control_faster_intel' [04:27, 04:05](954 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [04:11, 03:41] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:31, 02:08](1630 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:07](1633 MB)
+PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:27](826 MB)
+PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:20](826 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:23](879 MB)
+PASS -- TEST 'control_ras_debug_intel' [03:17, 02:17](833 MB)
+PASS -- TEST 'control_diag_debug_intel' [02:44, 02:11](1690 MB)
+PASS -- TEST 'control_debug_p8_intel' [03:35, 02:20](1653 MB)
+PASS -- TEST 'regional_debug_intel' [14:32, 14:00](899 MB)
+PASS -- TEST 'rap_control_debug_intel' [04:19, 03:54](1223 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [04:17, 03:50](1217 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [04:17, 03:54](1219 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [04:16, 04:00](1224 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:16, 04:00](1217 MB)
+PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:15](1304 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:16, 04:07](1218 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:21, 04:02](1218 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [04:18, 03:58](1215 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:21, 03:57](1217 MB)
+PASS -- TEST 'rap_noah_debug_intel' [04:18, 03:55](1219 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [04:19, 03:58](1223 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:19, 06:24](1220 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 03:54](1214 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:12](1213 MB)
+PASS -- TEST 'rap_flake_debug_intel' [04:17, 04:07](1215 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:49, 06:48](1219 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 03:11]
+PASS -- TEST 'control_csawmg_debug_gnu' [02:28, 01:48](790 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 855 warnings )
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 06:25] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:14](1278 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:31, 05:32](1159 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:57, 02:57](1030 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:46, 05:10](1283 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:38, 02:37](1046 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:37, 03:04](986 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:51, 04:05](1099 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:21, 01:36](967 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 08:36] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [02:38, 01:41](1305 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:31, 00:44](1201 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [01:29, 01:04](1153 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 06:35] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:34, 03:45](1074 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:11] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:18, 04:04](1104 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:18, 03:50](1093 MB)
+PASS -- TEST 'conus13km_debug_intel' [12:31, 11:44](1332 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [12:30, 11:49](995 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [07:27, 06:43](1240 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:29, 11:37](1408 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:28] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:28, 04:00](1154 MB)
+
+PASS -- COMPILE 'hafsw_intel' [10:16, 09:43] ( 1 warnings 9 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:12, 05:23](869 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:29](1271 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:15, 06:19](963 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 13:56](977 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:09, 14:59](1007 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:56, 05:24](608 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:19, 07:02](612 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [03:41, 02:47](433 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:54](549 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:52](617 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:45](619 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:47, 04:54](682 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:24](448 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [03:10, 03:02] ( 1467 warnings 1502 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:44, 11:22](628 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [10:13, 10:06] ( 8 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:51, 16:28](769 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:51, 16:44](845 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [10:13, 09:57] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:55, 10:05](831 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [11:11, 10:15] ( 8 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [07:06, 05:21](967 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:00, 05:24](921 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:22](1343 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:15] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:15, 02:09](1153 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:15, 01:16](1112 MB)
PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:14, 02:06](1011 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:05](1010 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:14, 02:07](1013 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:09](1143 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:12](1150 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:17, 02:03](1015 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:00](1156 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:44, 04:54](1147 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:12, 02:09](1152 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:04](2434 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:03](2388 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:50] ( 2 warnings 2 remarks )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 05:10](1075 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 10:30] ( 2 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:10](1144 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:52](338 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](561 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:33](565 MB)
-
-PASS -- COMPILE 'atml_intel' [09:10, 08:47] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:07, 05:23](1640 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:59, 05:15](1649 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 02:46](951 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:11, 04:52] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:54, 04:37](1654 MB)
-
-PASS -- COMPILE 'atmw_intel' [10:11, 09:25] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:53, 01:30](1701 MB)
-
-PASS -- COMPILE 'atmaero_intel' [08:10, 07:21] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:28](1804 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:20](1797 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:24](1822 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:54] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [18:25, 16:13](4564 MB)
-
-PASS -- COMPILE 'atm_gnu' [05:10, 04:39]
-PASS -- TEST 'control_c48_gnu' [10:37, 09:31](1576 MB)
-PASS -- TEST 'control_stochy_gnu' [03:21, 02:19](736 MB)
-PASS -- TEST 'control_ras_gnu' [04:20, 03:35](736 MB)
-PASS -- TEST 'control_p8_gnu' [04:51, 03:35](1512 MB)
-PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:31](1518 MB)
-PASS -- TEST 'control_flake_gnu' [05:16, 04:25](815 MB)
-
-PASS -- COMPILE 'rrfs_gnu' [06:11, 05:17]
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 02:10](1011 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:07](1011 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1153 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:08](1154 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:02](1013 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:53, 04:57](1160 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:54](1158 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:08](1150 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:16, 03:03](2451 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2315 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:55] ( 2 warnings 2 remarks )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:10](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:56] ( 2 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:08](1152 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:42] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:57](338 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:52](557 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:33](570 MB)
+
+PASS -- COMPILE 'atml_intel' [09:11, 08:24] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:05, 05:46](1637 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [07:02, 05:49](1634 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:37, 02:52](953 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [03:16, 03:02] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:56, 04:41](1661 MB)
+
+PASS -- COMPILE 'atmw_intel' [10:15, 09:20] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:35](1689 MB)
+
+PASS -- COMPILE 'atmaero_intel' [08:15, 07:34] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [04:54, 03:31](1800 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:14](1804 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:41, 04:16](1812 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [03:11, 02:36] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [18:21, 16:43](4576 MB)
+
+PASS -- COMPILE 'atm_gnu' [05:10, 04:16]
+PASS -- TEST 'control_c48_gnu' [10:37, 09:23](1559 MB)
+PASS -- TEST 'control_stochy_gnu' [03:22, 02:18](728 MB)
+PASS -- TEST 'control_ras_gnu' [04:18, 03:39](740 MB)
+PASS -- TEST 'control_p8_gnu' [04:47, 03:30](1514 MB)
+PASS -- TEST 'control_p8_ugwpv1_gnu' [04:41, 03:30](1515 MB)
+PASS -- TEST 'control_flake_gnu' [05:19, 04:18](799 MB)
+
+PASS -- COMPILE 'rrfs_gnu' [04:10, 04:02]
PASS -- TEST 'rap_control_gnu' [08:32, 07:38](1089 MB)
-PASS -- TEST 'rap_decomp_gnu' [08:34, 07:52](1083 MB)
-PASS -- TEST 'rap_2threads_gnu' [07:43, 07:08](1124 MB)
-PASS -- TEST 'rap_restart_gnu' [04:59, 04:00](891 MB)
-PASS -- TEST 'rap_sfcdiff_gnu' [08:44, 07:45](1085 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:33, 07:55](1083 MB)
-PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:54, 05:38](886 MB)
-PASS -- TEST 'hrrr_control_gnu' [04:46, 04:00](1071 MB)
-PASS -- TEST 'hrrr_control_noqr_gnu' [05:32, 04:16](1138 MB)
-PASS -- TEST 'hrrr_control_2threads_gnu' [04:31, 03:45](1040 MB)
-PASS -- TEST 'hrrr_control_decomp_gnu' [04:36, 03:59](1071 MB)
-PASS -- TEST 'hrrr_control_restart_gnu' [02:19, 02:04](880 MB)
-PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:18, 02:02](933 MB)
-PASS -- TEST 'rrfs_v1beta_gnu' [08:57, 07:40](1091 MB)
-
-PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 06:06]
-PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:15](1625 MB)
-PASS -- TEST 'regional_debug_gnu' [07:28, 06:29](925 MB)
-PASS -- TEST 'rap_control_debug_gnu' [02:16, 02:04](1100 MB)
-PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 01:53](1091 MB)
-PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 01:59](1095 MB)
-PASS -- TEST 'hrrr_c3_debug_gnu' [02:19, 01:59](1097 MB)
-PASS -- TEST 'rap_diag_debug_gnu' [02:24, 02:05](1271 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:02](1099 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 01:58](1103 MB)
-PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:03](1095 MB)
-PASS -- TEST 'control_ras_debug_gnu' [02:15, 01:11](737 MB)
-PASS -- TEST 'control_stochy_debug_gnu' [02:15, 01:16](721 MB)
-PASS -- TEST 'control_debug_p8_gnu' [02:37, 01:14](1511 MB)
-PASS -- TEST 'rap_flake_debug_gnu' [02:18, 01:56](1101 MB)
-PASS -- TEST 'rap_clm_lake_debug_gnu' [03:16, 02:13](1103 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 03:21](1099 MB)
-
-PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:22]
-PASS -- TEST 'control_wam_debug_gnu' [02:22, 01:52](499 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:11, 05:50]
-PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:46, 07:08](962 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:54, 03:43](951 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:31, 06:39](996 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:34, 03:27](891 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:34, 03:48](957 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:50, 05:32](858 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:20, 02:01](856 MB)
-PASS -- TEST 'conus13km_control_gnu' [03:35, 02:26](1265 MB)
-PASS -- TEST 'conus13km_2threads_gnu' [01:34, 01:09](1176 MB)
-PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:26](934 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:10]
-PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:19](999 MB)
-
-PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 07:17]
-PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:52](976 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:16, 01:57](966 MB)
-PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:31](1278 MB)
-PASS -- TEST 'conus13km_debug_qr_gnu' [06:27, 05:33](962 MB)
-PASS -- TEST 'conus13km_debug_2threads_gnu' [03:32, 03:08](1187 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:25, 05:25](1346 MB)
-
-PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:10, 04:37]
-PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 01:54](1001 MB)
-
-PASS -- COMPILE 's2swa_gnu' [24:11, 23:27]
-
-PASS -- COMPILE 's2s_gnu' [16:10, 15:53]
-
-PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:12]
-
-PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 15:01]
-
-PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:18]
-
-PASS -- COMPILE 'datm_cdeps_gnu' [15:11, 14:58]
+PASS -- TEST 'rap_decomp_gnu' [08:33, 07:44](1087 MB)
+PASS -- TEST 'rap_2threads_gnu' [07:47, 07:03](1149 MB)
+PASS -- TEST 'rap_restart_gnu' [04:38, 03:58](886 MB)
+PASS -- TEST 'rap_sfcdiff_gnu' [08:46, 07:42](1084 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 07:46](1088 MB)
+PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:40, 05:42](885 MB)
+PASS -- TEST 'hrrr_control_gnu' [04:53, 04:03](1072 MB)
+PASS -- TEST 'hrrr_control_noqr_gnu' [05:35, 04:12](1141 MB)
+PASS -- TEST 'hrrr_control_2threads_gnu' [04:35, 03:34](1041 MB)
+PASS -- TEST 'hrrr_control_decomp_gnu' [05:35, 04:10](1071 MB)
+PASS -- TEST 'hrrr_control_restart_gnu' [02:21, 02:02](883 MB)
+PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:19, 02:00](933 MB)
+PASS -- TEST 'rrfs_v1beta_gnu' [08:53, 07:37](1082 MB)
+
+PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:10, 05:11]
+PASS -- TEST 'control_diag_debug_gnu' [01:34, 01:09](1626 MB)
+PASS -- TEST 'regional_debug_gnu' [07:28, 06:21](927 MB)
+PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:13](1100 MB)
+PASS -- TEST 'hrrr_control_debug_gnu' [02:17, 02:01](1091 MB)
+PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 02:09](1099 MB)
+PASS -- TEST 'hrrr_c3_debug_gnu' [02:17, 02:03](1099 MB)
+PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1272 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:17, 03:08](1097 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:18, 01:59](1098 MB)
+PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:18, 02:01](1095 MB)
+PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](727 MB)
+PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](730 MB)
+PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:40](1504 MB)
+PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:01](1100 MB)
+PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:12](1106 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:15](1108 MB)
+
+PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:34]
+PASS -- TEST 'control_wam_debug_gnu' [02:25, 01:54](498 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 04:00]
+PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:34, 07:12](961 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 03:43](951 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:39](995 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:37, 03:27](888 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:36, 03:46](950 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:43, 05:22](860 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:18, 01:57](856 MB)
+PASS -- TEST 'conus13km_control_gnu' [03:36, 02:27](1265 MB)
+PASS -- TEST 'conus13km_2threads_gnu' [01:29, 01:07](1172 MB)
+PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:30, 01:26](932 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 08:08]
+PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:29, 04:17](990 MB)
+
+PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:10, 05:03]
+PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:17, 01:59](977 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:17, 01:51](969 MB)
+PASS -- TEST 'conus13km_debug_gnu' [06:29, 05:22](1280 MB)
+PASS -- TEST 'conus13km_debug_qr_gnu' [06:28, 05:38](968 MB)
+PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:16](1194 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:27, 05:20](1350 MB)
+
+PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:11, 05:26]
+PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 01:57](1004 MB)
+
+PASS -- COMPILE 's2swa_gnu' [16:11, 15:23]
+
+PASS -- COMPILE 's2s_gnu' [16:11, 15:17]
+
+PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:23]
+
+PASS -- COMPILE 's2sw_pdlib_gnu' [15:11, 14:19]
+
+PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 02:52]
+
+PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:13]
SYNOPSIS:
-Starting Date/Time: 20240514 12:24:37
-Ending Date/Time: 20240514 13:37:18
-Total Time: 01h:13m:08s
+Starting Date/Time: 20240516 23:22:16
+Ending Date/Time: 20240517 00:34:31
+Total Time: 01h:12m:41s
Compiles Completed: 55/55
Tests Completed: 238/238
diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log
index d70b602ea3..6881400186 100644
--- a/tests/logs/RegressionTests_jet.log
+++ b/tests/logs/RegressionTests_jet.log
@@ -1,7 +1,7 @@
====START OF JET REGRESSION TESTING LOG====
UFSWM hash used in testing:
-07a3943227ebdf1db521865cebc527e018f85290
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,248 +35,248 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_982280
+BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_599589
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: h-nems
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [40:14, 39:29] ( 1 warnings 1383 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:21, 09:11](1793 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:16, 54:33] ( 1 warnings 1427 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [26:27, 23:36](1661 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:18, 23:44](1881 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [14:14, 11:27](996 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:52, 26:47](1632 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:16, 50:33] ( 1 warnings 1424 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [27:56, 23:34](1645 MB)
-
-PASS -- COMPILE 's2swa_intel' [40:14, 39:29] ( 1381 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [25:00, 11:01](1810 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:42, 10:27](1828 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [09:32, 06:48](1712 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [24:08, 10:30](1838 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [10:23, 07:34](1731 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [15:47, 08:10](2263 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [21:54, 09:26](1825 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [12:15, 09:25](1780 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:57, 08:43](1806 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [26:33, 10:07](1784 MB)
-
-PASS -- COMPILE 's2sw_intel' [38:14, 37:36] ( 1279 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [16:40, 07:29](1665 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:53, 07:04](1706 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [06:14, 06:01] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [23:23, 11:39](1849 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:10] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:41, 08:34](1677 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [36:16, 33:11] ( 1011 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:56, 08:02](1713 MB)
-
-PASS -- COMPILE 's2s_intel' [36:17, 33:55] ( 1016 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [14:37, 12:47](2800 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [05:46, 03:39](2796 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [03:17, 02:01](2265 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [34:28, 33:54] ( 1608 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [10:58, 08:02](1818 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [50:16, 48:55] ( 1339 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [38:27, 24:10](1688 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:24, 11:12](1038 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:06, 25:15](1657 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:59] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:51, 32:42](1693 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [36:20, 35:40] ( 1 warnings 1151 remarks )
-PASS -- TEST 'control_flake_intel' [13:39, 07:39](646 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [19:46, 05:10](1542 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:56, 04:41](1557 MB)
-PASS -- TEST 'control_latlon_intel' [20:37, 04:49](1547 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:41, 06:48](1546 MB)
-PASS -- TEST 'control_c48_intel' [19:59, 12:06](1730 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [12:19, 10:29](843 MB)
-PASS -- TEST 'control_c192_intel' [23:00, 18:45](1681 MB)
-PASS -- TEST 'control_c384_intel' [47:37, 24:42](1816 MB)
-PASS -- TEST 'control_c384gdas_intel' [43:07, 19:08](1020 MB)
-PASS -- TEST 'control_stochy_intel' [13:37, 04:40](604 MB)
-PASS -- TEST 'control_stochy_restart_intel' [11:59, 01:38](435 MB)
-PASS -- TEST 'control_lndp_intel' [09:37, 03:06](599 MB)
-PASS -- TEST 'control_iovr4_intel' [15:45, 06:03](595 MB)
-PASS -- TEST 'control_iovr5_intel' [11:39, 05:01](596 MB)
-PASS -- TEST 'control_p8_intel' [23:17, 04:34](1577 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [20:33, 05:20](1582 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [17:38, 06:14](1577 MB)
-PASS -- TEST 'control_restart_p8_intel' [07:58, 03:10](816 MB)
-PASS -- TEST 'control_noqr_p8_intel' [19:31, 05:15](1565 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [07:32, 02:18](846 MB)
-PASS -- TEST 'control_decomp_p8_intel' [23:06, 04:31](1567 MB)
-PASS -- TEST 'control_2threads_p8_intel' [21:04, 04:45](1660 MB)
-PASS -- TEST 'control_p8_lndp_intel' [22:42, 08:46](1569 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [23:35, 06:10](1642 MB)
-PASS -- TEST 'control_p8_mynn_intel' [17:45, 06:20](1578 MB)
-PASS -- TEST 'merra2_thompson_intel' [21:45, 05:41](1591 MB)
-PASS -- TEST 'regional_control_intel' [29:43, 11:55](764 MB)
-PASS -- TEST 'regional_restart_intel' [11:15, 05:53](937 MB)
-PASS -- TEST 'regional_decomp_intel' [26:39, 12:38](763 MB)
-PASS -- TEST 'regional_2threads_intel' [09:33, 06:56](755 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [21:42, 11:46](760 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [28:41, 09:06](759 MB)
-
-PASS -- COMPILE 'rrfs_intel' [34:15, 33:47] ( 3 warnings 1119 remarks )
-PASS -- TEST 'rap_control_intel' [22:26, 12:23](996 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:38, 06:22](1212 MB)
-PASS -- TEST 'rap_decomp_intel' [23:15, 13:21](982 MB)
-PASS -- TEST 'rap_2threads_intel' [22:26, 11:52](1087 MB)
-PASS -- TEST 'rap_restart_intel' [09:45, 06:47](989 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [23:56, 13:48](992 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:08, 14:10](984 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [13:01, 08:49](1003 MB)
-PASS -- TEST 'hrrr_control_intel' [14:06, 06:45](991 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [14:05, 06:53](984 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [13:58, 06:10](1062 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [06:53, 04:26](920 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [18:59, 12:57](989 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [20:35, 16:29](1944 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:31, 15:43](1926 MB)
-
-PASS -- COMPILE 'csawmg_intel' [32:16, 31:52] ( 1 warnings 1096 remarks )
-PASS -- TEST 'control_csawmg_intel' [17:48, 11:39](690 MB)
-PASS -- TEST 'control_ras_intel' [12:30, 06:11](666 MB)
-
-PASS -- COMPILE 'wam_intel' [30:14, 29:59] ( 982 remarks )
-PASS -- TEST 'control_wam_intel' [06:20, 03:56](505 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [49:16, 33:07] ( 1295 remarks )
-PASS -- TEST 'control_p8_faster_intel' [09:04, 03:41](1577 MB)
-PASS -- TEST 'regional_control_faster_intel' [12:01, 07:01](769 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [16:13, 06:39] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:37, 04:01](1569 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:41, 03:35](1570 MB)
-PASS -- TEST 'control_stochy_debug_intel' [04:37, 03:48](767 MB)
-PASS -- TEST 'control_lndp_debug_intel' [04:38, 03:25](761 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [07:29, 05:43](808 MB)
-PASS -- TEST 'control_ras_debug_intel' [04:38, 03:28](775 MB)
-PASS -- TEST 'control_diag_debug_intel' [05:39, 03:54](1618 MB)
-PASS -- TEST 'control_debug_p8_intel' [07:56, 03:51](1586 MB)
-PASS -- TEST 'regional_debug_intel' [24:40, 22:34](780 MB)
-PASS -- TEST 'rap_control_debug_intel' [07:38, 06:11](1150 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [07:39, 06:14](1140 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:23](1150 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:17](1149 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:15](1147 MB)
-PASS -- TEST 'rap_diag_debug_intel' [07:46, 06:39](1236 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:50](1153 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 06:41](1151 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [07:51, 06:17](1152 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:54, 06:18](1152 MB)
-PASS -- TEST 'rap_noah_debug_intel' [07:34, 06:10](1146 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 06:09](1151 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 10:11](1151 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [08:35, 06:21](1145 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:45](1155 MB)
-PASS -- TEST 'rap_flake_debug_intel' [08:04, 06:20](1154 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:54, 10:29](1157 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [13:13, 04:54] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [08:28, 06:38](452 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:23] ( 3 warnings 1032 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:25, 05:35](1087 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [13:06, 09:56](903 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:11, 04:46](865 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:47, 09:00](951 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:51, 04:25](912 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:08, 04:55](855 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:39, 06:32](893 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 03:11](843 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:19, 43:28] ( 3 warnings 1198 remarks )
-PASS -- TEST 'conus13km_control_intel' [05:32, 02:59](1108 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:44](1041 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:57, 01:49](1025 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:15, 31:09] ( 3 warnings 1052 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:11, 06:04](898 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:21] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:33, 06:11](1031 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:32, 06:02](1031 MB)
-PASS -- TEST 'conus13km_debug_intel' [23:10, 19:02](1139 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [23:10, 19:16](855 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [12:02, 10:41](1079 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:04, 18:53](1204 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:26, 06:15](1069 MB)
-
-PASS -- COMPILE 'hafsw_intel' [36:15, 35:28] ( 1 warnings 1430 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [11:37, 08:29](714 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [12:42, 10:10](1082 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:55, 13:00](764 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [24:43, 20:08](801 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:54, 20:35](825 MB)
-PASS -- TEST 'gnv1_nested_intel' [14:18, 09:28](783 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [34:15, 33:05] ( 1268 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [11:38, 09:57](767 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:36, 11:49](748 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [10:17, 08:12] ( 67 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:56](1059 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:17](1017 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 04:13](923 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:51](922 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:25, 03:49](916 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:48](1064 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:49](1061 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:48](926 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:49, 08:06](882 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:50, 08:03](848 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 03:48](1065 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:24, 05:18](2403 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 05:32](2384 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:41] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:26, 08:02](1013 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:59] ( 70 remarks )
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:44](1061 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:47] ( 60 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 02:17](231 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:31, 02:01](257 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:31, 01:10](251 MB)
-
-PASS -- COMPILE 'atml_intel' [35:14, 34:30] ( 8 warnings 1189 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [19:06, 14:07](1610 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [20:08, 13:46](1609 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:20, 06:19](865 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [06:12, 05:41] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 07:50](1614 MB)
-
-PASS -- COMPILE 'atmw_intel' [33:25, 32:55] ( 1260 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:55, 02:35](1601 MB)
-
-PASS -- COMPILE 'atmaero_intel' [31:14, 31:03] ( 1099 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:51, 05:35](1702 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [11:43, 09:56](1720 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:21, 09:49](1737 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [39:14, 39:04] ( 1 warnings 1383 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:00, 07:36](1773 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [55:15, 54:59] ( 1 warnings 1427 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:22, 20:44](1679 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:38, 22:19](1879 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [13:34, 10:27](994 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:44, 23:53](1624 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [52:15, 52:11] ( 1 warnings 1424 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [21:54, 20:23](1654 MB)
+
+PASS -- COMPILE 's2swa_intel' [40:14, 39:24] ( 1381 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:38, 07:54](1816 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:06, 07:59](1810 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [07:31, 04:31](1706 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [10:41, 07:57](1835 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 04:38](1729 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [09:32, 07:31](2266 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [09:30, 07:59](1823 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [08:54, 07:07](1768 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:12, 08:02](1811 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:09, 07:34](1770 MB)
+
+PASS -- COMPILE 's2sw_intel' [38:13, 37:21] ( 1279 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [07:36, 06:00](1662 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:56, 05:50](1711 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:33] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [12:52, 10:35](1848 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:44] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:31, 07:28](1679 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [33:13, 32:39] ( 1011 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:55, 05:49](1701 MB)
+
+PASS -- COMPILE 's2s_intel' [32:12, 31:50] ( 1016 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [14:14, 12:41](2796 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:12, 03:31](2793 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [03:19, 01:56](2273 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [34:18, 33:43] ( 1608 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [10:17, 07:23](1826 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:13] ( 1339 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:57, 21:00](1682 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:08, 10:22](1034 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:49, 24:06](1657 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:00] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:45, 32:08](1691 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [35:14, 34:48] ( 1 warnings 1151 remarks )
+PASS -- TEST 'control_flake_intel' [06:31, 04:30](647 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [06:35, 03:58](1542 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:43, 04:09](1538 MB)
+PASS -- TEST 'control_latlon_intel' [06:30, 03:55](1541 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:41, 04:07](1548 MB)
+PASS -- TEST 'control_c48_intel' [14:39, 11:57](1734 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [11:58, 10:11](843 MB)
+PASS -- TEST 'control_c192_intel' [16:55, 14:19](1678 MB)
+PASS -- TEST 'control_c384_intel' [23:07, 18:05](1827 MB)
+PASS -- TEST 'control_c384gdas_intel' [20:32, 13:34](1018 MB)
+PASS -- TEST 'control_stochy_intel' [03:31, 02:22](602 MB)
+PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:19](432 MB)
+PASS -- TEST 'control_lndp_intel' [04:33, 02:08](601 MB)
+PASS -- TEST 'control_iovr4_intel' [04:35, 03:32](594 MB)
+PASS -- TEST 'control_iovr5_intel' [04:35, 03:28](600 MB)
+PASS -- TEST 'control_p8_intel' [10:15, 03:56](1584 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [11:58, 04:01](1578 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [09:19, 03:58](1584 MB)
+PASS -- TEST 'control_restart_p8_intel' [04:27, 02:22](813 MB)
+PASS -- TEST 'control_noqr_p8_intel' [09:00, 03:54](1556 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [04:36, 02:18](839 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:18, 04:04](1569 MB)
+PASS -- TEST 'control_2threads_p8_intel' [08:57, 03:41](1666 MB)
+PASS -- TEST 'control_p8_lndp_intel' [09:37, 07:07](1572 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 05:13](1632 MB)
+PASS -- TEST 'control_p8_mynn_intel' [09:17, 04:09](1584 MB)
+PASS -- TEST 'merra2_thompson_intel' [10:38, 04:23](1580 MB)
+PASS -- TEST 'regional_control_intel' [13:28, 07:22](751 MB)
+PASS -- TEST 'regional_restart_intel' [04:46, 03:52](934 MB)
+PASS -- TEST 'regional_decomp_intel' [14:27, 07:52](762 MB)
+PASS -- TEST 'regional_2threads_intel' [06:28, 04:28](752 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [13:34, 07:28](764 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [13:28, 07:24](762 MB)
+
+PASS -- COMPILE 'rrfs_intel' [34:14, 33:37] ( 3 warnings 1119 remarks )
+PASS -- TEST 'rap_control_intel' [13:12, 10:06](989 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 05:44](1219 MB)
+PASS -- TEST 'rap_decomp_intel' [14:16, 10:42](985 MB)
+PASS -- TEST 'rap_2threads_intel' [11:45, 09:41](1082 MB)
+PASS -- TEST 'rap_restart_intel' [07:40, 05:16](981 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [12:41, 10:06](995 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:05, 10:53](982 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 07:37](998 MB)
+PASS -- TEST 'hrrr_control_intel' [07:46, 05:19](996 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [08:18, 05:28](980 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [08:17, 04:43](1060 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [05:29, 02:48](926 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [12:47, 10:00](995 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [13:37, 12:33](1937 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:38, 12:05](1936 MB)
+
+PASS -- COMPILE 'csawmg_intel' [32:14, 31:32] ( 1 warnings 1096 remarks )
+PASS -- TEST 'control_csawmg_intel' [09:47, 08:03](691 MB)
+PASS -- TEST 'control_ras_intel' [05:26, 04:29](658 MB)
+
+PASS -- COMPILE 'wam_intel' [30:14, 30:07] ( 982 remarks )
+PASS -- TEST 'control_wam_intel' [03:27, 02:45](501 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [32:13, 31:57] ( 1295 remarks )
+PASS -- TEST 'control_p8_faster_intel' [05:58, 03:36](1583 MB)
+PASS -- TEST 'regional_control_faster_intel' [07:55, 06:40](762 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:37] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 03:20](1556 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:09, 03:18](1550 MB)
+PASS -- TEST 'control_stochy_debug_intel' [04:29, 03:46](765 MB)
+PASS -- TEST 'control_lndp_debug_intel' [04:30, 03:22](764 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [07:00, 05:18](807 MB)
+PASS -- TEST 'control_ras_debug_intel' [04:29, 03:28](778 MB)
+PASS -- TEST 'control_diag_debug_intel' [07:11, 03:23](1624 MB)
+PASS -- TEST 'control_debug_p8_intel' [05:11, 03:36](1588 MB)
+PASS -- TEST 'regional_debug_intel' [26:08, 21:45](782 MB)
+PASS -- TEST 'rap_control_debug_intel' [06:32, 06:02](1148 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [06:32, 05:58](1147 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [06:32, 06:04](1141 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:06](1149 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 06:03](1152 MB)
+PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1237 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:11](1152 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:10](1154 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [08:29, 06:07](1150 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 06:06](1151 MB)
+PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:59](1150 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:05](1148 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:30, 09:58](1149 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [07:25, 06:00](1143 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [09:27, 07:21](1150 MB)
+PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:05](1145 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:37, 10:28](1157 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [05:11, 04:05] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [07:25, 06:09](447 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:13, 30:12] ( 3 warnings 1032 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:18, 05:22](1080 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:27](902 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:17, 04:28](867 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:30, 07:57](944 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:19, 04:02](907 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:51, 04:43](858 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:34, 06:20](905 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 02:23](856 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [43:13, 42:51] ( 3 warnings 1198 remarks )
+PASS -- TEST 'conus13km_control_intel' [05:17, 03:04](1108 MB)
+PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:43](1055 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 02:02](1021 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:13, 30:46] ( 3 warnings 1052 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:26, 05:33](914 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:52] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 05:59](1031 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 05:55](1029 MB)
+PASS -- TEST 'conus13km_debug_intel' [21:05, 18:25](1140 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [21:04, 18:35](852 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [12:56, 10:42](1082 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:57, 18:26](1203 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:10] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:08](1068 MB)
+
+PASS -- COMPILE 'hafsw_intel' [36:13, 35:16] ( 1 warnings 1430 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [10:26, 07:11](710 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:34, 06:38](1087 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:00, 09:46](772 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [20:33, 16:27](797 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:48, 18:31](826 MB)
+PASS -- TEST 'gnv1_nested_intel' [07:34, 05:38](776 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [32:12, 31:51] ( 1268 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [12:47, 08:49](768 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:49, 08:51](760 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:04] ( 67 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:38](1065 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:14](1032 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:33](921 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:37](939 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:37](926 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:41](1065 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1060 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:32](929 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 07:55](890 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:27, 08:11](843 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:38](1051 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:08](2389 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:11](2337 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:27] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 07:57](1010 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 08:02] ( 70 remarks )
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:35](1064 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:42] ( 60 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:43](234 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 01:27](252 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 01:18](254 MB)
+
+PASS -- COMPILE 'atml_intel' [35:14, 34:25] ( 8 warnings 1189 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:08, 08:49](1598 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 08:47](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:31](865 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [06:11, 05:15] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 07:39](1625 MB)
+
+PASS -- COMPILE 'atmw_intel' [33:13, 32:30] ( 1260 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:43, 02:23](1608 MB)
+
+PASS -- COMPILE 'atmaero_intel' [31:12, 30:31] ( 1099 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [08:37, 05:22](1696 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [13:41, 06:25](1729 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:19, 06:32](1731 MB)
SYNOPSIS:
-Starting Date/Time: 20240515 03:36:54
-Ending Date/Time: 20240515 07:32:42
-Total Time: 03h:56m:31s
+Starting Date/Time: 20240516 20:51:38
+Ending Date/Time: 20240517 00:25:18
+Total Time: 03h:34m:17s
Compiles Completed: 34/34
Tests Completed: 162/162
diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log
index 0e09bf3788..d4e6cc7309 100644
--- a/tests/logs/RegressionTests_orion.log
+++ b/tests/logs/RegressionTests_orion.log
@@ -1,7 +1,7 @@
====START OF ORION REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,12 +9,12 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (remotes/origin/hydro)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (EP4-744-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,281 +35,368 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4366
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_400334
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: epic
* (-l) - USE CONFIG FILE: rt.conf
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [18:11, 15:13] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:00, 05:31](3174 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:18] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [24:10, 17:11](1738 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:18, 18:18](2024 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [17:19, 08:37](1108 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:07, 19:27](1644 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 18:56] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [22:50, 16:59](1744 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 05:05] ( 1525 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [28:16, 22:54](1696 MB)
-
-PASS -- COMPILE 's2swa_intel' [18:11, 15:46] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [16:51, 05:45](3209 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:14, 05:45](3213 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [08:08, 03:27](3253 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [16:51, 05:48](3238 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [08:07, 03:32](3279 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [11:27, 06:17](3555 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [16:51, 05:51](3133 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [06:48, 04:57](3065 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:07, 05:45](3210 MB)
-PASS -- TEST 'cpld_control_c192_p8_intel' [16:16, 10:27](3342 MB)
-PASS -- TEST 'cpld_restart_c192_p8_intel' [13:09, 06:43](3625 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [26:39, 10:54](4116 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:23, 07:05](4285 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [15:51, 05:32](3173 MB)
-
-PASS -- COMPILE 's2sw_intel' [17:11, 14:00] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [06:08, 04:48](1735 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:36, 04:31](1780 MB)
-
-PASS -- COMPILE 's2swa_debug_intel' [08:11, 05:07] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_p8_intel' [14:36, 08:39](3249 MB)
-
-PASS -- COMPILE 's2sw_debug_intel' [08:11, 04:56] ( 1450 warnings 1228 remarks )
-PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:16, 06:01](1747 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [16:11, 13:24] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:32, 04:22](1784 MB)
-
-PASS -- COMPILE 's2s_intel' [15:11, 12:24] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [09:01, 08:08](2832 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [04:04, 02:21](2831 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [10:08, 01:22](2305 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [24:11, 20:00] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [07:54, 05:28](3211 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 18:31] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:18, 17:20](1772 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:31, 08:34](1173 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:23, 19:29](1686 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 04:16] ( 1560 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:10, 25:22](1712 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [13:10, 13:04] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [05:22, 03:33](699 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 03:00](1593 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 03:03](1604 MB)
-PASS -- TEST 'control_latlon_intel' [04:40, 03:01](1588 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:59, 02:58](1594 MB)
-PASS -- TEST 'control_c48_intel' [07:52, 07:08](1760 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [06:33, 06:00](874 MB)
-PASS -- TEST 'control_c192_intel' [12:00, 10:37](1750 MB)
-PASS -- TEST 'control_c384_intel' [15:11, 12:37](2013 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:15, 09:01](1356 MB)
-PASS -- TEST 'control_stochy_intel' [02:29, 01:45](660 MB)
-PASS -- TEST 'control_stochy_restart_intel' [04:27, 01:06](504 MB)
-PASS -- TEST 'control_lndp_intel' [02:23, 01:41](654 MB)
-PASS -- TEST 'control_iovr4_intel' [03:25, 02:28](656 MB)
-PASS -- TEST 'control_iovr5_intel' [03:29, 02:31](652 MB)
-PASS -- TEST 'control_p8_intel' [04:21, 02:59](1637 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [04:17, 02:58](1632 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [07:47, 02:54](1641 MB)
-PASS -- TEST 'control_restart_p8_intel' [05:15, 01:46](880 MB)
-PASS -- TEST 'control_noqr_p8_intel' [07:29, 02:57](1622 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [03:26, 01:41](933 MB)
-PASS -- TEST 'control_decomp_p8_intel' [07:22, 03:09](1618 MB)
-PASS -- TEST 'control_2threads_p8_intel' [07:20, 03:04](1721 MB)
-PASS -- TEST 'control_p8_lndp_intel' [09:03, 05:23](1634 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [08:44, 03:54](1700 MB)
-PASS -- TEST 'control_p8_mynn_intel' [07:32, 03:05](1635 MB)
-PASS -- TEST 'merra2_thompson_intel' [07:50, 03:21](1640 MB)
-PASS -- TEST 'regional_control_intel' [08:44, 05:07](859 MB)
-PASS -- TEST 'regional_restart_intel' [09:47, 02:50](1027 MB)
-PASS -- TEST 'regional_decomp_intel' [09:46, 05:34](846 MB)
-PASS -- TEST 'regional_2threads_intel' [04:39, 03:42](845 MB)
-PASS -- TEST 'regional_noquilt_intel' [08:42, 05:13](1365 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 05:16](856 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [07:43, 05:15](858 MB)
-PASS -- TEST 'regional_wofs_intel' [07:43, 06:46](1921 MB)
-
-PASS -- COMPILE 'rrfs_intel' [12:10, 12:07] ( 3 warnings 9 remarks )
-PASS -- TEST 'rap_control_intel' [09:31, 07:53](1103 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:04, 04:41](1302 MB)
-PASS -- TEST 'rap_decomp_intel' [10:07, 08:08](1026 MB)
-PASS -- TEST 'rap_2threads_intel' [10:07, 07:54](1177 MB)
-PASS -- TEST 'rap_restart_intel' [07:30, 04:07](1105 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [10:33, 07:50](1103 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:04, 08:11](1036 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [09:28, 05:59](1128 MB)
-PASS -- TEST 'hrrr_control_intel' [06:02, 04:06](1032 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 04:17](1033 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [05:26, 03:28](1110 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [07:25, 02:12](955 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [09:25, 07:48](1100 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:20](1935 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:26, 08:59](2078 MB)
-
-PASS -- COMPILE 'csawmg_intel' [11:11, 10:56] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [08:46, 06:05](747 MB)
-PASS -- TEST 'control_ras_intel' [05:22, 03:25](738 MB)
-
-PASS -- COMPILE 'wam_intel' [11:10, 10:24]
-PASS -- TEST 'control_wam_intel' [03:21, 02:09](651 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [12:10, 11:15] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [10:35, 02:46](1620 MB)
-PASS -- TEST 'regional_control_faster_intel' [11:42, 04:41](854 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:20] ( 885 warnings 9 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:59, 02:42](1617 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:04, 02:43](1610 MB)
-PASS -- TEST 'control_stochy_debug_intel' [08:27, 03:12](817 MB)
-PASS -- TEST 'control_lndp_debug_intel' [07:26, 02:48](816 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [09:01, 04:16](858 MB)
-PASS -- TEST 'control_ras_debug_intel' [07:26, 02:52](827 MB)
-PASS -- TEST 'control_diag_debug_intel' [08:02, 02:51](1675 MB)
-PASS -- TEST 'control_debug_p8_intel' [08:01, 02:59](1650 MB)
-PASS -- TEST 'regional_debug_intel' [22:58, 17:25](845 MB)
-PASS -- TEST 'rap_control_debug_intel' [10:28, 05:07](1205 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [09:30, 04:55](1196 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 04:58](1206 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [11:28, 05:01](1205 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:26, 04:59](1203 MB)
-PASS -- TEST 'rap_diag_debug_intel' [11:36, 05:12](1288 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1214 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:24, 05:02](1200 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [12:27, 05:00](1203 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:25, 05:27](1159 MB)
-PASS -- TEST 'rap_noah_debug_intel' [11:26, 04:50](1158 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [11:28, 05:05](1207 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:26, 08:06](1199 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [10:28, 04:52](1199 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [11:26, 05:38](1198 MB)
-PASS -- TEST 'rap_flake_debug_intel' [11:23, 04:54](1205 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:32, 08:24](1212 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [04:10, 03:09] ( 855 warnings )
-PASS -- TEST 'control_wam_debug_intel' [07:23, 04:59](506 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 10:51] ( 3 warnings 8 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:29](1164 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 06:32](1046 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:50, 03:27](989 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:13, 06:44](1095 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:53, 02:58](974 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:45](919 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:27, 04:59](1041 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:56](903 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:11, 13:12] ( 3 warnings 8 remarks )
-PASS -- TEST 'conus13km_control_intel' [04:02, 02:13](1203 MB)
-PASS -- TEST 'conus13km_2threads_intel' [02:53, 01:01](1126 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1109 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 10:40] ( 3 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:23](989 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:12] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:53](1084 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:51](1082 MB)
-PASS -- TEST 'conus13km_debug_intel' [15:52, 14:19](1227 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:56](926 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:30](1155 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:46](1289 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:23] ( 787 warnings 8 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:59](1116 MB)
-
-PASS -- COMPILE 'hafsw_intel' [15:11, 12:43] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [08:18, 05:44](744 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:23](1116 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:06](838 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [16:19, 13:22](858 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:33, 15:26](891 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:02, 06:21](499 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:46](519 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:23](321 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:39, 08:13](481 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:51, 04:16](527 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:59, 03:59](529 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:23](585 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:29, 01:25](400 MB)
-PASS -- TEST 'gnv1_nested_intel' [10:03, 04:38](801 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [06:11, 03:55] ( 1467 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:00, 13:13](572 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [14:11, 13:26] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:08, 09:55](601 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:10, 09:51](742 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:44] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 07:16](757 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [13:11, 12:27] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:31](824 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:36](818 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 16:02](1212 MB)
-
-PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08]
-PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:19, 02:39](1123 MB)
-PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:47](1070 MB)
-PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 02:35](1013 MB)
-PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:38](1010 MB)
-PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:42](1022 MB)
-PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:39](1134 MB)
-PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:38](1138 MB)
-PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:34](1012 MB)
-PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:21, 06:01](1057 MB)
-PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:15, 06:00](1031 MB)
-PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:52](1121 MB)
-PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:41](2488 MB)
-PASS -- TEST 'datm_cdeps_gfs_intel' [04:22, 03:44](2485 MB)
-
-PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:45] ( 2 warnings )
-PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:18](1048 MB)
-
-PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:12]
-PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:42](1136 MB)
-
-PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 01:01] ( 1 remarks )
-PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](258 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:53](324 MB)
-PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:36](320 MB)
-
-PASS -- COMPILE 'atml_intel' [16:11, 13:46] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:42, 04:17](1601 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [06:41, 04:16](1602 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:51, 02:21](902 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [05:10, 04:28] ( 880 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 05:41](1622 MB)
-
-PASS -- COMPILE 'atmw_intel' [15:11, 12:04] ( 8 remarks )
-PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 01:52](1674 MB)
-
-PASS -- COMPILE 'atmaero_intel' [13:11, 12:07] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [07:25, 03:59](3025 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:52](3092 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:00](3031 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:32] ( 884 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [22:52, 20:58](4573 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:50] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:52, 05:32](3179 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 18:49] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [21:01, 17:16](1750 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 18:25](2023 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 08:24](1116 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:58, 19:37](1639 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:11, 17:50] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [20:44, 17:19](1675 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:45] ( 1525 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [24:56, 22:55](1690 MB)
+
+PASS -- COMPILE 's2swa_intel' [15:11, 14:32] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:46, 05:51](3148 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:08, 05:43](3211 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [05:56, 03:26](3258 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:47, 05:54](3238 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:31](3278 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:42, 06:16](3557 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:43, 05:50](3205 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [12:50, 04:48](3074 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:03, 05:49](3215 MB)
+PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 10:40](3337 MB)
+PASS -- TEST 'cpld_restart_c192_p8_intel' [11:20, 06:37](3628 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [22:52, 11:28](4115 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:04, 07:18](4368 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [07:52, 05:35](3174 MB)
+
+PASS -- COMPILE 's2sw_intel' [15:11, 14:24] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [06:30, 04:47](1728 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:49, 04:27](1782 MB)
+
+PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:07] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_p8_intel' [10:47, 08:51](3250 MB)
+
+PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:49] ( 1450 warnings 1228 remarks )
+PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:18, 05:56](1742 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:34] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:29, 04:27](1784 MB)
+
+PASS -- COMPILE 's2s_intel' [14:11, 13:27] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [10:53, 08:16](2834 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 02:26](2830 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [05:05, 01:19](2301 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [20:11, 19:54] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 05:25](3209 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:16] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:24, 17:19](1756 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:33, 08:59](1173 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:17, 19:40](1619 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:12] ( 1560 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:07, 24:48](1713 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:16] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [05:26, 03:26](698 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [05:51, 02:56](1598 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:58, 03:02](1606 MB)
+PASS -- TEST 'control_latlon_intel' [05:46, 03:00](1573 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 02:59](1587 MB)
+PASS -- TEST 'control_c48_intel' [08:48, 07:12](1756 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:59](881 MB)
+PASS -- TEST 'control_c192_intel' [13:03, 10:35](1752 MB)
+PASS -- TEST 'control_c384_intel' [15:11, 11:46](1996 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:03, 09:12](1352 MB)
+PASS -- TEST 'control_stochy_intel' [02:23, 01:39](657 MB)
+PASS -- TEST 'control_stochy_restart_intel' [02:25, 01:00](498 MB)
+PASS -- TEST 'control_lndp_intel' [02:24, 01:35](658 MB)
+PASS -- TEST 'control_iovr4_intel' [03:22, 02:29](652 MB)
+PASS -- TEST 'control_iovr5_intel' [03:27, 02:31](653 MB)
+PASS -- TEST 'control_p8_intel' [05:10, 02:58](1625 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [06:16, 03:00](1633 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 02:51](1638 MB)
+PASS -- TEST 'control_restart_p8_intel' [03:14, 01:43](893 MB)
+PASS -- TEST 'control_noqr_p8_intel' [04:17, 02:58](1624 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [03:03, 01:37](931 MB)
+PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1609 MB)
+PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:06](1728 MB)
+PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:15](1629 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:33, 04:04](1693 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:02](1590 MB)
+PASS -- TEST 'merra2_thompson_intel' [05:56, 03:23](1575 MB)
+PASS -- TEST 'regional_control_intel' [06:39, 05:10](855 MB)
+PASS -- TEST 'regional_restart_intel' [03:42, 02:49](1021 MB)
+PASS -- TEST 'regional_decomp_intel' [06:38, 05:33](851 MB)
+PASS -- TEST 'regional_2threads_intel' [04:38, 03:42](844 MB)
+PASS -- TEST 'regional_noquilt_intel' [06:37, 05:09](1364 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [06:46, 05:10](860 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [06:39, 05:18](850 MB)
+PASS -- TEST 'regional_wofs_intel' [07:33, 06:43](1921 MB)
+
+PASS -- COMPILE 'rrfs_intel' [14:10, 11:47] ( 3 warnings 9 remarks )
+PASS -- TEST 'rap_control_intel' [09:25, 07:51](1041 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:01, 04:47](1239 MB)
+PASS -- TEST 'rap_decomp_intel' [10:04, 08:11](1027 MB)
+PASS -- TEST 'rap_2threads_intel' [09:11, 07:52](1178 MB)
+PASS -- TEST 'rap_restart_intel' [06:27, 04:11](1099 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [09:26, 07:50](1099 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:03, 08:13](1027 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [07:26, 05:54](1129 MB)
+PASS -- TEST 'hrrr_control_intel' [06:11, 04:04](1039 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:06](981 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [04:59, 03:23](1113 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:15](988 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [09:20, 07:36](1099 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:12](1990 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:24, 08:58](2073 MB)
+
+PASS -- COMPILE 'csawmg_intel' [13:10, 11:18] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [06:44, 06:02](747 MB)
+PASS -- TEST 'control_ras_intel' [04:22, 03:21](742 MB)
+
+PASS -- COMPILE 'wam_intel' [11:10, 10:00]
+PASS -- TEST 'control_wam_intel' [03:21, 02:08](654 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:58] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [04:29, 02:48](1632 MB)
+PASS -- TEST 'regional_control_faster_intel' [06:40, 04:42](850 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:40] ( 885 warnings 9 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [10:55, 02:47](1613 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:59, 02:42](1614 MB)
+PASS -- TEST 'control_stochy_debug_intel' [09:28, 03:07](813 MB)
+PASS -- TEST 'control_lndp_debug_intel' [09:26, 02:48](818 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [10:50, 04:09](864 MB)
+PASS -- TEST 'control_ras_debug_intel' [09:27, 02:57](810 MB)
+PASS -- TEST 'control_diag_debug_intel' [08:57, 02:51](1673 MB)
+PASS -- TEST 'control_debug_p8_intel' [08:57, 02:58](1637 MB)
+PASS -- TEST 'regional_debug_intel' [24:51, 17:22](846 MB)
+PASS -- TEST 'rap_control_debug_intel' [11:25, 05:05](1200 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [11:28, 05:00](1189 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [11:28, 05:04](1199 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [12:24, 04:57](1198 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:22, 04:53](1204 MB)
+PASS -- TEST 'rap_diag_debug_intel' [10:36, 05:03](1293 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:03](1200 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:09](1192 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [05:22, 05:01](1199 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:58](1202 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'rap_noah_debug_intel' [, ]( MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:15](1206 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:17](1202 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:48](1158 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [07:23, 06:16](1202 MB)
+PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:22](1199 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:36, 08:29](1183 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [07:11, 03:10] ( 855 warnings )
+PASS -- TEST 'control_wam_debug_intel' [05:21, 04:56](509 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 11:04] ( 3 warnings 8 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 04:49](1173 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:27, 06:29](1053 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:27](979 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:25, 06:51](1099 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:24, 03:02](962 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:41, 03:48](913 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 05:00](1032 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:57](929 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 14:29] ( 3 warnings 8 remarks )
+PASS -- TEST 'conus13km_control_intel' [03:58, 02:12](1200 MB)
+PASS -- TEST 'conus13km_2threads_intel' [01:51, 01:00](1117 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:19](1111 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 11:16] ( 3 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 04:23](985 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:24] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 05:01](1079 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:22, 05:00](1078 MB)
+PASS -- TEST 'conus13km_debug_intel' [15:50, 14:18](1221 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:21](926 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:16](1152 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:56, 14:12](1298 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 03:20] ( 787 warnings 8 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:41, 04:53](1125 MB)
+
+PASS -- COMPILE 'hafsw_intel' [14:11, 13:05] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:55](741 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:58](832 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [15:10, 13:23](812 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 15:16](886 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:37](501 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 07:44](515 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:10](372 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_multiple_4nests_atm_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:17](526 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:58](527 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 05:27](585 MB)
+FAILED: RUN DID NOT COMPLETE -- TEST 'hafs_global_storm_following_1nest_atm_intel' [, ]( MB)
+PASS -- TEST 'gnv1_nested_intel' [05:55, 04:34](803 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:01] ( 1467 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:51, 13:22](633 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [17:11, 13:51] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:43](672 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [, ]( MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 13:05] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:03, 07:07](735 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [16:11, 12:34] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:53](828 MB)
+FAILED: UNABLE TO RUN COMPARISON -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:00, 15:56](1210 MB)
+
+PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:03]
+PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:38](1136 MB)
+PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:38](1094 MB)
+PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:29](1014 MB)
+PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:34](1013 MB)
+PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:34](1022 MB)
+PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:41](1132 MB)
+PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:39](1142 MB)
+PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:36](1014 MB)
+PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:16, 05:56](1060 MB)
+PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:11, 06:02](1040 MB)
+PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:40](1128 MB)
+PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:19, 03:43](2431 MB)
+PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:39](2434 MB)
+
+PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:02] ( 2 warnings )
+PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:17](1056 MB)
+
+PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 07:06]
+PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:40](1138 MB)
+
+PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:07] ( 1 remarks )
+PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:47](261 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:48](326 MB)
+PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:24, 00:33](320 MB)
+
+PASS -- COMPILE 'atml_intel' [14:10, 14:07] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:33, 04:16](1610 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:20](1611 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:47, 02:21](900 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [05:11, 04:48] ( 882 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:38](1628 MB)
+
+PASS -- COMPILE 'atmw_intel' [13:11, 12:07] ( 8 remarks )
+PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:51](1664 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:11, 12:24] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [05:21, 04:03](3025 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [06:17, 04:57](3094 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:02, 05:04](3101 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:31] ( 884 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [22:42, 20:46](4579 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 13:54:30
-Ending Date/Time: 20240514 15:33:04
-Total Time: 01h:39m:28s
+Starting Date/Time: 20240516 23:25:54
+Ending Date/Time: 20240517 00:56:53
+Total Time: 01h:31m:46s
Compiles Completed: 39/39
-Tests Completed: 183/183
+Tests Completed: 177/183
+Failed Tests:
+* TEST rap_noah_debug_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_rap_noah_debug_intel.log
+* TEST hafs_regional_atm_thompson_gfdlsf_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_atm_thompson_gfdlsf_intel.log
+* TEST hafs_global_multiple_4nests_atm_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_multiple_4nests_atm_intel.log
+* TEST hafs_global_storm_following_1nest_atm_intel: FAILED: RUN DID NOT COMPLETE
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_global_storm_following_1nest_atm_intel.log
+* TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel.log
+* TEST hafs_regional_docn_oisst_intel: FAILED: UNABLE TO RUN COMPARISON
+-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2264/tests/logs/log_orion/run_hafs_regional_docn_oisst_intel.log
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF ORION REGRESSION TESTING LOG====
+====START OF ORION REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (remotes/origin/combo_20240503)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5209-gbe05ec28)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (remotes/origin/combo_20240503)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_226415
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: epic
+* (-l) - USE CONFIG FILE: rt.conf
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:15] ( 885 warnings 9 remarks )
+PASS -- TEST 'rap_noah_debug_intel' [05:29, 04:55](1200 MB)
+
+PASS -- COMPILE 'hafsw_intel' [15:11, 14:28] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:27, 06:22](1122 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:21, 08:28](481 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:28, 01:31](402 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:37] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:17, 10:03](735 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:11, 12:32] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:15, 06:45](770 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240517 08:22:40
+Ending Date/Time: 20240517 08:50:39
+Total Time: 00h:28m:14s
+Compiles Completed: 4/4
+Tests Completed: 6/6
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log
index d7ba8f67e0..68af301cc9 100644
--- a/tests/logs/RegressionTests_wcoss2.log
+++ b/tests/logs/RegressionTests_wcoss2.log
@@ -1,7 +1,7 @@
====START OF WCOSS2 REGRESSION TESTING LOG====
UFSWM hash used in testing:
-c0315bc9b6d9cac59cab3d7193bcfe60bd8ae4fb
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
Submodule hashes used in testing:
37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
@@ -9,14 +9,14 @@ Submodule hashes used in testing:
3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
- 4e19850cb083bc474b7cde5dc2f8506ec74cc442 CMEPS-interface/CMEPS (cmeps_v0.4.1-2306-g4e19850)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e)
cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
- b329c2ccc4c5c6936cb1f548eef83d2a1ee36ae2 FV3 (remotes/origin/hydro)
- aabfdccae440da7389195762601db7fcc09f6f11 FV3/atmos_cubed_sphere (201912_public_release-390-gaabfdcc)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
- 1c2a898e97f069eeeb930cfb542db67ed349b72c FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4229-g1c2a898e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28)
74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
- be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
@@ -24,7 +24,7 @@ Submodule hashes used in testing:
3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
- 1e259014c1eba9070cec7027d8b4b479ae54275a NOAHMP-interface/noahmp (v3.7.1-430-g1e25901)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a)
d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
@@ -35,242 +35,326 @@ The first time is for the full script (prep+run+finalize).
The second time is specifically for the run phase.
Times/Memory will be empty for failed tests.
-BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240503
-COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_221962
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_220987
RT.SH OPTIONS USED:
* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
* (-e) - USE ECFLOW
-PASS -- COMPILE 's2swa_32bit_intel' [11:29, 10:59] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:27, 01:19](2978 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:31, 11:34] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_gfsv17_intel' [48:26, 02:03](1598 MB)
-PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:22, 01:25](1713 MB)
-PASS -- TEST 'cpld_restart_gfsv17_intel' [30:22, 02:01](849 MB)
-PASS -- TEST 'cpld_mpi_gfsv17_intel' [48:27, 01:24](1572 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:31, 11:33] ( 1 warnings 8 remarks )
-PASS -- TEST 'cpld_control_sfs_intel' [48:26, 01:04](1591 MB)
-
-PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [21:39, 20:28] ( 1505 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_gfsv17_intel' [39:18, 01:48](1606 MB)
-
-PASS -- COMPILE 's2swa_intel' [23:42, 22:48] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_intel' [37:14, 01:18](3007 MB)
-PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [37:14, 01:35](3003 MB)
-PASS -- TEST 'cpld_restart_p8_intel' [28:52, 01:54](3060 MB)
-PASS -- TEST 'cpld_control_qr_p8_intel' [37:14, 01:14](3031 MB)
-PASS -- TEST 'cpld_restart_qr_p8_intel' [28:52, 01:46](3079 MB)
-PASS -- TEST 'cpld_2threads_p8_intel' [37:14, 01:14](3313 MB)
-PASS -- TEST 'cpld_decomp_p8_intel' [37:14, 01:14](2998 MB)
-PASS -- TEST 'cpld_mpi_p8_intel' [37:15, 01:38](2927 MB)
-PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:14, 01:35](3007 MB)
-PASS -- TEST 'cpld_bmark_p8_intel' [37:23, 04:27](3948 MB)
-PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:47, 04:12](4251 MB)
-PASS -- TEST 'cpld_s2sa_p8_intel' [37:14, 01:51](2971 MB)
-
-PASS -- COMPILE 's2sw_intel' [21:41, 21:12] ( 8 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_intel' [39:15, 01:47](1592 MB)
-PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [39:15, 01:55](1633 MB)
-
-PASS -- COMPILE 's2s_aoflux_intel' [10:28, 09:47] ( 1 remarks )
-PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [50:28, 02:07](1639 MB)
-
-PASS -- COMPILE 's2s_intel' [32:53, 32:35] ( 1 remarks )
-PASS -- TEST 'cpld_control_c48_intel' [28:02, 00:39](2652 MB)
-PASS -- TEST 'cpld_warmstart_c48_intel' [28:02, 01:32](2668 MB)
-PASS -- TEST 'cpld_restart_c48_intel' [23:46, 01:03](2103 MB)
-
-PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:07] ( 8 remarks )
-PASS -- TEST 'cpld_control_p8_faster_intel' [44:22, 01:41](3004 MB)
-
-PASS -- COMPILE 's2sw_pdlib_intel' [40:01, 39:32] ( 8 remarks )
-PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:55, 01:03](1611 MB)
-PASS -- TEST 'cpld_restart_pdlib_p8_intel' [03:12, 01:08](903 MB)
-PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [02:57, 01:18](1580 MB)
-
-PASS -- COMPILE 's2sw_pdlib_debug_intel' [31:57, 30:52] ( 1541 warnings 1998 remarks )
-PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:03, 00:51](1621 MB)
-
-PASS -- COMPILE 'atm_dyn32_intel' [34:01, 33:40] ( 1 warnings 1 remarks )
-PASS -- TEST 'control_flake_intel' [15:23, 00:25](573 MB)
-PASS -- TEST 'control_CubedSphereGrid_intel' [15:23, 00:26](1475 MB)
-PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:23, 00:26](1480 MB)
-PASS -- TEST 'control_latlon_intel' [15:15, 00:20](1472 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:41, 00:31](1468 MB)
-PASS -- TEST 'control_c48_intel' [14:22, 00:53](1591 MB)
-PASS -- TEST 'control_c48.v2.sfc_intel' [13:09, 00:52](714 MB)
-PASS -- TEST 'control_c192_intel' [13:09, 00:28](1591 MB)
-PASS -- TEST 'control_c384_intel' [12:16, 01:48](1899 MB)
-PASS -- TEST 'control_c384gdas_intel' [12:01, 02:40](1093 MB)
-PASS -- TEST 'control_stochy_intel' [11:52, 00:23](529 MB)
-PASS -- TEST 'control_stochy_restart_intel' [09:23, 00:59](333 MB)
-PASS -- TEST 'control_lndp_intel' [11:36, 00:35](528 MB)
-PASS -- TEST 'control_iovr4_intel' [11:32, 00:44](522 MB)
-PASS -- TEST 'control_iovr5_intel' [11:30, 00:43](522 MB)
-PASS -- TEST 'control_p8_intel' [11:29, 01:31](1506 MB)
-PASS -- TEST 'control_p8.v2.sfc_intel' [11:29, 01:58](1509 MB)
-PASS -- TEST 'control_p8_ugwpv1_intel' [11:01, 01:56](1501 MB)
-PASS -- TEST 'control_restart_p8_intel' [06:20, 00:57](694 MB)
-PASS -- TEST 'control_noqr_p8_intel' [11:01, 01:30](1494 MB)
-PASS -- TEST 'control_restart_noqr_p8_intel' [05:53, 00:43](698 MB)
-PASS -- TEST 'control_decomp_p8_intel' [10:54, 01:21](1498 MB)
-PASS -- TEST 'control_2threads_p8_intel' [10:54, 01:07](1596 MB)
-PASS -- TEST 'control_p8_lndp_intel' [10:53, 01:06](1510 MB)
-PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 02:01](1566 MB)
-PASS -- TEST 'control_p8_mynn_intel' [10:47, 01:48](1514 MB)
-PASS -- TEST 'merra2_thompson_intel' [09:20, 01:38](1509 MB)
-PASS -- TEST 'regional_control_intel' [03:33, 00:19](610 MB)
-PASS -- TEST 'regional_restart_intel' [57:35, 01:01](777 MB)
-PASS -- TEST 'regional_decomp_intel' [09:18, 00:56](606 MB)
-PASS -- TEST 'regional_2threads_intel' [09:12, 00:56](666 MB)
-PASS -- TEST 'regional_noquilt_intel' [09:08, 00:21](1147 MB)
-PASS -- TEST 'regional_netcdf_parallel_intel' [09:05, 00:21](606 MB)
-PASS -- TEST 'regional_2dwrtdecomp_intel' [09:05, 00:15](606 MB)
-PASS -- TEST 'regional_wofs_intel' [09:03, 00:49](1581 MB)
-
-PASS -- COMPILE 'rrfs_intel' [27:52, 27:37] ( 3 warnings 92 remarks )
-PASS -- TEST 'rap_control_intel' [20:33, 01:40](919 MB)
-PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:34, 01:10](1099 MB)
-PASS -- TEST 'rap_decomp_intel' [20:33, 01:21](921 MB)
-PASS -- TEST 'rap_2threads_intel' [20:33, 01:53](1005 MB)
-PASS -- TEST 'rap_restart_intel' [09:01, 01:03](792 MB)
-PASS -- TEST 'rap_sfcdiff_intel' [20:33, 02:08](916 MB)
-PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:33, 01:51](916 MB)
-PASS -- TEST 'rap_sfcdiff_restart_intel' [08:04, 01:42](786 MB)
-PASS -- TEST 'hrrr_control_intel' [20:33, 01:04](911 MB)
-PASS -- TEST 'hrrr_control_decomp_intel' [20:33, 00:59](910 MB)
-PASS -- TEST 'hrrr_control_2threads_intel' [20:34, 01:26](996 MB)
-PASS -- TEST 'hrrr_control_restart_intel' [08:00, 01:03](742 MB)
-PASS -- TEST 'rrfs_v1beta_intel' [20:33, 01:19](907 MB)
-PASS -- TEST 'rrfs_v1nssl_intel' [20:33, 00:52](1878 MB)
-PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [20:33, 01:12](1862 MB)
-
-PASS -- COMPILE 'csawmg_intel' [42:10, 41:04] ( 1 warnings )
-PASS -- TEST 'control_csawmg_intel' [05:58, 00:32](599 MB)
-PASS -- TEST 'control_ras_intel' [05:49, 00:52](561 MB)
-
-PASS -- COMPILE 'wam_intel' [16:37, 15:33]
-PASS -- TEST 'control_wam_intel' [27:44, 00:53](274 MB)
-
-PASS -- COMPILE 'atm_faster_dyn32_intel' [17:42, 16:54] ( 1 remarks )
-PASS -- TEST 'control_p8_faster_intel' [21:34, 02:04](1505 MB)
-PASS -- TEST 'regional_control_faster_intel' [21:33, 00:23](610 MB)
-
-PASS -- COMPILE 'atm_debug_dyn32_intel' [18:42, 17:58] ( 870 warnings 92 remarks )
-PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:33, 01:18](1487 MB)
-PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:33, 01:26](1490 MB)
-PASS -- TEST 'control_stochy_debug_intel' [20:33, 00:48](692 MB)
-PASS -- TEST 'control_lndp_debug_intel' [20:33, 01:09](694 MB)
-PASS -- TEST 'control_csawmg_debug_intel' [20:33, 00:37](729 MB)
-PASS -- TEST 'control_ras_debug_intel' [20:33, 01:04](705 MB)
-PASS -- TEST 'control_diag_debug_intel' [20:33, 01:16](1555 MB)
-PASS -- TEST 'control_debug_p8_intel' [20:33, 01:02](1520 MB)
-PASS -- TEST 'regional_debug_intel' [20:32, 00:36](630 MB)
-PASS -- TEST 'rap_control_debug_intel' [19:48, 00:33](1076 MB)
-PASS -- TEST 'hrrr_control_debug_intel' [18:45, 01:01](1067 MB)
-PASS -- TEST 'hrrr_gf_debug_intel' [16:02, 00:54](1072 MB)
-PASS -- TEST 'hrrr_c3_debug_intel' [16:01, 00:52](1071 MB)
-PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:53, 00:53](1075 MB)
-PASS -- TEST 'rap_diag_debug_intel' [15:48, 00:49](1159 MB)
-PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:43, 00:47](1077 MB)
-PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:37, 00:49](1072 MB)
-PASS -- TEST 'rap_lndp_debug_intel' [15:36, 00:50](1078 MB)
-PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:32, 00:50](1074 MB)
-PASS -- TEST 'rap_noah_debug_intel' [06:50, 00:59](1073 MB)
-PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 00:54](1075 MB)
-PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:25, 00:42](1073 MB)
-PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 00:56](1070 MB)
-PASS -- TEST 'rap_clm_lake_debug_intel' [05:29, 01:00](1077 MB)
-PASS -- TEST 'rap_flake_debug_intel' [05:18, 00:51](1075 MB)
-PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [04:25, 02:10](1077 MB)
-
-PASS -- COMPILE 'wam_debug_intel' [15:32, 14:58] ( 842 warnings )
-PASS -- TEST 'control_wam_debug_intel' [21:42, 00:52](301 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:39, 20:41] ( 3 warnings 91 remarks )
-PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:25, 01:18](953 MB)
-PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:24, 01:14](795 MB)
-PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:01, 02:02](786 MB)
-PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:44, 01:19](857 MB)
-PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:44, 01:58](847 MB)
-PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:22, 01:23](785 MB)
-PASS -- TEST 'rap_restart_dyn32_phy32_intel' [57:02, 01:58](686 MB)
-PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:28, 00:42](665 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:30, 15:27] ( 3 warnings 91 remarks )
-PASS -- TEST 'conus13km_control_intel' [03:22, 01:10](1005 MB)
-PASS -- TEST 'conus13km_2threads_intel' [59:16, 00:41](1005 MB)
-PASS -- TEST 'conus13km_restart_mismatch_intel' [59:15, 00:50](881 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 10:22] ( 3 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_intel' [03:16, 01:25](810 MB)
-
-PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:23, 09:38] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [02:47, 00:36](958 MB)
-PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [02:29, 00:49](951 MB)
-PASS -- TEST 'conus13km_debug_intel' [01:55, 00:27](1037 MB)
-PASS -- TEST 'conus13km_debug_qr_intel' [01:29, 01:14](710 MB)
-PASS -- TEST 'conus13km_debug_2threads_intel' [01:20, 00:32](1040 MB)
-PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:18, 00:25](1104 MB)
-
-PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:26, 07:04] ( 773 warnings 91 remarks )
-PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [00:44, 00:57](981 MB)
-
-PASS -- COMPILE 'hafsw_intel' [22:40, 21:47] ( 1 warnings 8 remarks )
-PASS -- TEST 'hafs_regional_atm_intel' [57:55, 01:56](618 MB)
-PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [57:55, 00:23](967 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_intel' [57:53, 01:22](660 MB)
-PASS -- TEST 'hafs_regional_atm_wav_intel' [57:53, 01:23](694 MB)
-PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:54, 01:56](715 MB)
-PASS -- TEST 'hafs_regional_1nest_atm_intel' [57:24, 00:57](390 MB)
-PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:55, 02:08](404 MB)
-PASS -- TEST 'hafs_global_1nest_atm_intel' [56:46, 01:32](288 MB)
-PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:20, 02:51](372 MB)
-PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:00, 00:54](415 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [55:22, 01:40](423 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [55:21, 01:35](493 MB)
-PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [54:56, 00:33](314 MB)
-
-PASS -- COMPILE 'hafsw_debug_intel' [25:41, 25:03] ( 1449 warnings 1501 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:14, 01:36](507 MB)
-
-PASS -- COMPILE 'hafsw_faster_intel' [10:30, 09:58] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [38:12, 01:30](534 MB)
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:12, 01:03](709 MB)
-
-PASS -- COMPILE 'hafs_mom6w_intel' [13:28, 13:04] ( 7 remarks )
-PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [00:38, 00:49](713 MB)
-
-PASS -- COMPILE 'hafs_all_intel' [15:30, 15:13] ( 7 remarks )
-PASS -- TEST 'hafs_regional_docn_intel' [57:59, 02:11](664 MB)
-PASS -- TEST 'hafs_regional_docn_oisst_intel' [57:59, 01:35](648 MB)
-PASS -- TEST 'hafs_regional_datm_cdeps_intel' [57:57, 01:02](882 MB)
-
-PASS -- COMPILE 'atml_intel' [10:27, 10:11] ( 8 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_sbs_intel' [00:17, 01:40](1545 MB)
-PASS -- TEST 'control_p8_atmlnd_intel' [59:59, 01:38](1546 MB)
-PASS -- TEST 'control_restart_p8_atmlnd_intel' [52:18, 00:39](744 MB)
-
-PASS -- COMPILE 'atml_debug_intel' [15:31, 15:10] ( 866 warnings 2 remarks )
-PASS -- TEST 'control_p8_atmlnd_debug_intel' [52:53, 02:07](1564 MB)
-
-PASS -- COMPILE 'atmaero_intel' [14:36, 13:43] ( 1 remarks )
-PASS -- TEST 'atmaero_control_p8_intel' [52:48, 00:56](2849 MB)
-PASS -- TEST 'atmaero_control_p8_rad_intel' [52:33, 01:23](2911 MB)
-PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [52:17, 01:19](2926 MB)
-
-PASS -- COMPILE 'atmaq_debug_intel' [11:24, 10:32] ( 870 warnings 6 remarks )
-PASS -- TEST 'regional_atmaq_debug_intel' [51:59, 00:57](4430 MB)
+PASS -- COMPILE 's2swa_32bit_intel' [26:45, 26:03] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:33, 01:17](2980 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:29, 11:52] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_gfsv17_intel' [23:32, 01:40](1597 MB)
+PASS -- TEST 'cpld_control_gfsv17_iau_intel' [05:26, 01:34](1710 MB)
+PASS -- TEST 'cpld_restart_gfsv17_intel' [04:11, 02:03](847 MB)
+PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:33, 02:11](1571 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:43, 23:40] ( 1 warnings 8 remarks )
+PASS -- TEST 'cpld_control_sfs_intel' [10:57, 00:28](1591 MB)
+
+PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:32, 15:00] ( 1505 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_gfsv17_intel' [20:29, 01:28](1600 MB)
+
+PASS -- COMPILE 's2swa_intel' [22:40, 21:35] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_intel' [13:20, 01:23](3008 MB)
+PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:20, 01:36](3002 MB)
+PASS -- TEST 'cpld_restart_p8_intel' [02:55, 01:54](3063 MB)
+PASS -- TEST 'cpld_control_qr_p8_intel' [13:20, 01:21](3025 MB)
+PASS -- TEST 'cpld_restart_qr_p8_intel' [02:55, 01:50](3080 MB)
+PASS -- TEST 'cpld_2threads_p8_intel' [13:20, 01:07](3314 MB)
+PASS -- TEST 'cpld_decomp_p8_intel' [13:20, 01:25](2997 MB)
+PASS -- TEST 'cpld_mpi_p8_intel' [13:21, 01:26](2929 MB)
+PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:20, 01:42](3004 MB)
+PASS -- TEST 'cpld_bmark_p8_intel' [13:29, 04:00](3953 MB)
+PASS -- TEST 'cpld_restart_bmark_p8_intel' [52:10, 03:59](4253 MB)
+PASS -- TEST 'cpld_s2sa_p8_intel' [13:20, 01:55](2971 MB)
+
+PASS -- COMPILE 's2sw_intel' [11:29, 10:35] ( 8 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_intel' [24:31, 00:50](1592 MB)
+PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:31, 01:02](1638 MB)
+
+PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:50] ( 1 remarks )
+PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [25:37, 02:00](1632 MB)
+
+PASS -- COMPILE 's2s_intel' [14:31, 13:27] ( 1 remarks )
+PASS -- TEST 'cpld_control_c48_intel' [48:40, 00:52](2658 MB)
+PASS -- TEST 'cpld_warmstart_c48_intel' [48:34, 00:39](2667 MB)
+PASS -- TEST 'cpld_restart_c48_intel' [44:31, 00:52](2109 MB)
+
+PASS -- COMPILE 's2swa_faster_intel' [16:34, 16:03] ( 8 remarks )
+PASS -- TEST 'cpld_control_p8_faster_intel' [19:26, 01:39](3004 MB)
+
+PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:35] ( 8 remarks )
+PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:30, 00:48](1611 MB)
+PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:05, 01:27](902 MB)
+PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [06:02, 01:44](1582 MB)
+
+PASS -- COMPILE 's2sw_pdlib_debug_intel' [18:31, 17:49] ( 1541 warnings 1998 remarks )
+PASS -- TEST 'cpld_debug_pdlib_p8_intel' [07:03, 01:39](1627 MB)
+
+PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:39] ( 1 warnings 1 remarks )
+PASS -- TEST 'control_flake_intel' [13:05, 00:33](573 MB)
+PASS -- TEST 'control_CubedSphereGrid_intel' [13:05, 00:31](1475 MB)
+PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:05, 00:26](1477 MB)
+PASS -- TEST 'control_latlon_intel' [13:05, 00:23](1469 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:05, 00:32](1473 MB)
+PASS -- TEST 'control_c48_intel' [13:04, 01:01](1594 MB)
+PASS -- TEST 'control_c48.v2.sfc_intel' [13:04, 01:10](719 MB)
+PASS -- TEST 'control_c192_intel' [13:05, 00:30](1591 MB)
+PASS -- TEST 'control_c384_intel' [13:09, 01:50](1901 MB)
+PASS -- TEST 'control_c384gdas_intel' [13:09, 02:38](1096 MB)
+PASS -- TEST 'control_stochy_intel' [13:05, 00:33](530 MB)
+PASS -- TEST 'control_stochy_restart_intel' [08:32, 01:00](331 MB)
+PASS -- TEST 'control_lndp_intel' [13:05, 00:43](527 MB)
+PASS -- TEST 'control_iovr4_intel' [13:05, 00:51](523 MB)
+PASS -- TEST 'control_iovr5_intel' [13:05, 00:55](523 MB)
+PASS -- TEST 'control_p8_intel' [13:05, 02:06](1507 MB)
+PASS -- TEST 'control_p8.v2.sfc_intel' [13:05, 01:56](1513 MB)
+PASS -- TEST 'control_p8_ugwpv1_intel' [07:29, 01:59](1500 MB)
+PASS -- TEST 'control_restart_p8_intel' [05:27, 00:51](695 MB)
+PASS -- TEST 'control_noqr_p8_intel' [07:28, 01:48](1495 MB)
+PASS -- TEST 'control_restart_noqr_p8_intel' [02:10, 01:04](698 MB)
+PASS -- TEST 'control_decomp_p8_intel' [07:12, 01:40](1498 MB)
+PASS -- TEST 'control_2threads_p8_intel' [07:09, 01:07](1594 MB)
+PASS -- TEST 'control_p8_lndp_intel' [07:06, 01:05](1501 MB)
+PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 02:06](1558 MB)
+PASS -- TEST 'control_p8_mynn_intel' [05:28, 01:52](1512 MB)
+PASS -- TEST 'merra2_thompson_intel' [03:47, 01:40](1512 MB)
+PASS -- TEST 'regional_control_intel' [03:46, 01:09](609 MB)
+PASS -- TEST 'regional_restart_intel' [57:03, 00:23](777 MB)
+PASS -- TEST 'regional_decomp_intel' [02:54, 00:51](607 MB)
+PASS -- TEST 'regional_2threads_intel' [02:55, 00:51](665 MB)
+PASS -- TEST 'regional_noquilt_intel' [02:45, 00:23](1148 MB)
+PASS -- TEST 'regional_netcdf_parallel_intel' [02:44, 01:18](607 MB)
+PASS -- TEST 'regional_2dwrtdecomp_intel' [02:37, 01:13](610 MB)
+PASS -- TEST 'regional_wofs_intel' [02:36, 00:43](1581 MB)
+
+PASS -- COMPILE 'rrfs_intel' [21:37, 20:07] ( 3 warnings 92 remarks )
+PASS -- TEST 'rap_control_intel' [01:51, 02:15](921 MB)
+PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [00:58, 01:04](1096 MB)
+PASS -- TEST 'rap_decomp_intel' [00:14, 01:22](918 MB)
+PASS -- TEST 'rap_2threads_intel' [00:00, 01:31](1005 MB)
+PASS -- TEST 'rap_restart_intel' [52:09, 01:15](787 MB)
+PASS -- TEST 'rap_sfcdiff_intel' [59:57, 02:16](918 MB)
+PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:53, 01:57](915 MB)
+PASS -- TEST 'rap_sfcdiff_restart_intel' [50:18, 01:39](791 MB)
+PASS -- TEST 'hrrr_control_intel' [58:54, 01:21](907 MB)
+PASS -- TEST 'hrrr_control_decomp_intel' [58:38, 01:06](910 MB)
+PASS -- TEST 'hrrr_control_2threads_intel' [58:25, 01:17](992 MB)
+PASS -- TEST 'hrrr_control_restart_intel' [53:27, 01:05](741 MB)
+PASS -- TEST 'rrfs_v1beta_intel' [58:15, 02:20](913 MB)
+PASS -- TEST 'rrfs_v1nssl_intel' [58:10, 00:57](1878 MB)
+PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [57:01, 01:18](1861 MB)
+
+PASS -- COMPILE 'csawmg_intel' [27:44, 26:48] ( 1 warnings )
+PASS -- TEST 'control_csawmg_intel' [55:37, 00:35](600 MB)
+PASS -- TEST 'control_ras_intel' [54:52, 00:51](559 MB)
+
+PASS -- COMPILE 'wam_intel' [11:24, 10:10]
+PASS -- TEST 'control_wam_intel' [02:24, 00:53](272 MB)
+
+PASS -- COMPILE 'atm_faster_dyn32_intel' [16:31, 15:22] ( 1 remarks )
+PASS -- TEST 'control_p8_faster_intel' [02:10, 02:02](1511 MB)
+PASS -- TEST 'regional_control_faster_intel' [02:01, 00:24](607 MB)
+
+PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 06:15] ( 870 warnings 92 remarks )
+PASS -- TEST 'control_CubedSphereGrid_debug_intel' [57:00, 01:17](1491 MB)
+PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:30, 00:26](1489 MB)
+PASS -- TEST 'control_stochy_debug_intel' [56:15, 00:50](694 MB)
+PASS -- TEST 'control_lndp_debug_intel' [56:07, 01:10](693 MB)
+PASS -- TEST 'control_csawmg_debug_intel' [56:06, 00:42](729 MB)
+PASS -- TEST 'control_ras_debug_intel' [56:06, 01:04](704 MB)
+PASS -- TEST 'control_diag_debug_intel' [55:53, 01:15](1554 MB)
+PASS -- TEST 'control_debug_p8_intel' [55:51, 01:01](1524 MB)
+PASS -- TEST 'regional_debug_intel' [54:47, 00:28](636 MB)
+PASS -- TEST 'rap_control_debug_intel' [53:53, 00:50](1075 MB)
+PASS -- TEST 'hrrr_control_debug_intel' [53:27, 00:59](1066 MB)
+PASS -- TEST 'hrrr_gf_debug_intel' [53:27, 00:50](1078 MB)
+PASS -- TEST 'hrrr_c3_debug_intel' [53:15, 00:49](1077 MB)
+PASS -- TEST 'rap_unified_drag_suite_debug_intel' [53:11, 00:49](1076 MB)
+PASS -- TEST 'rap_diag_debug_intel' [53:09, 00:44](1164 MB)
+PASS -- TEST 'rap_cires_ugwp_debug_intel' [52:38, 00:50](1077 MB)
+PASS -- TEST 'rap_unified_ugwp_debug_intel' [52:07, 00:41](1073 MB)
+PASS -- TEST 'rap_lndp_debug_intel' [51:47, 00:48](1082 MB)
+PASS -- TEST 'rap_progcld_thompson_debug_intel' [51:43, 00:52](1074 MB)
+PASS -- TEST 'rap_noah_debug_intel' [51:41, 00:56](1076 MB)
+PASS -- TEST 'rap_sfcdiff_debug_intel' [51:39, 00:45](1071 MB)
+PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [51:13, 00:40](1073 MB)
+PASS -- TEST 'rrfs_v1beta_debug_intel' [51:09, 00:55](1073 MB)
+PASS -- TEST 'rap_clm_lake_debug_intel' [51:04, 01:00](1078 MB)
+PASS -- TEST 'rap_flake_debug_intel' [50:23, 00:49](1077 MB)
+PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [50:18, 02:04](1081 MB)
+
+PASS -- COMPILE 'wam_debug_intel' [10:28, 07:49] ( 842 warnings )
+PASS -- TEST 'control_wam_debug_intel' [50:11, 00:30](298 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 14:39] ( 3 warnings 91 remarks )
+PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [49:58, 01:10](958 MB)
+PASS -- TEST 'rap_control_dyn32_phy32_intel' [47:49, 01:33](793 MB)
+PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:19, 02:00](786 MB)
+PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [47:19, 01:31](849 MB)
+PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:57, 01:51](845 MB)
+PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:56, 01:38](786 MB)
+PASS -- TEST 'rap_restart_dyn32_phy32_intel' [39:48, 02:00](687 MB)
+PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [41:42, 01:05](670 MB)
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:32, 16:49] ( 3 warnings 91 remarks )
+PASS -- TEST 'conus13km_control_intel' [46:46, 01:00](1002 MB)
+PASS -- TEST 'conus13km_2threads_intel' [42:54, 01:18](1009 MB)
+PASS -- TEST 'conus13km_restart_mismatch_intel' [42:47, 00:16](881 MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:32, 12:11] ( 3 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:45, 01:20](807 MB)
+
+FAILED: UNABLE TO COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ]
+FAILED: UNABLE TO START RUN -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_qr_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_debug_2threads_intel' [, ]( MB)
+FAILED: UNABLE TO START RUN -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB)
+
+PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 11:03] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [46:44, 00:57](977 MB)
+
+PASS -- COMPILE 'hafsw_intel' [17:50, 16:53] ( 1 warnings 8 remarks )
+PASS -- TEST 'hafs_regional_atm_intel' [45:07, 02:13](616 MB)
+PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [45:07, 01:12](969 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_intel' [45:05, 02:09](660 MB)
+PASS -- TEST 'hafs_regional_atm_wav_intel' [45:05, 01:52](697 MB)
+PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:06, 01:35](713 MB)
+PASS -- TEST 'hafs_regional_1nest_atm_intel' [45:04, 01:28](388 MB)
+PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [44:41, 01:33](402 MB)
+PASS -- TEST 'hafs_global_1nest_atm_intel' [43:52, 01:19](306 MB)
+PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [43:42, 02:06](371 MB)
+PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [43:35, 01:09](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [41:45, 01:31](414 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [41:45, 01:34](498 MB)
+PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [41:44, 01:06](312 MB)
+
+PASS -- COMPILE 'hafsw_debug_intel' [15:30, 14:45] ( 1449 warnings 1501 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [46:37, 01:36](504 MB)
+
+PASS -- COMPILE 'hafsw_faster_intel' [14:48, 13:35] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:06, 01:43](532 MB)
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:04, 01:22](710 MB)
+
+PASS -- COMPILE 'hafs_mom6w_intel' [19:36, 18:34] ( 7 remarks )
+PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:13, 01:28](708 MB)
+
+PASS -- COMPILE 'hafs_all_intel' [13:31, 12:54] ( 7 remarks )
+PASS -- TEST 'hafs_regional_docn_intel' [41:37, 02:00](662 MB)
+PASS -- TEST 'hafs_regional_docn_oisst_intel' [41:23, 02:09](650 MB)
+PASS -- TEST 'hafs_regional_datm_cdeps_intel' [40:58, 00:31](881 MB)
+
+PASS -- COMPILE 'atml_intel' [17:51, 16:38] ( 8 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:54, 01:25](1553 MB)
+PASS -- TEST 'control_p8_atmlnd_intel' [36:54, 01:48](1549 MB)
+PASS -- TEST 'control_restart_p8_atmlnd_intel' [29:09, 01:10](740 MB)
+
+PASS -- COMPILE 'atml_debug_intel' [11:26, 10:39] ( 868 warnings 2 remarks )
+PASS -- TEST 'control_p8_atmlnd_debug_intel' [40:15, 02:04](1562 MB)
+
+PASS -- COMPILE 'atmaero_intel' [13:28, 12:34] ( 1 remarks )
+PASS -- TEST 'atmaero_control_p8_intel' [38:50, 01:14](2850 MB)
+PASS -- TEST 'atmaero_control_p8_rad_intel' [38:50, 01:46](2911 MB)
+PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:50, 01:31](2922 MB)
+
+PASS -- COMPILE 'atmaq_debug_intel' [08:21, 07:36] ( 870 warnings 6 remarks )
+PASS -- TEST 'regional_atmaq_debug_intel' [40:06, 00:59](4438 MB)
SYNOPSIS:
-Starting Date/Time: 20240514 18:58:32
-Ending Date/Time: 20240514 20:37:35
-Total Time: 01h:39m:46s
-Compiles Completed: 32/32
-Tests Completed: 159/159
+Starting Date/Time: 20240516 20:23:31
+Ending Date/Time: 20240516 21:46:09
+Total Time: 01h:23m:17s
+Compiles Completed: 31/32
+Tests Completed: 153/159
+Failed Compiles:
+* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO COMPILE
+-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log
+Failed Tests:
+* TEST rap_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST hrrr_control_debug_dyn32_phy32_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST conus13km_debug_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST conus13km_debug_qr_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST conus13km_debug_2threads_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+* TEST conus13km_radar_tten_debug_intel: FAILED: UNABLE TO START RUN
+-- LOG: N/A
+
+NOTES:
+A file 'test_changes.list' was generated with list of all failed tests.
+You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests.
+If you are using this log as a pull request verification, please commit 'test_changes.list'.
+
+Result: FAILURE
+
+====END OF WCOSS2 REGRESSION TESTING LOG====
+====START OF WCOSS2 REGRESSION TESTING LOG====
+
+UFSWM hash used in testing:
+53ca93c48b032207b4d90354b56c0dbc6c8c4316
+
+Submodule hashes used in testing:
+ 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d)
+ be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1)
+ 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a)
+ 9c0cd8d3ba5963d01711094a3c81b6358fcb8367 CICE-interface/CICE (CICE6.0.0-448-g9c0cd8d)
+ f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7)
+ 453e59e353794ee8ff57693a64adf2ff49e3406d CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g453e59e)
+ cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775)
+ 0ba946ac691a4bdb104594cc518bd344d1c4a15c FV3 (remotes/origin/combo_20240503)
+ cc8afe64b9420dd7379e47cee5e3f30f4ac44b58 FV3/atmos_cubed_sphere (201912_public_release-390-gcc8afe6)
+ 741212e4962d371520f773e2be9481142f79635e FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-718-g741212e)
+ be05ec28d5d4968d3e0cb6e6a7fdb47fb8a5fad0 FV3/ccpp/physics (remotes/origin/HEAD-507-gbe05ec28)
+ 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6)
+ be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410e)
+-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd
+-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd
+ 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229)
+ 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7)
+ 3bcfbbea8b865c3f88497049fde044c1145bd202 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10050-g3bcfbbea8)
+ 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197)
+ 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6)
+ 1dbf99ab7910e8880e2d6f20f479a3858203d6e2 NOAHMP-interface/noahmp (v3.7.1-433-g1dbf99a)
+ d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f)
+ 31e4e3e57bad8a7cdaa0ce2d3c4efbca63b5f74a stochastic_physics (ufs-v2.0.0-216-g31e4e3e)
+
+
+NOTES:
+[Times](Memory) are at the end of each compile/test in format [MM:SS](Size).
+The first time is for the full script (prep+run+finalize).
+The second time is specifically for the run phase.
+Times/Memory will be empty for failed tests.
+
+BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240516
+COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_23536
+
+RT.SH OPTIONS USED:
+* (-a) - HPC PROJECT ACCOUNT: GFS-DEV
+* (-b) - NEW BASELINES FROM FILE: test_changes.list
+* (-e) - USE ECFLOW
+
+PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:15, 02:59] ( 773 warnings 91 remarks )
+PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:36, 01:00](952 MB)
+PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:36, 01:09](951 MB)
+PASS -- TEST 'conus13km_debug_intel' [26:36, 01:15](1036 MB)
+PASS -- TEST 'conus13km_debug_qr_intel' [26:36, 01:08](707 MB)
+PASS -- TEST 'conus13km_debug_2threads_intel' [26:37, 00:23](1037 MB)
+PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:36, 01:16](1103 MB)
+
+SYNOPSIS:
+Starting Date/Time: 20240517 12:29:57
+Ending Date/Time: 20240517 12:51:45
+Total Time: 00h:22m:10s
+Compiles Completed: 1/1
+Tests Completed: 6/6
NOTES:
A file 'test_changes.list' was generated but is empty.
diff --git a/tests/test_changes.list b/tests/test_changes.list
index 52067a1431..a18012880b 100644
--- a/tests/test_changes.list
+++ b/tests/test_changes.list
@@ -1 +1,4 @@
-cpld_control_sfs intel
+control_diag_debug intel
+rap_diag_debug intel
+control_diag_debug gnu
+rap_diag_debug gnu